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:
caelaislinn
2012-06-22 16:09:09 +10:00
parent dcac285964
commit b79d5253b0
3 changed files with 10 additions and 3 deletions
+7 -2
View File
@@ -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"
+2
View File
@@ -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)