mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
20 lines
674 B
Plaintext
20 lines
674 B
Plaintext
/datum/gear/suit/labcoat_colorable
|
|
display_name = "labcoat, colorable"
|
|
path = /obj/item/clothing/suit/storage/toggle/labcoat
|
|
|
|
/datum/gear/suit/labcoat_colorable/New()
|
|
..()
|
|
gear_tweaks = list(gear_tweak_free_color_choice)
|
|
|
|
/datum/gear/suit/jacket_modular
|
|
display_name = "jacket, modular"
|
|
path = /obj/item/clothing/suit/storage/fluff/jacket
|
|
|
|
/datum/gear/suit/jacket_modular/New()
|
|
..()
|
|
var/list/the_jackets = list()
|
|
for(var/the_jacket in typesof(/obj/item/clothing/suit/storage/fluff/jacket))
|
|
var/obj/item/clothing/suit/jacket_type = the_jacket
|
|
the_jackets[initial(jacket_type.name)] = jacket_type
|
|
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(the_jackets))
|