mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 15:21:29 +00:00
47 lines
2.9 KiB
Plaintext
47 lines
2.9 KiB
Plaintext
//Preferences stuff
|
|
//Head accessory styles
|
|
var/global/list/head_accessory_styles_list = list() //stores /datum/sprite_accessory/head_accessory indexed by name
|
|
//Marking styles
|
|
var/global/list/marking_styles_list = list() //stores /datum/sprite_accessory/body_markings indexed by name
|
|
//Hairstyles
|
|
var/global/list/hair_styles_list = list() //stores /datum/sprite_accessory/hair indexed by name
|
|
var/global/list/hair_styles_male_list = list()
|
|
var/global/list/hair_styles_female_list = list()
|
|
var/global/list/facial_hair_styles_list = list() //stores /datum/sprite_accessory/facial_hair indexed by name
|
|
var/global/list/facial_hair_styles_male_list = list()
|
|
var/global/list/facial_hair_styles_female_list = list()
|
|
var/global/list/skin_styles_female_list = list() //unused
|
|
//Underwear
|
|
var/global/list/underwear_list = list() //stores /datum/sprite_accessory/underwear indexed by name
|
|
var/global/list/underwear_m = list() //stores only underwear name
|
|
var/global/list/underwear_f = list() //stores only underwear name
|
|
//Undershirts
|
|
var/global/list/undershirt_list = list() //stores /datum/sprite_accessory/undershirt indexed by name
|
|
var/global/list/undershirt_m = list() //stores only undershirt name
|
|
var/global/list/undershirt_f = list() //stores only undershirt name
|
|
//Socks
|
|
var/global/list/socks_list = list() //stores /datum/sprite_accessory/socks indexed by name
|
|
var/global/list/socks_m = list() //stores only socks name
|
|
var/global/list/socks_f = list() //stores only socks name
|
|
//Backpacks
|
|
var/global/list/backbaglist = list("Nothing", "Backpack", "Satchel", "Satchel Alt")
|
|
|
|
var/static/list/scarySounds = list('sound/weapons/thudswoosh.ogg','sound/weapons/Taser.ogg','sound/weapons/armbomb.ogg','sound/voice/hiss1.ogg','sound/voice/hiss2.ogg', \
|
|
'sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg','sound/effects/Glassbr1.ogg','sound/effects/Glassbr2.ogg','sound/effects/Glassbr3.ogg', \
|
|
'sound/items/Welder.ogg','sound/items/Welder2.ogg','sound/machines/airlock.ogg','sound/effects/clownstep1.ogg','sound/effects/clownstep2.ogg')
|
|
|
|
// Reference list for disposal sort junctions. Set the sortType variable on disposal sort junctions to
|
|
// the index of the sort department that you want. For example, sortType set to 2 will reroute all packages
|
|
// tagged for the Cargo Bay.
|
|
|
|
//If you don't want to fuck up disposals, add to this list, and don't change the order.
|
|
//If you insist on changing the order, you'll have to change every sort junction to reflect the new order. --Pete
|
|
|
|
var/list/TAGGERLOCATIONS = list("Disposals",
|
|
"Cargo Bay", "QM Office", "Engineering", "CE Office",
|
|
"Atmospherics", "HoS Office", "Security", "Medbay",
|
|
"CMO Office", "Chemistry", "Research", "RD Office",
|
|
"Robotics", "HoP Office", "Library", "Chapel", "Captain's Office",
|
|
"Bar", "Kitchen", "Hydroponics", "Janitor Closet","Genetics","Brig Physician")
|
|
|
|
var/list/hit_appends = list("-OOF", "-ACK", "-UGH", "-HRNK", "-HURGH", "-GLORF") |