mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
59 lines
1.4 KiB
Lua
59 lines
1.4 KiB
Lua
local mod_mcl_core = minetest.get_modpath("mcl_core")
|
|
|
|
-- Bamboo Jungle Edge
|
|
vl_biomes.register_biome({
|
|
name = "BambooJungleEdge",
|
|
node_top = "mcl_core:dirt_with_grass",
|
|
depth_top = 1,
|
|
node_filler = "mcl_core:dirt",
|
|
depth_filler = 2,
|
|
node_riverbed = "mcl_core:sand",
|
|
depth_riverbed = 2,
|
|
y_min = 1,
|
|
y_max = vl_biomes.overworld_max,
|
|
humidity_point = 92,
|
|
heat_point = 90,
|
|
_mcl_biome_type = "medium",
|
|
_mcl_water_temp = "lukewarm",
|
|
_mcl_grass_palette_index = 26,
|
|
_mcl_foliage_palette_index = 13,
|
|
_mcl_water_palette_index = 2,
|
|
_mcl_skycolor = "#77A8FF",
|
|
_ocean = {
|
|
node_top = "mcl_core:sand",
|
|
depth_top = 1,
|
|
node_filler = "mcl_core:sand",
|
|
depth_filler = 2,
|
|
},
|
|
})
|
|
|
|
mcl_mapgen_core.register_decoration({
|
|
deco_type = "schematic",
|
|
place_on = {"group:grass_block_no_snow", "mcl_core:dirt"},
|
|
sidelen = 80,
|
|
fill_ratio = 0.0045,
|
|
biomes = {"BambooJungleEdge"},
|
|
y_min = 1,
|
|
y_max = vl_biomes.overworld_max,
|
|
schematic = mod_mcl_core .. "/schematics/mcl_core_jungle_tree.mts",
|
|
flags = "place_center_x, place_center_z",
|
|
rotation = "random",
|
|
})
|
|
-- Melon
|
|
mcl_mapgen_core.register_decoration({
|
|
deco_type = "simple",
|
|
place_on = {"group:grass_block_no_snow"},
|
|
sidelen = 16,
|
|
noise_params = {
|
|
offset = -0.005,
|
|
scale = 0.006,
|
|
spread = vector.new(250, 250, 250),
|
|
seed = 333,
|
|
octaves = 3,
|
|
persist = 0.6
|
|
},
|
|
y_min = 1,
|
|
y_max = vl_biomes.overworld_max,
|
|
decoration = "mcl_farming:melon",
|
|
biomes = {"BambooJungleEdge"},
|
|
})
|