mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-08-26 07:26:11 +01:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user