diff --git a/code/datums/weather/weather_types/fog.dm b/code/datums/weather/weather_types/fog.dm deleted file mode 100644 index d18ebfc2..00000000 --- a/code/datums/weather/weather_types/fog.dm +++ /dev/null @@ -1,25 +0,0 @@ -/datum/weather/fog - name = "Heavy fog" - desc = "Rising clouds results in low visibiliy and fuck shit piss cum." - - telegraph_message = "Rolling clouds begin to loom and engulf the station." - telegraph_duration = 300 - telegraph_overlay = "fog1" - - weather_message = "Clouds sweep up the station and engulf it within a hazy fog." - weather_duration_lower = 600 - weather_duration_upper = 1200 - weather_overlay = "fog2" - - end_message = "Passing clouds slowly fade away." - end_duration = 300 - end_overlay = "fog1" - - area_type = /area/layenia - target_trait = ZTRAIT_STATION - - probability = 100 - - barometer_predictable = TRUE - - aesthetic = TRUE diff --git a/code/datums/weather/weather_types/layenia.dm b/code/datums/weather/weather_types/layenia.dm new file mode 100644 index 00000000..25613b98 --- /dev/null +++ b/code/datums/weather/weather_types/layenia.dm @@ -0,0 +1,35 @@ +/datum/weather/layenia + name = "Layenia Weather" + desc = "A subset of weather affecting Layenia" + + telegraph_message = "Thundering clouds pass overhead, swept up by a steady wind." + telegraph_duration = 300 + telegraph_overlay = "light_snow" + telegraph_sound = 'sound/ambience/acidrain_start.ogg' + + weather_message = "Clouds storm over the station slowly..." + weather_duration_lower = 600 + weather_duration_upper = 8200 + weather_overlay = "snow_storm" + weather_sound = 'sound/ambience/acidrain_mid.ogg' + + end_message = "Sunlight arches over the station once more; the storm has passed." + end_duration = 300 + end_overlay = "light_snow" + end_sound = 'sound/ambience/acidrain_end.ogg' + + area_type = /area/layenia + target_trait = ZTRAIT_AWAY + + probability = 100 + + barometer_predictable = TRUE + + +///datum/weather/layenia/telegraph() + +///datum/weather/layenia/start() + +///datum/weather/layenia/wind_down() + +///datum/weather/layenia/end() diff --git a/icons/effects/weather_effects.dmi b/icons/effects/weather_effects.dmi index 7dda7423..a66f5032 100644 Binary files a/icons/effects/weather_effects.dmi and b/icons/effects/weather_effects.dmi differ diff --git a/tgstation.dme b/tgstation.dme index 52132484..74fd742c 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -520,7 +520,7 @@ #include "code\datums\weather\weather_types\acid_rain.dm" #include "code\datums\weather\weather_types\ash_storm.dm" #include "code\datums\weather\weather_types\floor_is_lava.dm" -#include "code\datums\weather\weather_types\fog.dm" +#include "code\datums\weather\weather_types\layenia.dm" #include "code\datums\weather\weather_types\radiation_storm.dm" #include "code\datums\weather\weather_types\snow_storm.dm" #include "code\datums\wires\_wires.dm"