From 780bc0a2830290bb76719bd577f1a6d006b7e7c1 Mon Sep 17 00:00:00 2001 From: Lucy Date: Fri, 20 Sep 2024 02:26:05 -0400 Subject: [PATCH] Makes a lot more areas radstorm-safe (#3435) * Protect abandoned maints areas from radstorms * Add quite a few radstorm safe areas --- .../weather/weather_types/radiation_storm.dm | 15 +++++++++++++++ tgstation.dme | 1 + 2 files changed, 16 insertions(+) create mode 100644 monkestation/code/datums/weather/weather_types/radiation_storm.dm diff --git a/monkestation/code/datums/weather/weather_types/radiation_storm.dm b/monkestation/code/datums/weather/weather_types/radiation_storm.dm new file mode 100644 index 000000000000..4d6d2466c9bb --- /dev/null +++ b/monkestation/code/datums/weather/weather_types/radiation_storm.dm @@ -0,0 +1,15 @@ +/datum/weather/rad_storm + protected_areas = list(/area/station/maintenance, + /area/station/ai_monitored/turret_protected/ai_upload, /area/station/ai_monitored/turret_protected/ai_upload_foyer, + /area/station/ai_monitored/turret_protected/aisat/maint, /area/station/ai_monitored/command/storage/satellite, + /area/station/ai_monitored/turret_protected/ai, /area/station/commons/storage/emergency/starboard, + /area/station/commons/storage/emergency/port, /area/shuttle, /area/station/common/cryopods, /area/station/security/prison/safe, + /area/station/security/prison/toilet, /area/icemoon/underground, /area/station/service/hydroponics/garden/abandoned, + /area/station/security/detectives_office/private_investigators_office, /area/station/security/bitden, + /area/station/service/library/abandoned, /area/station/service/theater/abandoned, /area/station/service/abandoned_gambling_den, + /area/station/service/electronic_marketing_den, /area/station/service/kitchen/abandoned, /area/station/medical/abandoned, + /area/station/science/research/abandoned, /area/station/asteroid, /area/misc/asteroid, /area/station/command/secure_bunker, + /area/station/cargo/power_station, /area/station/engineering/power_station, /area/station/science/power_station, + /area/station/science/power_station, /area/station/security/power_station, /area/station/service/power_station, + /area/station/medical/aslyum, /area/station/medical/virology/isolation, + ) diff --git a/tgstation.dme b/tgstation.dme index ae2845defcfa..57986e06964a 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -5866,6 +5866,7 @@ #include "monkestation\code\datums\status_effects\food_buffs.dm" #include "monkestation\code\datums\status_effects\debuffs\drunk.dm" #include "monkestation\code\datums\storage\storage.dm" +#include "monkestation\code\datums\weather\weather_types\radiation_storm.dm" #include "monkestation\code\datums\wires\particle_accelerator.dm" #include "monkestation\code\game\atom.dm" #include "monkestation\code\game\sound.dm"