mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-06 05:53:27 +01:00
04ba5c1cc9
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
15 lines
430 B
Plaintext
15 lines
430 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>")
|