-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into upstream-mirror-4615
- Loading branch information
Showing
9 changed files
with
45 additions
and
9 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
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
author: "Kocma-san" | ||
delete-after: True | ||
changes: | ||
- rscadd: "new weather - snowfall" |
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
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
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
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,2 @@ | ||
/obj/item/pizzabox/sassysage | ||
pizza = /obj/item/food/pizza/sassysage |
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