/* Code for the Wild West map by Brotemis * Contains: * Wish Granter * Meat Grinder */ //Wild West Areas /area/awaymission/wwmines name = "Wild West Mines" icon_state = "away1" luminosity = 1 requires_power = 0 /area/awaymission/wwgov name = "Wild West Mansion" icon_state = "away2" luminosity = 1 requires_power = 0 /area/awaymission/wwrefine name = "Wild West Refinery" icon_state = "away3" luminosity = 1 requires_power = 0 /area/awaymission/wwvault name = "Wild West Vault" icon_state = "away3" luminosity = 0 /area/awaymission/wwvaultdoors name = "Wild West Vault Doors" // this is to keep the vault area being entirely lit because of requires_power icon_state = "away2" requires_power = 0 luminosity = 0 /* * Wish Granter */ /obj/machinery/wish_granter_dark name = "Wish Granter" desc = "You're not so sure about this, anymore..." icon = 'icons/obj/device.dmi' icon_state = "syndbeacon" anchored = 1 density = 1 use_power = 0 var/chargesa = 1 var/insistinga = 0 /obj/machinery/wish_granter_dark/attack_hand(mob/living/carbon/human/user) usr.set_machine(src) if(chargesa <= 0) user << "The Wish Granter lies silent." return else if(!istype(user, /mob/living/carbon/human)) user << "You feel a dark stirring inside of the Wish Granter, something you want nothing of. Your instincts are better than any man's." return else if(is_special_character(user)) user << "Even to a heart as dark as yours, you know nothing good will come of this. Something instinctual makes you pull away." else if (!insistinga) user << "Your first touch makes the Wish Granter stir, listening to you. Are you really sure you want to do this?" insistinga++ else chargesa-- insistinga = 0 var/wish = input("You want...","Wish") as null|anything in list("Power","Wealth","Immortality","To Kill","Peace") switch(wish) if("Power") user << "Your wish is granted, but at a terrible cost..." user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart." user.dna.add_mutation(LASEREYES) user.dna.add_mutation(COLDRES) user.dna.add_mutation(XRAY) user.set_species(/datum/species/shadow) if("Wealth") user << "Your wish is granted, but at a terrible cost..." user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart." new /obj/structure/closet/syndicate/resources/everything(loc) user.set_species(/datum/species/shadow) if("Immortality") user << "Your wish is granted, but at a terrible cost..." user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart." user.verbs += /mob/living/carbon/proc/immortality user.set_species(/datum/species/shadow) if("To Kill") user << "Your wish is granted, but at a terrible cost..." user << "The Wish Granter punishes you for your wickedness, claiming your soul and warping your body to match the darkness in your heart." ticker.mode.traitors += user.mind user.mind.special_role = "traitor" var/datum/objective/hijack/hijack = new hijack.owner = user.mind user.mind.objectives += hijack user << "Your inhibitions are swept away, the bonds of loyalty broken, you are free to murder as you please!" var/obj_count = 1 for(var/datum/objective/OBJ in user.mind.objectives) user << "Objective #[obj_count]: [OBJ.explanation_text]" obj_count++ user.set_species(/datum/species/shadow) if("Peace") user << "Whatever alien sentience that the Wish Granter possesses is satisfied with your wish. There is a distant wailing as the last of the Faithless begin to die, then silence." user << "You feel as if you just narrowly avoided a terrible fate..." for(var/mob/living/simple_animal/hostile/faithless/F in mob_list) F.death() ///////////////Meatgrinder////////////// /obj/effect/meatgrinder name = "Meat Grinder" desc = "What is that thing?" density = 1 anchored = 1 icon = 'icons/mob/blob.dmi' icon_state = "blobpod" var/triggered = 0 /obj/effect/meatgrinder/Crossed(AM as mob|obj) Bumped(AM) /obj/effect/meatgrinder/Bumped(mob/M as mob|obj) if(triggered) return if(istype(M, /mob/living/carbon/human) && M.stat != DEAD && M.ckey) for(var/mob/O in viewers(world.view, src.loc)) visible_message("[M] triggered the [src]!") triggered = 1 var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread s.set_up(3, 1, src) s.start() explosion(M, 1, 0, 0, 0) qdel(src) /////For the Wishgranter/////////// /mob/living/carbon/proc/immortality() //Mob proc so people cant just clone themselves to get rid of the shadowperson race. No hiding your wickedness. set category = "Immortality" set name = "Resurrection" var/mob/living/carbon/C = usr if(!C.stat) C << "You're not dead yet!" return C << "Death is not your end!" spawn(rand(80,120)) C.revive(full_heal = 1, admin_revive = 1) C << "You have regenerated." C.visible_message("[usr] appears to wake from the dead, having healed all wounds.") C.update_canmove() return 1