Files
CHOMPStation2/code/names.dm
noisomehollow@lycos.com bb46286e6b Reverted ninja stealth so it works again.
Ninjas now explode when they die.
Ninja mask obscures speech (garbles text) if the voice modulator is not set to mimic voice.
Ninja hood makes one not trackable by AI if worn, much like the agent card.

Certain obj/item/clothing items (canremove=0) will not be removable by normal means. Currently only set for ninja stuff and the suicide vest. The suicide vest might explode if active and someone tries to strip it off a person.
Removed heat protection from black shoes. Not sure why it was there.
Removing a mask from a monkey via text window will now properly give a message.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1370 316c924e-a436-60f5-8080-3fe189b3f50e
2011-04-05 02:15:19 +00:00

13 lines
819 B
Plaintext

var/list/ai_names = dd_file2list("config/names/ai.txt")
var/list/wizard_first = dd_file2list("config/names/wizardfirst.txt")
var/list/wizard_second = dd_file2list("config/names/wizardsecond.txt")
var/list/ninja_titles = dd_file2list("config/names/ninjatitle.txt")
var/list/ninja_names = dd_file2list("config/names/ninjaname.txt")
var/list/commando_names = dd_file2list("config/names/death_commando.txt")
var/list/first_names_male = dd_file2list("config/names/first_male.txt")
var/list/first_names_female = dd_file2list("config/names/first_female.txt")
var/list/last_names = dd_file2list("config/names/last.txt")
var/list/loggedsay = dd_file2list("config/names/loggedsay.txt")
var/list/clown_names = dd_file2list("config/names/clown.txt")
//loaded on startup because of "
//would include in rsc if ' was used