mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-01 21:21:59 +00:00
27 lines
541 B
Plaintext
27 lines
541 B
Plaintext
var/command_name = null
|
|
/proc/command_name()
|
|
if (command_name)
|
|
return command_name
|
|
|
|
var/name = ""
|
|
|
|
if (prob(10))
|
|
name += pick("Super", "Ultra")
|
|
name += " "
|
|
|
|
// Prefix
|
|
if (name)
|
|
name += pick("", "Central", "System", "Home")
|
|
else
|
|
name += pick("Central", "System", "Home")
|
|
if (name)
|
|
name += " "
|
|
|
|
// Suffix
|
|
name += pick("Federation", "Command", "Alliance", "Unity", "Empire", "Confederation", "Protectorate", "Commonwealth", "Imperium", "Republic")
|
|
name += " "
|
|
|
|
command_name = name
|
|
return name
|
|
|