Files
CHOMPStation2/code/modules/client/preference_setup/loadout/loadout_xeno_ch.dm
2025-01-07 16:15:39 +01:00

38 lines
1.4 KiB
Plaintext

/datum/gear/suit/hood
display_name = "hooded cloak selection (Teshari)"
path = /obj/item/clothing/suit/storage/teshari/cloak/standard
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/eyes/arglasses/tesh_visor
display_name = "AR visor (Teshari)"
path = /obj/item/clothing/glasses/omnihud/visor/tesh
whitelisted = SPECIES_TESHARI
sort_category = "Xenowear"
/datum/gear/suit/hood/New()
..()
var/list/cloaks = list()
for(var/cloak in typesof(/obj/item/clothing/suit/storage/hooded/teshari/standard))
var/obj/item/clothing/suit/storage/teshari/cloak/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))
/datum/gear/double_tank_nitrogen
display_name = "Pocket sized double nitrogen tank (Customs)"
path = /obj/item/tank/emergency/nitrogen/double
whitelisted = SPECIES_CUSTOM
sort_category = "Xenowear"
/datum/gear/double_tank_phoron
display_name = "Pocket sized double phoron tank (Customs)"
path = /obj/item/tank/emergency/phoron/double
whitelisted = SPECIES_CUSTOM //CHOMPedit: voxes don't need phoron here, not full whitelist removal because I am unsure of what use non-customs get
sort_category = "Xenowear"
/datum/gear/double_tank_carbon_dioxide
display_name = "Pocket sized double carbon dioxide tank (Customs)"
path = /obj/item/tank/emergency/carbon_dioxide/double
whitelisted = SPECIES_CUSTOM
sort_category = "Xenowear"