Files
VOREStation/code/game/objects/items/weapons/traps_vr.dm
T
Killian 0efa9edee4 clothing _vr dmi cleanup: eyewear and masks (#18292)
* clothing _vr dmi cleanup: boots

* clothing _vr dmi cleanup: boots

* clothing _vr dmi cleanup: eyewear and masks

* cyber mantle tweaks and fixes

---------

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
2025-08-26 11:27:42 -04:00

19 lines
452 B
Plaintext

/obj/item/beartrap
slot_flags = SLOT_MASK
item_icons = list(
slot_wear_mask_str = 'icons/inventory/face/mob.dmi'
)
/obj/item/beartrap/equipped()
if(ishuman(src.loc))
var/mob/living/carbon/human/H = src.loc
if(H.wear_mask == src)
add_verb(H, /mob/living/proc/shred_limb_temp)
else
remove_verb(H, /mob/living/proc/shred_limb_temp)
..()
/obj/item/beartrap/dropped(mob/user)
remove_verb(user, /mob/living/proc/shred_limb_temp)
..()