Files
vgstation13/code/names.dm
Shadowmech88 30af596b00 Holoperson Tweaks (#16314)
* Number of active holopeople limted to 4.
Holopeople now dissipate when the Holodeck control console loses power.
Holopeople can no longer spawn when the Holodeck control console is unpowered or broken.
Holopeople now receive more specific rules regarding their behavior.
Holopeople now receive names rather than numbers.
Spawning as a holoperson is now done through the Holodeck control console interface.

* Topic() support for ghosts.

* Holopeople who ghost will now be despawned.

* Suggested changes.

* Adds some hologram names.
2017-10-29 18:03:49 +01:00

24 lines
1.2 KiB
Plaintext

var/list/ai_names = file2list("config/names/ai.txt")
var/list/wizard_first = file2list("config/names/wizardfirst.txt")
var/list/wizard_second = file2list("config/names/wizardsecond.txt")
var/list/ninja_titles = file2list("config/names/ninjatitle.txt")
var/list/ninja_names = file2list("config/names/ninjaname.txt")
var/list/commando_names = file2list("config/names/death_commando.txt")
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/verbs = file2list("config/names/verbs.txt")
var/list/adjectives = file2list("config/names/adjectives.txt")
//loaded on startup because of "
//would include in rsc if ' was used
var/list/vox_name_syllables = list("cha","chi","ha","hi","ka","kah","ki","ta","ti","ya","ya","yi")
var/list/golem_names = file2list("config/names/golem.txt")
var/list/borer_names = file2list("config/names/borer.txt")
var/list/hologram_names = file2list("config/names/hologram.txt")
var/list/autoborg_silly_names = file2listExceptComments("config/names/autoborg_silly.txt")