mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user