mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 12:13:06 +00:00
30 lines
856 B
Plaintext
30 lines
856 B
Plaintext
//Adminspawn item for hunters who're doing kidnaps during events
|
|
/obj/item/weapon/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/weapon/pen/autostun/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Stun(stun_duration)
|
|
|
|
/obj/item/weapon/pen/autostun/paralyse
|
|
desc = "A well made and expensive fountain pen. This one has gold accents."
|
|
|
|
/obj/item/weapon/pen/autostun/paralyse/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Paralyse(stun_duration)
|
|
|
|
|
|
/obj/item/weapon/pen/autostun/weaken
|
|
desc = "A well made and expensive fountain pen. This one has gold accents."
|
|
|
|
/obj/item/weapon/pen/autostun/weaken/attack(mob/living/M as mob, mob/user as mob)
|
|
|
|
if(!istype(M))
|
|
return
|
|
M.Weaken(stun_duration) |