Event stuff, but also Squeak component (#7285)

This commit is contained in:
BlackMajor
2023-12-11 14:40:47 +13:00
committed by GitHub
parent 835e207c5c
commit 92c744dfec
32 changed files with 831 additions and 78 deletions
@@ -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)