mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 14:07:51 +01:00
gloves now prevent on-touch artifacts from activating, anomaly suits are pressure resistant, fixed door in anom lab
Signed-off-by: caelaislinn <cael_aislinn@yahoo.com.au>
This commit is contained in:
@@ -1,15 +1,20 @@
|
||||
|
||||
/obj/item/clothing/suit/bio_suit/anomaly
|
||||
name = "Anomaly Suit"
|
||||
desc = "A sealed bio suit capable of resisting exotic alien energies."
|
||||
desc = "A sealed bio suit capable of resisting exotic alien energies and low pressure environments."
|
||||
icon_state = "engspace_suit"
|
||||
item_state = "engspace_suit"
|
||||
heat_transfer_coefficient = 0.02
|
||||
protective_temperature = 1000
|
||||
allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/emergency_oxygen, /obj/item/weapon/pickaxe/excavationtool)
|
||||
|
||||
/obj/item/clothing/head/bio_hood/anomaly
|
||||
name = "Anomaly Hood"
|
||||
desc = "A sealed bio hood capable of resisting exotic alien energies."
|
||||
desc = "A sealed bio hood capable of resisting exotic alien energies and low pressure environments."
|
||||
icon_state = "engspace_helmet"
|
||||
item_state = "engspace_helmet"
|
||||
heat_transfer_coefficient = 0.02
|
||||
protective_temperature = 1000
|
||||
|
||||
/area/anomaly
|
||||
name = "Anomaly Lab"
|
||||
|
||||
@@ -85,6 +85,8 @@
|
||||
if (get_dist(user, src) > 1)
|
||||
user << "\red You can't reach [src] from here."
|
||||
return
|
||||
if(istype(M:gloves,/obj/item/clothing/gloves))
|
||||
return ..()
|
||||
for(var/mob/O in viewers(src, null))
|
||||
O.show_message(text("<b>[]</b> touches [].", user, src), 1)
|
||||
src.add_fingerprint(user)
|
||||
|
||||
Reference in New Issue
Block a user