Uueoa-Esa, Part 7 - The Wasteland (#19014)

Adds several ruins for the Wasteland.
This commit is contained in:
RustingWithYou
2024-05-06 14:56:24 +00:00
committed by GitHub
parent 83bd726573
commit f3f802b372
61 changed files with 28388 additions and 8 deletions
@@ -72,3 +72,12 @@
/singleton/state_transition/weather/hail/arctic_planet
target = /singleton/state/weather/rain/hail/arctic_planet
//desert planets
/singleton/state_transition/weather/calm/desert_planet
target = /singleton/state/weather/calm/desert_planet
/singleton/state_transition/weather/sandstorm/desert_planet
target = /singleton/state/weather/sandstorm/desert_planet
likelihood_weighting = 20
@@ -190,6 +190,21 @@
cosmetic_span_class = "warning"
cosmetic_messages = list("Drifts of ash fall from the sky.")
/singleton/state/weather/sandstorm
name = "Sandstorm"
icon_state = "sandstorm"
descriptor = "A sandstorm is raging."
cosmetic_span_class = "warning"
cosmetic_messages = list(
"The wind howls around you.",
"Swirling sand obscures your vision."
)
protected_messages = list("Stinging sand blows against $ITEM$.")
ambient_sounds = list('sound/effects/weather/sandstorm.ogg')
/singleton/state/weather/sandstorm/handle_exposure_effects(mob/living/M, obj/abstract/weather_system/weather)
to_chat(M, SPAN_DANGER("You are blasted by a gust of stinging sand!"))
M.adjustBruteLoss(rand(1,5))
//planet weathers
@@ -242,3 +257,11 @@
/singleton/state/weather/rain/hail/arctic_planet
transitions = list(/singleton/state_transition/weather/calm/arctic_planet)
//desert planet - only calm or sandstorm
/singleton/state/weather/calm/desert_planet
transitions = list(/singleton/state_transition/weather/sandstorm/desert_planet)
/singleton/state/weather/sandstorm/desert_planet
transitions = list(/singleton/state_transition/weather/calm/desert_planet)