Files
2016-03-06 20:52:14 +01:00

27 lines
654 B
Plaintext

var/command_name = null
/proc/command_name()
if (command_name)
return command_name
var/name = ""
if (prob(10))
name += pick("Super", "Ultra", "Mega", "Supreme", "Grand", "Secret")
name += " "
// Prefix
if (name)
name += pick("", "Central", "System", "Galactic", "Space")
else
name += pick("Central", "System", "Galactic", "Space")
if (name)
name += " "
// Suffix
name += pick("Federation", "Command", "Alliance", "Unity", "Empire", "Confederation", "Protectorate", "Commonwealth", "Imperium", "Republic", "Corporate", "Authority", "Council", "System")
//name += " "
command_name = name
return name