Makes the vox stealth suit more stealthy (#26084)

* god help us

* does stuff

* makes it even stealthier

* no longer breaks the game!
This commit is contained in:
BomberBro
2020-03-31 21:08:00 -04:00
committed by GitHub
parent 7c4748aecd
commit b81fec232f

View File

@@ -155,6 +155,19 @@
icon_state = "vox-stealth"
item_state = "vox-stealth"
desc = "A sleek black suit. It seems to have a tail, and is very heavy."
var/step_sound = ""
/obj/item/clothing/suit/space/vox/stealth/New()
..()
if(Holiday == APRIL_FOOLS_DAY)
name = "vox suit"
desc = "Squeak."
step_sound = "clownstep"
/obj/item/clothing/suit/space/vox/stealth/step_action()
if(ishuman(loc)&&Holiday == APRIL_FOOLS_DAY)
var/mob/living/carbon/human/H = loc
playsound(H, step_sound, 20, 1)
/obj/item/clothing/head/helmet/space/vox/medic
name = "alien goggled helmet"
@@ -274,6 +287,19 @@
icon_state = "vox-stealth"
item_state = "vox-stealth"
desc = "A sleek black suit. It seems to have a tail, and is very heavy."
var/step_sound = ""
/obj/item/clothing/suit/space/vox/civ/trader/stealth/New()
..()
if(Holiday == APRIL_FOOLS_DAY)
name = "vox suit"
desc = "Squeak."
step_sound = "clownstep"
/obj/item/clothing/suit/space/vox/civ/trader/stealth/step_action()
if(ishuman(loc)&&Holiday == APRIL_FOOLS_DAY)
var/mob/living/carbon/human/H = loc
playsound(H, step_sound, 20, 1)
/obj/item/clothing/head/helmet/space/vox/civ/trader/stealth //blackhelmet
name = "alien stealth helmet"