diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm index 4ddff922ba..e1d3eceebc 100644 --- a/code/modules/lighting/lighting_fake_sun_vr.dm +++ b/code/modules/lighting/lighting_fake_sun_vr.dm @@ -5,14 +5,59 @@ icon_state = "fakesun" var/list/possible_light_setups = list( + list( + "brightness" = 6.0, + "color" = "#abfff7" + ), + list( + "brightness" = 4.0, + "color" = "#F4EA55" + ), + list( + "brightness" = 2.5, + "color" = "#EE9AC6" + ), list( "brightness" = 1.0, + "color" = "#A3A291" + ), + list( + "brightness" = 1.0, + "color" = "#F07AD8" + ), + list( + "brightness" = 1.0, + "color" = "#61AEF3" + ), + list( + "brightness" = 0.7, "color" = "#f3932d" ), list( - "brightness" = 6.0, - "color" = "#abfff7" + "brightness" = 0.5, + "color" = "#631E8A" + ), + list( + "brightness" = 0.3, + "color" = "#253682" + ), + list( + "brightness" = 0.1, + "color" = "#27024B" + ), + list( + "brightness" = 0.1, + "color" = "#9AEAEE" + ), + list( + "brightness" = 0.1, + "color" = "#B92B00" + ), + list( + "brightness" = 0, + "color" = "#000000" ) + ) /obj/effect/fake_sun/Initialize()