massive burndown (#29894)

This commit is contained in:
Contrabang
2025-07-27 13:52:39 -07:00
committed by GitHub
parent a596fba80d
commit 1504ed98be
1043 changed files with 0 additions and 3598 deletions
@@ -4,7 +4,6 @@
* A generic hallucination that causes the target to trip if they cross it.
*/
/obj/effect/hallucination/tripper
anchored = TRUE
/// Chance to trip when crossing.
var/trip_chance = 100
/// Stun to add when crossed.
@@ -111,7 +111,6 @@
hallucination_icon = 'icons/mob/carp.dmi'
hallucination_icon_state = "base"
duration = 30 SECONDS
damage = 25
/obj/effect/hallucination/chaser/attacker/space_carp/Initialize(mapload, mob/living/carbon/hallucination_target)
. = ..()
@@ -30,7 +30,6 @@
hallucination_icon = 'icons/mob/terrorspider.dmi'
hallucination_icon_state = "terror_green"
duration = 30 SECONDS
damage = 25
/obj/effect/hallucination/chaser/attacker/terror_spider/Initialize(mapload, mob/living/carbon/target)
. = ..()
@@ -433,7 +432,6 @@
hallucination_icon = 'icons/mob/human.dmi'
hallucination_icon_state = "zombie2_s"
duration = 45 SECONDS
damage = 25
/// The hallucination that spawned us.
var/obj/effect/hallucination/blob/owning_hallucination = null
/// Whether or not the target has been zombified already.
@@ -483,7 +481,6 @@
* Fires a penetrator round at the target. On hit, knockdown + stam loss + hallucinated blood splatter for a bit.
*/
/obj/effect/hallucination/sniper
duration = 15 SECONDS
/obj/effect/hallucination/sniper/Initialize(mapload, mob/living/carbon/target)
. = ..()
@@ -528,7 +525,6 @@
START_PROCESSING(SSprojectiles, bullet)
/obj/effect/hallucination/sniper_bloodsplatter
duration = 15 SECONDS
hallucination_icon = 'icons/effects/blood.dmi'
hallucination_icon_state = "mfloor1"
hallucination_color = "#A10808"
@@ -48,7 +48,6 @@
* Visually bolts a random number of airlocks around the target.
*/
/obj/effect/hallucination/bolts
duration = 15 SECONDS
/// The maximum amount of airlocks to fake bolt.
var/bolt_amount = 2
/// The duration of fake bolt in deciseconds.
@@ -431,7 +431,6 @@
* Changes the target's appearance to something else temporarily.
*/
/obj/effect/hallucination/self_delusion
duration = 15 SECONDS
/obj/effect/hallucination/self_delusion/Initialize(mapload, mob/living/carbon/target)
. = ..()
@@ -455,7 +454,6 @@
* Changes the appearance of all humans around the target.
*/
/obj/effect/hallucination/delusion
duration = 15 SECONDS
/obj/effect/hallucination/delusion/Initialize(mapload, mob/living/carbon/target, override_icon, override_icon_state)
. = ..()
@@ -42,7 +42,6 @@ GLOBAL_LIST_INIT(hallucinations, list(
* Base object for hallucinations. Contains basic behaviour to display an icon only to the target.
*/
/obj/effect/hallucination
density = FALSE
invisibility = INVISIBILITY_OBSERVER
/// Duration in deciseconds. Can also be a list with the form [lower bound, upper bound] for a random duration.
var/duration = 15 SECONDS