Colorable loadout items

This commit is contained in:
Yoshax
2017-03-02 12:56:09 +00:00
parent eeef3247bb
commit 94294f0a3f
3 changed files with 29 additions and 1 deletions
@@ -6,3 +6,19 @@
display_name = "wedding ring, silver"
path = /obj/item/clothing/gloves/weddingring/silver
/datum/gear/gloves/colored
display_name = "gloves, colorable"
path = /obj/item/clothing/gloves/color
/datum/gear/gloves/colored/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/gloves/latex/colorable
display_name = "gloves, latex, colorable"
path = /obj/item/clothing/gloves/latex
/datum/gear/gloves/latex/colorable/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
@@ -0,0 +1,7 @@
/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)