2015-06-29 19:55:56 +02:00
|
|
|
--
|
|
|
|
-- Aliases for map generator outputs
|
|
|
|
--
|
|
|
|
|
2017-02-17 00:09:05 +01:00
|
|
|
mcl_mapgen_core = {}
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
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")
|
|
|
|
minetest.register_alias("mapgen_dirt_with_snow", "mcl_core:dirt_with_snow")
|
|
|
|
minetest.register_alias("mapgen_sand", "mcl_core:sand")
|
|
|
|
minetest.register_alias("mapgen_gravel", "mcl_core:gravel")
|
|
|
|
minetest.register_alias("mapgen_clay", "mcl_core:clay")
|
|
|
|
minetest.register_alias("mapgen_lava_source", "mcl_core:lava_source")
|
|
|
|
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
|
|
|
|
|
|
|
minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble")
|
2017-01-31 23:32:56 +01:00
|
|
|
minetest.register_alias("mapgen_sandstonebrick", "mcl_core:sandstonesmooth")
|
2017-01-27 14:04:30 +01:00
|
|
|
minetest.register_alias("mapgen_stair_sandstonebrick", "stairs:stair_sandstone")
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
--
|
|
|
|
-- Ore generation
|
|
|
|
--
|
|
|
|
|
2017-01-05 01:52:03 +01:00
|
|
|
-- Gravel
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
2017-01-31 23:32:56 +01:00
|
|
|
ore = "mcl_core:gravel",
|
|
|
|
wherein = {"mcl_core:stone"},
|
2017-01-05 01:52:03 +01:00
|
|
|
clust_scarcity = 14*14*14,
|
|
|
|
clust_num_ores = 33,
|
|
|
|
clust_size = 5,
|
2017-03-05 00:39:22 +01:00
|
|
|
y_min = mcl_vars.mg_overworld_min,
|
|
|
|
y_max = mcl_util.layer_to_y(111),
|
2017-01-05 01:52:03 +01:00
|
|
|
})
|
|
|
|
|
2017-03-03 17:47:22 +01:00
|
|
|
-- Dirt
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "mcl_core:dirt",
|
|
|
|
wherein = {"mcl_core:stone"},
|
|
|
|
clust_scarcity = 15*15*15,
|
|
|
|
clust_num_ores = 33,
|
|
|
|
clust_size = 4,
|
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
|
|
|
})
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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",
|
|
|
|
wherein = "mcl_core:stone",
|
|
|
|
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-02-17 07:14:54 +01:00
|
|
|
local function register_mgv6_decorations()
|
|
|
|
|
|
|
|
-- Sugar canes
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.3,
|
|
|
|
scale = 0.7,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7
|
|
|
|
},
|
|
|
|
y_min = 1,
|
|
|
|
y_max = 1,
|
|
|
|
decoration = "mcl_core:reeds",
|
|
|
|
height = 2,
|
|
|
|
height_max = 4,
|
|
|
|
spawn_by = "mcl_core:water_source",
|
|
|
|
num_spawn_by = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Cacti
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
2017-03-21 22:01:49 +01:00
|
|
|
place_on = {"group:sand"},
|
2017-02-17 07:14:54 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.012,
|
|
|
|
scale = 0.024,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 257,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2017-03-10 05:29:00 +01:00
|
|
|
y_min = 4,
|
2017-02-17 07:14:54 +01:00
|
|
|
y_max = 30,
|
|
|
|
decoration = "mcl_core:cactus",
|
|
|
|
height = 1,
|
|
|
|
height_max = 3,
|
|
|
|
})
|
|
|
|
|
2017-03-15 03:00:20 +01:00
|
|
|
-- Doubletall grass
|
2017-02-17 07:14:54 +01:00
|
|
|
minetest.register_decoration({
|
2017-03-15 03:00:20 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
schematic = {
|
|
|
|
size = { x=1, y=3, z=1 },
|
|
|
|
data = {
|
|
|
|
{ name = "air", prob = 0 },
|
|
|
|
{ name = "mcl_flowers:double_grass", param1=255, },
|
|
|
|
{ name = "mcl_flowers:double_grass_top", param1=255, },
|
|
|
|
},
|
|
|
|
},
|
2017-03-15 03:55:08 +01:00
|
|
|
replacements = {
|
|
|
|
["mcl_flowers:tallgrass"] = "mcl_flowers:double_grass"
|
|
|
|
},
|
2017-02-17 07:14:54 +01:00
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
sidelen = 8,
|
|
|
|
noise_params = {
|
2017-03-15 04:27:35 +01:00
|
|
|
offset = -0.01,
|
|
|
|
scale = 0.03,
|
2017-03-15 02:15:31 +01:00
|
|
|
spread = {x = 500, y = 500, z = 500},
|
2017-02-17 07:14:54 +01:00
|
|
|
seed = 420,
|
|
|
|
octaves = 2,
|
2017-03-15 04:27:35 +01:00
|
|
|
persist = 0.6,
|
2017-02-17 07:14:54 +01:00
|
|
|
},
|
|
|
|
y_min = 1,
|
2017-03-15 03:00:20 +01:00
|
|
|
y_max = 40,
|
|
|
|
flags = "",
|
2017-02-17 07:14:54 +01:00
|
|
|
})
|
|
|
|
|
2017-03-15 03:55:08 +01:00
|
|
|
-- Large ferns
|
2017-03-15 02:15:31 +01:00
|
|
|
minetest.register_decoration({
|
2017-03-15 03:55:08 +01:00
|
|
|
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"
|
|
|
|
},
|
|
|
|
-- This makes sure large ferns only appear in jungles
|
|
|
|
spawn_by = { "mcl_core:jungletree", "mcl_flowers:fern" },
|
|
|
|
num_spawn_by = 1,
|
2017-03-15 02:15:31 +01:00
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
2017-03-15 03:55:08 +01:00
|
|
|
|
|
|
|
sidelen = 16,
|
2017-03-15 02:15:31 +01:00
|
|
|
noise_params = {
|
2017-03-15 03:00:20 +01:00
|
|
|
offset = 0,
|
2017-03-15 03:55:08 +01:00
|
|
|
scale = 0.01,
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 333,
|
2017-03-15 03:00:20 +01:00
|
|
|
octaves = 2,
|
2017-03-15 03:55:08 +01:00
|
|
|
persist = 0.66,
|
2017-03-15 02:15:31 +01:00
|
|
|
},
|
|
|
|
y_min = 1,
|
2017-03-15 03:55:08 +01:00
|
|
|
y_max = 30,
|
|
|
|
flags = "",
|
2017-03-15 02:15:31 +01:00
|
|
|
})
|
|
|
|
|
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,
|
|
|
|
y_max = 30,
|
|
|
|
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-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,
|
|
|
|
y_max = 50,
|
|
|
|
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,
|
|
|
|
y_max = 50,
|
|
|
|
decoration = "mcl_flowers:tallgrass",
|
|
|
|
})
|
|
|
|
|
2017-03-31 21:47:59 +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:stone", "mcl_core:andesite", "mcl_core:diorite", "mcl_core:granite"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.04,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = mseeds[m],
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_min = 1,
|
|
|
|
y_max = 128,
|
|
|
|
decoration = mushrooms[m],
|
|
|
|
spawn_by = { "mcl_core:tree", "mcl_core:sprucetree", "mcl_core:darktree", "mcl_core:birchtree", "mcl_core:jungletree", "mcl_core:acaciatree" },
|
|
|
|
num_spawn_by = 1,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-02-17 07:14:54 +01:00
|
|
|
-- Dead bushes
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
2017-03-21 22:01:49 +01:00
|
|
|
place_on = {"group:sand", "mcl_core:podzol", "mcl_core:coarse_dirt", "mcl_colorblocks: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-02-17 07:14:54 +01:00
|
|
|
y_max = 50,
|
|
|
|
decoration = "mcl_core:deadbush",
|
|
|
|
})
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-03-15 04:25:31 +01:00
|
|
|
local function register_mgv6_flower(name, seed)
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.006,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = seed,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_min = 1,
|
|
|
|
y_max = 30,
|
|
|
|
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)
|
|
|
|
register_mgv6_flower("allium", 0)
|
|
|
|
register_mgv6_flower("blue_orchid", 64500)
|
|
|
|
register_mgv6_flower("oxeye_daisy", 3490)
|
|
|
|
register_mgv6_flower("poppy", 9439)
|
|
|
|
|
2017-03-15 05:22:59 +01:00
|
|
|
-- Pumpkin
|
|
|
|
minetest.register_decoration({
|
2017-03-21 00:23:09 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
schematic = {
|
|
|
|
size = { x=1, y=2, z=1 },
|
|
|
|
data = {
|
|
|
|
{ name = "air", prob = 0 },
|
|
|
|
{ name = "mcl_farming:pumpkin_face", param1=255, },
|
|
|
|
},
|
|
|
|
},
|
2017-03-15 05:22:59 +01:00
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
2017-03-15 05:36:11 +01:00
|
|
|
sidelen = 16,
|
2017-03-15 05:22:59 +01:00
|
|
|
noise_params = {
|
2017-03-15 05:57:55 +01:00
|
|
|
offset = -0.0055,
|
2017-03-15 05:22:59 +01:00
|
|
|
scale = 0.00666,
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 666,
|
|
|
|
octaves = 6,
|
|
|
|
persist = 0.666
|
|
|
|
},
|
|
|
|
y_min = 3,
|
|
|
|
y_max = 29,
|
2017-03-21 00:23:09 +01:00
|
|
|
rotation = "random",
|
2017-03-15 05:22:59 +01:00
|
|
|
})
|
|
|
|
|
2017-03-15 05:36:11 +01:00
|
|
|
-- Melon
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"mcl_core:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.002,
|
|
|
|
scale = 0.006,
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 333,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
-- Small trick to make sure melon spawn in jungles
|
|
|
|
spawn_by = { "mcl_core:jungletree", "mcl_flowers:fern" },
|
|
|
|
num_spawn_by = 1,
|
|
|
|
y_min = 1,
|
|
|
|
y_max = 40,
|
|
|
|
decoration = "mcl_farming:melon",
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_on_generated(function(minp, maxp, seed)
|
|
|
|
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
|
|
|
|
minetest.get_node({x=cx,y=0,z=cz}).name == "mcl_core:sand" 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
|
|
|
|
end
|
|
|
|
if is_shallow then
|
|
|
|
for x1=-divlen,divlen do
|
|
|
|
for z1=-divlen,divlen do
|
2017-01-31 23:32:56 +01:00
|
|
|
if minetest.get_node({x=cx+x1,y=0,z=cz+z1}).name == "mcl_core:sand" or minetest.get_node({x=cx+x1,y=0,z=cz+z1}).name == "mcl_core:sandstone" then
|
|
|
|
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
|
|
|
|
-- Generate reeds
|
2017-01-11 18:21:46 +01:00
|
|
|
local perlin1 = minetest.get_perlin(354, 3, 0.7, 100)
|
2015-06-29 19:55:56 +02:00
|
|
|
-- Assume X and Z lengths are equal
|
|
|
|
local divlen = 8
|
|
|
|
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)
|
|
|
|
-- Determine reeds amount from perlin noise
|
|
|
|
local reeds_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 45 - 20)
|
|
|
|
-- Find random positions for reeds based on this random
|
|
|
|
local pr = PseudoRandom(seed+1)
|
|
|
|
for i=0,reeds_amount do
|
|
|
|
local x = pr:next(x0, x1)
|
|
|
|
local z = pr:next(z0, z1)
|
2017-01-04 08:08:14 +01:00
|
|
|
local p = {x=x,y=1,z=z}
|
2017-01-31 23:32:56 +01:00
|
|
|
if minetest.get_node(p).name == "mcl_core:sand" then
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(0,1000) == 1 then -- 0,12000
|
2017-02-18 02:40:07 +01:00
|
|
|
-- Spawn sand temple
|
|
|
|
random_struct.call_struct(p,2)
|
2015-07-04 04:56:02 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Generate grass
|
2017-01-11 18:21:46 +01:00
|
|
|
local perlin1 = 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)
|
|
|
|
-- Determine grass amount from perlin noise
|
|
|
|
local grass_amount = math.floor(perlin1:get2d({x=x0, y=z0}) * 9)
|
|
|
|
-- Find random positions for grass based on this random
|
|
|
|
local pr = PseudoRandom(seed+1)
|
|
|
|
for i=0,grass_amount do
|
|
|
|
local x = pr:next(x0, x1)
|
|
|
|
local z = pr:next(z0, z1)
|
|
|
|
-- Find ground level (0...15)
|
|
|
|
local ground_y = nil
|
|
|
|
for y=30,0,-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
|
|
|
|
|
|
|
|
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-02-17 07:14:54 +01:00
|
|
|
if nn == "mcl_core:dirt_with_grass" then
|
2015-07-04 04:56:02 +02:00
|
|
|
if math.random(0,12000) == 1 then
|
2017-02-18 02:40:07 +01:00
|
|
|
-- Spawn town
|
2017-01-28 03:45:14 +01:00
|
|
|
-- TODO: Re-enable random_struct
|
2017-02-18 02:40:07 +01:00
|
|
|
-- Towns often float around in air which doesn't look nice
|
2017-01-28 03:45:14 +01:00
|
|
|
--random_struct.call_struct(p,1)
|
2015-07-04 04:56:02 +02:00
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
2017-02-23 00:15:47 +01:00
|
|
|
-- Generate bedrock layer or layers
|
2017-03-04 23:00:23 +01:00
|
|
|
local BEDROCK_MIN = mcl_vars.mg_bedrock_overworld_min
|
|
|
|
local BEDROCK_MAX = mcl_vars.mg_bedrock_overworld_max
|
2017-02-20 05:56:44 +01:00
|
|
|
|
2017-02-20 06:10:49 +01:00
|
|
|
-- Below the bedrock, generate air/void
|
|
|
|
|
2017-02-20 05:56:44 +01:00
|
|
|
minetest.register_on_generated(function(minp, maxp)
|
2017-02-20 06:10:49 +01:00
|
|
|
if minp.y <= BEDROCK_MAX then
|
2017-02-20 05:56:44 +01:00
|
|
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
|
|
|
local data = vm:get_data()
|
|
|
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
|
|
|
local c_bedrock = minetest.get_content_id("mcl_core:bedrock")
|
2017-02-20 06:56:17 +01:00
|
|
|
local c_void = minetest.get_content_id("mcl_core:void")
|
2017-02-20 05:56:44 +01:00
|
|
|
|
2017-02-20 06:10:49 +01:00
|
|
|
for y = minp.y, math.min(maxp.y, BEDROCK_MAX) do
|
2017-02-20 05:56:44 +01:00
|
|
|
for x = minp.x, maxp.x do
|
|
|
|
for z = minp.z, maxp.z do
|
|
|
|
local p_pos = area:index(x, y, z)
|
2017-02-20 06:10:49 +01:00
|
|
|
local setdata = nil
|
2017-03-04 23:00:23 +01:00
|
|
|
if mcl_vars.mg_bedrock_is_rough then
|
2017-02-23 00:15:47 +01:00
|
|
|
-- 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.
|
|
|
|
if y == BEDROCK_MAX then
|
|
|
|
-- 50% bedrock chance
|
|
|
|
if math.random(1,2) == 1 then setdata = c_bedrock end
|
|
|
|
elseif y == BEDROCK_MAX -1 then
|
|
|
|
-- 66.666...%
|
|
|
|
if math.random(1,3) <= 2 then setdata = c_bedrock end
|
|
|
|
elseif y == BEDROCK_MAX -2 then
|
|
|
|
-- 75%
|
|
|
|
if math.random(1,4) <= 3 then setdata = c_bedrock end
|
|
|
|
elseif y == BEDROCK_MAX -3 then
|
|
|
|
-- 90%
|
|
|
|
if math.random(1,10) <= 9 then setdata = c_bedrock end
|
|
|
|
elseif y == BEDROCK_MAX -4 then
|
|
|
|
-- 100%
|
|
|
|
setdata = c_bedrock
|
|
|
|
elseif y < BEDROCK_MIN then
|
|
|
|
setdata = c_void
|
|
|
|
end
|
|
|
|
else
|
|
|
|
-- Perfectly flat bedrock layer(s)
|
|
|
|
if y >= BEDROCK_MIN and y <= BEDROCK_MAX then
|
|
|
|
setdata = c_bedrock
|
|
|
|
elseif y < BEDROCK_MIN then
|
|
|
|
setdata = c_void
|
|
|
|
end
|
2017-02-20 05:56:44 +01:00
|
|
|
end
|
2017-02-20 06:10:49 +01:00
|
|
|
if setdata then
|
|
|
|
data[p_pos] = setdata
|
2017-02-20 05:56:44 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
vm:set_data(data)
|
|
|
|
vm:calc_lighting()
|
|
|
|
vm:update_liquids()
|
|
|
|
vm:write_to_map()
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2017-02-23 01:14:27 +01:00
|
|
|
-- Apply mapgen-specific mapgen code
|
|
|
|
local mg_name = minetest.get_mapgen_setting("mg_name")
|
|
|
|
if mg_name == "v6" then
|
|
|
|
register_mgv6_decorations()
|
|
|
|
end
|
|
|
|
if mg_name == "flat" then
|
2017-03-21 03:21:23 +01:00
|
|
|
minetest.set_mapgen_setting("mg_flags", "nocaves,nodungeons,nodecorations,light", true)
|
2017-02-23 01:14:27 +01:00
|
|
|
else
|
2017-03-21 03:21:23 +01:00
|
|
|
minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,decorations,light", true)
|
2017-02-23 01:14:27 +01:00
|
|
|
end
|