#define MAX_PROGRESS 100 /obj/structure/alien/egg desc = "It looks like a weird egg." name = "egg" icon_state = "egg_growing" density = 0 anchored = 1 var/progress = 0 /obj/structure/alien/egg/New() ..() processing_objects += src /obj/structure/alien/egg/Destroy() processing_objects -= src return ..() /obj/structure/alien/egg/CanUseTopic(var/mob/user) return isobserver(user) ? STATUS_INTERACTIVE : STATUS_CLOSE /obj/structure/alien/egg/Topic(href, href_list) if(..()) return 1 if(href_list["spawn"]) attack_ghost(usr) /obj/structure/alien/egg/process() progress++ if(progress >= MAX_PROGRESS) for(var/mob/M in dead_mob_list) if(istype(M,/mob/dead) && M.client && M.client.prefs && (MODE_XENOMORPH in M.client.prefs.be_special_role)) M << "[ghost_follow_link(src, M)] An alien is ready to hatch! (spawn)" processing_objects -= src update_icon() /obj/structure/alien/egg/update_icon() if(progress == -1) icon_state = "egg_hatched" else if(progress < MAX_PROGRESS) icon_state = "egg_growing" else icon_state = "egg" /obj/structure/alien/egg/attack_ghost(var/mob/dead/observer/user) if(progress == -1) //Egg has been hatched. return if(progress < MAX_PROGRESS) user << "\The [src] has not yet matured." return if(!user.MayRespawn(1)) return // Check for bans properly. if(jobban_isbanned(user, "Xenomorph")) user << "You are banned from playing a Xenomorph." return var/confirm = alert(user, "Are you sure you want to join as a Xenomorph larva?", "Become Larva", "No", "Yes") if(!src || confirm != "Yes") return if(!user || !user.ckey) return if(progress == -1) //Egg has been hatched. user << "Too slow..." return flick("egg_opening",src) progress = -1 // No harvesting pls. sleep(5) if(!src || !user) visible_message("\The [src] writhes with internal motion, but nothing comes out.") progress = MAX_PROGRESS // Someone else can have a go. return // What a pain. // Create the mob, transfer over key. var/mob/living/carbon/alien/larva/larva = new(get_turf(src)) larva.ckey = user.ckey spawn(-1) if(user) qdel(user) // Remove the keyless ghost if it exists. visible_message("\The [src] splits open with a wet slithering noise, and \the [larva] writhes free!") // Turn us into a hatched egg. name = "hatched alien egg" desc += " This one has hatched." update_icon() #undef MAX_PROGRESS