mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-24 21:57:53 +01:00
Event stuff, but also Squeak component (#7285)
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
//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)
|
||||
Reference in New Issue
Block a user