Files
CHOMPStation2/modular_chomp/code/modules/paperwork/pen.dm
2023-12-11 14:40:47 +13:00

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)