good cloaks

i like gooder cloaks
This commit is contained in:
CoreFlare
2020-10-01 15:08:39 +01:00
parent f52e136faa
commit 9d76f6af80
4 changed files with 21 additions and 0 deletions

View File

@@ -102,3 +102,20 @@
/obj/item/clothing/neck/cloak/polychromic/ComponentInitialize() /obj/item/clothing/neck/cloak/polychromic/ComponentInitialize()
. = ..() . = ..()
AddElement(/datum/element/polychromic, poly_colors, 3) AddElement(/datum/element/polychromic, poly_colors, 3)
/obj/item/clothing/neck/cloak/alt
name = "cloak"
desc = "A ragged up white cloak. It reminds you of a place not far from here."
icon_state = "cloak"
item_state = "cloak"
/obj/item/clothing/neck/cloak/alt/polychromic
name = "polychromic cloak"
desc = "A ragged up cloak. It reminds you of a place not far from here."
icon_state = "cloak"
item_state = "cloak"
var/list/poly_colors = list("#FFFFFF", "#676767", "#4C4C4C")
/obj/item/clothing/neck/cloak/alt/polychromic/ComponentInitialize()
. = ..()
AddElement(/datum/element/polychromic, poly_colors, 3)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -86,3 +86,7 @@
/datum/gear/neck/polycloak /datum/gear/neck/polycloak
name = "Polychromatic Cloak" name = "Polychromatic Cloak"
path = /obj/item/clothing/neck/cloak/polychromic path = /obj/item/clothing/neck/cloak/polychromic
/datum/gear/neck/altpolycloak
name = "Alternate Cloak"
path = /obj/item/clothing/neck/cloak/alt/polychromic