Files
Paradise/code/modules/spacepods/lock_buster.dm
IK3I 007278a815 Adds pod lock busters
The CE and the Armory now have specialized drills for stubborn pod
flying criminals.
2016-05-14 22:07:23 -05:00

13 lines
412 B
Plaintext

/obj/item/device/lock_buster
name = "pod lock buster"
desc = "Destroys a podlock in mere seconds once applied. Waranty void if used."
icon_state = "lock_buster_off"
var/on = 0
/obj/item/device/lock_buster/attack_self(mob/user as mob)
on = !on
if(on)
icon_state = "lock_buster_on"
else
icon_state = "lock_buster_off"
to_chat(usr, "<span class='notice'>You turn the [src] [on ? "on" : "off"].</span>")