Hopefully no break

This commit is contained in:
Thalpy
2019-10-13 23:41:06 +01:00
parent ac2aba50a6
commit e7c5e74d3a
4 changed files with 33 additions and 7 deletions
@@ -31,6 +31,9 @@
say("It doesn't seem like that's magical enough!")
/obj/item/barthpot/attack_hand(mob/user)
if(!active)
say("Meow!")
return
say("Hello there, I'm Bartholomew, Jacqueline's Familiar.")
sleep(20)
say("I'm currently seeking items to put into my pot, if we get the right items, it should crystalise into a magic candy!")
+17 -6
View File
@@ -34,8 +34,8 @@
real_name = "Jacqueline"
icon = 'icons/obj/halloween_items.dmi'
icon_state = "jacqueline"
maxHealth = INFINITY
health = INFINITY
maxHealth = 25
health = 25
density = FALSE
speech_span = "spooky"
friendly = "pets"
@@ -69,6 +69,7 @@
/mob/living/simple_animal/jacq/attack_hand(mob/living/carbon/human/M)
if(!active)
say("Hello there [gender_check(M)]!")
return ..()
if(!ckey)
canmove = FALSE
@@ -78,6 +79,7 @@
/mob/living/simple_animal/jacq/attack_paw(mob/living/carbon/monkey/M)
if(!active)
say("Hello there [gender_check(M)]!")
return ..()
if(!ckey)
canmove = FALSE
@@ -105,10 +107,19 @@
return FALSE
/mob/living/simple_animal/jacq/proc/gender_check(mob/living/carbon/C)
var/gender = "lamb"
if(C)
if(C.gender == MALE)
gender = "laddie"
if(C.gender == FEMALE)
gender = "lassie"
return gender
//Ye wee bugger, gerrout of it. Ye've nae tae enjoy reading the code fer mae secrets like.
/mob/living/simple_animal/jacq/proc/chit_chat(mob/living/carbon/C)
//Very important
var/gender = "lamb"
var/gender = gender_check(C)
if(C)
if(C.gender == MALE)
gender = "laddie"
@@ -285,7 +296,7 @@
objective += " [L2.name]."
brainwash(C, objective)
if(2)
visible_message("<b>[src]</b> waves their arms around, <span class='spooky'>\"Off comes your head, atleast you're not dead.\"</span>")
visible_message("<b>[src]</b> waves their arms around, <span class='spooky'>\"Off comes your head, a pumpkin taking it's stead!\"</span>")
C.reagents.add_reagent("pumpkinmutationtoxin", 5)
if(3)
visible_message("<b>[src]</b> waves their arms around, <span class='spooky'>\"If only you had a better upbringing, your ears are now full of my singing!\"</span>")
@@ -372,8 +383,8 @@
/datum/reagent/mutationtoxin/pumpkinhead
name = "Pumpkin head mutation toxin"
id = "pumpkinmutationtoxin"
race = /datum/species/dullahan
mutationtext = "<span class='spooky'>The pain subsides. You feel your head roll off your shoulders."
race = /datum/species/dullahan/pumpkin
mutationtext = "<span class='spooky'>The pain subsides. You feel your head roll off your shoulders... and you smell pumpkin."
//I couldn't get the replace head sprite with a pumpkin to work so, it is what it is.
/mob/living/simple_animal/jacq/proc/check_candies(mob/living/carbon/C)