mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
30 lines
814 B
Plaintext
30 lines
814 B
Plaintext
//Adminspawn item for hunters who're doing kidnaps during events
|
|
/obj/item/pen/autostun
|
|
desc = "A well made and expensive fountain pen. This one has gold accents."
|
|
icon_state = "blueg_fountain"
|
|
var/stun_duration = 10
|
|
|
|
/obj/item/pen/autostun/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Stun(stun_duration)
|
|
|
|
/obj/item/pen/autostun/paralyse
|
|
desc = "A well made and expensive fountain pen. This one has gold accents."
|
|
|
|
/obj/item/pen/autostun/paralyse/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Paralyse(stun_duration)
|
|
|
|
|
|
/obj/item/pen/autostun/weaken
|
|
desc = "A well made and expensive fountain pen. This one has gold accents."
|
|
|
|
/obj/item/pen/autostun/weaken/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Weaken(stun_duration) |