More map tweaks!

Revamps the dorms and adds bathrooms

Also makes daytime longer than nighttime
This commit is contained in:
VerySoft
2022-04-09 05:14:56 -04:00
parent 7e6b168d82
commit cedc6348f7
5 changed files with 1598 additions and 646 deletions
+4 -4
View File
@@ -53,7 +53,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
var/min = 0
switch(sun_position)
if(0 to 0.475) // Night
if(0 to 0.3) // Night
low_brightness = 0.3
low_color = "#000066"
@@ -61,7 +61,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
high_color = "#66004D"
min = 0
if(0.475 to 0.50) // Twilight
if(0.3 to 0.35) // Twilight
low_brightness = 0.5
low_color = "#66004D"
@@ -69,7 +69,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
high_color = "#CC3300"
min = 0.40
if(0.50 to 0.525) // Sunrise/set
if(0.35 to 0.45) // Sunrise/set
low_brightness = 0.9
low_color = "#CC3300"
@@ -77,7 +77,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
high_color = "#FF9933"
min = 0.50
if(0.525 to 1.00) // Noon
if(0.45 to 1.00) // Noon
low_brightness = 3.0
low_color = "#DDDDDD"