2013-05-18 16:05:16 +02:00
|
|
|
--
|
2017-02-01 19:44:50 +01:00
|
|
|
-- Aliases for map generators
|
2013-05-18 16:05:16 +02:00
|
|
|
--
|
|
|
|
|
2019-07-01 22:58:47 +02:00
|
|
|
-- All mapgens
|
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
minetest.register_alias("mapgen_stone", "default:stone")
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_water_source", "default:water_source")
|
2015-04-19 04:53:20 +02:00
|
|
|
minetest.register_alias("mapgen_river_water_source", "default:river_water_source")
|
2019-07-01 22:58:47 +02:00
|
|
|
|
|
|
|
-- Additional aliases needed for mapgen v6
|
|
|
|
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_lava_source", "default:lava_source")
|
2019-07-01 22:58:47 +02:00
|
|
|
minetest.register_alias("mapgen_dirt", "default:dirt")
|
|
|
|
minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass")
|
|
|
|
minetest.register_alias("mapgen_sand", "default:sand")
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_gravel", "default:gravel")
|
|
|
|
minetest.register_alias("mapgen_desert_stone", "default:desert_stone")
|
|
|
|
minetest.register_alias("mapgen_desert_sand", "default:desert_sand")
|
|
|
|
minetest.register_alias("mapgen_dirt_with_snow", "default:dirt_with_snow")
|
|
|
|
minetest.register_alias("mapgen_snowblock", "default:snowblock")
|
2015-05-12 00:17:36 +02:00
|
|
|
minetest.register_alias("mapgen_snow", "default:snow")
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_ice", "default:ice")
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
minetest.register_alias("mapgen_tree", "default:tree")
|
|
|
|
minetest.register_alias("mapgen_leaves", "default:leaves")
|
2019-12-12 23:29:51 +01:00
|
|
|
minetest.register_alias("mapgen_jogan", "default:joganfruit")
|
2013-05-18 16:05:16 +02:00
|
|
|
minetest.register_alias("mapgen_jungletree", "default:jungletree")
|
|
|
|
minetest.register_alias("mapgen_jungleleaves", "default:jungleleaves")
|
|
|
|
minetest.register_alias("mapgen_junglegrass", "default:junglegrass")
|
2015-08-09 09:50:57 +02:00
|
|
|
minetest.register_alias("mapgen_pine_tree", "default:pine_tree")
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_pine_needles", "default:pine_needles")
|
|
|
|
|
|
|
|
minetest.register_alias("mapgen_cobble", "default:cobble")
|
2013-09-06 21:47:21 +02:00
|
|
|
minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble")
|
2015-03-28 00:31:52 +01:00
|
|
|
minetest.register_alias("mapgen_mossycobble", "default:mossycobble")
|
2017-01-26 16:54:32 +01:00
|
|
|
minetest.register_alias("mapgen_stair_desert_stone", "stairs:stair_desert_stone")
|
2013-05-18 16:05:16 +02:00
|
|
|
|
2015-03-26 00:30:27 +01:00
|
|
|
|
2013-05-18 16:05:16 +02:00
|
|
|
--
|
2015-03-08 06:17:22 +01:00
|
|
|
-- Register ores
|
2013-05-18 16:05:16 +02:00
|
|
|
--
|
|
|
|
|
2017-02-01 19:44:50 +01:00
|
|
|
-- Mgv6
|
2016-12-28 20:27:05 +01:00
|
|
|
|
2017-06-29 19:50:16 +02:00
|
|
|
function default.register_mgv6_ores()
|
|
|
|
|
|
|
|
-- Blob ore
|
|
|
|
-- These first to avoid other ores in blobs
|
2017-02-01 19:44:50 +01:00
|
|
|
|
|
|
|
-- Clay
|
|
|
|
-- This first to avoid clay in sand blobs
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:clay",
|
|
|
|
wherein = {"default:sand"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -15,
|
2017-02-01 19:44:50 +01:00
|
|
|
noise_threshold = 0.0,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.5,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = -316,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.0
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Sand
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:sand",
|
|
|
|
wherein = {"default:stone", "default:desert_stone"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31,
|
2017-02-01 19:44:50 +01:00
|
|
|
noise_threshold = 0.0,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.5,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 2316,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.0
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Dirt
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:dirt",
|
|
|
|
wherein = {"default:stone"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31,
|
2017-02-01 19:44:50 +01:00
|
|
|
noise_threshold = 0.0,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.5,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 17676,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.0
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Gravel
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:gravel",
|
|
|
|
wherein = {"default:stone"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-02-01 19:44:50 +01:00
|
|
|
noise_threshold = 0.0,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.5,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 766,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.0
|
|
|
|
},
|
|
|
|
})
|
2017-06-29 19:50:16 +02:00
|
|
|
|
|
|
|
-- Scatter ores
|
|
|
|
|
|
|
|
-- Coal
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8 * 8 * 8,
|
|
|
|
clust_num_ores = 9,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8 * 8 * 8,
|
|
|
|
clust_num_ores = 8,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 64,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 24 * 24 * 24,
|
|
|
|
clust_num_ores = 27,
|
|
|
|
clust_size = 6,
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Iron
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_iron",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 9 * 9 * 9,
|
|
|
|
clust_num_ores = 12,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_iron",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 7 * 7 * 7,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_iron",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 24 * 24 * 24,
|
|
|
|
clust_num_ores = 27,
|
|
|
|
clust_size = 6,
|
|
|
|
y_max = -64,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Copper
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_copper",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 9 * 9 * 9,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_copper",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 12 * 12 * 12,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -16,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -63,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_copper",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 9 * 9 * 9,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -64,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Tin
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_tin",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 10 * 10 * 10,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_tin",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -32,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -127,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_tin",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 10 * 10 * 10,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Gold
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_gold",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_gold",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 15 * 15 * 15,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
|
|
|
y_max = -64,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -255,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_gold",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -256,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Mese crystal
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_mese",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 14 * 14 * 14,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_mese",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 18 * 18 * 18,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
|
|
|
y_max = -64,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -255,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_mese",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 14 * 14 * 14,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -256,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Diamond
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2017-06-29 19:50:16 +02:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 15 * 15 * 15,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2017-06-29 19:50:16 +02:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 17 * 17 * 17,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -255,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2017-06-29 19:50:16 +02:00
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 15 * 15 * 15,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -256,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-06-29 19:50:16 +02:00
|
|
|
})
|
|
|
|
|
2017-02-01 19:44:50 +01:00
|
|
|
|
|
|
|
-- All mapgens except mgv6
|
|
|
|
|
2017-06-29 19:50:16 +02:00
|
|
|
function default.register_ores()
|
|
|
|
|
2018-04-29 08:15:11 +02:00
|
|
|
-- Stratum ores.
|
|
|
|
-- These obviously first.
|
|
|
|
|
|
|
|
-- Silver sandstone
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "stratum",
|
|
|
|
ore = "default:silver_sandstone",
|
|
|
|
wherein = {"default:stone"},
|
|
|
|
clust_scarcity = 1,
|
|
|
|
y_max = 46,
|
|
|
|
y_min = 10,
|
|
|
|
noise_params = {
|
|
|
|
offset = 28,
|
|
|
|
scale = 16,
|
|
|
|
spread = {x = 128, y = 128, z = 128},
|
|
|
|
seed = 90122,
|
|
|
|
octaves = 1,
|
|
|
|
},
|
|
|
|
stratum_thickness = 4,
|
|
|
|
biomes = {"cold_desert"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "stratum",
|
|
|
|
ore = "default:silver_sandstone",
|
|
|
|
wherein = {"default:stone"},
|
|
|
|
clust_scarcity = 1,
|
|
|
|
y_max = 42,
|
|
|
|
y_min = 6,
|
|
|
|
noise_params = {
|
|
|
|
offset = 24,
|
|
|
|
scale = 16,
|
|
|
|
spread = {x = 128, y = 128, z = 128},
|
|
|
|
seed = 90122,
|
|
|
|
octaves = 1,
|
|
|
|
},
|
|
|
|
stratum_thickness = 2,
|
|
|
|
biomes = {"cold_desert"},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Desert sandstone
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "stratum",
|
|
|
|
ore = "default:desert_sandstone",
|
|
|
|
wherein = {"default:desert_stone"},
|
|
|
|
clust_scarcity = 1,
|
|
|
|
y_max = 46,
|
|
|
|
y_min = 10,
|
|
|
|
noise_params = {
|
|
|
|
offset = 28,
|
|
|
|
scale = 16,
|
|
|
|
spread = {x = 128, y = 128, z = 128},
|
|
|
|
seed = 90122,
|
|
|
|
octaves = 1,
|
|
|
|
},
|
|
|
|
stratum_thickness = 4,
|
|
|
|
biomes = {"desert"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "stratum",
|
|
|
|
ore = "default:desert_sandstone",
|
|
|
|
wherein = {"default:desert_stone"},
|
|
|
|
clust_scarcity = 1,
|
|
|
|
y_max = 42,
|
|
|
|
y_min = 6,
|
|
|
|
noise_params = {
|
|
|
|
offset = 24,
|
|
|
|
scale = 16,
|
|
|
|
spread = {x = 128, y = 128, z = 128},
|
|
|
|
seed = 90122,
|
|
|
|
octaves = 1,
|
|
|
|
},
|
|
|
|
stratum_thickness = 2,
|
|
|
|
biomes = {"desert"},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Sandstone
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "stratum",
|
|
|
|
ore = "default:sandstone",
|
|
|
|
wherein = {"default:desert_stone"},
|
|
|
|
clust_scarcity = 1,
|
|
|
|
y_max = 39,
|
|
|
|
y_min = 3,
|
|
|
|
noise_params = {
|
|
|
|
offset = 21,
|
|
|
|
scale = 16,
|
|
|
|
spread = {x = 128, y = 128, z = 128},
|
|
|
|
seed = 90122,
|
|
|
|
octaves = 1,
|
|
|
|
},
|
|
|
|
stratum_thickness = 2,
|
|
|
|
biomes = {"desert"},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Blob ore.
|
|
|
|
-- These before scatter ores to avoid other ores in blobs.
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
-- Clay
|
|
|
|
|
2016-07-11 18:55:17 +02:00
|
|
|
minetest.register_ore({
|
2015-12-19 16:32:41 +01:00
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:clay",
|
|
|
|
wherein = {"default:sand"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -15,
|
2015-12-18 06:23:45 +01:00
|
|
|
noise_threshold = 0.0,
|
2015-12-19 16:32:41 +01:00
|
|
|
noise_params = {
|
2015-09-18 23:59:02 +02:00
|
|
|
offset = 0.5,
|
2015-07-01 07:16:06 +02:00
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = -316,
|
|
|
|
octaves = 1,
|
2015-09-18 23:59:02 +02:00
|
|
|
persist = 0.0
|
2015-03-26 00:30:27 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2016-12-28 20:27:05 +01:00
|
|
|
-- Silver sand
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2016-07-11 18:55:17 +02:00
|
|
|
minetest.register_ore({
|
2015-12-19 16:32:41 +01:00
|
|
|
ore_type = "blob",
|
2016-12-28 20:27:05 +01:00
|
|
|
ore = "default:silver_sand",
|
|
|
|
wherein = {"default:stone"},
|
2015-12-19 16:32:41 +01:00
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
2016-12-28 20:27:05 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-12-18 06:23:45 +01:00
|
|
|
noise_threshold = 0.0,
|
2015-12-19 16:32:41 +01:00
|
|
|
noise_params = {
|
2015-09-18 23:59:02 +02:00
|
|
|
offset = 0.5,
|
2015-07-01 07:16:06 +02:00
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 2316,
|
|
|
|
octaves = 1,
|
2015-09-18 23:59:02 +02:00
|
|
|
persist = 0.0
|
2015-03-26 00:30:27 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Dirt
|
|
|
|
|
2015-03-26 00:30:27 +01:00
|
|
|
minetest.register_ore({
|
2015-12-19 16:32:41 +01:00
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:dirt",
|
2016-07-02 05:10:29 +02:00
|
|
|
wherein = {"default:stone"},
|
2015-12-19 16:32:41 +01:00
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31,
|
2015-12-18 06:23:45 +01:00
|
|
|
noise_threshold = 0.0,
|
2015-12-19 16:32:41 +01:00
|
|
|
noise_params = {
|
2015-09-18 23:59:02 +02:00
|
|
|
offset = 0.5,
|
2015-07-01 07:16:06 +02:00
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 17676,
|
|
|
|
octaves = 1,
|
2015-09-18 23:59:02 +02:00
|
|
|
persist = 0.0
|
2015-03-26 00:30:27 +01:00
|
|
|
},
|
2019-04-19 22:23:26 +02:00
|
|
|
-- Only where default:dirt is present as surface material
|
2016-12-01 04:15:15 +01:00
|
|
|
biomes = {"taiga", "snowy_grassland", "grassland", "coniferous_forest",
|
2019-07-26 18:50:44 +02:00
|
|
|
"deciduous_forest", "deciduous_forest_shore", "rainforest",
|
|
|
|
"rainforest_swamp", "floatland_coniferous_forest"}
|
2015-03-26 00:30:27 +01:00
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Gravel
|
|
|
|
|
2015-03-26 00:30:27 +01:00
|
|
|
minetest.register_ore({
|
2015-12-19 16:32:41 +01:00
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:gravel",
|
|
|
|
wherein = {"default:stone"},
|
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-12-18 06:23:45 +01:00
|
|
|
noise_threshold = 0.0,
|
2015-12-19 16:32:41 +01:00
|
|
|
noise_params = {
|
2015-09-18 23:59:02 +02:00
|
|
|
offset = 0.5,
|
2015-07-01 07:16:06 +02:00
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 5, y = 5, z = 5},
|
|
|
|
seed = 766,
|
|
|
|
octaves = 1,
|
2015-09-18 23:59:02 +02:00
|
|
|
persist = 0.0
|
2015-03-26 00:30:27 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2017-06-29 19:50:16 +02:00
|
|
|
-- Scatter ores
|
2016-07-02 05:10:29 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Coal
|
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8 * 8 * 8,
|
|
|
|
clust_num_ores = 9,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
2015-07-01 07:16:06 +02:00
|
|
|
clust_scarcity = 8 * 8 * 8,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_num_ores = 8,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 64,
|
2018-02-25 19:27:23 +01:00
|
|
|
y_min = -127,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
2018-02-25 19:27:23 +01:00
|
|
|
clust_scarcity = 12 * 12 * 12,
|
|
|
|
clust_num_ores = 30,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
2018-04-20 21:13:16 +02:00
|
|
|
-- Tin
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_tin",
|
2016-07-03 08:33:48 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 10 * 10 * 10,
|
|
|
|
clust_num_ores = 5,
|
2016-07-03 08:33:48 +02:00
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_tin",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 4,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_size = 3,
|
2018-04-12 01:51:56 +02:00
|
|
|
y_max = -64,
|
2018-02-25 19:27:23 +01:00
|
|
|
y_min = -127,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_tin",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 10 * 10 * 10,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
2018-02-25 19:27:23 +01:00
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
2018-04-20 21:13:16 +02:00
|
|
|
-- Copper
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_copper",
|
2016-07-03 08:33:48 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 9 * 9 * 9,
|
2016-07-03 08:33:48 +02:00
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_copper",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 12 * 12 * 12,
|
2016-07-02 05:10:29 +02:00
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
2018-04-20 21:13:16 +02:00
|
|
|
y_max = -64,
|
|
|
|
y_min = -127,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_copper",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 9 * 9 * 9,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
2018-04-20 21:13:16 +02:00
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
2018-04-20 21:13:16 +02:00
|
|
|
-- Iron
|
2017-04-19 03:48:00 +02:00
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_iron",
|
2017-04-19 03:48:00 +02:00
|
|
|
wherein = "default:stone",
|
2017-07-02 15:22:00 +02:00
|
|
|
clust_scarcity = 9 * 9 * 9,
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_num_ores = 12,
|
2017-04-19 03:48:00 +02:00
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2017-04-19 03:48:00 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_iron",
|
2017-04-19 03:48:00 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 7 * 7 * 7,
|
|
|
|
clust_num_ores = 5,
|
2017-04-19 03:48:00 +02:00
|
|
|
clust_size = 3,
|
2017-07-02 15:22:00 +02:00
|
|
|
y_max = -128,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -255,
|
2017-04-19 03:48:00 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-20 21:13:16 +02:00
|
|
|
ore = "default:stone_with_iron",
|
2017-04-19 03:48:00 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-20 21:13:16 +02:00
|
|
|
clust_scarcity = 12 * 12 * 12,
|
|
|
|
clust_num_ores = 29,
|
|
|
|
clust_size = 5,
|
2017-07-02 15:22:00 +02:00
|
|
|
y_max = -256,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2017-04-19 03:48:00 +02:00
|
|
|
})
|
|
|
|
|
2016-07-02 05:10:29 +02:00
|
|
|
-- Gold
|
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_gold",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2016-07-02 05:10:29 +02:00
|
|
|
ore = "default:stone_with_gold",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2016-07-02 05:10:29 +02:00
|
|
|
clust_scarcity = 15 * 15 * 15,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
2017-07-02 15:22:00 +02:00
|
|
|
y_max = -256,
|
2018-04-12 01:51:56 +02:00
|
|
|
y_min = -511,
|
2016-07-02 05:10:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_gold",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 13 * 13 * 13,
|
|
|
|
clust_num_ores = 5,
|
|
|
|
clust_size = 3,
|
2018-04-12 01:51:56 +02:00
|
|
|
y_max = -512,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
2018-04-12 01:51:56 +02:00
|
|
|
-- Mese crystal
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-12 01:51:56 +02:00
|
|
|
ore = "default:stone_with_mese",
|
2016-07-03 08:33:48 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 14 * 14 * 14,
|
|
|
|
clust_num_ores = 5,
|
2016-07-03 08:33:48 +02:00
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-12 01:51:56 +02:00
|
|
|
ore = "default:stone_with_mese",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 18 * 18 * 18,
|
|
|
|
clust_num_ores = 3,
|
|
|
|
clust_size = 2,
|
2017-07-02 15:22:00 +02:00
|
|
|
y_max = -512,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -1023,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2018-04-12 01:51:56 +02:00
|
|
|
ore = "default:stone_with_mese",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 14 * 14 * 14,
|
|
|
|
clust_num_ores = 5,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_size = 3,
|
2017-07-02 15:22:00 +02:00
|
|
|
y_max = -1024,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
2018-04-12 01:51:56 +02:00
|
|
|
-- Diamond
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2016-07-03 08:33:48 +02:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2016-07-03 08:33:48 +02:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 15 * 15 * 15,
|
|
|
|
clust_num_ores = 4,
|
2016-07-03 08:33:48 +02:00
|
|
|
clust_size = 3,
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1025,
|
2016-07-03 08:33:48 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 16:27:29 +01:00
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 17 * 17 * 17,
|
|
|
|
clust_num_ores = 4,
|
|
|
|
clust_size = 3,
|
|
|
|
y_max = -1024,
|
|
|
|
y_min = -2047,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore({
|
|
|
|
ore_type = "scatter",
|
2019-12-12 23:29:51 +01:00
|
|
|
ore = "default:stone_with_beskar",
|
2015-01-21 16:27:29 +01:00
|
|
|
wherein = "default:stone",
|
2018-04-12 01:51:56 +02:00
|
|
|
clust_scarcity = 15 * 15 * 15,
|
|
|
|
clust_num_ores = 4,
|
2015-01-21 16:27:29 +01:00
|
|
|
clust_size = 3,
|
2018-04-12 01:51:56 +02:00
|
|
|
y_max = -2048,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2015-01-21 16:27:29 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
--
|
|
|
|
-- Register biomes
|
|
|
|
--
|
|
|
|
|
2017-02-01 19:44:50 +01:00
|
|
|
-- All mapgens except mgv6
|
2015-03-26 00:30:27 +01:00
|
|
|
|
2017-03-12 11:58:09 +01:00
|
|
|
function default.register_biomes(upper_limit)
|
2014-11-24 05:14:48 +01:00
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Icesheet
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "icesheet",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_dust = "default:snowblock",
|
|
|
|
node_top = "default:snowblock",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:snowblock",
|
|
|
|
depth_filler = 3,
|
2018-02-26 20:21:24 +01:00
|
|
|
node_stone = "default:cave_ice",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_water_top = "default:ice",
|
2015-08-07 17:03:53 +02:00
|
|
|
depth_water_top = 10,
|
2015-09-09 19:09:10 +02:00
|
|
|
node_river_water = "default:ice",
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:gravel",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:ice",
|
|
|
|
node_dungeon_stair = "stairs:stair_ice",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -8,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 0,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 73,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "icesheet_ocean",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_dust = "default:snowblock",
|
2015-10-10 14:56:52 +02:00
|
|
|
node_top = "default:sand",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
2015-10-10 14:56:52 +02:00
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_water_top = "default:ice",
|
|
|
|
depth_water_top = 10,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2015-08-07 17:03:53 +02:00
|
|
|
y_max = -9,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 73,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "icesheet_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 0,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 73,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Tundra
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2018-05-05 00:05:47 +02:00
|
|
|
name = "tundra_highland",
|
|
|
|
node_dust = "default:snow",
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:gravel",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 47,
|
2018-05-05 00:05:47 +02:00
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 40,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "tundra",
|
|
|
|
node_top = "default:permafrost_with_stones",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:permafrost",
|
|
|
|
depth_filler = 1,
|
|
|
|
node_riverbed = "default:gravel",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 4,
|
|
|
|
y_max = 46,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 2,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 40,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-01-28 02:30:01 +01:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "tundra_beach",
|
|
|
|
node_top = "default:gravel",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:gravel",
|
|
|
|
depth_filler = 2,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:gravel",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2016-01-28 02:30:01 +01:00
|
|
|
y_max = 1,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -3,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 40,
|
2016-01-28 02:30:01 +01:00
|
|
|
})
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_biome({
|
2015-07-29 03:19:49 +02:00
|
|
|
name = "tundra_ocean",
|
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:gravel",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2016-01-28 02:30:01 +01:00
|
|
|
y_max = -4,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 40,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "tundra_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 40,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Taiga
|
2015-09-28 04:14:44 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "taiga",
|
|
|
|
node_dust = "default:snow",
|
2015-11-07 05:12:55 +01:00
|
|
|
node_top = "default:dirt_with_snow",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2015-11-07 05:12:55 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 25,
|
|
|
|
humidity_point = 70,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "taiga_ocean",
|
2018-06-01 23:39:50 +02:00
|
|
|
node_dust = "default:snow",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 25,
|
|
|
|
humidity_point = 70,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "taiga_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 25,
|
|
|
|
humidity_point = 70,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Snowy grassland
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "snowy_grassland",
|
|
|
|
node_dust = "default:snow",
|
|
|
|
node_top = "default:dirt_with_snow",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
depth_filler = 1,
|
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 20,
|
|
|
|
humidity_point = 35,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "snowy_grassland_ocean",
|
2018-06-01 23:39:50 +02:00
|
|
|
node_dust = "default:snow",
|
2016-12-01 04:15:15 +01:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
|
|
|
depth_filler = 3,
|
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 20,
|
|
|
|
humidity_point = 35,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "snowy_grassland_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 20,
|
|
|
|
humidity_point = 35,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Grassland
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "grassland",
|
2014-11-24 05:14:48 +01:00
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 1,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 6,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 50,
|
2015-11-07 05:12:55 +01:00
|
|
|
humidity_point = 35,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2015-12-15 05:06:09 +01:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "grassland_dunes",
|
2015-12-15 05:06:09 +01:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
|
|
|
depth_filler = 2,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2015-12-15 05:06:09 +01:00
|
|
|
y_max = 5,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 50,
|
2015-12-15 05:06:09 +01:00
|
|
|
humidity_point = 35,
|
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "grassland_ocean",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-01-01 08:47:00 +01:00
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 50,
|
|
|
|
humidity_point = 35,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "grassland_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 50,
|
2015-11-07 05:12:55 +01:00
|
|
|
humidity_point = 35,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Coniferous forest
|
2015-09-28 04:14:44 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "coniferous_forest",
|
2017-12-22 01:59:42 +01:00
|
|
|
node_top = "default:dirt_with_coniferous_litter",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 6,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 45,
|
|
|
|
humidity_point = 70,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2015-12-15 05:06:09 +01:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "coniferous_forest_dunes",
|
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2015-12-15 05:06:09 +01:00
|
|
|
y_max = 5,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 45,
|
|
|
|
humidity_point = 70,
|
2015-12-15 05:06:09 +01:00
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "coniferous_forest_ocean",
|
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-01-01 08:47:00 +01:00
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 45,
|
|
|
|
humidity_point = 70,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "coniferous_forest_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 45,
|
|
|
|
humidity_point = 70,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Deciduous forest
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "deciduous_forest",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2016-12-01 04:15:15 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 60,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 68,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2015-12-15 05:06:09 +01:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "deciduous_forest_shore",
|
|
|
|
node_top = "default:dirt",
|
2015-12-15 05:06:09 +01:00
|
|
|
depth_top = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_filler = "default:dirt",
|
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2016-12-01 04:15:15 +01:00
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -1,
|
2015-12-15 05:06:09 +01:00
|
|
|
heat_point = 60,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 68,
|
2015-12-15 05:06:09 +01:00
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "deciduous_forest_ocean",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
y_max = -2,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 60,
|
|
|
|
humidity_point = 68,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "deciduous_forest_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 60,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 68,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Desert
|
2015-09-28 04:14:44 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "desert",
|
|
|
|
node_top = "default:desert_sand",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_filler = "default:desert_sand",
|
|
|
|
depth_filler = 1,
|
|
|
|
node_stone = "default:desert_stone",
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:desert_stone",
|
|
|
|
node_dungeon_stair = "stairs:stair_desert_stone",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 92,
|
|
|
|
humidity_point = 16,
|
2015-09-28 04:14:44 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "desert_ocean",
|
|
|
|
node_top = "default:sand",
|
2015-09-28 04:14:44 +02:00
|
|
|
depth_top = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_stone = "default:desert_stone",
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:desert_stone",
|
|
|
|
node_dungeon_stair = "stairs:stair_desert_stone",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 92,
|
|
|
|
humidity_point = 16,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "desert_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 92,
|
|
|
|
humidity_point = 16,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Sandstone desert
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "sandstone_desert",
|
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2017-03-12 11:58:09 +01:00
|
|
|
depth_filler = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_stone = "default:sandstone",
|
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:sandstonebrick",
|
|
|
|
node_dungeon_stair = "stairs:stair_sandstone_block",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 60,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 0,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "sandstone_desert_ocean",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_stone = "default:sandstone",
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:sandstonebrick",
|
|
|
|
node_dungeon_stair = "stairs:stair_sandstone_block",
|
2018-05-15 23:27:39 +02:00
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 60,
|
|
|
|
humidity_point = 0,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "sandstone_desert_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2015-11-07 05:12:55 +01:00
|
|
|
heat_point = 60,
|
2016-12-01 04:15:15 +01:00
|
|
|
humidity_point = 0,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Cold desert
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "cold_desert",
|
|
|
|
node_top = "default:silver_sand",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
node_filler = "default:silver_sand",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_filler = 1,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 40,
|
|
|
|
humidity_point = 0,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "cold_desert_ocean",
|
2015-07-29 03:19:49 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
|
|
|
y_max = 3,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 40,
|
|
|
|
humidity_point = 0,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "cold_desert_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 40,
|
|
|
|
humidity_point = 0,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Savanna
|
2015-09-28 04:14:44 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "savanna",
|
2019-07-26 18:50:44 +02:00
|
|
|
node_top = "default:dry_dirt_with_dry_grass",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
2019-07-26 18:50:44 +02:00
|
|
|
node_filler = "default:dry_dirt",
|
2015-03-08 06:17:22 +01:00
|
|
|
depth_filler = 1,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 89,
|
|
|
|
humidity_point = 42,
|
2015-03-08 06:17:22 +01:00
|
|
|
})
|
|
|
|
|
2015-09-28 04:14:44 +02:00
|
|
|
minetest.register_biome({
|
2016-12-01 04:15:15 +01:00
|
|
|
name = "savanna_shore",
|
2019-07-26 18:50:44 +02:00
|
|
|
node_top = "default:dry_dirt",
|
2015-09-28 04:14:44 +02:00
|
|
|
depth_top = 1,
|
2019-07-26 18:50:44 +02:00
|
|
|
node_filler = "default:dry_dirt",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2015-09-28 04:14:44 +02:00
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -1,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 89,
|
|
|
|
humidity_point = 42,
|
2015-09-28 04:14:44 +02:00
|
|
|
})
|
|
|
|
|
2015-03-08 06:17:22 +01:00
|
|
|
minetest.register_biome({
|
2015-07-29 03:19:49 +02:00
|
|
|
name = "savanna_ocean",
|
2015-03-08 06:17:22 +01:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
y_max = -2,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
|
|
|
heat_point = 89,
|
|
|
|
humidity_point = 42,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "savanna_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
|
|
|
y_min = -31000,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 89,
|
|
|
|
humidity_point = 42,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Rainforest
|
2015-09-28 04:14:44 +02:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
minetest.register_biome({
|
|
|
|
name = "rainforest",
|
2017-02-26 02:37:35 +01:00
|
|
|
node_top = "default:dirt_with_rainforest_litter",
|
2015-07-29 03:19:49 +02:00
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = upper_limit,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 86,
|
|
|
|
humidity_point = 65,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "rainforest_swamp",
|
|
|
|
node_top = "default:dirt",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2015-07-29 03:19:49 +02:00
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -1,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 86,
|
|
|
|
humidity_point = 65,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "rainforest_ocean",
|
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
2015-11-03 02:52:43 +01:00
|
|
|
depth_filler = 3,
|
2016-06-05 18:21:15 +02:00
|
|
|
node_riverbed = "default:sand",
|
|
|
|
depth_riverbed = 2,
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = "default:water_source",
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-05-15 23:27:39 +02:00
|
|
|
vertical_blend = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
y_max = -2,
|
2019-04-19 22:23:26 +02:00
|
|
|
y_min = -255,
|
2016-12-01 04:15:15 +01:00
|
|
|
heat_point = 86,
|
|
|
|
humidity_point = 65,
|
2015-07-29 03:19:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
2019-04-19 22:23:26 +02:00
|
|
|
name = "rainforest_under",
|
2019-05-18 22:22:19 +02:00
|
|
|
node_cave_liquid = {"default:water_source", "default:lava_source"},
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2019-04-19 22:23:26 +02:00
|
|
|
y_max = -256,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -31000,
|
2019-04-19 22:23:26 +02:00
|
|
|
heat_point = 86,
|
|
|
|
humidity_point = 65,
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-03-08 06:17:22 +01:00
|
|
|
end
|
2015-03-26 00:30:27 +01:00
|
|
|
|
|
|
|
|
2017-03-12 11:58:09 +01:00
|
|
|
-- Biomes for floatlands
|
|
|
|
|
2017-08-01 05:47:37 +02:00
|
|
|
-- TODO Temporary simple biomes to be replaced by special floatland biomes later.
|
2017-03-12 11:58:09 +01:00
|
|
|
|
2017-08-01 05:47:37 +02:00
|
|
|
function default.register_floatland_biomes(floatland_level, shadow_limit)
|
2017-03-12 11:58:09 +01:00
|
|
|
|
|
|
|
minetest.register_biome({
|
2017-08-01 05:47:37 +02:00
|
|
|
name = "floatland_grassland",
|
2017-03-12 11:58:09 +01:00
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
2017-08-01 05:47:37 +02:00
|
|
|
depth_filler = 1,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2017-03-12 11:58:09 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 21:19:41 +01:00
|
|
|
y_min = floatland_level + 2,
|
2017-03-12 11:58:09 +01:00
|
|
|
heat_point = 50,
|
2018-02-25 21:19:41 +01:00
|
|
|
humidity_point = 25,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "floatland_coniferous_forest",
|
|
|
|
node_top = "default:dirt_with_coniferous_litter",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
depth_filler = 3,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-02-25 21:19:41 +01:00
|
|
|
y_max = 31000,
|
|
|
|
y_min = floatland_level + 2,
|
|
|
|
heat_point = 50,
|
|
|
|
humidity_point = 75,
|
2017-03-12 11:58:09 +01:00
|
|
|
})
|
|
|
|
|
2017-06-28 10:56:18 +02:00
|
|
|
minetest.register_biome({
|
2018-02-25 21:19:41 +01:00
|
|
|
name = "floatland_ocean",
|
2017-06-28 10:56:18 +02:00
|
|
|
node_top = "default:sand",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = "default:sand",
|
|
|
|
depth_filler = 3,
|
2019-07-01 22:58:47 +02:00
|
|
|
node_dungeon = "default:cobble",
|
|
|
|
node_dungeon_alt = "default:mossycobble",
|
|
|
|
node_dungeon_stair = "stairs:stair_cobble",
|
2018-02-25 21:19:41 +01:00
|
|
|
y_max = floatland_level + 1,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = shadow_limit,
|
2017-03-12 11:58:09 +01:00
|
|
|
heat_point = 50,
|
2017-07-14 01:09:13 +02:00
|
|
|
humidity_point = 50,
|
2017-03-12 11:58:09 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-03-26 00:30:27 +01:00
|
|
|
--
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Register decorations
|
2015-03-26 00:30:27 +01:00
|
|
|
--
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Mgv6
|
2015-03-26 00:30:27 +01:00
|
|
|
|
|
|
|
function default.register_mgv6_decorations()
|
|
|
|
|
|
|
|
-- Papyrus
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:papyrus",
|
2015-03-26 00:30:27 +01:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
2015-11-15 09:28:47 +01:00
|
|
|
sidelen = 16,
|
2015-03-26 00:30:27 +01:00
|
|
|
noise_params = {
|
|
|
|
offset = -0.3,
|
|
|
|
scale = 0.7,
|
2015-07-01 07:16:06 +02:00
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2015-03-26 00:30:27 +01:00
|
|
|
seed = 354,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7
|
|
|
|
},
|
|
|
|
y_max = 1,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-03-26 00:30:27 +01:00
|
|
|
decoration = "default:papyrus",
|
|
|
|
height = 2,
|
2015-08-07 17:03:53 +02:00
|
|
|
height_max = 4,
|
2015-03-26 00:30:27 +01:00
|
|
|
spawn_by = "default:water_source",
|
2015-04-05 02:12:32 +02:00
|
|
|
num_spawn_by = 1,
|
2015-03-26 00:30:27 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Cacti
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:cactus",
|
2015-03-26 00:30:27 +01:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:desert_sand"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.012,
|
|
|
|
scale = 0.024,
|
2015-07-01 07:16:06 +02:00
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2015-03-26 00:30:27 +01:00
|
|
|
seed = 230,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_max = 30,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-03-26 00:30:27 +01:00
|
|
|
decoration = "default:cactus",
|
|
|
|
height = 3,
|
|
|
|
height_max = 4,
|
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Long grasses
|
2015-03-26 00:30:27 +01:00
|
|
|
|
|
|
|
for length = 1, 5 do
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:grass_"..length,
|
2015-03-26 00:30:27 +01:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.007,
|
2015-07-01 07:16:06 +02:00
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2015-03-26 00:30:27 +01:00
|
|
|
seed = 329,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_max = 30,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-03-26 00:30:27 +01:00
|
|
|
decoration = "default:grass_"..length,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Dry shrubs
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:dry_shrub",
|
2015-03-26 00:30:27 +01:00
|
|
|
deco_type = "simple",
|
2015-04-23 06:24:38 +02:00
|
|
|
place_on = {"default:desert_sand", "default:dirt_with_snow"},
|
2015-03-26 00:30:27 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.035,
|
2015-07-01 07:16:06 +02:00
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2015-03-26 00:30:27 +01:00
|
|
|
seed = 329,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_max = 30,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-03-26 00:30:27 +01:00
|
|
|
decoration = "default:dry_shrub",
|
2018-01-01 10:24:15 +01:00
|
|
|
param2 = 4,
|
2015-03-26 00:30:27 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
|
|
|
|
-- All mapgens except mgv6
|
2015-03-26 00:30:27 +01:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
local function register_grass_decoration(offset, scale, length)
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:grass_" .. length,
|
2014-11-24 05:14:48 +01:00
|
|
|
deco_type = "simple",
|
2018-01-24 12:29:02 +01:00
|
|
|
place_on = {"default:dirt_with_grass"},
|
2014-11-24 05:14:48 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2015-07-29 03:19:49 +02:00
|
|
|
offset = offset,
|
|
|
|
scale = scale,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 329,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2018-01-24 12:29:02 +01:00
|
|
|
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
decoration = "default:grass_" .. length,
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
end
|
|
|
|
|
2015-08-07 17:03:53 +02:00
|
|
|
local function register_dry_grass_decoration(offset, scale, length)
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:dry_grass_" .. length,
|
2014-11-24 05:14:48 +01:00
|
|
|
deco_type = "simple",
|
2019-07-26 18:50:44 +02:00
|
|
|
place_on = {"default:dry_dirt_with_dry_grass"},
|
2014-11-24 05:14:48 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2015-08-07 17:03:53 +02:00
|
|
|
offset = offset,
|
|
|
|
scale = scale,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 329,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2015-07-29 03:19:49 +02:00
|
|
|
biomes = {"savanna"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
decoration = "default:dry_grass_" .. length,
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
end
|
|
|
|
|
2017-12-24 03:23:29 +01:00
|
|
|
local function register_fern_decoration(seed, length)
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:fern_" .. length,
|
2017-12-24 03:23:29 +01:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_coniferous_litter"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = seed,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7
|
|
|
|
},
|
2018-02-25 21:19:41 +01:00
|
|
|
biomes = {"coniferous_forest", "floatland_coniferous_forest"},
|
2017-12-24 03:23:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 6,
|
2017-12-24 03:23:29 +01:00
|
|
|
decoration = "default:fern_" .. length,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
function default.register_decorations()
|
2019-07-30 04:55:17 +02:00
|
|
|
-- Savanna bare dirt patches.
|
|
|
|
-- Must come before all savanna decorations that are placed on dry grass.
|
|
|
|
-- Noise is similar to long dry grass noise, but scale inverted, to appear
|
|
|
|
-- where long dry grass is least dense and shortest.
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dry_dirt_with_dry_grass"},
|
|
|
|
sidelen = 4,
|
|
|
|
noise_params = {
|
|
|
|
offset = -1.5,
|
|
|
|
scale = -1.5,
|
|
|
|
spread = {x = 200, y = 200, z = 200},
|
|
|
|
seed = 329,
|
|
|
|
octaves = 4,
|
|
|
|
persist = 1.0
|
|
|
|
},
|
|
|
|
biomes = {"savanna"},
|
|
|
|
y_max = 31000,
|
|
|
|
y_min = 1,
|
|
|
|
decoration = "default:dry_dirt",
|
|
|
|
place_offset_y = -1,
|
|
|
|
flags = "force_placement",
|
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2019-12-12 23:29:51 +01:00
|
|
|
-- Jogan tree and log
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2019-12-12 23:29:51 +01:00
|
|
|
name = "default:jogan_tree",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
2014-11-24 05:14:48 +01:00
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2018-08-21 00:56:00 +02:00
|
|
|
offset = 0.024,
|
|
|
|
scale = 0.015,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 2,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
2015-07-29 03:19:49 +02:00
|
|
|
persist = 0.66
|
2014-11-24 05:14:48 +01:00
|
|
|
},
|
2015-07-29 03:19:49 +02:00
|
|
|
biomes = {"deciduous_forest"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2019-12-12 23:29:51 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/jogan_tree.mts",
|
2015-07-29 03:19:49 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2017-03-07 13:00:14 +01:00
|
|
|
rotation = "random",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2015-12-27 21:41:09 +01:00
|
|
|
minetest.register_decoration({
|
2019-12-12 23:29:51 +01:00
|
|
|
name = "default:jogan_log",
|
2015-12-27 21:41:09 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
2018-06-15 08:25:43 +02:00
|
|
|
place_offset_y = 1,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2018-08-21 00:56:00 +02:00
|
|
|
offset = 0.0012,
|
|
|
|
scale = 0.0007,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.66
|
|
|
|
},
|
2015-12-27 21:41:09 +01:00
|
|
|
biomes = {"deciduous_forest"},
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2019-12-12 23:29:51 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/jogan_log.mts",
|
2015-12-27 21:41:09 +01:00
|
|
|
flags = "place_center_x",
|
|
|
|
rotation = "random",
|
2018-06-15 08:25:43 +02:00
|
|
|
spawn_by = "default:dirt_with_grass",
|
|
|
|
num_spawn_by = 8,
|
2015-12-27 21:41:09 +01:00
|
|
|
})
|
|
|
|
|
2017-05-10 09:23:26 +02:00
|
|
|
-- Emergent jungle tree
|
|
|
|
-- Due to 32 node height, altitude is limited and prescence depends on chunksize
|
|
|
|
|
|
|
|
local chunksize = tonumber(minetest.get_mapgen_setting("chunksize"))
|
|
|
|
if chunksize >= 5 then
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:emergent_jungle_tree",
|
2017-05-10 09:23:26 +02:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_rainforest_litter"},
|
|
|
|
sidelen = 80,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.0,
|
|
|
|
scale = 0.0025,
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2685,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7
|
|
|
|
},
|
|
|
|
biomes = {"rainforest"},
|
|
|
|
y_max = 32,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2017-05-10 09:23:26 +02:00
|
|
|
schematic = minetest.get_modpath("default") ..
|
|
|
|
"/schematics/emergent_jungle_tree.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
rotation = "random",
|
|
|
|
place_offset_y = -4,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2015-12-27 21:41:09 +01:00
|
|
|
-- Jungle tree and log
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:jungle_tree",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
2019-11-15 20:47:14 +01:00
|
|
|
place_on = {"default:dirt_with_rainforest_litter"},
|
2018-03-04 20:47:06 +01:00
|
|
|
sidelen = 80,
|
2016-04-05 18:01:15 +02:00
|
|
|
fill_ratio = 0.1,
|
2019-11-15 20:47:14 +01:00
|
|
|
biomes = {"rainforest"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2019-11-15 20:47:14 +01:00
|
|
|
y_min = 1,
|
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/jungle_tree.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
rotation = "random",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Swamp jungle trees
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
name = "default:jungle_tree(swamp)",
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt"},
|
|
|
|
sidelen = 16,
|
|
|
|
-- Noise tuned to place swamp trees where papyrus is absent
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.0,
|
|
|
|
scale = -0.1,
|
|
|
|
spread = {x = 200, y = 200, z = 200},
|
|
|
|
seed = 354,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.5
|
|
|
|
},
|
|
|
|
biomes = {"rainforest_swamp"},
|
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -1,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/jungle_tree.mts",
|
2015-07-29 03:19:49 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-09-28 04:14:44 +02:00
|
|
|
rotation = "random",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2015-12-27 21:41:09 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:jungle_log",
|
2015-12-27 21:41:09 +01:00
|
|
|
deco_type = "schematic",
|
2018-06-15 08:25:43 +02:00
|
|
|
place_on = {"default:dirt_with_rainforest_litter"},
|
|
|
|
place_offset_y = 1,
|
2018-03-04 20:47:06 +01:00
|
|
|
sidelen = 80,
|
2016-04-05 18:01:15 +02:00
|
|
|
fill_ratio = 0.005,
|
2019-11-15 20:47:14 +01:00
|
|
|
biomes = {"rainforest"},
|
2015-12-27 21:41:09 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2017-01-14 03:30:27 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/jungle_log.mts",
|
2015-12-27 21:41:09 +01:00
|
|
|
flags = "place_center_x",
|
|
|
|
rotation = "random",
|
2018-06-15 08:25:43 +02:00
|
|
|
spawn_by = "default:dirt_with_rainforest_litter",
|
|
|
|
num_spawn_by = 8,
|
2015-12-27 21:41:09 +01:00
|
|
|
})
|
|
|
|
|
2018-03-04 20:47:06 +01:00
|
|
|
-- Taiga and temperate coniferous forest pine tree, small pine tree and log
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:pine_tree",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
2017-12-22 01:59:42 +01:00
|
|
|
place_on = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
2014-11-24 05:14:48 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2018-03-04 20:47:06 +01:00
|
|
|
offset = 0.010,
|
|
|
|
scale = 0.048,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 2,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
2015-07-29 03:19:49 +02:00
|
|
|
persist = 0.66
|
2014-11-24 05:14:48 +01:00
|
|
|
},
|
2018-02-25 21:19:41 +01:00
|
|
|
biomes = {"taiga", "coniferous_forest", "floatland_coniferous_forest"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/pine_tree.mts",
|
2015-07-29 03:19:49 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2015-12-27 21:41:09 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:small_pine_tree",
|
2015-12-27 21:41:09 +01:00
|
|
|
deco_type = "schematic",
|
2017-12-22 01:59:42 +01:00
|
|
|
place_on = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
2018-03-04 20:47:06 +01:00
|
|
|
sidelen = 16,
|
2016-02-22 21:38:00 +01:00
|
|
|
noise_params = {
|
2018-03-04 20:47:06 +01:00
|
|
|
offset = 0.010,
|
|
|
|
scale = -0.048,
|
2016-02-22 21:38:00 +01:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.66
|
|
|
|
},
|
2018-02-25 21:19:41 +01:00
|
|
|
biomes = {"taiga", "coniferous_forest", "floatland_coniferous_forest"},
|
2015-12-27 21:41:09 +01:00
|
|
|
y_max = 31000,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2018-03-04 20:47:06 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/small_pine_tree.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:pine_log",
|
2018-03-04 20:47:06 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
2018-06-15 08:25:43 +02:00
|
|
|
place_offset_y = 1,
|
2018-03-04 20:47:06 +01:00
|
|
|
sidelen = 80,
|
|
|
|
fill_ratio = 0.0018,
|
|
|
|
biomes = {"taiga", "coniferous_forest", "floatland_coniferous_forest"},
|
|
|
|
y_max = 31000,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2017-01-14 03:30:27 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/pine_log.mts",
|
2015-12-27 21:41:09 +01:00
|
|
|
flags = "place_center_x",
|
|
|
|
rotation = "random",
|
2018-06-15 08:25:43 +02:00
|
|
|
spawn_by = {"default:dirt_with_snow", "default:dirt_with_coniferous_litter"},
|
|
|
|
num_spawn_by = 8,
|
2015-12-27 21:41:09 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Acacia tree and log
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:acacia_tree",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
2019-07-26 18:50:44 +02:00
|
|
|
place_on = {"default:dry_dirt_with_dry_grass"},
|
2015-11-15 09:28:47 +01:00
|
|
|
sidelen = 16,
|
2014-11-24 05:14:48 +01:00
|
|
|
noise_params = {
|
2015-08-07 17:03:53 +02:00
|
|
|
offset = 0,
|
2015-11-15 09:28:47 +01:00
|
|
|
scale = 0.002,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 2,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
2015-07-29 03:19:49 +02:00
|
|
|
persist = 0.66
|
2014-11-24 05:14:48 +01:00
|
|
|
},
|
2015-07-29 03:19:49 +02:00
|
|
|
biomes = {"savanna"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/acacia_tree.mts",
|
2015-07-29 03:19:49 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
rotation = "random",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-01-21 16:27:29 +01:00
|
|
|
|
2015-12-27 21:41:09 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:acacia_log",
|
2015-12-27 21:41:09 +01:00
|
|
|
deco_type = "schematic",
|
2019-07-26 18:50:44 +02:00
|
|
|
place_on = {"default:dry_dirt_with_dry_grass"},
|
2018-06-15 08:25:43 +02:00
|
|
|
place_offset_y = 1,
|
2015-12-27 21:41:09 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 0.001,
|
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.66
|
|
|
|
},
|
|
|
|
biomes = {"savanna"},
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2017-01-14 03:30:27 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/acacia_log.mts",
|
2015-12-27 21:41:09 +01:00
|
|
|
flags = "place_center_x",
|
|
|
|
rotation = "random",
|
2019-07-26 18:50:44 +02:00
|
|
|
spawn_by = "default:dry_dirt_with_dry_grass",
|
2018-06-15 08:25:43 +02:00
|
|
|
num_spawn_by = 8,
|
2015-12-27 21:41:09 +01:00
|
|
|
})
|
|
|
|
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
-- Aspen tree and log
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:aspen_tree",
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2016-02-03 22:56:00 +01:00
|
|
|
offset = 0.0,
|
2016-02-22 21:38:00 +01:00
|
|
|
scale = -0.015,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.66
|
|
|
|
},
|
|
|
|
biomes = {"deciduous_forest"},
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/aspen_tree.mts",
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:aspen_log",
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
2018-06-15 08:25:43 +02:00
|
|
|
place_offset_y = 1,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2016-02-03 22:56:00 +01:00
|
|
|
offset = 0.0,
|
2016-02-22 21:38:00 +01:00
|
|
|
scale = -0.0008,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
spread = {x = 250, y = 250, z = 250},
|
|
|
|
seed = 2,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.66
|
|
|
|
},
|
|
|
|
biomes = {"deciduous_forest"},
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2017-01-14 03:30:27 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/aspen_log.mts",
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
flags = "place_center_x",
|
|
|
|
rotation = "random",
|
2018-06-15 08:25:43 +02:00
|
|
|
spawn_by = "default:dirt_with_grass",
|
|
|
|
num_spawn_by = 8,
|
Aspen trees.
Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.
Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.
Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.
The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.
Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.
Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.
Add stairs, slabs for these wood types as well.
Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
2016-01-05 02:56:20 +01:00
|
|
|
})
|
2016-12-01 04:15:15 +01:00
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Large cactus
|
2014-11-24 05:14:48 +01:00
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:large_cactus",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:desert_sand"},
|
2015-11-15 09:28:47 +01:00
|
|
|
sidelen = 16,
|
2014-11-24 05:14:48 +01:00
|
|
|
noise_params = {
|
2015-11-23 02:07:28 +01:00
|
|
|
offset = -0.0003,
|
|
|
|
scale = 0.0009,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 230,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2015-07-29 03:19:49 +02:00
|
|
|
biomes = {"desert"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/large_cactus.mts",
|
2019-01-02 03:18:50 +01:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-07-29 03:19:49 +02:00
|
|
|
rotation = "random",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
-- Cactus
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:cactus",
|
2014-11-24 05:14:48 +01:00
|
|
|
deco_type = "simple",
|
2015-07-29 03:19:49 +02:00
|
|
|
place_on = {"default:desert_sand"},
|
2015-11-15 09:28:47 +01:00
|
|
|
sidelen = 16,
|
2014-11-24 05:14:48 +01:00
|
|
|
noise_params = {
|
2015-11-23 02:07:28 +01:00
|
|
|
offset = -0.0003,
|
|
|
|
scale = 0.0009,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 230,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2015-07-29 03:19:49 +02:00
|
|
|
biomes = {"desert"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-05-15 23:27:39 +02:00
|
|
|
y_min = 4,
|
2015-07-29 03:19:49 +02:00
|
|
|
decoration = "default:cactus",
|
|
|
|
height = 2,
|
2015-08-30 00:58:39 +02:00
|
|
|
height_max = 5,
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
-- Papyrus
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:papyrus",
|
2015-07-29 03:19:49 +02:00
|
|
|
deco_type = "schematic",
|
2015-10-05 02:25:23 +02:00
|
|
|
place_on = {"default:dirt"},
|
2014-11-24 05:14:48 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2015-07-29 03:19:49 +02:00
|
|
|
offset = -0.3,
|
|
|
|
scale = 0.7,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 354,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
2015-07-29 03:19:49 +02:00
|
|
|
persist = 0.7
|
2014-11-24 05:14:48 +01:00
|
|
|
},
|
2019-11-15 20:47:14 +01:00
|
|
|
biomes = {"savanna_shore", "rainforest_swamp"},
|
2015-07-29 03:19:49 +02:00
|
|
|
y_max = 0,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 0,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/papyrus.mts",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Bush
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:bush",
|
2016-12-01 04:15:15 +01:00
|
|
|
deco_type = "schematic",
|
2018-07-13 02:17:07 +02:00
|
|
|
place_on = {"default:dirt_with_grass"},
|
2016-12-01 04:15:15 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.004,
|
|
|
|
scale = 0.01,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 137,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7,
|
|
|
|
},
|
2018-07-13 02:17:07 +02:00
|
|
|
biomes = {"grassland", "deciduous_forest",
|
2017-03-12 11:58:09 +01:00
|
|
|
"floatland_grassland"},
|
2016-12-01 04:15:15 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/bush.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
})
|
|
|
|
|
2018-10-09 21:54:22 +02:00
|
|
|
-- Blueberry bush
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
name = "default:blueberry_bush",
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass", "default:dirt_with_snow"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.004,
|
|
|
|
scale = 0.01,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 697,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7,
|
|
|
|
},
|
|
|
|
biomes = {"grassland", "snowy_grassland"},
|
|
|
|
y_max = 31000,
|
|
|
|
y_min = 1,
|
|
|
|
place_offset_y = 1,
|
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/blueberry_bush.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Acacia bush
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:acacia_bush",
|
2016-12-01 04:15:15 +01:00
|
|
|
deco_type = "schematic",
|
2019-07-26 18:50:44 +02:00
|
|
|
place_on = {"default:dry_dirt_with_dry_grass"},
|
2016-12-01 04:15:15 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.004,
|
|
|
|
scale = 0.01,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 90155,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7,
|
|
|
|
},
|
|
|
|
biomes = {"savanna"},
|
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2016-12-01 04:15:15 +01:00
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/acacia_bush.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2018-07-13 02:17:07 +02:00
|
|
|
-- Pine bush
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
name = "default:pine_bush",
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_snow"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.004,
|
|
|
|
scale = 0.01,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 137,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7,
|
|
|
|
},
|
|
|
|
biomes = {"taiga", "snowy_grassland"},
|
|
|
|
y_max = 31000,
|
|
|
|
y_min = 4,
|
|
|
|
schematic = minetest.get_modpath("default") .. "/schematics/pine_bush.mts",
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
})
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Grasses
|
|
|
|
|
|
|
|
register_grass_decoration(-0.03, 0.09, 5)
|
|
|
|
register_grass_decoration(-0.015, 0.075, 4)
|
|
|
|
register_grass_decoration(0, 0.06, 3)
|
|
|
|
register_grass_decoration(0.015, 0.045, 2)
|
|
|
|
register_grass_decoration(0.03, 0.03, 1)
|
|
|
|
|
|
|
|
-- Dry grasses
|
|
|
|
|
2015-08-07 17:03:53 +02:00
|
|
|
register_dry_grass_decoration(0.01, 0.05, 5)
|
|
|
|
register_dry_grass_decoration(0.03, 0.03, 4)
|
|
|
|
register_dry_grass_decoration(0.05, 0.01, 3)
|
|
|
|
register_dry_grass_decoration(0.07, -0.01, 2)
|
|
|
|
register_dry_grass_decoration(0.09, -0.03, 1)
|
2015-07-29 03:19:49 +02:00
|
|
|
|
2017-12-24 03:23:29 +01:00
|
|
|
-- Ferns
|
|
|
|
|
|
|
|
register_fern_decoration(14936, 3)
|
|
|
|
register_fern_decoration(801, 2)
|
|
|
|
register_fern_decoration(5, 1)
|
|
|
|
|
2015-07-29 03:19:49 +02:00
|
|
|
-- Junglegrass
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:junglegrass",
|
2014-11-24 05:14:48 +01:00
|
|
|
deco_type = "simple",
|
2017-02-26 02:37:35 +01:00
|
|
|
place_on = {"default:dirt_with_rainforest_litter"},
|
2018-03-04 20:47:06 +01:00
|
|
|
sidelen = 80,
|
2015-07-29 03:19:49 +02:00
|
|
|
fill_ratio = 0.1,
|
|
|
|
biomes = {"rainforest"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 1,
|
2015-07-29 03:19:49 +02:00
|
|
|
decoration = "default:junglegrass",
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2015-07-29 03:19:49 +02:00
|
|
|
|
|
|
|
-- Dry shrub
|
|
|
|
|
2014-11-24 05:14:48 +01:00
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:dry_shrub",
|
2014-11-24 05:14:48 +01:00
|
|
|
deco_type = "simple",
|
2016-12-01 04:15:15 +01:00
|
|
|
place_on = {"default:desert_sand",
|
|
|
|
"default:sand", "default:silver_sand"},
|
2014-11-24 05:14:48 +01:00
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
2015-07-29 03:19:49 +02:00
|
|
|
offset = 0,
|
|
|
|
scale = 0.02,
|
2015-09-28 04:14:44 +02:00
|
|
|
spread = {x = 200, y = 200, z = 200},
|
2015-07-29 03:19:49 +02:00
|
|
|
seed = 329,
|
2014-11-24 05:14:48 +01:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2016-12-01 04:15:15 +01:00
|
|
|
biomes = {"desert", "sandstone_desert", "cold_desert"},
|
2015-01-21 16:27:29 +01:00
|
|
|
y_max = 31000,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 2,
|
2015-07-29 03:19:49 +02:00
|
|
|
decoration = "default:dry_shrub",
|
2018-01-01 10:24:15 +01:00
|
|
|
param2 = 4,
|
2014-11-24 05:14:48 +01:00
|
|
|
})
|
2016-12-01 04:15:15 +01:00
|
|
|
|
2018-01-24 12:29:02 +01:00
|
|
|
-- Marram grass
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:marram_grass",
|
2018-01-24 12:29:02 +01:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:sand"},
|
|
|
|
sidelen = 4,
|
|
|
|
noise_params = {
|
2019-09-21 22:28:09 +02:00
|
|
|
offset = -0.7,
|
|
|
|
scale = 4.0,
|
2018-01-24 12:29:02 +01:00
|
|
|
spread = {x = 16, y = 16, z = 16},
|
|
|
|
seed = 513337,
|
|
|
|
octaves = 1,
|
2019-09-21 22:28:09 +02:00
|
|
|
persist = 0.0,
|
|
|
|
flags = "absvalue, eased"
|
2018-01-24 12:29:02 +01:00
|
|
|
},
|
|
|
|
biomes = {"coniferous_forest_dunes", "grassland_dunes"},
|
2018-05-15 23:27:39 +02:00
|
|
|
y_max = 6,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = 4,
|
2018-01-24 12:29:02 +01:00
|
|
|
decoration = {
|
|
|
|
"default:marram_grass_1",
|
|
|
|
"default:marram_grass_2",
|
|
|
|
"default:marram_grass_3",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2018-05-05 00:05:47 +02:00
|
|
|
-- Tundra moss
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:permafrost_with_stones"},
|
|
|
|
sidelen = 4,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.8,
|
|
|
|
scale = 2.0,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 53995,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 1.0
|
|
|
|
},
|
|
|
|
biomes = {"tundra"},
|
2018-05-15 23:27:39 +02:00
|
|
|
y_max = 50,
|
2018-05-05 00:05:47 +02:00
|
|
|
y_min = 2,
|
|
|
|
decoration = "default:permafrost_with_moss",
|
|
|
|
place_offset_y = -1,
|
|
|
|
flags = "force_placement",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Tundra patchy snow
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {
|
|
|
|
"default:permafrost_with_moss",
|
|
|
|
"default:permafrost_with_stones",
|
2018-06-01 23:39:50 +02:00
|
|
|
"default:stone",
|
|
|
|
"default:gravel"
|
2018-05-05 00:05:47 +02:00
|
|
|
},
|
|
|
|
sidelen = 4,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = 1.0,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 172555,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 1.0
|
|
|
|
},
|
2018-06-01 23:39:50 +02:00
|
|
|
biomes = {"tundra", "tundra_beach"},
|
2018-05-15 23:27:39 +02:00
|
|
|
y_max = 50,
|
2018-06-01 23:39:50 +02:00
|
|
|
y_min = 1,
|
2018-05-05 00:05:47 +02:00
|
|
|
decoration = "default:snow",
|
|
|
|
})
|
|
|
|
|
2016-12-01 04:15:15 +01:00
|
|
|
-- Coral reef
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:corals",
|
2018-11-15 01:49:16 +01:00
|
|
|
deco_type = "simple",
|
2016-12-01 04:15:15 +01:00
|
|
|
place_on = {"default:sand"},
|
2018-11-15 01:49:16 +01:00
|
|
|
place_offset_y = -1,
|
|
|
|
sidelen = 4,
|
2016-12-01 04:15:15 +01:00
|
|
|
noise_params = {
|
2018-11-15 01:49:16 +01:00
|
|
|
offset = -4,
|
|
|
|
scale = 4,
|
|
|
|
spread = {x = 50, y = 50, z = 50},
|
2016-12-01 04:15:15 +01:00
|
|
|
seed = 7013,
|
|
|
|
octaves = 3,
|
2018-11-15 01:49:16 +01:00
|
|
|
persist = 0.7,
|
2016-12-01 04:15:15 +01:00
|
|
|
},
|
|
|
|
biomes = {
|
|
|
|
"desert_ocean",
|
|
|
|
"savanna_ocean",
|
|
|
|
"rainforest_ocean",
|
|
|
|
},
|
|
|
|
y_max = -2,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -8,
|
2018-11-15 01:49:16 +01:00
|
|
|
flags = "force_placement",
|
|
|
|
decoration = {
|
|
|
|
"default:coral_green", "default:coral_pink",
|
|
|
|
"default:coral_cyan", "default:coral_brown",
|
|
|
|
"default:coral_orange", "default:coral_skeleton",
|
|
|
|
},
|
2016-12-01 04:15:15 +01:00
|
|
|
})
|
2017-10-05 00:46:32 +02:00
|
|
|
|
|
|
|
-- Kelp
|
|
|
|
|
|
|
|
minetest.register_decoration({
|
2018-03-18 01:25:16 +01:00
|
|
|
name = "default:kelp",
|
2017-10-05 00:46:32 +02:00
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:sand"},
|
|
|
|
place_offset_y = -1,
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = -0.04,
|
|
|
|
scale = 0.1,
|
|
|
|
spread = {x = 200, y = 200, z = 200},
|
|
|
|
seed = 87112,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.7
|
|
|
|
},
|
|
|
|
biomes = {
|
|
|
|
"taiga_ocean",
|
|
|
|
"snowy_grassland_ocean",
|
|
|
|
"grassland_ocean",
|
|
|
|
"coniferous_forest_ocean",
|
|
|
|
"deciduous_forest_ocean",
|
|
|
|
"sandstone_desert_ocean",
|
|
|
|
"cold_desert_ocean"},
|
|
|
|
y_max = -5,
|
2018-02-25 12:25:34 +01:00
|
|
|
y_min = -10,
|
2017-10-05 00:46:32 +02:00
|
|
|
flags = "force_placement",
|
|
|
|
decoration = "default:sand_with_kelp",
|
|
|
|
param2 = 48,
|
|
|
|
param2_max = 96,
|
|
|
|
})
|
2015-01-21 16:27:29 +01:00
|
|
|
end
|
|
|
|
|
2015-03-26 00:30:27 +01:00
|
|
|
|
2015-07-27 00:08:47 +02:00
|
|
|
--
|
2017-03-12 11:58:09 +01:00
|
|
|
-- Detect mapgen, flags and parameters to select functions
|
2015-07-27 00:08:47 +02:00
|
|
|
--
|
|
|
|
|
2017-03-12 11:58:09 +01:00
|
|
|
-- Get setting or default
|
|
|
|
local mgv7_spflags = minetest.get_mapgen_setting("mgv7_spflags") or
|
2017-09-17 07:03:42 +02:00
|
|
|
"mountains, ridges, nofloatlands, caverns"
|
2017-03-12 11:58:09 +01:00
|
|
|
local captures_float = string.match(mgv7_spflags, "floatlands")
|
|
|
|
local captures_nofloat = string.match(mgv7_spflags, "nofloatlands")
|
|
|
|
|
2017-07-14 01:09:13 +02:00
|
|
|
-- Get setting or default
|
|
|
|
-- Make global for mods to use to register floatland biomes
|
|
|
|
default.mgv7_floatland_level =
|
|
|
|
minetest.get_mapgen_setting("mgv7_floatland_level") or 1280
|
|
|
|
default.mgv7_shadow_limit =
|
|
|
|
minetest.get_mapgen_setting("mgv7_shadow_limit") or 1024
|
2017-03-12 11:58:09 +01:00
|
|
|
|
2017-02-01 19:44:50 +01:00
|
|
|
minetest.clear_registered_biomes()
|
|
|
|
minetest.clear_registered_ores()
|
|
|
|
minetest.clear_registered_decorations()
|
|
|
|
|
2016-07-06 18:14:39 +02:00
|
|
|
local mg_name = minetest.get_mapgen_setting("mg_name")
|
2017-07-14 01:09:13 +02:00
|
|
|
|
2016-07-06 18:14:39 +02:00
|
|
|
if mg_name == "v6" then
|
2017-06-29 19:50:16 +02:00
|
|
|
default.register_mgv6_ores()
|
2015-07-27 00:08:47 +02:00
|
|
|
default.register_mgv6_decorations()
|
2017-09-17 07:03:42 +02:00
|
|
|
-- Need to check for 'nofloatlands' because that contains
|
|
|
|
-- 'floatlands' which makes the second condition true.
|
2017-07-14 01:09:13 +02:00
|
|
|
elseif mg_name == "v7" and
|
|
|
|
captures_float == "floatlands" and
|
2017-09-17 07:03:42 +02:00
|
|
|
captures_nofloat ~= "nofloatlands" then
|
2017-07-14 01:09:13 +02:00
|
|
|
-- Mgv7 with floatlands and floatland biomes
|
|
|
|
default.register_biomes(default.mgv7_shadow_limit - 1)
|
|
|
|
default.register_floatland_biomes(
|
|
|
|
default.mgv7_floatland_level, default.mgv7_shadow_limit)
|
2017-03-12 11:58:09 +01:00
|
|
|
default.register_ores()
|
|
|
|
default.register_decorations()
|
2016-07-11 18:55:17 +02:00
|
|
|
else
|
2017-03-12 11:58:09 +01:00
|
|
|
default.register_biomes(31000)
|
2016-01-26 08:35:28 +01:00
|
|
|
default.register_ores()
|
2015-07-27 00:08:47 +02:00
|
|
|
default.register_decorations()
|
|
|
|
end
|