Fixes certain firework stars from not working and nighttime changes (#8299)

This commit is contained in:
tacoguy7765093
2024-04-25 09:35:35 -05:00
committed by GitHub
parent 9de4c982da
commit c360092002
2 changed files with 34 additions and 4 deletions

View File

@@ -14,4 +14,31 @@
WEATHER_OVERCAST = 15,
WEATHER_LIGHT_SNOW = 10,
WEATHER_RAIN = 5
)
)
/datum/weather/sif/fallout/temp //fixys firework stars
name = "short-term fallout"
timer_low_bound = 1
timer_high_bound = 3
transition_chances = list(
WEATHER_FALLOUT = 10,
WEATHER_RAIN = 50,
WEATHER_FOG = 35,
WEATHER_STORM = 20,
WEATHER_OVERCAST = 5
)
/datum/weather/sif/confetti //fixys firework stars
name = "confetti"
icon_state = "confetti"
transition_chances = list(
WEATHER_CLEAR = 50,
WEATHER_OVERCAST = 20,
WEATHER_CONFETTI = 5
)
observed_message = "Confetti is raining from the sky."
transition_messages = list(
"Suddenly, colorful confetti starts raining from the sky."
)
imminent_transition_message = "A rain is starting... A rain of confetti...?"