mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-29 19:00:38 +00:00
13 lines
412 B
Plaintext
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>") |