mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 07:02:36 +00:00
14 lines
429 B
Plaintext
14 lines
429 B
Plaintext
/obj/item/lock_buster
|
|
name = "pod lock buster"
|
|
desc = "Destroys a podlock in mere seconds once applied. Waranty void if used."
|
|
icon = 'icons/obj/device.dmi'
|
|
icon_state = "lock_buster_off"
|
|
var/on = 0
|
|
|
|
/obj/item/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>") |