mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 17:14:47 +01:00
[MIRROR] Adds the Ectoplasmic Outburst, a rare ghost-centric anomaly event [MDB IGNORE] (#19292)
* Adds the Ectoplasmic Outburst, a rare ghost-centric anomaly event (#73024) ## About The Pull Request This PR description might be a bit rushed because I accidentally submitted the PR and want to bang out a quick explanation of what this is before people start asking questions. Adds a new, rare, ghost-themed anomaly event -- The Ectoplasmic Outburst.  This event increases in power as more ghosts orbit it, with three important thresholds to meet. If 10% or more of all active observers are orbiting the anomaly, an effect will occur in the nearby area akin to the revenant's defile spell, damaging flooring, windows, and making a mess. If 35% or more are orbiting the anomaly, nearby objects in the effect radius have a chance to become haunted, and will fling themselves at anyone nearby for a bit. Spooky! Now, at 50% or more participation, things get serious. Ghosts orbiting the anomaly will be polled to be brought back into the world for a brief period as a vengeful spirit, anchored to a SUPER spooky ghost portal. The portal closes after two minutes (alternatively, smash it with a toolbox) and deletes all of the ghosts it spawned. Vengeful spirits are mostly just meant to smash stuff and be a nuisance while they can. It's a wonderful opportunity to let deadchat desalinate a little.  Oh, also, the anomaly is deadchat controlled. With enough ghosts, you could theoretically outrun anyone trying to neutralize it! The associated reactive armor has an effect similar to the anomaly, haunting nearby objects for a time when the wearer is struck. Not particularly outstanding, but it can introduce an element of chaos into a fight that your opponent might not expect. ## Why It's Good For The Game Anomaly events are great for ghosts. Why not make one tailored just for them! Gives admins something to spawn when a wizard has killed half of the crew but it's not quiiiite time for an ERT. It's a bit of a silly event with a novelty reward, but I think it's rare enough not to be a huge issue. ## Changelog 🆑 Rhials add: Ectoplasmic Outburst anomaly event add: Reactive Ectoplasm Armor /🆑 * Adds the Ectoplasmic Outburst, a rare ghost-centric anomaly event --------- Co-authored-by: Rhials <Datguy33456@gmail.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,212 @@
|
||||
/obj/effect/anomaly/ectoplasm
|
||||
name = "ectoplasm anomaly"
|
||||
desc = "It looks like the souls of the damned are trying to break into the realm of the living again. How upsetting."
|
||||
icon_state = "ectoplasm"
|
||||
aSignal = /obj/item/assembly/signaler/anomaly/ectoplasm
|
||||
lifespan = 100 SECONDS //This one takes slightly longer, because it can run away.
|
||||
|
||||
///Blocks the anomaly from updating ghost count. Used in case an admin wants to rig the anomaly to be a certain size or intensity.
|
||||
var/override_ghosts = FALSE
|
||||
///The numerical power of the anomaly. Calculated in anomalyEffect. Also used in determining the category of detonation effects.
|
||||
var/effect_power = 0
|
||||
///The actual number of ghosts orbiting the anomaly.
|
||||
var/ghosts_orbiting = 0
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/Initialize(mapload, new_lifespan, drops_core)
|
||||
. = ..()
|
||||
|
||||
AddComponent(/datum/component/deadchat_control/cardinal_movement, _deadchat_mode = ANARCHY_MODE, _inputs = list(), _input_cooldown = 7 SECONDS)
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/examine(mob/user)
|
||||
. = ..()
|
||||
|
||||
if(isobserver(user))
|
||||
. += span_info("Orbiting this anomaly will increase the size and intensity of its effects.")
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/examine_more(mob/user)
|
||||
. = ..()
|
||||
|
||||
switch(effect_power)
|
||||
if(0 to 25)
|
||||
. += span_notice("The space around the anomaly faintly resonates. It doesn't seem very powerful at the moment.")
|
||||
if(26 to 49)
|
||||
. += span_notice("The space around the anomaly seems to vibrate, letting out a noise that sounds like ghastly moaning. Someone should probably do something about that.")
|
||||
if(50 to 100)
|
||||
. += span_alert("The anomaly pulsates heavily, about to burst with unearthly energy. This can't be good.")
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/anomalyEffect(delta_time)
|
||||
. = ..()
|
||||
|
||||
if(override_ghosts)
|
||||
return
|
||||
|
||||
ghosts_orbiting = 0
|
||||
for(var/mob/dead/observer/orbiter in orbiters?.orbiter_list)
|
||||
ghosts_orbiting++
|
||||
|
||||
if(ghosts_orbiting)
|
||||
var/total_dead = length(GLOB.dead_player_list) + length(GLOB.current_observers_list)
|
||||
effect_power = ghosts_orbiting / total_dead * 100
|
||||
else
|
||||
effect_power = 0
|
||||
|
||||
intensity_update()
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/detonate()
|
||||
. = ..()
|
||||
|
||||
if(effect_power < 10) //Under 10% participation, we do nothing more than a small visual *poof*.
|
||||
new /obj/effect/temp_visual/revenant/cracks(get_turf(src))
|
||||
return
|
||||
|
||||
if(effect_power >= 10) //Performs something akin to a revenant defile spell.
|
||||
var/effect_range = ghosts_orbiting + 3
|
||||
var/effect_area = range(effect_range, src)
|
||||
|
||||
for(var/impacted_thing in effect_area)
|
||||
if(isfloorturf(impacted_thing))
|
||||
if(prob(5))
|
||||
new /obj/effect/decal/cleanable/blood(get_turf(impacted_thing))
|
||||
else if(prob(10))
|
||||
new /obj/effect/decal/cleanable/greenglow/ecto(get_turf(impacted_thing))
|
||||
else if(prob(10))
|
||||
new /obj/effect/decal/cleanable/dirt/dust(get_turf(impacted_thing))
|
||||
|
||||
if(!isplatingturf(impacted_thing))
|
||||
var/turf/open/floor/floor_to_break = impacted_thing
|
||||
if(floor_to_break.overfloor_placed && floor_to_break.floor_tile && prob(20))
|
||||
new floor_to_break.floor_tile(floor_to_break)
|
||||
floor_to_break.make_plating(TRUE)
|
||||
floor_to_break.broken = TRUE
|
||||
floor_to_break.burnt = TRUE
|
||||
|
||||
if(ishuman(impacted_thing))
|
||||
var/mob/living/carbon/human/mob_to_infect = impacted_thing
|
||||
mob_to_infect.ForceContractDisease(new /datum/disease/revblight(), FALSE, TRUE)
|
||||
new /obj/effect/temp_visual/revenant(get_turf(mob_to_infect))
|
||||
to_chat(mob_to_infect, span_revenminor("A cacophony of ghostly wailing floods your ears for a moment. The noise subsides, but a distant whispering continues echoing inside of your head..."))
|
||||
|
||||
if(istype(impacted_thing, /obj/structure/window))
|
||||
var/obj/structure/window/window_to_damage = impacted_thing
|
||||
window_to_damage.take_damage(rand(60, 90))
|
||||
if(window_to_damage?.fulltile)
|
||||
new /obj/effect/temp_visual/revenant/cracks(get_turf(window_to_damage))
|
||||
|
||||
if(effect_power >= 35)
|
||||
var/effect_range = ghosts_orbiting + 3
|
||||
haunt_outburst(epicenter = get_turf(src), range = effect_range, haunt_chance = 45, duration = 2 MINUTES)
|
||||
|
||||
if(effect_power >= 50) //Summon a ghost swarm!
|
||||
var/list/candidate_list = list()
|
||||
for(var/mob/dead/observer/orbiter in orbiters?.orbiter_list)
|
||||
candidate_list += orbiter
|
||||
|
||||
new /obj/structure/ghost_portal(get_turf(src), candidate_list)
|
||||
|
||||
priority_announce("Anomaly has reached critical mass. Ectoplasmic outburst detected.", "Anomaly Alert")
|
||||
|
||||
/**
|
||||
* Manages updating the sprite for the anomaly based on how many orbiters it has.
|
||||
*
|
||||
*
|
||||
* A check that is run to determine which sprite the anoamly should currently be displaying.
|
||||
* With 50% or more participation, the "heavy" sprite is used. Otherwise, it is reverted to the normal anomaly sprite.
|
||||
*/
|
||||
|
||||
/obj/effect/anomaly/ectoplasm/proc/intensity_update()
|
||||
if(effect_power >= 50) //If we're at the threshold for the highest tier effect, we change sprites in preparation for the spooks.
|
||||
icon_state = "ectoplasm_heavy"
|
||||
update_icon_state()
|
||||
else
|
||||
icon_state = "ectoplasm"
|
||||
update_icon_state()
|
||||
|
||||
|
||||
|
||||
// Ghost Portal. Used to bring anomaly orbiters into the playing field as ghosts. Destroys itself and all of its associated ghosts after two minutes.
|
||||
// Can be destroyed early to the same effect.
|
||||
|
||||
/obj/structure/ghost_portal
|
||||
name = "Spooky Portal"
|
||||
desc = "A portal between our dimension and who-knows-where? It's emitting an absolutely ungodly wailing sound."
|
||||
icon = 'icons/obj/objects.dmi'
|
||||
icon_state = "anom"
|
||||
anchored = TRUE
|
||||
var/static/list/spooky_noises = list(
|
||||
'sound/hallucinations/growl1.ogg',
|
||||
'sound/hallucinations/growl2.ogg',
|
||||
'sound/hallucinations/growl3.ogg',
|
||||
'sound/hallucinations/veryfar_noise.ogg',
|
||||
'sound/hallucinations/wail.ogg'
|
||||
)
|
||||
var/list/ghosts_spawned = list()
|
||||
|
||||
/obj/structure/ghost_portal/Initialize(mapload, candidate_list)
|
||||
. = ..()
|
||||
|
||||
START_PROCESSING(SSobj, src)
|
||||
INVOKE_ASYNC(src, PROC_REF(make_ghost_swarm), candidate_list)
|
||||
playsound(src, pick(spooky_noises), 100, TRUE)
|
||||
QDEL_IN(src, 2 MINUTES)
|
||||
|
||||
/obj/structure/ghost_portal/process(delta_time)
|
||||
. = ..()
|
||||
|
||||
if(prob(5))
|
||||
playsound(src, pick(spooky_noises), 100)
|
||||
|
||||
/obj/structure/ghost_portal/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0)
|
||||
playsound(loc, 'sound/effects/empulse.ogg', 75, TRUE)
|
||||
if(prob(40))
|
||||
playsound(src, pick(spooky_noises), 50)
|
||||
|
||||
/obj/structure/ghost_portal/Destroy()
|
||||
. = ..()
|
||||
|
||||
STOP_PROCESSING(SSobj, src)
|
||||
INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(cleanup_ghosts), ghosts_spawned)
|
||||
ghosts_spawned = null
|
||||
|
||||
/**
|
||||
* Generates a poll for observers, spawning anyone who signs up in a large group of ghost mobs
|
||||
*
|
||||
* Generates a poll that asks anyone observing for participation. Spawns a bunch of basicmob ghosts with the keys of candidates who have signed up.
|
||||
* Ghosts are deleted two minutes after being made, and exist to punch stuff until it breaks.
|
||||
*/
|
||||
|
||||
/obj/structure/ghost_portal/proc/make_ghost_swarm(list/candidate_list)
|
||||
if(!length(candidate_list)) //If we are not passed a candidate list we just poll everyone who is dead, meaning these can also be spawned directly.
|
||||
candidate_list += GLOB.current_observers_list
|
||||
candidate_list += GLOB.dead_player_list
|
||||
|
||||
var/list/candidates = poll_candidates("Would you like to participate in a spooky ghost swarm? (Warning: you will not be able to return to your body!)", ROLE_SENTIENCE, FALSE, 10 SECONDS, group = candidate_list)
|
||||
for(var/mob/dead/observer/candidate_ghost as anything in candidates)
|
||||
var/mob/living/basic/ghost/swarm/new_ghost = new(get_turf(src))
|
||||
ghosts_spawned += new_ghost
|
||||
new_ghost.ghostize(FALSE)
|
||||
new_ghost.key = candidate_ghost.key
|
||||
var/policy = get_policy(ROLE_ANOMALY_GHOST)
|
||||
if(policy)
|
||||
to_chat(new_ghost, policy)
|
||||
else
|
||||
to_chat(new_ghost, span_revenboldnotice("You are a lost soul, brought back to the realm of the living. Your time on this plane is limited, and you will soon be dragged back into the void!"))
|
||||
new_ghost.log_message("was returned to the living world as a ghost by an ectoplasmic anomaly.", LOG_GAME)
|
||||
|
||||
/**
|
||||
* Gives a farewell message and deletes the ghosts produced by a ghost portal structure.
|
||||
*
|
||||
* Handles cleanup of all ghost mobs spawned a ghost portal. Iterates through the list
|
||||
* and calls qdel on its contents, gives a short message, and leaves behind some goop.
|
||||
* Stored as a global, as it is called immediately after the portal deletes itself.
|
||||
*
|
||||
* * delete_list - The list of entities to be deleted by this proc.
|
||||
*/
|
||||
|
||||
/proc/cleanup_ghosts(list/delete_list)
|
||||
for(var/mob/living/mob_to_delete as anything in delete_list)
|
||||
mob_to_delete.visible_message(span_alert("The [mob_to_delete] wails as it is torn back into the void!"), span_alert("You let out one last wail as you are sucked back into the realm of the dead. Then suddenly, you're back in the comforting embrace of the afterlife."), span_hear("You hear ethereal wailing."))
|
||||
playsound(mob_to_delete, pick(delete_list), 50)
|
||||
new /obj/effect/temp_visual/revenant/cracks(get_turf(mob_to_delete))
|
||||
new /obj/effect/decal/cleanable/greenglow/ecto(get_turf(mob_to_delete))
|
||||
mob_to_delete.ghostize(FALSE) //So we don't throw an alert for deleting a mob with a key inside.
|
||||
qdel(mob_to_delete)
|
||||
Reference in New Issue
Block a user