This commit is contained in:
Timothy Teakettle
2022-06-02 19:18:11 +01:00
parent ec9ebc0ede
commit dad0aa72f0
12 changed files with 48 additions and 1 deletions
@@ -360,3 +360,12 @@
desc = "Thin, pretty gloves intended for use in sexy feminine attire. A tag on the hem claims they pair great with black stockings."
icon_state = "eveningblack"
item_state = "eveningblack"
/obj/item/clothing/gloves/polymaid
name = "polychromic maid gloves"
desc = "Colourable maid gloves!"
icon_state = "maid_arms"
/obj/item/clothing/gloves/polymaid/ComponentInitialize()
. = ..()
AddElement(/datum/element/polychromic, list("#333333", "#FFFFFF"), 2)
+9
View File
@@ -477,6 +477,15 @@
item_state = "maid"
dynamic_hair_suffix = ""
/obj/item/clothing/head/maid/polychromic
name = "polychromic maid headband"
icon_state = "polymaid"
item_state = "polymaid"
/obj/item/clothing/head/maid/polychromic/ComponentInitialize()
. = ..()
AddElement(/datum/element/polychromic, list("#333333", "#FFFFFF"), 2)
/obj/item/clothing/head/widered
name = "Wide red hat"
desc = "It is both wide, and red. Stylish!"
@@ -255,6 +255,15 @@
item_state = "maidapron"
minimize_when_attached = FALSE
/obj/item/clothing/accessory/maidapron/polychromic
name = "polychromic maid apron"
icon_state = "polymaidapron"
item_state = "polymaidapron"
/obj/item/clothing/accessory/maidapron/polychromic/ComponentInitialize()
. = ..()
AddElement(/datum/element/polychromic, list("#333333", "#FFFFFF"), 2)
/obj/item/clothing/accessory/sleevecrop
name = "one sleeved crop top"
desc = "Off the shoulder crop top, for those nights out partying."
@@ -548,3 +557,5 @@
obj_flags = UNIQUE_RENAME
custom_materials = list(/datum/material/iron=100)
resistance_flags = FIRE_PROOF
/