Compare commits

...

3 commits

Author SHA1 Message Date
Simon Brodtmann
d3db213aa0 1.5.0 2026-02-14 22:15:36 +01:00
Simon Brodtmann
4d0f63d9ee Add color luts and increase day-night-cycle from 2 to 5 minutes 2026-02-14 22:15:36 +01:00
Simon Brodtmann
d9ec041862 Increase starting area moisture 2026-02-14 22:15:18 +01:00
4 changed files with 25 additions and 4 deletions

View file

@ -1,4 +1,13 @@
---------------------------------------------------------------------------------------------------
Version: 1.5.0
Date: 14.02.2026
Changes:
- Breaking: Golden modules now increase the energy usage by 40% (was 0)
- Add moist stromatolite remnant to the generated gold stromatolites
- Add more recipes to the quality assembler
- Add color luts
- Increase day-night-cycle from 2 to 5 minutes
---------------------------------------------------------------------------------------------------
Version: 1.4.1
Date: 22.01.2026
Changes:

View file

@ -1,6 +1,6 @@
{
"name": "lignumis",
"version": "1.4.1",
"version": "1.5.0",
"title": "Lignumis",
"description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.",
"author": "cackling fiend",

View file

@ -19,7 +19,7 @@ return {
["trees"] = { richness = 3, frequency = 4, size = 3 },
["lignumis_enemy_base"] = { frequency = 0.75, size = 0.75 },
["rocks"] = {},
["starting_area_moisture"] = { size = 1, richness = 6 },
["starting_area_moisture"] = { size = 3, frequency = 6 },
["nauvis_cliff"] = { frequency = 2, size = 2 }
},
autoplace_settings = {

View file

@ -57,7 +57,7 @@ PlanetsLib:extend({
departure = { "default-rocket-a" }
},
surface_properties = {
["day-night-cycle"] = 2 * minute,
["day-night-cycle"] = 5 * minute,
["gravity"] = 4,
["pressure"] = 900,
["solar-power"] = 100
@ -65,7 +65,19 @@ PlanetsLib:extend({
asteroid_spawn_influence = 1,
asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9),
surface_render_parameters = {
clouds = effects.default_clouds_effect_properties()
clouds = effects.default_clouds_effect_properties(),
day_night_cycle_color_lookup = {
{ 0.00, Lignumis.graphics .. "color_luts/lut-noon.png" },
{ 0.10, Lignumis.graphics .. "color_luts/lut-day.png" },
{ 0.20, Lignumis.graphics .. "color_luts/lut-day.png" },
{ 0.35, Lignumis.graphics .. "color_luts/lut-sunset.png" },
{ 0.45, Lignumis.graphics .. "color_luts/lut-night.png" },
{ 0.55, Lignumis.graphics .. "color_luts/lut-night.png" },
{ 0.65, Lignumis.graphics .. "color_luts/lut-dawn.png" },
{ 0.75, Lignumis.graphics .. "color_luts/lut-day.png" },
{ 0.90, Lignumis.graphics .. "color_luts/lut-day.png" },
{ 1.00, Lignumis.graphics .. "color_luts/lut-noon.png" },
}
},
persistent_ambient_sounds = {
base_ambience = { filename = Lignumis.sound .. "ambient/forest-ambience.ogg", volume = 0.1 },