Adds vars for the ball.

This commit is contained in:
Thalpy
2019-10-13 20:06:40 +01:00
parent ecfc988911
commit 356a1279f1
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
anchored = TRUE
var/items_list = list()
speech_span = "spooky"
var/active = TRUE
/obj/item/barthpot/Destroy()
var/obj/item/barthpot/n = new src(loc)
@@ -16,6 +17,9 @@
/obj/item/barthpot/attackby(obj/item/I, mob/user, params)
if(!active)
say("Meow!")
return
for(var/I2 in items_list)
if(istype(I, I2))
qdel(I)

View File

@@ -23,6 +23,7 @@
response_help = "chats with"
var/last_poof
var/progression = list() //Keep track of where people are in the story.
var/active = TRUE //Turn this to false to keep normal mob behavour
/mob/living/simple_animal/jacq/Initialize()
..()
@@ -48,6 +49,8 @@
poof()
/mob/living/simple_animal/jacq/attack_hand(mob/living/carbon/human/M)
if(!active)
return ..()
if(!ckey)
canmove = FALSE
chit_chat(M)
@@ -55,6 +58,8 @@
..()
/mob/living/simple_animal/jacq/attack_paw(mob/living/carbon/monkey/M)
if(!active)
return ..()
if(!ckey)
canmove = FALSE
chit_chat(M)