-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Безопасный снегопад! Без урона и не так сильно перекрывает видимость, в отличие от снежной бури. ff в начале, потому что апстримы могут свой с похожим именем сделать... | ||
/datum/weather/snow_storm/ff_snowfall | ||
name = "snowfall" | ||
desc = "Little snowflakes are falling from the sky. So calm and peaceful..." | ||
probability = 0 | ||
|
||
telegraph_duration = 0 | ||
|
||
weather_message = span_warning("Little snowflakes are falling from the sky...") | ||
weather_overlay = "light_snow" | ||
weather_duration_lower = 1800 | ||
weather_duration_upper = 3000 | ||
|
||
end_message = span_warning("Less snowflakes fall from the sky...") | ||
end_duration = 100 | ||
|
||
cooling_lower = 1 | ||
cooling_upper = 3 | ||
|
||
var/harmfull = FALSE | ||
|
||
/datum/weather/snow_storm/ff_snowfall/weather_act(mob/living/living) | ||
if(!harmfull) | ||
return | ||
return ..() | ||
|
||
/datum/weather/snow_storm/ff_snowfall/forever | ||
probability = 0 | ||
perpetual = TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters