diff --git a/code/modules/holiday/jacqueen.dm b/code/modules/holiday/jacqueen.dm new file mode 100644 index 0000000000..29f0cacf5b --- /dev/null +++ b/code/modules/holiday/jacqueen.dm @@ -0,0 +1,26 @@ +//Jacq test +/mob/living/jacq + name = "Jacqueline" + real_name = "Jacqueline" + icon = 'icons/obj/halloween_items.dmi' + icon_state = "jacqueline" + maxHealth = INFINITY + health = INFINITY + speak_emote = list("croons") + emote_hear = list("spooks","giggles") + density = FALSE + var/destinations = list("Bar", "Brig", "Bridge", "Chapel", "Chemistry", "Cyrogenics", "Engineering", ) + var/tricked = list() //Those who have been tricked + +/mob/living/jacq/proc/poof() + var/area/A = GLOB.sortedAreas["[pick(destinations)]"] + if(A && istype(A)) + if(M.forceMove(safepick(get_area_turfs(A)))) + + +/mob/living/jacq/proc/chit_chat() + + +/mob/living/jacq/proc/trick() + var/ +//var/area/A = input(usr, "Pick an area.", "Pick an area") in GLOB.sortedAreas|null