From 231c5750f8d2b46759f1e69cbaef6a6c0e27e8ea Mon Sep 17 00:00:00 2001 From: VerySoft Date: Thu, 27 May 2021 04:59:09 -0400 Subject: [PATCH] Adds more fake sun colors Adds several colors and brightnesses that the lighting can be --- code/modules/lighting/lighting_fake_sun_vr.dm | 49 ++++++++++++++++++- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm index 4ddff922ba6..e1d3eceebc8 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()