From d45887fa7ff29af0dd4653b2b81b94017e1fefa7 Mon Sep 17 00:00:00 2001 From: SomeRandomOwl <2568378+SomeRandomOwl@users.noreply.github.com> Date: Mon, 22 May 2023 00:44:47 -0500 Subject: [PATCH] Fixes Events which are missing descriptions (#21313) * Fixes events which had missing descriptions * fix spelling error woops --- .../master_files/code/modules/events/spacevine.dm | 1 + modular_skyrat/modules/assault_operatives/code/sunbeam.dm | 1 + modular_skyrat/modules/biohazard_blob/code/mold_event.dm | 1 + modular_skyrat/modules/cme/code/cme.dm | 6 ++++++ .../modules/cortical_borer/code/cortical_borer_antag.dm | 1 + .../modules/supermatter_surge/code/supermatter_surge.dm | 1 + .../modules/wall_fungus/code/wall_fungus_event.dm | 1 + 7 files changed, 12 insertions(+) diff --git a/modular_skyrat/master_files/code/modules/events/spacevine.dm b/modular_skyrat/master_files/code/modules/events/spacevine.dm index 01f4cf7c84a..4d935471f80 100644 --- a/modular_skyrat/master_files/code/modules/events/spacevine.dm +++ b/modular_skyrat/master_files/code/modules/events/spacevine.dm @@ -47,6 +47,7 @@ max_occurrences = 1 min_players = 60 category = EVENT_CATEGORY_ENTITIES + description = "Kudzu begins to overtake the station. Might spawn man-traps." /datum/round_event/spacevine fakeable = FALSE diff --git a/modular_skyrat/modules/assault_operatives/code/sunbeam.dm b/modular_skyrat/modules/assault_operatives/code/sunbeam.dm index 1c1eac8e250..e05dea055ef 100644 --- a/modular_skyrat/modules/assault_operatives/code/sunbeam.dm +++ b/modular_skyrat/modules/assault_operatives/code/sunbeam.dm @@ -149,6 +149,7 @@ max_occurrences = 0 weight = 0 category = EVENT_CATEGORY_SPACE + description = "Forces the ICARUS weapons system to fire a sunbeam at a random location. Causing massive devistation to the station." /datum/round_event/icarus_sunbeam announce_when = 1 // Instant announcement diff --git a/modular_skyrat/modules/biohazard_blob/code/mold_event.dm b/modular_skyrat/modules/biohazard_blob/code/mold_event.dm index 4199d041c58..ac774708332 100644 --- a/modular_skyrat/modules/biohazard_blob/code/mold_event.dm +++ b/modular_skyrat/modules/biohazard_blob/code/mold_event.dm @@ -14,6 +14,7 @@ earliest_start = 30 MINUTES min_players = MOLDIES_LOWPOP_THRESHOLD category = EVENT_CATEGORY_ENTITIES + description = "A mold outbreak on the station. The mold will spread across the station if not contained." /datum/round_event/mold fakeable = FALSE diff --git a/modular_skyrat/modules/cme/code/cme.dm b/modular_skyrat/modules/cme/code/cme.dm index 45b8f14828c..972ffd1a4d8 100644 --- a/modular_skyrat/modules/cme/code/cme.dm +++ b/modular_skyrat/modules/cme/code/cme.dm @@ -19,6 +19,7 @@ max_occurrences = 0 earliest_start = 45 MINUTES category = EVENT_CATEGORY_SPACE + description = "Spawns a CME event of varied severities" /datum/round_event/cme start_when = 6 @@ -35,6 +36,7 @@ weight = 15 min_players = 75 max_occurrences = 1 + description = "Spawns a CME event of a unknown severity" /datum/round_event/cme/unknown cme_intensity = CME_UNKNOWN @@ -44,6 +46,7 @@ typepath = /datum/round_event/cme/minimal weight = 0 max_occurrences = 0 + description = "Spawns a CME event of minimum severity" /datum/round_event/cme/minimal cme_intensity = CME_MINIMAL @@ -53,6 +56,7 @@ typepath = /datum/round_event/cme/moderate weight = 0 max_occurrences = 0 + description = "Spawns a CME event of moderate severity" /datum/round_event/cme/moderate cme_intensity = CME_MODERATE @@ -63,6 +67,7 @@ weight = 0 min_players = 75 max_occurrences = 0 + description = "Spawns a CME event of extreme severity" /datum/round_event/cme/extreme cme_intensity = CME_EXTREME @@ -72,6 +77,7 @@ typepath = /datum/round_event/cme/armageddon weight = 0 max_occurrences = 0 + description = "Spawns a CME event of Arnageddon severity. WARNING this is round ending severe." /datum/round_event/cme/armageddon cme_intensity = CME_ARMAGEDDON diff --git a/modular_skyrat/modules/cortical_borer/code/cortical_borer_antag.dm b/modular_skyrat/modules/cortical_borer/code/cortical_borer_antag.dm index 2dd3addcb90..0c07c049d2b 100644 --- a/modular_skyrat/modules/cortical_borer/code/cortical_borer_antag.dm +++ b/modular_skyrat/modules/cortical_borer/code/cortical_borer_antag.dm @@ -99,6 +99,7 @@ max_occurrences = 1 //should only ever happen once dynamic_should_hijack = TRUE category = EVENT_CATEGORY_ENTITIES + description = "A cortical borer has appeared on station. It will also attempt to produce eggs, and will attempt to gather willing hosts and learn chemicals through the blood." /datum/round_event/ghost_role/cortical_borer announce_when = 400 diff --git a/modular_skyrat/modules/supermatter_surge/code/supermatter_surge.dm b/modular_skyrat/modules/supermatter_surge/code/supermatter_surge.dm index db16078cd2f..351903a3e49 100644 --- a/modular_skyrat/modules/supermatter_surge/code/supermatter_surge.dm +++ b/modular_skyrat/modules/supermatter_surge/code/supermatter_surge.dm @@ -20,6 +20,7 @@ category = EVENT_CATEGORY_ENGINEERING max_occurrences = 4 earliest_start = 30 MINUTES + description = "The supermatter will increase in power by a random amount, and announce it." /datum/round_event/supermatter_surge announce_when = 1 diff --git a/modular_skyrat/modules/wall_fungus/code/wall_fungus_event.dm b/modular_skyrat/modules/wall_fungus/code/wall_fungus_event.dm index 925e23d087f..a325868ff6e 100644 --- a/modular_skyrat/modules/wall_fungus/code/wall_fungus_event.dm +++ b/modular_skyrat/modules/wall_fungus/code/wall_fungus_event.dm @@ -4,6 +4,7 @@ category = EVENT_CATEGORY_ENGINEERING max_occurrences = 2 earliest_start = 30 MINUTES + description = "A wall fungus will infest a random wall on the station, eating away at it. If left unchecked, it will spread to other walls and eventually destroy the station." /datum/round_event/wall_fungus/announce(fake) priority_announce("Harmful fungi has been detected on the station, deal with it before it becomes a problem!", "Harmful Fungi", ANNOUNCER_FUNGI)