diff --git a/code/datums/mapgen/Cavegens/IcemoonCaves.dm b/code/datums/mapgen/Cavegens/IcemoonCaves.dm index a074e1a4006..ec13f4975a7 100644 --- a/code/datums/mapgen/Cavegens/IcemoonCaves.dm +++ b/code/datums/mapgen/Cavegens/IcemoonCaves.dm @@ -55,6 +55,7 @@ /obj/structure/flora/ash/chilly = 2, /obj/structure/flora/grass/both/style_random = 20, /obj/structure/flora/tree/pine/style_random = 2, + /obj/structure/flora/lunar_plant/snundra = 1, //OCULIS EDIT ADDITION - custom plants for terrain generator ) /// Surface snow generator variant for forested station trait, WITH FORESTSSSS @@ -71,6 +72,7 @@ /obj/structure/flora/grass/both/style_random = 50, /obj/structure/flora/bush/flowers_pp/style_random = 25, /obj/structure/flora/ash/chilly = 1, + /obj/structure/flora/lunar_plant/snundra = 1, //OCULIS EDIT ADDITION - custom plants for terrain generator ) mob_spawn_chance = 0.2 diff --git a/modular_oculis/modules/aesthetics/code/areas/mining.dm b/modular_oculis/modules/aesthetics/code/areas/mining.dm new file mode 100644 index 00000000000..c47d07e61ab --- /dev/null +++ b/modular_oculis/modules/aesthetics/code/areas/mining.dm @@ -0,0 +1,3 @@ +/area/icemoon/surface + base_lighting_alpha = 100 + base_lighting_color = "#F877C0" diff --git a/modular_oculis/modules/aesthetics/code/structures/flora.dm b/modular_oculis/modules/aesthetics/code/structures/flora.dm new file mode 100644 index 00000000000..1313d74cdfd --- /dev/null +++ b/modular_oculis/modules/aesthetics/code/structures/flora.dm @@ -0,0 +1,21 @@ +/obj/structure/flora/lunar_plant/snundra + name = "glowing plant" + desc= "Local bioluminescent flora." + icon_state = "lunar_plant" + icon = 'icons/obj/fluff/flora/xenoflora.dmi' + density = FALSE + light_color = "#c25492" + light_range = 2 + +/obj/structure/flora/lunar_plant/snundra/Initialize(mapload) + . = ..() + icon_state = "lunar_plant[rand(1,3)]" + +/obj/structure/flora/lunar_plant/snundra/style_1 + icon_state = "lunar_plant1" + +/obj/structure/flora/lunar_plant/snundra/style_2 + icon_state = "lunar_plant2" + +/obj/structure/flora/lunar_plant/snundra/style_3 + icon_state = "lunar_plant3" diff --git a/tgstation.dme b/tgstation.dme index 387c78b8de8..184cbc6502f 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -10211,6 +10211,8 @@ #include "modular_oculis\modules\abel\code\id_cards.dm" #include "modular_oculis\modules\abel\code\modsuit.dm" #include "modular_oculis\modules\admin\code\view_variables.dm" +#include "modular_oculis\modules\aesthetics\code\areas\mining.dm" +#include "modular_oculis\modules\aesthetics\code\structures\flora.dm" #include "modular_oculis\modules\antimemetics\code\amnestics.dm" #include "modular_oculis\modules\antimemetics\code\mnestics.dm" #include "modular_oculis\modules\antimemetics\code\reality_anchor.dm"