Merge pull request #10109 from Heroman3003/virgo4

Updates Virgo 4 lighting
This commit is contained in:
Novacat
2021-04-09 08:16:14 -04:00
committed by Chompstation Bot
parent 5283d9f78c
commit a876b82922

View File

@@ -32,35 +32,35 @@ var/datum/planet/virgo4/planet_virgo4 = null
var/min = 0 var/min = 0
switch(sun_position) switch(sun_position)
if(0 to 0.30) // Night if(0 to 0.20) // Night
low_brightness = 0.1 low_brightness = 0.3
low_color = "#000066" low_color = "#000066"
high_brightness = 0.2 high_brightness = 0.5
high_color = "#66004D" high_color = "#66004D"
min = 0 min = 0
if(0.30 to 0.40) // Twilight if(0.20 to 0.30) // Twilight
low_brightness = 0.4 low_brightness = 0.5
low_color = "#66004D" low_color = "#66004D"
high_brightness = 0.6 high_brightness = 0.9
high_color = "#CC3300" high_color = "#CC3300"
min = 0.40 min = 0.40
if(0.40 to 0.50) // Sunrise/set if(0.30 to 0.40) // Sunrise/set
low_brightness = 0.7 low_brightness = 0.9
low_color = "#CC3300" low_color = "#CC3300"
high_brightness = 0.9 high_brightness = 3.0
high_color = "#FF9933" high_color = "#FF9933"
min = 0.50 min = 0.50
if(0.50 to 1.00) // Noon if(0.40 to 1.00) // Noon
low_brightness = 1 low_brightness = 3.0
low_color = "#DDDDDD" low_color = "#DDDDDD"
high_brightness = 2 high_brightness = 10.0
high_color = "#FFFFFF" high_color = "#FFFFFF"
min = 0.70 min = 0.70