mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-25 09:31:42 +00:00
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.
15 lines
518 B
Plaintext
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))
|
|
|