2015-06-29 19:55:56 +02:00
|
|
|
|
--
|
|
|
|
|
-- Aliases for map generator outputs
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
minetest.register_alias("mapgen_air", "air")
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.register_alias("mapgen_stone", "mcl_core:stone")
|
|
|
|
|
minetest.register_alias("mapgen_tree", "mcl_core:tree")
|
|
|
|
|
minetest.register_alias("mapgen_leaves", "mcl_core:leaves")
|
|
|
|
|
minetest.register_alias("mapgen_jungletree", "mcl_core:jungletree")
|
|
|
|
|
minetest.register_alias("mapgen_jungleleaves", "mcl_core:jungleleaves")
|
2017-03-07 22:15:58 +01:00
|
|
|
|
minetest.register_alias("mapgen_pine_tree", "mcl_core:sprucetree")
|
|
|
|
|
minetest.register_alias("mapgen_pine_needles", "mcl_core:spruceleaves")
|
2017-01-31 23:32:56 +01:00
|
|
|
|
|
|
|
|
|
minetest.register_alias("mapgen_apple", "mcl_core:leaves")
|
|
|
|
|
minetest.register_alias("mapgen_water_source", "mcl_core:water_source")
|
|
|
|
|
minetest.register_alias("mapgen_dirt", "mcl_core:dirt")
|
|
|
|
|
minetest.register_alias("mapgen_dirt_with_grass", "mcl_core:dirt_with_grass")
|
2017-04-01 06:44:02 +02:00
|
|
|
|
minetest.register_alias("mapgen_dirt_with_snow", "mcl_core:dirt_with_grass_snow")
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.register_alias("mapgen_sand", "mcl_core:sand")
|
|
|
|
|
minetest.register_alias("mapgen_gravel", "mcl_core:gravel")
|
|
|
|
|
minetest.register_alias("mapgen_clay", "mcl_core:clay")
|
2017-05-20 01:27:09 +02:00
|
|
|
|
minetest.register_alias("mapgen_lava_source", "air") -- Built-in lava generator is too unpredictable, we generate lava on our own
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.register_alias("mapgen_cobble", "mcl_core:cobble")
|
|
|
|
|
minetest.register_alias("mapgen_mossycobble", "mcl_core:mossycobble")
|
2017-03-15 03:00:20 +01:00
|
|
|
|
minetest.register_alias("mapgen_junglegrass", "mcl_flowers:fern")
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.register_alias("mapgen_stone_with_coal", "mcl_core:stone_with_coal")
|
|
|
|
|
minetest.register_alias("mapgen_stone_with_iron", "mcl_core:stone_with_iron")
|
|
|
|
|
minetest.register_alias("mapgen_desert_sand", "mcl_core:sand")
|
|
|
|
|
minetest.register_alias("mapgen_desert_stone", "mcl_core:sandstone")
|
|
|
|
|
minetest.register_alias("mapgen_sandstone", "mcl_core:sandstone")
|
|
|
|
|
minetest.register_alias("mapgen_river_water_source", "mcl_core:water_source")
|
|
|
|
|
minetest.register_alias("mapgen_snow", "mcl_core:snow")
|
|
|
|
|
minetest.register_alias("mapgen_snowblock", "mcl_core:snowblock")
|
|
|
|
|
minetest.register_alias("mapgen_ice", "mcl_core:ice")
|
2017-01-27 14:04:30 +01:00
|
|
|
|
|
2017-06-05 18:40:56 +02:00
|
|
|
|
minetest.register_alias("mapgen_stair_cobble", "mcl_stairs:stair_cobble")
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.register_alias("mapgen_sandstonebrick", "mcl_core:sandstonesmooth")
|
2017-06-05 18:40:56 +02:00
|
|
|
|
minetest.register_alias("mapgen_stair_sandstonebrick", "mcl_stairs:stair_sandstone")
|
|
|
|
|
minetest.register_alias("mapgen_stair_sandstone_block", "mcl_stairs:stair_sandstone")
|
|
|
|
|
minetest.register_alias("mapgen_stair_desert_stone", "mcl_stairs:stair_sandstone")
|
2017-01-27 14:04:30 +01:00
|
|
|
|
|
2017-06-13 13:53:34 +02:00
|
|
|
|
local mg_name = minetest.get_mapgen_setting("mg_name")
|
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
--
|
|
|
|
|
-- Ore generation
|
|
|
|
|
--
|
|
|
|
|
|
2017-03-03 17:47:22 +01:00
|
|
|
|
-- Diorite, andesite and granite
|
|
|
|
|
local specialstones = { "mcl_core:diorite", "mcl_core:andesite", "mcl_core:granite" }
|
|
|
|
|
for s=1, #specialstones do
|
|
|
|
|
local node = specialstones[s]
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "blob",
|
|
|
|
|
ore = node,
|
|
|
|
|
wherein = {"mcl_core:stone"},
|
|
|
|
|
clust_scarcity = 15*15*15,
|
|
|
|
|
clust_num_ores = 33,
|
|
|
|
|
clust_size = 5,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-03-03 17:47:22 +01:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "blob",
|
|
|
|
|
ore = node,
|
|
|
|
|
wherein = {"mcl_core:stone"},
|
2017-03-03 17:57:46 +01:00
|
|
|
|
clust_scarcity = 10*10*10,
|
|
|
|
|
clust_num_ores = 58,
|
|
|
|
|
clust_size = 7,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-03-03 17:47:22 +01:00
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-19 20:04:07 +02:00
|
|
|
|
local stonelike = {"mcl_core:stone", "mcl_core:diorite", "mcl_core:andesite", "mcl_core:granite"}
|
|
|
|
|
|
2017-05-19 19:56:37 +02:00
|
|
|
|
-- Dirt
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "blob",
|
|
|
|
|
ore = "mcl_core:dirt",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-05-19 19:56:37 +02:00
|
|
|
|
clust_scarcity = 15*15*15,
|
|
|
|
|
clust_num_ores = 33,
|
|
|
|
|
clust_size = 4,
|
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Gravel
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "blob",
|
|
|
|
|
ore = "mcl_core:gravel",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-05-19 19:56:37 +02:00
|
|
|
|
clust_scarcity = 14*14*14,
|
|
|
|
|
clust_num_ores = 33,
|
|
|
|
|
clust_size = 5,
|
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_util.layer_to_y(111),
|
|
|
|
|
})
|
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
--
|
|
|
|
|
-- Coal
|
|
|
|
|
--
|
2017-03-05 01:46:50 +01:00
|
|
|
|
|
|
|
|
|
-- Common spawn
|
2017-01-05 02:05:22 +01:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 525*3,
|
2017-01-05 02:05:22 +01:00
|
|
|
|
clust_num_ores = 5,
|
|
|
|
|
clust_size = 3,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_util.layer_to_y(50),
|
2017-01-05 02:05:22 +01:00
|
|
|
|
})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 510*3,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_num_ores = 8,
|
|
|
|
|
clust_size = 3,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_util.layer_to_y(50),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 500*3,
|
|
|
|
|
clust_num_ores = 12,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(50),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
2017-03-05 01:46:50 +01:00
|
|
|
|
|
|
|
|
|
-- Medium-rare spawn
|
2017-03-04 05:45:03 +01:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 550*3,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(51),
|
|
|
|
|
y_max = mcl_util.layer_to_y(80),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 525*3,
|
|
|
|
|
clust_num_ores = 6,
|
2017-03-04 05:45:03 +01:00
|
|
|
|
clust_size = 3,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_min = mcl_util.layer_to_y(51),
|
|
|
|
|
y_max = mcl_util.layer_to_y(80),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 500*3,
|
|
|
|
|
clust_num_ores = 8,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(51),
|
|
|
|
|
y_max = mcl_util.layer_to_y(80),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
2017-03-05 01:46:50 +01:00
|
|
|
|
|
|
|
|
|
-- Rare spawn
|
2017-03-04 05:45:03 +01:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 600*3,
|
|
|
|
|
clust_num_ores = 3,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(81),
|
|
|
|
|
y_max = mcl_util.layer_to_y(128),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 550*3,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(81),
|
|
|
|
|
y_max = mcl_util.layer_to_y(128),
|
2017-03-04 05:45:03 +01:00
|
|
|
|
})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_coal",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 500*3,
|
|
|
|
|
clust_num_ores = 5,
|
2017-03-04 05:45:03 +01:00
|
|
|
|
clust_size = 3,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_min = mcl_util.layer_to_y(81),
|
|
|
|
|
y_max = mcl_util.layer_to_y(128),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Iron
|
|
|
|
|
--
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_iron",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 830,
|
|
|
|
|
clust_num_ores = 5,
|
|
|
|
|
clust_size = 3,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_util.layer_to_y(39),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_iron",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 1660,
|
2017-03-04 07:08:07 +01:00
|
|
|
|
clust_num_ores = 4,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_size = 2,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_min = mcl_util.layer_to_y(40),
|
|
|
|
|
y_max = mcl_util.layer_to_y(63),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Gold
|
|
|
|
|
--
|
2017-03-05 00:39:22 +01:00
|
|
|
|
|
|
|
|
|
-- Common spawn
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_gold",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-04 06:49:40 +01:00
|
|
|
|
clust_scarcity = 4775,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_num_ores = 5,
|
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(30),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_gold",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-04 06:49:40 +01:00
|
|
|
|
clust_scarcity = 6560,
|
|
|
|
|
clust_num_ores = 7,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(30),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
2017-03-05 00:39:22 +01:00
|
|
|
|
-- Rare spawn
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_gold",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 13000,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(31),
|
|
|
|
|
y_max = mcl_util.layer_to_y(33),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-04 06:49:40 +01:00
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
--
|
|
|
|
|
-- Diamond
|
|
|
|
|
--
|
2017-03-05 00:39:22 +01:00
|
|
|
|
|
|
|
|
|
-- Common spawn
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_diamond",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 10000,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(12),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_diamond",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 5000,
|
|
|
|
|
clust_num_ores = 2,
|
|
|
|
|
clust_size = 2,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(12),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_diamond",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 10000,
|
|
|
|
|
clust_num_ores = 8,
|
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(12),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Rare spawn
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_diamond",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 20000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(13),
|
|
|
|
|
y_max = mcl_util.layer_to_y(15),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_diamond",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 20000,
|
|
|
|
|
clust_num_ores = 2,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(13),
|
|
|
|
|
y_max = mcl_util.layer_to_y(15),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Redstone
|
|
|
|
|
--
|
|
|
|
|
|
2017-03-05 00:39:22 +01:00
|
|
|
|
-- Common spawn
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_redstone",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-04 06:10:41 +01:00
|
|
|
|
clust_scarcity = 500,
|
|
|
|
|
clust_num_ores = 4,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_size = 3,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(13),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_redstone",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 800,
|
|
|
|
|
clust_num_ores = 7,
|
|
|
|
|
clust_size = 4,
|
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_util.layer_to_y(13),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Rare spawn
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_redstone",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 1000,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(13),
|
|
|
|
|
y_max = mcl_util.layer_to_y(15),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_redstone",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
clust_scarcity = 1600,
|
2017-03-04 06:10:41 +01:00
|
|
|
|
clust_num_ores = 7,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_size = 4,
|
2017-03-05 01:46:50 +01:00
|
|
|
|
y_min = mcl_util.layer_to_y(13),
|
|
|
|
|
y_max = mcl_util.layer_to_y(15),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Emerald
|
|
|
|
|
--
|
|
|
|
|
|
2017-03-05 00:39:22 +01:00
|
|
|
|
-- Common spawn
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_emerald",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-04 06:29:22 +01:00
|
|
|
|
clust_scarcity = 14340,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_num_ores = 1,
|
2017-03-04 06:29:22 +01:00
|
|
|
|
clust_size = 1,
|
2017-03-04 23:03:23 +01:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_max = mcl_util.layer_to_y(29),
|
|
|
|
|
})
|
|
|
|
|
-- Rare spawn
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_emerald",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 21510,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(30),
|
|
|
|
|
y_max = mcl_util.layer_to_y(32),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Lapis Lazuli
|
|
|
|
|
--
|
|
|
|
|
|
2017-03-05 00:39:22 +01:00
|
|
|
|
-- Common spawn (in the center)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_scarcity = 10000,
|
|
|
|
|
clust_num_ores = 7,
|
|
|
|
|
clust_size = 4,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
y_min = mcl_util.layer_to_y(14),
|
|
|
|
|
y_max = mcl_util.layer_to_y(16),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
2017-03-05 00:39:22 +01:00
|
|
|
|
-- Rare spawn (below center)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
2017-01-31 23:32:56 +01:00
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 12000,
|
|
|
|
|
clust_num_ores = 6,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(10),
|
|
|
|
|
y_max = mcl_util.layer_to_y(13),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 14000,
|
2015-06-29 19:55:56 +02:00
|
|
|
|
clust_num_ores = 5,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(6),
|
|
|
|
|
y_max = mcl_util.layer_to_y(9),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 16000,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(2),
|
|
|
|
|
y_max = mcl_util.layer_to_y(5),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 18000,
|
|
|
|
|
clust_num_ores = 3,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(0),
|
|
|
|
|
y_max = mcl_util.layer_to_y(2),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Rare spawn (above center)
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 12000,
|
|
|
|
|
clust_num_ores = 6,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(17),
|
|
|
|
|
y_max = mcl_util.layer_to_y(20),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 14000,
|
|
|
|
|
clust_num_ores = 5,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(21),
|
|
|
|
|
y_max = mcl_util.layer_to_y(24),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 16000,
|
|
|
|
|
clust_num_ores = 4,
|
|
|
|
|
clust_size = 3,
|
|
|
|
|
y_min = mcl_util.layer_to_y(25),
|
|
|
|
|
y_max = mcl_util.layer_to_y(28),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 18000,
|
|
|
|
|
clust_num_ores = 3,
|
|
|
|
|
clust_size = 2,
|
|
|
|
|
y_min = mcl_util.layer_to_y(29),
|
|
|
|
|
y_max = mcl_util.layer_to_y(32),
|
|
|
|
|
})
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:stone_with_lapis",
|
2017-05-19 20:04:07 +02:00
|
|
|
|
wherein = stonelike,
|
2017-03-05 00:39:22 +01:00
|
|
|
|
clust_scarcity = 32000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(31),
|
|
|
|
|
y_max = mcl_util.layer_to_y(32),
|
2015-06-29 19:55:56 +02:00
|
|
|
|
})
|
|
|
|
|
|
2017-06-13 13:53:34 +02:00
|
|
|
|
if mg_name ~= "flat" then
|
|
|
|
|
|
2017-05-19 22:26:39 +02:00
|
|
|
|
-- Water and lava springs (single blocks of lava/water source)
|
|
|
|
|
-- Water appears at nearly every height, but not near the bottom
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:water_source",
|
|
|
|
|
wherein = {"mcl_core:stone", "mcl_core:andesite", "mcl_core:diorite", "mcl_core:granite", "mcl_core:dirt"},
|
|
|
|
|
clust_scarcity = 9000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(5),
|
|
|
|
|
y_max = mcl_util.layer_to_y(128),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Lava springs are rather common at -31 and below
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:lava_source",
|
|
|
|
|
wherein = stonelike,
|
2017-05-20 01:27:09 +02:00
|
|
|
|
clust_scarcity = 2000,
|
2017-05-19 22:26:39 +02:00
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(1),
|
|
|
|
|
y_max = mcl_util.layer_to_y(10),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:lava_source",
|
|
|
|
|
wherein = stonelike,
|
|
|
|
|
clust_scarcity = 9000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(11),
|
|
|
|
|
y_max = mcl_util.layer_to_y(31),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Lava springs will become gradually rarer with increasing height
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:lava_source",
|
|
|
|
|
wherein = stonelike,
|
|
|
|
|
clust_scarcity = 32000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(32),
|
|
|
|
|
y_max = mcl_util.layer_to_y(47),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:lava_source",
|
|
|
|
|
wherein = stonelike,
|
|
|
|
|
clust_scarcity = 72000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(48),
|
|
|
|
|
y_max = mcl_util.layer_to_y(61),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Lava may even appear above surface, but this is very rare
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_core:lava_source",
|
|
|
|
|
wherein = stonelike,
|
|
|
|
|
clust_scarcity = 96000,
|
|
|
|
|
clust_num_ores = 1,
|
|
|
|
|
clust_size = 1,
|
|
|
|
|
y_min = mcl_util.layer_to_y(62),
|
|
|
|
|
y_max = mcl_util.layer_to_y(127),
|
|
|
|
|
})
|
|
|
|
|
|
2017-06-13 13:53:34 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-07-05 23:48:48 +02:00
|
|
|
|
-- Rarely replace stone with stone monster eggs
|
2017-08-02 01:34:12 +02:00
|
|
|
|
local monster_egg_scarcity
|
2017-07-05 23:48:48 +02:00
|
|
|
|
if mg_name == "v6" then
|
|
|
|
|
monster_egg_scarcity = 28 * 28 * 28
|
|
|
|
|
else
|
|
|
|
|
monster_egg_scarcity = 22 * 22 * 22
|
|
|
|
|
end
|
|
|
|
|
minetest.register_ore({
|
|
|
|
|
ore_type = "scatter",
|
|
|
|
|
ore = "mcl_monster_eggs:monster_egg_stone",
|
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
|
clust_scarcity = monster_egg_scarcity,
|
|
|
|
|
clust_num_ores = 3,
|
|
|
|
|
clust_size = 2,
|
2017-08-17 23:58:35 +02:00
|
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-07-05 23:48:48 +02:00
|
|
|
|
-- TODO: Limit by biome
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2017-02-17 07:14:54 +01:00
|
|
|
|
local function register_mgv6_decorations()
|
|
|
|
|
|
2017-08-21 04:14:28 +02:00
|
|
|
|
-- Cacti
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"group:sand"},
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = -0.012,
|
|
|
|
|
scale = 0.024,
|
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
|
seed = 257,
|
|
|
|
|
octaves = 3,
|
|
|
|
|
persist = 0.6
|
|
|
|
|
},
|
|
|
|
|
y_min = 4,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
|
|
|
|
decoration = "mcl_core:cactus",
|
|
|
|
|
height = 1,
|
|
|
|
|
height_max = 3,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Sugar canes
|
|
|
|
|
minetest.register_decoration({
|
2017-08-22 15:57:19 +02:00
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"mcl_core:dirt", "mcl_core:coarse_dirt", "mcl_core:dirt_with_grass", "group:sand", "mcl_core:podzol", "mcl_core:reeds"},
|
2017-08-21 04:14:28 +02:00
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
2017-08-22 15:57:19 +02:00
|
|
|
|
offset = 0.3,
|
2017-08-21 04:14:28 +02:00
|
|
|
|
scale = 0.7,
|
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
|
seed = 2,
|
|
|
|
|
octaves = 3,
|
|
|
|
|
persist = 0.7
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
2017-08-22 15:57:19 +02:00
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-08-21 04:14:28 +02:00
|
|
|
|
decoration = "mcl_core:reeds",
|
|
|
|
|
height = 1,
|
|
|
|
|
height_max = 3,
|
|
|
|
|
spawn_by = { "mcl_core:water_source", "group:frosted_ice" },
|
|
|
|
|
num_spawn_by = 1,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Doubletall grass
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "schematic",
|
|
|
|
|
schematic = {
|
|
|
|
|
size = { x=1, y=3, z=1 },
|
|
|
|
|
data = {
|
|
|
|
|
{ name = "air", prob = 0 },
|
2017-08-22 17:40:54 +02:00
|
|
|
|
{ name = "mcl_flowers:double_grass", param1 = 255, },
|
|
|
|
|
{ name = "mcl_flowers:double_grass_top", param1 = 255, },
|
2017-08-21 04:14:28 +02:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
replacements = {
|
|
|
|
|
["mcl_flowers:tallgrass"] = "mcl_flowers:double_grass"
|
|
|
|
|
},
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = -0.01,
|
|
|
|
|
scale = 0.03,
|
|
|
|
|
spread = {x = 300, y = 300, z = 300},
|
|
|
|
|
seed = 420,
|
|
|
|
|
octaves = 2,
|
|
|
|
|
persist = 0.6,
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Large ferns
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "schematic",
|
|
|
|
|
schematic = {
|
|
|
|
|
size = { x=1, y=3, z=1 },
|
|
|
|
|
data = {
|
|
|
|
|
{ name = "air", prob = 0 },
|
|
|
|
|
{ name = "mcl_flowers:double_fern", param1=255, },
|
|
|
|
|
{ name = "mcl_flowers:double_fern_top", param1=255, },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
replacements = {
|
|
|
|
|
["mcl_flowers:fern"] = "mcl_flowers:double_fern"
|
|
|
|
|
},
|
|
|
|
|
-- v6 hack: This makes sure large ferns only appear in jungles
|
|
|
|
|
spawn_by = { "mcl_core:jungletree", "mcl_flowers:fern" },
|
|
|
|
|
num_spawn_by = 1,
|
|
|
|
|
place_on = {"mcl_core:podzol"},
|
|
|
|
|
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = 0,
|
|
|
|
|
scale = 0.01,
|
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
|
seed = 333,
|
|
|
|
|
octaves = 2,
|
|
|
|
|
persist = 0.66,
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
|
|
|
|
})
|
|
|
|
|
|
2017-03-15 05:03:43 +01:00
|
|
|
|
-- Large flowers
|
|
|
|
|
local register_large_flower = function(name, seed, offset)
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "schematic",
|
|
|
|
|
schematic = {
|
|
|
|
|
size = { x=1, y=3, z=1 },
|
|
|
|
|
data = {
|
|
|
|
|
{ name = "air", prob = 0 },
|
|
|
|
|
{ name = "mcl_flowers:"..name, param1=255, },
|
|
|
|
|
{ name = "mcl_flowers:"..name.."_top", param1=255, },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = offset,
|
|
|
|
|
scale = 0.01,
|
|
|
|
|
spread = {x = 300, y = 300, z = 300},
|
|
|
|
|
seed = seed,
|
|
|
|
|
octaves = 5,
|
|
|
|
|
persist = 0.62,
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.overworld_max,
|
2017-03-15 05:03:43 +01:00
|
|
|
|
flags = "",
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
register_large_flower("rose_bush", 9350, -0.008)
|
|
|
|
|
register_large_flower("peony", 10450, -0.008)
|
|
|
|
|
register_large_flower("lilac", 10600, -0.007)
|
|
|
|
|
register_large_flower("sunflower", 2940, -0.005)
|
2017-03-15 03:55:08 +01:00
|
|
|
|
|
2017-08-22 17:40:54 +02:00
|
|
|
|
-- Lily pad
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "schematic",
|
|
|
|
|
schematic = {
|
|
|
|
|
size = { x=1, y=3, z=1 },
|
|
|
|
|
data = {
|
|
|
|
|
{ name = "mcl_core:water_source", prob = 0 },
|
|
|
|
|
{ name = "mcl_core:water_source" },
|
|
|
|
|
{ name = "mcl_flowers:waterlily", param1 = 255 },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
place_on = "mcl_core:dirt",
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = -0.12,
|
|
|
|
|
scale = 0.3,
|
|
|
|
|
spread = {x = 200, y = 200, z = 200},
|
|
|
|
|
seed = 503,
|
|
|
|
|
octaves = 6,
|
|
|
|
|
persist = 0.7,
|
|
|
|
|
},
|
|
|
|
|
y_min = 0,
|
|
|
|
|
y_max = 0,
|
|
|
|
|
rotation = "random",
|
|
|
|
|
})
|
|
|
|
|
|
2017-08-21 04:14:28 +02:00
|
|
|
|
-- Pumpkin
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "schematic",
|
|
|
|
|
schematic = {
|
|
|
|
|
size = { x=1, y=2, z=1 },
|
|
|
|
|
data = {
|
|
|
|
|
{ name = "air", prob = 0 },
|
2017-08-22 17:40:54 +02:00
|
|
|
|
{ name = "mcl_farming:pumpkin_face" },
|
2017-08-21 04:14:28 +02:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = -0.008,
|
|
|
|
|
scale = 0.00666,
|
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
|
seed = 666,
|
|
|
|
|
octaves = 6,
|
|
|
|
|
persist = 0.666
|
|
|
|
|
},
|
|
|
|
|
y_min = 3,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.overworld_max,
|
2017-08-21 04:14:28 +02:00
|
|
|
|
rotation = "random",
|
|
|
|
|
})
|
|
|
|
|
|
2017-03-21 02:53:21 +01:00
|
|
|
|
-- Tall grass
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
sidelen = 8,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = 0.01,
|
|
|
|
|
scale = 0.3,
|
|
|
|
|
spread = {x = 500, y = 500, z = 500},
|
|
|
|
|
seed = 420,
|
|
|
|
|
octaves = 2,
|
|
|
|
|
persist = 0.6
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.overworld_max,
|
2017-03-21 02:53:21 +01:00
|
|
|
|
decoration = "mcl_flowers:tallgrass",
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Add a small amount of tall grass everywhere to avoid areas completely empty devoid of tall grass
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
sidelen = 8,
|
|
|
|
|
fill_ratio = 0.001,
|
|
|
|
|
y_min = 1,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.overworld_max,
|
2017-03-21 02:53:21 +01:00
|
|
|
|
decoration = "mcl_flowers:tallgrass",
|
|
|
|
|
})
|
|
|
|
|
|
2017-08-21 04:14:28 +02:00
|
|
|
|
local mushrooms = {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}
|
|
|
|
|
local mseeds = { 7133, 8244 }
|
|
|
|
|
for m=1, #mushrooms do
|
|
|
|
|
-- Mushrooms next to trees
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass", "mcl_core:dirt", "mcl_core:podzol", "mcl_core:mycelium", "mcl_core:stone", "mcl_core:andesite", "mcl_core:diorite", "mcl_core:granite"},
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
2017-08-21 04:50:45 +02:00
|
|
|
|
offset = 0.04,
|
2017-08-21 04:14:28 +02:00
|
|
|
|
scale = 0.04,
|
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
|
seed = mseeds[m],
|
|
|
|
|
octaves = 3,
|
|
|
|
|
persist = 0.6
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
|
|
|
|
decoration = mushrooms[m],
|
2017-09-02 19:46:56 +02:00
|
|
|
|
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree", },
|
2017-08-21 04:14:28 +02:00
|
|
|
|
num_spawn_by = 1,
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
2017-02-17 07:14:54 +01:00
|
|
|
|
-- Dead bushes
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
2017-08-21 04:14:28 +02:00
|
|
|
|
place_on = {"group:sand", "mcl_core:podzol", "mcl_core:dirt", "mcl_core:coarse_dirt", "group:hardened_clay"},
|
2017-02-17 07:14:54 +01:00
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
|
|
|
|
offset = 0,
|
|
|
|
|
scale = 0.035,
|
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
|
seed = 1972,
|
|
|
|
|
octaves = 3,
|
|
|
|
|
persist = 0.6
|
|
|
|
|
},
|
2017-03-10 05:29:00 +01:00
|
|
|
|
y_min = 4,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-02-17 07:14:54 +01:00
|
|
|
|
decoration = "mcl_core:deadbush",
|
|
|
|
|
})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
|
2017-04-01 03:00:35 +02:00
|
|
|
|
local function register_mgv6_flower(name, seed, offset)
|
|
|
|
|
if offset == nil then
|
|
|
|
|
offset = 0
|
|
|
|
|
end
|
2017-03-15 04:25:31 +01:00
|
|
|
|
minetest.register_decoration({
|
|
|
|
|
deco_type = "simple",
|
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
|
sidelen = 16,
|
|
|
|
|
noise_params = {
|
2017-04-01 03:00:35 +02:00
|
|
|
|
offset = offset,
|
2017-03-15 04:25:31 +01:00
|
|
|
|
scale = 0.006,
|
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
|
seed = seed,
|
|
|
|
|
octaves = 3,
|
|
|
|
|
persist = 0.6
|
|
|
|
|
},
|
|
|
|
|
y_min = 1,
|
2017-08-21 04:23:24 +02:00
|
|
|
|
y_max = mcl_vars.mg_overworld_max,
|
2017-03-15 04:25:31 +01:00
|
|
|
|
decoration = "mcl_flowers:"..name,
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
register_mgv6_flower("tulip_red", 436)
|
|
|
|
|
register_mgv6_flower("tulip_orange", 536)
|
|
|
|
|
register_mgv6_flower("tulip_pink", 636)
|
|
|
|
|
register_mgv6_flower("tulip_white", 736)
|
|
|
|
|
register_mgv6_flower("azure_bluet", 800)
|
|
|
|
|
register_mgv6_flower("dandelion", 8)
|
2017-04-01 03:00:35 +02:00
|
|
|
|
--[[ Allium and blue orchid are made slightly rarer in v6
|
|
|
|
|
to compensate for missing biomes. In Minecraft, those flowers only appear in special biomes. ]]
|
|
|
|
|
register_mgv6_flower("allium", 0, -0.001)
|
|
|
|
|
register_mgv6_flower("blue_orchid", 64500, -0.001)
|
2017-03-15 04:25:31 +01:00
|
|
|
|
register_mgv6_flower("oxeye_daisy", 3490)
|
|
|
|
|
register_mgv6_flower("poppy", 9439)
|
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-04-01 17:01:15 +02:00
|
|
|
|
-- Apply mapgen-specific mapgen code
|
|
|
|
|
if mg_name == "v6" then
|
|
|
|
|
register_mgv6_decorations()
|
2017-08-18 21:29:25 +02:00
|
|
|
|
elseif mg_name == "flat" then
|
2017-07-02 22:35:46 +02:00
|
|
|
|
local classic = minetest.get_mapgen_setting("mcl_superflat_classic")
|
|
|
|
|
if classic == nil then
|
|
|
|
|
classic = minetest.settings:get_bool("mcl_superflat_classic")
|
|
|
|
|
minetest.set_mapgen_setting("mcl_superflat_classic", "true", true)
|
|
|
|
|
end
|
|
|
|
|
if classic ~= "false" then
|
|
|
|
|
-- Enforce superflat-like mapgen: No hills, lakes or caves
|
|
|
|
|
minetest.set_mapgen_setting("mg_flags", "nocaves,nodungeons,nodecorations,light", true)
|
|
|
|
|
minetest.set_mapgen_setting("mgflat_spflags", "nolakes,nohills", true)
|
|
|
|
|
else
|
|
|
|
|
-- If superflat mode is disabled, mapgen is way more liberal
|
|
|
|
|
minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,nodecorations,light", true)
|
|
|
|
|
end
|
2017-04-01 17:01:15 +02:00
|
|
|
|
else
|
|
|
|
|
minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,decorations,light", true)
|
|
|
|
|
end
|
|
|
|
|
|
2017-05-09 16:30:30 +02:00
|
|
|
|
-- Perlin noise objects
|
2017-05-27 03:19:19 +02:00
|
|
|
|
local perlin_structures
|
2017-05-27 03:50:35 +02:00
|
|
|
|
local perlin_vines, perlin_vines_fine, perlin_vines_upwards, perlin_vines_length, perlin_vines_density
|
2017-05-09 16:30:30 +02:00
|
|
|
|
|
|
|
|
|
-- Generate clay and structures
|
|
|
|
|
-- TODO: Try to use more efficient structure generating code
|
2015-06-29 19:55:56 +02:00
|
|
|
|
minetest.register_on_generated(function(minp, maxp, seed)
|
2017-05-20 06:47:42 +02:00
|
|
|
|
local chunk_has_desert_well = false
|
|
|
|
|
local chunk_has_desert_temple = false
|
2017-05-20 07:59:10 +02:00
|
|
|
|
local chunk_has_igloo = false
|
2015-06-29 19:55:56 +02:00
|
|
|
|
if maxp.y >= 2 and minp.y <= 0 then
|
|
|
|
|
-- Generate clay
|
|
|
|
|
-- Assume X and Z lengths are equal
|
|
|
|
|
local divlen = 4
|
|
|
|
|
local divs = (maxp.x-minp.x)/divlen+1;
|
|
|
|
|
for divx=0+1,divs-1-1 do
|
|
|
|
|
for divz=0+1,divs-1-1 do
|
|
|
|
|
local cx = minp.x + math.floor((divx+0.5)*divlen)
|
|
|
|
|
local cz = minp.z + math.floor((divz+0.5)*divlen)
|
2017-01-31 23:32:56 +01:00
|
|
|
|
if minetest.get_node({x=cx,y=1,z=cz}).name == "mcl_core:water_source" and
|
2017-08-31 04:10:38 +02:00
|
|
|
|
minetest.get_item_group(minetest.get_node({x=cx,y=0,z=cz}).name, "sand") == 1 then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
local is_shallow = true
|
|
|
|
|
local num_water_around = 0
|
2017-01-31 23:32:56 +01:00
|
|
|
|
if minetest.get_node({x=cx-divlen*2,y=1,z=cz+0}).name == "mcl_core:water_source" then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
num_water_around = num_water_around + 1 end
|
2017-01-31 23:32:56 +01:00
|
|
|
|
if minetest.get_node({x=cx+divlen*2,y=1,z=cz+0}).name == "mcl_core:water_source" then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
num_water_around = num_water_around + 1 end
|
2017-01-31 23:32:56 +01:00
|
|
|
|
if minetest.get_node({x=cx+0,y=1,z=cz-divlen*2}).name == "mcl_core:water_source" then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
num_water_around = num_water_around + 1 end
|
2017-01-31 23:32:56 +01:00
|
|
|
|
if minetest.get_node({x=cx+0,y=1,z=cz+divlen*2}).name == "mcl_core:water_source" then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
num_water_around = num_water_around + 1 end
|
|
|
|
|
if num_water_around >= 2 then
|
|
|
|
|
is_shallow = false
|
2017-08-21 02:25:22 +02:00
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
|
if is_shallow then
|
|
|
|
|
for x1=-divlen,divlen do
|
|
|
|
|
for z1=-divlen,divlen do
|
2017-08-31 04:10:38 +02:00
|
|
|
|
if minetest.get_item_group(minetest.get_node({x=cx+x1,y=0,z=cz+z1}).name, "sand") == 1 then
|
2017-01-31 23:32:56 +01:00
|
|
|
|
minetest.set_node({x=cx+x1,y=0,z=cz+z1}, {name="mcl_core:clay"})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-04-01 17:50:28 +02:00
|
|
|
|
end
|
|
|
|
|
if maxp.y >= 3 and minp.y <= 64 then
|
|
|
|
|
-- Generate desert temples
|
2017-05-27 03:19:19 +02:00
|
|
|
|
perlin_structures = perlin_structures or minetest.get_perlin(329, 3, 0.6, 100)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
-- Assume X and Z lengths are equal
|
|
|
|
|
local divlen = 5
|
|
|
|
|
local divs = (maxp.x-minp.x)/divlen+1;
|
|
|
|
|
for divx=0,divs-1 do
|
|
|
|
|
for divz=0,divs-1 do
|
|
|
|
|
local x0 = minp.x + math.floor((divx+0)*divlen)
|
|
|
|
|
local z0 = minp.z + math.floor((divz+0)*divlen)
|
|
|
|
|
local x1 = minp.x + math.floor((divx+1)*divlen)
|
|
|
|
|
local z1 = minp.z + math.floor((divz+1)*divlen)
|
2017-04-01 17:50:28 +02:00
|
|
|
|
-- Determine amount from perlin noise
|
2017-05-27 03:19:19 +02:00
|
|
|
|
local amount = math.floor(perlin_structures:get2d({x=x0, y=z0}) * 9)
|
2017-04-01 17:50:28 +02:00
|
|
|
|
-- Find random positions based on this random
|
2015-06-29 19:55:56 +02:00
|
|
|
|
local pr = PseudoRandom(seed+1)
|
2017-04-01 17:50:28 +02:00
|
|
|
|
for i=0, amount do
|
2015-06-29 19:55:56 +02:00
|
|
|
|
local x = pr:next(x0, x1)
|
|
|
|
|
local z = pr:next(z0, z1)
|
2017-04-01 17:50:28 +02:00
|
|
|
|
-- Find ground level
|
2015-06-29 19:55:56 +02:00
|
|
|
|
local ground_y = nil
|
2017-04-01 17:50:28 +02:00
|
|
|
|
for y=64,3,-1 do
|
2017-01-11 18:21:46 +01:00
|
|
|
|
if minetest.get_node({x=x,y=y,z=z}).name ~= "air" then
|
2015-06-29 19:55:56 +02:00
|
|
|
|
ground_y = y
|
|
|
|
|
break
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-08-21 02:25:22 +02:00
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
if ground_y then
|
|
|
|
|
local p = {x=x,y=ground_y+1,z=z}
|
2017-01-11 18:21:46 +01:00
|
|
|
|
local nn = minetest.get_node(p).name
|
2015-06-29 19:55:56 +02:00
|
|
|
|
-- Check if the node can be replaced
|
|
|
|
|
if minetest.registered_nodes[nn] and
|
|
|
|
|
minetest.registered_nodes[nn].buildable_to then
|
2017-01-11 18:21:46 +01:00
|
|
|
|
nn = minetest.get_node({x=x,y=ground_y,z=z}).name
|
2017-05-20 06:47:42 +02:00
|
|
|
|
local struct = false
|
|
|
|
|
-- Desert temples and desert wells
|
|
|
|
|
if nn == "mcl_core:sand" or (nn == "mcl_core:sandstone") then
|
|
|
|
|
if not chunk_has_desert_temple and not chunk_has_desert_well then
|
2017-04-01 17:50:28 +02:00
|
|
|
|
-- Spawn desert temple
|
2017-05-20 06:47:42 +02:00
|
|
|
|
-- TODO: Check surface
|
|
|
|
|
if math.random(1,12000) == 1 then
|
|
|
|
|
mcl_structures.call_struct(p, "desert_temple")
|
|
|
|
|
chunk_has_desert_temple = true
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
if not chunk_has_desert_temple and not chunk_has_desert_well then
|
|
|
|
|
-- Minecraft probability: 1/1000 per Minecraft chunk (16×16).
|
|
|
|
|
-- We adjust the probability to Minetest's MapBlock size.
|
|
|
|
|
local desert_well_prob = 1000 * (((maxp.x-minp.x+1)*(maxp.z-minp.z+1)) / 256)
|
|
|
|
|
-- Spawn desert well
|
|
|
|
|
if math.random(1, desert_well_prob) == 1 then
|
|
|
|
|
-- Check surface
|
|
|
|
|
local surface = minetest.find_nodes_in_area({x=p.x,y=p.y-1,z=p.z}, {x=p.x+5, y=p.y-1, z=p.z+5}, "mcl_core:sand")
|
|
|
|
|
if #surface >= 25 then
|
|
|
|
|
mcl_structures.call_struct(p, "desert_well")
|
|
|
|
|
chunk_has_desert_well = true
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-07-04 04:56:02 +02:00
|
|
|
|
end
|
2017-05-24 04:35:59 +02:00
|
|
|
|
elseif not chunk_has_igloo and (nn == "mcl_core:snowblock" or nn == "mcl_core:snow" or nn == "mcl_core:dirt_with_grass_snow") then
|
2017-05-20 07:59:10 +02:00
|
|
|
|
if math.random(1, 4400) == 1 then
|
|
|
|
|
-- Check surface
|
2017-05-24 04:35:59 +02:00
|
|
|
|
local floor = {x=p.x+9, y=p.y-1, z=p.z+9}
|
|
|
|
|
local surface = minetest.find_nodes_in_area({x=p.x,y=p.y-1,z=p.z}, floor, "mcl_core:snowblock")
|
|
|
|
|
local surface2 = minetest.find_nodes_in_area({x=p.x,y=p.y-1,z=p.z}, floor, "mcl_core:dirt_with_grass_snow")
|
|
|
|
|
if #surface + #surface2 >= 63 then
|
2017-05-20 07:59:10 +02:00
|
|
|
|
mcl_structures.call_struct(p, "igloo")
|
|
|
|
|
chunk_has_igloo = true
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-08-21 02:25:22 +02:00
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
2017-02-23 00:15:47 +01:00
|
|
|
|
-- Generate bedrock layer or layers
|
2017-08-16 16:22:28 +02:00
|
|
|
|
local GEN_MAX = mcl_vars.mg_lava_overworld_max or mcl_vars.mg_bedrock_overworld_max
|
2017-02-20 05:56:44 +01:00
|
|
|
|
|
2017-05-09 16:30:30 +02:00
|
|
|
|
-- Buffer for LuaVoxelManip
|
|
|
|
|
local lvm_buffer = {}
|
2017-02-20 06:10:49 +01:00
|
|
|
|
|
2017-04-01 17:01:15 +02:00
|
|
|
|
|
2017-08-15 20:08:41 +02:00
|
|
|
|
-- Generate cocoas and vines at jungle trees within the bounding box
|
|
|
|
|
local function generate_jungle_tree_decorations(minp, maxp)
|
2017-08-21 02:28:15 +02:00
|
|
|
|
if maxp.y < 0 then
|
|
|
|
|
return
|
|
|
|
|
end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
local pos, treepos, dir
|
|
|
|
|
local jungletree = minetest.find_nodes_in_area(minp, maxp, "mcl_core:jungletree")
|
|
|
|
|
local jungleleaves = minetest.find_nodes_in_area(minp, maxp, "mcl_core:jungleleaves")
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
-- Pass 1: Generate cocoas
|
|
|
|
|
for n = 1, #jungletree do
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
pos = jungletree[n]
|
|
|
|
|
treepos = table.copy(pos)
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
if minetest.find_node_near(pos, 1, {"mcl_core:jungleleaves"}) then
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
dir = math.random(1, 40)
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
if dir == 1 then
|
|
|
|
|
pos.z = pos.z + 1
|
|
|
|
|
elseif dir == 2 then
|
|
|
|
|
pos.z = pos.z - 1
|
|
|
|
|
elseif dir == 3 then
|
|
|
|
|
pos.x = pos.x + 1
|
|
|
|
|
elseif dir == 4 then
|
|
|
|
|
pos.x = pos.x -1
|
|
|
|
|
end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
local nn = minetest.get_node(pos).name
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
if dir < 5
|
|
|
|
|
and nn == "air"
|
|
|
|
|
and minetest.get_node_light(pos) > 12 then
|
|
|
|
|
minetest.swap_node(pos, {
|
|
|
|
|
name = "mcl_cocoas:cocoa_" .. tostring(math.random(1, 3)),
|
|
|
|
|
param2 = minetest.dir_to_facedir(vector.subtract(treepos, pos))
|
|
|
|
|
})
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
2017-08-21 02:28:15 +02:00
|
|
|
|
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
2017-08-21 02:28:15 +02:00
|
|
|
|
end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
-- Pass 2: Generate vines at jungle wood and jungle leaves
|
|
|
|
|
perlin_vines = perlin_vines or minetest.get_perlin(555, 4, 0.6, 500)
|
|
|
|
|
perlin_vines_fine = perlin_vines_fine or minetest.get_perlin(43000, 3, 0.6, 1)
|
|
|
|
|
perlin_vines_length = perlin_vines_length or minetest.get_perlin(435, 4, 0.6, 75)
|
|
|
|
|
perlin_vines_upwards = perlin_vines_upwards or minetest.get_perlin(436, 3, 0.6, 10)
|
|
|
|
|
perlin_vines_density = perlin_vines_density or minetest.get_perlin(436, 3, 0.6, 500)
|
|
|
|
|
local junglething
|
|
|
|
|
for i=1, 2 do
|
|
|
|
|
if i==1 then junglething = jungletree
|
|
|
|
|
else junglething = jungleleaves end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
for n = 1, #junglething do
|
|
|
|
|
pos = junglething[n]
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
treepos = table.copy(pos)
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
local dirs = {
|
|
|
|
|
{x=1,y=0,z=0},
|
|
|
|
|
{x=-1,y=0,z=0},
|
|
|
|
|
{x=0,y=0,z=1},
|
|
|
|
|
{x=0,y=0,z=-1},
|
|
|
|
|
}
|
2017-05-27 03:19:19 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
for d = 1, #dirs do
|
|
|
|
|
local pos = vector.add(pos, dirs[d])
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-21 02:28:15 +02:00
|
|
|
|
local nn = minetest.get_node(pos).name
|
|
|
|
|
|
|
|
|
|
if perlin_vines:get2d(pos) > 0.1 and perlin_vines_fine:get3d(pos) > math.max(0.3333, perlin_vines_density:get2d(pos)) and nn == "air" then
|
|
|
|
|
|
|
|
|
|
local newnode = {
|
|
|
|
|
name = "mcl_core:vine",
|
|
|
|
|
param2 = minetest.dir_to_wallmounted(vector.subtract(treepos, pos))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-- Determine growth direction
|
|
|
|
|
local grow_upwards = false
|
|
|
|
|
-- Only possible on the wood, not on the leaves
|
|
|
|
|
if i == 1 then
|
|
|
|
|
grow_upwards = perlin_vines_upwards:get3d(pos) > 0.8
|
|
|
|
|
end
|
|
|
|
|
if grow_upwards then
|
|
|
|
|
-- Grow vines up 1-4 nodes, even through jungleleaves.
|
|
|
|
|
-- This may give climbing access all the way to the top of the tree :-)
|
|
|
|
|
-- But this will be fairly rare.
|
|
|
|
|
local length = math.ceil(math.abs(perlin_vines_length:get3d(pos)) * 4)
|
|
|
|
|
for l=0, length-1 do
|
|
|
|
|
local tnn = minetest.get_node(treepos).name
|
|
|
|
|
local nn = minetest.get_node(pos).name
|
|
|
|
|
if (nn == "air" or nn == "mcl_core:jungleleaves") and mcl_core.supports_vines(tnn) then
|
|
|
|
|
minetest.set_node(pos, newnode)
|
|
|
|
|
else
|
|
|
|
|
break
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
2017-08-21 02:28:15 +02:00
|
|
|
|
pos.y = pos.y + 1
|
|
|
|
|
treepos.y = treepos.y + 1
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
-- Grow vines down 1-7 nodes
|
|
|
|
|
local length = math.ceil(math.abs(perlin_vines_length:get3d(pos)) * 7)
|
|
|
|
|
for l=0, length-1 do
|
|
|
|
|
if minetest.get_node(pos).name == "air" then
|
|
|
|
|
minetest.set_node(pos, newnode)
|
|
|
|
|
else
|
|
|
|
|
break
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
2017-08-21 02:28:15 +02:00
|
|
|
|
pos.y = pos.y - 1
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-08-21 02:28:15 +02:00
|
|
|
|
end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2017-08-15 20:08:41 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-08-21 16:16:30 +02:00
|
|
|
|
local pr_shroom = PseudoRandom(os.time()-24359)
|
|
|
|
|
-- Generate mushrooms in caves manually.
|
|
|
|
|
-- Minetest's API does not support decorations in caves yet. :-(
|
2017-08-15 20:08:41 +02:00
|
|
|
|
local generate_underground_mushrooms = function(minp, maxp)
|
|
|
|
|
-- Generate rare underground mushrooms
|
|
|
|
|
-- TODO: Make them appear in groups, use Perlin noise
|
2017-08-21 16:16:30 +02:00
|
|
|
|
local min, max = mcl_vars.mg_lava_overworld_max + 4, 0
|
|
|
|
|
if minp.y > max or maxp.y < min then
|
2017-08-15 20:08:41 +02:00
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local bpos
|
|
|
|
|
local stone = minetest.find_nodes_in_area_under_air(minp, maxp, {"mcl_core:stone", "mcl_core:dirt", "mcl_core:mycelium", "mcl_core:podzol", "mcl_core:andesite", "mcl_core:diorite", "mcl_core:granite", "mcl_core:stone_with_coal", "mcl_core:stone_with_iron", "mcl_core:stone_with_gold"})
|
|
|
|
|
|
|
|
|
|
for n = 1, #stone do
|
|
|
|
|
bpos = {x = stone[n].x, y = stone[n].y + 1, z = stone[n].z }
|
|
|
|
|
|
2017-08-21 16:16:30 +02:00
|
|
|
|
if bpos.y >= min and bpos.y <= max and minetest.get_node_light(bpos, 0.5) <= 12 and pr_shroom:next(1,1000) < 4 then
|
|
|
|
|
if pr_shroom:next(1,2) == 1 then
|
2017-08-15 20:08:41 +02:00
|
|
|
|
minetest.set_node(bpos, {name = "mcl_mushrooms:mushroom_brown"})
|
|
|
|
|
else
|
|
|
|
|
minetest.set_node(bpos, {name = "mcl_mushrooms:mushroom_red"})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-08-21 16:16:30 +02:00
|
|
|
|
local pr_nether = PseudoRandom(os.time()+667)
|
|
|
|
|
-- Generate Nether decorations manually: Eternal fire, mushrooms, nether wart
|
|
|
|
|
-- Minetest's API does not support decorations in caves yet. :-(
|
|
|
|
|
local generate_nether_decorations = function(minp, maxp)
|
|
|
|
|
if minp.y > mcl_vars.mg_nether_max or maxp.y < mcl_vars.mg_nether_min then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- TODO: Generate everything based on Perlin noise instead of PseudoRandom
|
|
|
|
|
|
|
|
|
|
local bpos
|
|
|
|
|
local rack = minetest.find_nodes_in_area_under_air(minp, maxp, {"mcl_nether:netherrack"})
|
|
|
|
|
local magma = minetest.find_nodes_in_area_under_air(minp, maxp, {"mcl_nether:magma"})
|
|
|
|
|
local ssand = minetest.find_nodes_in_area_under_air(minp, maxp, {"mcl_nether:soul_sand"})
|
|
|
|
|
|
|
|
|
|
-- Helper function to spawn “fake” decoration
|
|
|
|
|
local special_deco = function(nodes, spawn_func)
|
|
|
|
|
for n = 1, #nodes do
|
|
|
|
|
bpos = {x = nodes[n].x, y = nodes[n].y + 1, z = nodes[n].z }
|
|
|
|
|
|
|
|
|
|
spawn_func(bpos)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2017-08-21 19:48:27 +02:00
|
|
|
|
-- Eternal fire on netherrack
|
2017-08-21 16:16:30 +02:00
|
|
|
|
special_deco(rack, function(bpos)
|
|
|
|
|
-- Eternal fire on netherrack
|
2017-08-21 19:48:27 +02:00
|
|
|
|
if pr_nether:next(1,100) <= 3 then
|
2017-08-21 16:16:30 +02:00
|
|
|
|
minetest.set_node(bpos, {name = "mcl_fire:eternal_fire"})
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
-- Eternal fire on magma cubes
|
|
|
|
|
special_deco(magma, function(bpos)
|
|
|
|
|
if pr_nether:next(1,150) == 1 then
|
|
|
|
|
minetest.set_node(bpos, {name = "mcl_fire:eternal_fire"})
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
2017-08-21 19:48:27 +02:00
|
|
|
|
-- Mushrooms on netherrack
|
|
|
|
|
-- Note: Spawned *after* the fire because of light level checks
|
|
|
|
|
special_deco(rack, function(bpos)
|
|
|
|
|
if bpos.y > mcl_vars.mg_lava_nether_max + 6 and minetest.get_node_light(bpos, 0.5) <= 12 and pr_nether:next(1,1000) <= 4 then
|
|
|
|
|
-- TODO: Make mushrooms appear in groups, use Perlin noise
|
|
|
|
|
if pr_nether:next(1,2) == 1 then
|
|
|
|
|
minetest.set_node(bpos, {name = "mcl_mushrooms:mushroom_brown"})
|
|
|
|
|
else
|
|
|
|
|
minetest.set_node(bpos, {name = "mcl_mushrooms:mushroom_red"})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
2017-08-21 16:16:30 +02:00
|
|
|
|
-- Nether wart on soul sand
|
|
|
|
|
-- TODO: Spawn in Nether fortresses
|
|
|
|
|
special_deco(ssand, function(bpos)
|
|
|
|
|
if pr_nether:next(1,170) == 1 then
|
|
|
|
|
minetest.set_node(bpos, {name = "mcl_nether:nether_wart"})
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
end
|
2017-08-15 20:08:41 +02:00
|
|
|
|
|
2017-08-21 17:57:11 +02:00
|
|
|
|
local c_bedrock = minetest.get_content_id("mcl_core:bedrock")
|
|
|
|
|
local c_stone = minetest.get_content_id("mcl_core:stone")
|
|
|
|
|
local c_dirt = minetest.get_content_id("mcl_core:dirt")
|
|
|
|
|
local c_sand = minetest.get_content_id("mcl_core:sand")
|
|
|
|
|
local c_void = minetest.get_content_id("mcl_core:void")
|
|
|
|
|
local c_lava = minetest.get_content_id("mcl_core:lava_source")
|
|
|
|
|
local c_water = minetest.get_content_id("mcl_core:water_source")
|
|
|
|
|
local c_soul_sand = minetest.get_content_id("mcl_nether:soul_sand")
|
|
|
|
|
local c_netherrack = minetest.get_content_id("mcl_nether:netherrack")
|
|
|
|
|
local c_nether_lava = minetest.get_content_id("mcl_nether:nether_lava_source")
|
|
|
|
|
local c_end_stone = minetest.get_content_id("mcl_end:end_stone")
|
|
|
|
|
local c_realm_barrier = minetest.get_content_id("mcl_core:realm_barrier")
|
|
|
|
|
local c_top_snow = minetest.get_content_id("mcl_core:snow")
|
|
|
|
|
local c_air = minetest.get_content_id("air")
|
|
|
|
|
|
2017-08-15 20:08:41 +02:00
|
|
|
|
-- Below the bedrock, generate air/void
|
|
|
|
|
minetest.register_on_generated(function(minp, maxp)
|
|
|
|
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
|
|
|
|
local data = vm:get_data(lvm_buffer)
|
|
|
|
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
|
|
|
|
local lvm_used = false
|
|
|
|
|
|
|
|
|
|
-- Generate bedrock and lava layers
|
|
|
|
|
if minp.y <= GEN_MAX then
|
|
|
|
|
local max_y = math.min(maxp.y, GEN_MAX)
|
|
|
|
|
|
|
|
|
|
for y = minp.y, max_y do
|
|
|
|
|
for x = minp.x, maxp.x do
|
|
|
|
|
for z = minp.z, maxp.z do
|
|
|
|
|
local p_pos = area:index(x, y, z)
|
|
|
|
|
local setdata = nil
|
|
|
|
|
if mcl_vars.mg_bedrock_is_rough then
|
2017-08-16 15:29:05 +02:00
|
|
|
|
local is_bedrock = function(y)
|
|
|
|
|
-- Bedrock layers with increasing levels of roughness, until a perfecly flat bedrock later at the bottom layer
|
|
|
|
|
-- This code assumes a bedrock height of 5 layers.
|
|
|
|
|
|
|
|
|
|
local diff = mcl_vars.mg_bedrock_overworld_max - y -- Overworld bedrock
|
|
|
|
|
local ndiff1 = mcl_vars.mg_bedrock_nether_bottom_max - y -- Nether bedrock, bottom
|
|
|
|
|
local ndiff2 = mcl_vars.mg_bedrock_nether_top_max - y -- Nether bedrock, ceiling
|
|
|
|
|
|
|
|
|
|
local top
|
|
|
|
|
if diff == 0 or ndiff1 == 0 or ndiff2 == 4 then
|
|
|
|
|
-- 50% bedrock chance
|
|
|
|
|
top = 2
|
|
|
|
|
elseif diff == 1 or ndiff1 == 1 or ndiff2 == 3 then
|
|
|
|
|
-- 66.666...%
|
|
|
|
|
top = 3
|
|
|
|
|
elseif diff == 2 or ndiff1 == 2 or ndiff2 == 2 then
|
|
|
|
|
-- 75%
|
|
|
|
|
top = 4
|
|
|
|
|
elseif diff == 3 or ndiff1 == 3 or ndiff2 == 1 then
|
|
|
|
|
-- 90%
|
|
|
|
|
top = 10
|
|
|
|
|
elseif diff == 4 or ndiff1 == 4 or ndiff2 == 0 then
|
|
|
|
|
-- 100%
|
|
|
|
|
return true
|
|
|
|
|
else
|
|
|
|
|
-- Not in bedrock layer
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return math.random(1, top) <= top-1
|
|
|
|
|
end
|
|
|
|
|
if is_bedrock(y) then
|
2017-08-15 20:08:41 +02:00
|
|
|
|
setdata = c_bedrock
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
-- Perfectly flat bedrock layer(s)
|
2017-08-16 15:29:05 +02:00
|
|
|
|
if (y >= mcl_vars.mg_bedrock_overworld_min and y <= mcl_vars.mg_bedrock_overworld_max) or
|
2017-08-17 23:14:02 +02:00
|
|
|
|
(y >= mcl_vars.mg_bedrock_nether_bottom_min and y <= mcl_vars.mg_bedrock_nether_bottom_max) or
|
|
|
|
|
(y >= mcl_vars.mg_bedrock_nether_top_min and y <= mcl_vars.mg_bedrock_nether_top_max) then
|
2017-08-15 20:08:41 +02:00
|
|
|
|
setdata = c_bedrock
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-08-21 18:30:37 +02:00
|
|
|
|
-- Bedrock, defined above
|
2017-08-15 20:08:41 +02:00
|
|
|
|
if setdata then
|
|
|
|
|
data[p_pos] = setdata
|
|
|
|
|
lvm_used = true
|
2017-08-21 18:30:37 +02:00
|
|
|
|
-- The void
|
2017-08-17 23:58:35 +02:00
|
|
|
|
elseif mcl_util.is_in_void({x=x,y=y,z=z}) then
|
2017-08-18 13:28:20 +02:00
|
|
|
|
data[p_pos] = c_void
|
2017-08-18 00:53:23 +02:00
|
|
|
|
lvm_used = true
|
2017-08-22 00:22:53 +02:00
|
|
|
|
-- Realm barrier between the Overworld void and the End
|
|
|
|
|
elseif y >= mcl_vars.mg_realm_barrier_overworld_end_min and y <= mcl_vars.mg_realm_barrier_overworld_end_max then
|
|
|
|
|
data[p_pos] = c_realm_barrier
|
|
|
|
|
lvm_used = true
|
|
|
|
|
-- Flat Nether
|
|
|
|
|
elseif mg_name == "flat" and y >= mcl_vars.mg_bedrock_nether_bottom_max + 4 and y <= mcl_vars.mg_bedrock_nether_bottom_max + 52 then
|
|
|
|
|
data[p_pos] = c_air
|
|
|
|
|
lvm_used = true
|
2017-08-17 19:59:43 +02:00
|
|
|
|
-- Big lava seas by replacing air below a certain height
|
2017-08-22 00:22:53 +02:00
|
|
|
|
elseif mcl_vars.mg_lava and data[p_pos] == c_air and y <= mcl_vars.mg_lava_overworld_max and y >= mcl_vars.mg_overworld_min then
|
|
|
|
|
data[p_pos] = c_lava
|
|
|
|
|
lvm_used = true
|
|
|
|
|
elseif mcl_vars.mg_lava and data[p_pos] == c_air and y <= mcl_vars.mg_lava_nether_max and y >= mcl_vars.mg_nether_min then
|
|
|
|
|
data[p_pos] = c_nether_lava
|
|
|
|
|
lvm_used = true
|
2017-08-18 13:56:26 +02:00
|
|
|
|
-- Water in the Nether or End? No way!
|
|
|
|
|
elseif data[p_pos] == c_water then
|
|
|
|
|
if y <= mcl_vars.mg_nether_max and y >= mcl_vars.mg_nether_min then
|
|
|
|
|
data[p_pos] = c_nether_lava
|
|
|
|
|
lvm_used = true
|
|
|
|
|
elseif y <= mcl_vars.mg_end_min + 104 and y >= mcl_vars.mg_end_min + 40 then
|
|
|
|
|
data[p_pos] = c_end_stone
|
|
|
|
|
lvm_used = true
|
|
|
|
|
elseif y <= mcl_vars.mg_end_max and y >= mcl_vars.mg_end_min then
|
|
|
|
|
data[p_pos] = c_air
|
|
|
|
|
lvm_used = true
|
|
|
|
|
end
|
2017-08-18 13:28:20 +02:00
|
|
|
|
-- Nether and End support for v6 because v6 does not support the biomes API
|
2017-08-17 23:58:35 +02:00
|
|
|
|
elseif mg_name == "v6" then
|
|
|
|
|
if y <= mcl_vars.mg_nether_max and y >= mcl_vars.mg_nether_min then
|
|
|
|
|
if data[p_pos] == c_stone then
|
|
|
|
|
data[p_pos] = c_netherrack
|
2017-08-18 00:53:23 +02:00
|
|
|
|
lvm_used = true
|
2017-08-17 23:58:35 +02:00
|
|
|
|
elseif data[p_pos] == c_sand or data[p_pos] == c_dirt then
|
|
|
|
|
data[p_pos] = c_soul_sand
|
2017-08-18 00:53:23 +02:00
|
|
|
|
lvm_used = true
|
2017-08-17 23:58:35 +02:00
|
|
|
|
end
|
2017-08-18 13:28:20 +02:00
|
|
|
|
elseif y <= mcl_vars.mg_end_max and y >= mcl_vars.mg_end_min then
|
|
|
|
|
if data[p_pos] == c_stone or data[p_pos] == c_dirt or data[p_pos] == c_sand then
|
|
|
|
|
data[p_pos] = c_air
|
|
|
|
|
lvm_used = true
|
|
|
|
|
end
|
2017-08-17 23:58:35 +02:00
|
|
|
|
end
|
2017-08-15 20:08:41 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- Put top snow on grassy snow blocks created by the v6 mapgen
|
|
|
|
|
-- This is because the snowy grass block must only be used when it is below snow or top snow
|
|
|
|
|
if mg_name == "v6" then
|
|
|
|
|
local snowdirt = minetest.find_nodes_in_area_under_air(minp, maxp, "mcl_core:dirt_with_grass_snow")
|
|
|
|
|
for n = 1, #snowdirt do
|
|
|
|
|
-- CHECKME: What happens at chunk borders?
|
|
|
|
|
local p_pos = area:index(snowdirt[n].x, snowdirt[n].y + 1, snowdirt[n].z)
|
|
|
|
|
if p_pos then
|
|
|
|
|
data[p_pos] = c_top_snow
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
if #snowdirt > 1 then
|
|
|
|
|
lvm_used = true
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-08-22 00:22:53 +02:00
|
|
|
|
local shadow
|
|
|
|
|
-- Set sun light level in the End
|
|
|
|
|
-- -26912 is at a mapchunk border
|
|
|
|
|
if minp.y >= -26912 and maxp.y <= mcl_vars.mg_end_max then
|
|
|
|
|
vm:set_lighting({day=15, night=15})
|
|
|
|
|
lvm_used = true
|
|
|
|
|
end
|
|
|
|
|
if minp.y >= mcl_vars.mg_end_min and maxp.y <= -26911 then
|
|
|
|
|
shadow = false
|
2017-08-18 13:56:26 +02:00
|
|
|
|
lvm_used = true
|
|
|
|
|
end
|
2017-08-15 20:08:41 +02:00
|
|
|
|
if lvm_used then
|
|
|
|
|
vm:set_data(data)
|
2017-08-22 00:22:53 +02:00
|
|
|
|
vm:calc_lighting(nil, nil, shadow)
|
2017-08-21 18:49:04 +02:00
|
|
|
|
vm:update_liquids()
|
2017-08-15 20:08:41 +02:00
|
|
|
|
vm:write_to_map()
|
|
|
|
|
end
|
2017-05-27 01:54:40 +02:00
|
|
|
|
|
2017-08-15 20:08:41 +02:00
|
|
|
|
generate_underground_mushrooms(minp, maxp)
|
|
|
|
|
generate_jungle_tree_decorations(minp, maxp)
|
2017-08-21 16:16:30 +02:00
|
|
|
|
generate_nether_decorations(minp, maxp)
|
2017-02-20 05:56:44 +01:00
|
|
|
|
end)
|
|
|
|
|
|
2017-04-01 17:01:15 +02:00
|
|
|
|
|