mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 06:34:45 +01:00
added mime names from TG, mimes can now pick name on entry
This commit is contained in:
@@ -8,6 +8,7 @@ var/list/first_names_male = file2list("config/names/first_male.txt")
|
||||
var/list/first_names_female = file2list("config/names/first_female.txt")
|
||||
var/list/last_names = file2list("config/names/last.txt")
|
||||
var/list/clown_names = file2list("config/names/clown.txt")
|
||||
var/list/mime_names = file2list("config/names/mime.txt")
|
||||
var/list/diona_names = file2list ("config/names/diona.txt")
|
||||
|
||||
var/list/verbs = file2list("config/names/verbs.txt")
|
||||
|
||||
@@ -494,6 +494,9 @@
|
||||
if(mind.assigned_role == "Clown") //give them a clownname if they are a clown
|
||||
new_character.real_name = pick(clown_names) //I hate this being here of all places but unfortunately dna is based on real_name!
|
||||
new_character.rename_self("clown")
|
||||
else if(mind.assigned_role == "Mime")
|
||||
new_character.real_name = pick(mime_names)
|
||||
new_character.rename_self("mime")
|
||||
else if(new_character.species == "Diona")
|
||||
new_character.real_name = pick(diona_names) //I hate this being here of all places but unfortunately dna is based on real_name!
|
||||
new_character.rename_self("diona")
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
Invisible Man
|
||||
Lemon Mime
|
||||
Marcel
|
||||
Marcel Mime
|
||||
Mime
|
||||
Mr Beret
|
||||
Mr Mime
|
||||
Mr Mute
|
||||
Mute
|
||||
Omerta
|
||||
Oui Oui
|
||||
Pantomime
|
||||
Quiet
|
||||
Quiet Riot
|
||||
Silence
|
||||
Silencio
|
||||
Silent Knight
|
||||
Silent Majority
|
||||
Silent Night
|
||||
Silent Sorrow
|
||||
Transparency
|
||||
Unspeakable
|
||||
Untouchable
|
||||
Wall Runner
|
||||
Reference in New Issue
Block a user