local world = starlit.world
local lib = starlit.mod.lib
world.ecology.biomes.link('starlit:steppe', {
nightTempDelta = -30;
waterTempDelta = 0;
-- W Sp Su Au W
seasonalTemp = {-50, -10, 5, 5, -20, -50};
def = {
node_top = 'starlit:greengraze', depth_top = 1;
node_filler = 'starlit:soil', depth_filler = 4;
node_riverbed = 'starlit:sand', depth_riverbed = 4;
y_min = 0;
y_max = 512;
heat_point = 10;
humidity_point = 30;
};
})
world.ecology.biomes.link('starlit:forest', {
nightTempDelta = -20;
waterTempDelta = 0;
-- W Sp Su Au W
seasonalTemp = {-40, -8, 10, 10, -14, -40};
def = {
node_top = 'starlit:greengraze', depth_top = 1;
node_filler = 'starlit:soil', depth_filler = 4;
node_riverbed = 'starlit:sand', depth_riverbed = 4;
y_min = -100;
y_max = 256;
heat_point = 13;
humidity_point = 40;
};
})
world.ecology.biomes.link('starlit:desert', {
nightTempDelta = -40;
waterTempDelta = 0;
-- W Sp Su Au W
seasonalTemp = {-10, -5, 15, 15, -5, -10};
def = {
node_top = 'starlit:sand', depth_top = 1;
node_filler = 'starlit:sand', depth_filler = 4;
node_riverbed = 'starlit:sand', depth_riverbed = 4;
y_min = 0;
y_max = 512;
heat_point = 20;
humidity_point = 10;
};
})
world.ecology.biomes.link('starlit:ocean', {
nightTempDelta = -35;
waterTempDelta = 5;
seasonalTemp = {0}; -- no seasonal variance
def = {
y_max = 3;
y_min = -512;
heat_point = 15;
humidity_point = 50;
node_top = 'starlit:sand', depth_top = 1;
node_filler = 'starlit:sand', depth_filler = 3;
};
})
minetest.register_craftitem('starlit_eco:fiber', {
description = "Plant Fiber";
groups = {fiber = 1};
inventory_image = lib.image('starlit-eco-plant-fiber.png'):shift(lib.color(0,1,0)):render();
_starlit = {
recover_vary = function(rng, ctx)
return starlit.type.fab {
element = { carbon = rng:int(0,1) };
};
end;
};
})
starlit.include 'plants'
starlit.include 'trees'