From 031c30d06de364797ab72ef17d3da1b37dcd69e3 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Wed, 21 Feb 2018 16:43:57 -0500 Subject: [PATCH] Adds a toggle to the bluespace jumpsuit --- .../clothing/under/miscellaneous_vr.dm | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index d1d56ad2e7e..9e61eceaec3 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -42,6 +42,27 @@ hides_bulges = TRUE var/original_size + + +/obj/item/clothing/under/bluespace/verb/toggle_fibers() + set category = "Object" + set name = "Adjust fibers" + set desc = "Adjust your suit fibers. This makes it so your stomach(s) will show or not. + set src in usr + + adjust_fibers(usr) + ..() + +/obj/item/clothing/under/bluespace/proc/adjust_fibers(mob/user) + if(hides_bulges == FALSE) + hides_bulges = TRUE + to_chat(user, "You tense the suit fibers, hiding your stomach(s).") + else + hides_bulges = FALSE + to_chat(user, "You relax the suit fibers, showing your stomach(s).") + + + /obj/item/clothing/under/bluespace/verb/resize() set name = "Adjust Size" set category = "Object" @@ -49,6 +70,8 @@ bluespace_size(usr) ..() + + /obj/item/clothing/under/bluespace/proc/bluespace_size(mob/usr as mob) if (!ishuman(usr)) return