This commit is contained in:
David Winters
2021-04-11 18:35:31 -04:00
parent da60c2c40e
commit 2468f31cbb
2 changed files with 6 additions and 6 deletions
@@ -736,7 +736,7 @@
character_name = list("Scylla Casmus")
/datum/gear/fluff/kiyoshi_cloak
path = /obj/item/clothing/accessory/poncho/fluff/cloakglowing
path = /obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing
display_name = "glowing cloak"
ckeywhitelist = list("pastelprincedan")
character_name = list("Kiyoshi Maki", "Masumi Maki")
@@ -2288,7 +2288,7 @@ Departamental Swimsuits, for general use
body_parts_covered = UPPER_TORSO|LOWER_TORSO|FEET|ARMS|HANDS
//PastelPrinceDan: Kiyoshi Maki
/obj/item/clothing/accessory/poncho/fluff/cloakglowing
/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing
name = "glowing cloak"
desc = "A fancy cloak with a RGB LED color strip along the trim, cycling through the colors of the rainbow."
icon = 'icons/vore/custom_clothes_vr.dmi'
@@ -2298,17 +2298,17 @@ Departamental Swimsuits, for general use
icon_override = 'icons/vore/custom_onmob_vr.dmi'
var/is_dark = FALSE
/obj/item/clothing/accessory/poncho/fluff/cloakglowing/equipped()
/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/equipped()
..()
var/mob/living/carbon/human/H = loc
if(istype(H) && H.wear_suit == src)
icon_override = 'icons/vore/custom_onmob_vr.dmi'
update_clothing_icon()
/obj/item/clothing/accessory/poncho/fluff/cloakglowing/dropped()
/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/dropped()
icon_override = 'icons/vore/custom_onmob_vr.dmi'
/obj/item/clothing/accessory/poncho/fluff/cloakglowing/proc/colorswap(mob/user)
/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/proc/colorswap(mob/user)
if(user.canmove && !user.stat)
src.is_dark = !src.is_dark
if (src.is_dark)
@@ -2323,7 +2323,7 @@ Departamental Swimsuits, for general use
to_chat(user, "The polychromic plates in your cloak activate, turning it white.")
has_suit.update_clothing_icon()
/obj/item/clothing/accessory/poncho/fluff/cloakglowing/verb/color_verb()
/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/verb/color_verb()
set name = "Swap color"
set category = "Object"
set src in usr