ERT Nuclear Waste Cleanser

This commit is contained in:
DragonTrance
2021-05-09 18:16:15 -07:00
parent 5b4fd2319f
commit 5dc2905be5
4 changed files with 107 additions and 1 deletions
@@ -9,6 +9,9 @@
armor = list("melee" = 30, "bullet" = 10, "laser" = 10, "energy" = 5, "bomb" = 80, "bio" = 100, "rad" = 100, "fire" = 60, "acid" = 60)
actions_types = list(/datum/action/item_action/toggle_research_scanner)
/obj/item/clothing/head/helmet/space/hardsuit/rd/hev/no_scanner
actions_types = list()
/obj/item/clothing/suit/space/hardsuit/rd/hev
name = "HEV Suit"
desc = "The hazard suit. It was designed to protect scientists from the blunt trauma, radiation, energy discharge that hazardous materials might produce or entail. Fits you like a glove. The automatic medical system seems broken... They're waiting for you, Gordon. In the test chamberrrrrr."
@@ -24,9 +27,15 @@
tauric = FALSE //Citadel Add for tauric hardsuits
taurmode = NOT_TAURIC
var/firstpickup = TRUE
var/pickupsound = TRUE
/obj/item/clothing/suit/space/hardsuit/rd/hev/no_sound
pickup_sound = FALSE
/obj/item/clothing/suit/space/hardsuit/rd/hev/equipped(mob/user, slot)
. = ..()
if(!pickup_sound)
return
if(!ishuman(user))
return
if(slot == SLOT_WEAR_SUIT)