mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 05:27:39 +01:00
it all works now
This commit is contained in:
@@ -2274,7 +2274,8 @@ Departamental Swimsuits, for general use
|
||||
name = "salaciously stylised suit"
|
||||
desc = "It's kind of difficult to identify the type of material that makes up this form-fitting suit. It is stretchy and flexible, but \
|
||||
is firm in its toughness, and clings tightly to the skin. Come to think of it, it glistens quite a bit in the light and- \
|
||||
oh god it's latex."
|
||||
oh god it's latex.\
|
||||
\n... A <b>Verie</b> appropriate material choice indeed." //the wordplay never ends
|
||||
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_state = "veriesuit"
|
||||
|
||||
@@ -2283,8 +2284,4 @@ Departamental Swimsuits, for general use
|
||||
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|FEET|ARMS|HANDS
|
||||
|
||||
/obj/item/clothing/under/fluff/verie/examine(mob/user)
|
||||
//the wordplay never ends
|
||||
. = ..()
|
||||
. += "... A <b>Verie</b> appropriate material choice indeed."
|
||||
|
||||
|
||||
@@ -1376,13 +1376,26 @@
|
||||
this device was not made for people like you.</span>")
|
||||
return
|
||||
|
||||
user.hair_accessory_style = /datum/sprite_accessory/hair_accessory/verie_hair_glow
|
||||
user.update_hair()
|
||||
user.visible_message("[user] combs her hair. \The [src] leaves behind glowing cyan highlights as it passes through \
|
||||
her black strands.", \
|
||||
"<span class='notice'>You brush your hair. \The [src]'s teeth begin to vibrate and glow as they react to your nanites. \
|
||||
The teeth stimulate the nanites in your hair strands until your hair give off a brilliant, faintly pulsing \
|
||||
cyan glow!</span>")
|
||||
if (!user.hair_accessory_style)
|
||||
var/datum/sprite_accessory/hair_accessory/verie_hair_glow/V = new(user)
|
||||
user.hair_accessory_style = V
|
||||
user.update_hair()
|
||||
user.visible_message("[user] combs her hair. \The [src] leaves behind glowing cyan highlights as it passes through \
|
||||
her black strands.", \
|
||||
"<span class='notice'>You brush your hair. \The [src]'s teeth begin to vibrate and glow as they react to your nanites. \
|
||||
The teeth stimulate the nanites in your hair strands until your hair give off a brilliant, faintly pulsing \
|
||||
cyan glow!</span>")
|
||||
|
||||
else
|
||||
user.visible_message("[user] combs her hair. \The [src] brushes away her glowing cyan highlights. Neat!", \
|
||||
"<span class='notice'>You brush your hair. \The [src]'s teeth wipe away the glowing streaks in your hair \
|
||||
like a sponge scrubbing away a stain.</span>")
|
||||
user.hair_accessory_style = null
|
||||
for(var/datum/sprite_accessory/hair_accessory/verie_hair_glow/V in user)
|
||||
to_chat(user, "<span class='warning'>found a V to delete!</span>")
|
||||
qdel(V)
|
||||
user.update_hair()
|
||||
|
||||
|
||||
else
|
||||
to_chat(user, "<span class='warning'>\The [src] isn't compatible with your body as it is now.</span>")
|
||||
|
||||
Reference in New Issue
Block a user