Files
CHOMPStation2/code/modules/client/preference_setup/loadout/loadout_xeno_ch.dm
Darlantan 1ff6996898 Reimplements hooded tesh cloaks
Re-adds hooded teshari cloaks, also re-adds the retrowave and glowing teshari cloaks. Renames "teshari_hood.dmi" to "teshari_hood_ch.dmi" because this file doesn't exist upstream.
2020-01-31 22:11:25 -05:00

15 lines
518 B
Plaintext

/datum/gear/suit/hood
display_name = "hooded cloak selection (Teshari)"
path = /obj/item/clothing/suit/storage/seromi/cloak/standard
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/seromi/cloak/cloak_type = cloak
cloaks[initial(cloak_type.name)] = cloak_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks))