Merge pull request #3972 from Anewbe/temperate_sif

Adjusts the values of Sif's weather.
This commit is contained in:
Neerti
2017-09-29 17:26:59 -04:00
committed by GitHub

View File

@@ -133,8 +133,8 @@ var/datum/planet/sif/planet_sif = null
datum/weather/sif
name = "sif base"
temp_high = 243.15 // -20c
temp_low = 233.15 // -30c
temp_high = 283.15 // 10c
temp_low = 263.15 // -10c
/datum/weather/sif/clear
name = "clear"
@@ -158,8 +158,8 @@ datum/weather/sif
/datum/weather/sif/light_snow
name = "light snow"
icon_state = "snowfall_light"
temp_high = 238.15 // -25c
temp_low = 228.15 // -35c
temp_high = T0C // 0c
temp_low = 258.15 // -15c
light_modifier = 0.7
transition_chances = list(
WEATHER_OVERCAST = 20,
@@ -171,8 +171,8 @@ datum/weather/sif
/datum/weather/sif/snow
name = "moderate snow"
icon_state = "snowfall_med"
temp_high = 233.15 // -30c
temp_low = 223.15 // -40c
temp_high = T0C // 0c
temp_low = 243.15 // -30c
light_modifier = 0.5
transition_chances = list(
WEATHER_LIGHT_SNOW = 20,
@@ -194,8 +194,8 @@ datum/weather/sif
/datum/weather/sif/blizzard
name = "blizzard"
icon_state = "snowfall_heavy"
temp_high = 223.15 // -40c
temp_low = 203.15 // -60c
temp_high = 233.15 // -40c
temp_low = 213.15 // -60c
light_modifier = 0.3
transition_chances = list(
WEATHER_SNOW = 45,
@@ -238,8 +238,8 @@ datum/weather/sif
/datum/weather/sif/storm
name = "storm"
icon_state = "storm"
temp_high = 233.15 // -30c
temp_low = 213.15 // -50c
temp_high = 243.15 // -30c
temp_low = 233.15 // -50c
light_modifier = 0.3
transition_chances = list(
WEATHER_RAIN = 45,
@@ -261,8 +261,8 @@ datum/weather/sif
/datum/weather/sif/hail
name = "hail"
icon_state = "hail"
temp_high = 233.15 // -30c
temp_low = 213.15 // -50c
temp_high = T0C // 0c
temp_low = 243.15 // -30c
light_modifier = 0.3
transition_chances = list(
WEATHER_RAIN = 45,
@@ -297,5 +297,4 @@ datum/weather/sif
light_color = "#FF0000"
transition_chances = list(
WEATHER_BLOODMOON = 100
)
)