2015-09-01 17:15:24 +02:00
|
|
|
-- minetest/default/mapgen.lua
|
|
|
|
|
|
|
|
--
|
2015-10-02 02:10:41 +02:00
|
|
|
-- Aliases for map generator outputs(Might not be needed with v7, but JIC)
|
2015-09-01 17:15:24 +02:00
|
|
|
--
|
|
|
|
|
|
|
|
minetest.register_alias("mapgen_stone", "default:stone")
|
|
|
|
minetest.register_alias("mapgen_tree", "default:tree")
|
|
|
|
minetest.register_alias("mapgen_leaves", "default:leaves")
|
|
|
|
minetest.register_alias("mapgen_apple", "default:apple")
|
|
|
|
minetest.register_alias("mapgen_water_source", "default:water_source")
|
2015-09-27 01:34:45 +02:00
|
|
|
minetest.register_alias("mapgen_river_water_source", "default:river_water_source")
|
2015-09-01 17:15:24 +02:00
|
|
|
minetest.register_alias("mapgen_dirt", "default:dirt")
|
|
|
|
minetest.register_alias("mapgen_sand", "default:sand")
|
|
|
|
minetest.register_alias("mapgen_desert_sand", "default:sand")
|
|
|
|
minetest.register_alias("mapgen_desert_stone", "default:sandstone")
|
|
|
|
minetest.register_alias("mapgen_gravel", "default:gravel")
|
|
|
|
minetest.register_alias("mapgen_cobble", "default:cobble")
|
|
|
|
minetest.register_alias("mapgen_mossycobble", "default:reinforced_cobble")
|
|
|
|
minetest.register_alias("mapgen_dirt_with_grass", "default:dirt_with_grass")
|
|
|
|
minetest.register_alias("mapgen_junglegrass", "default:grass")
|
|
|
|
minetest.register_alias("mapgen_stone_with_coal", "default:stone_with_coal")
|
|
|
|
minetest.register_alias("mapgen_stone_with_iron", "default:stone_with_iron")
|
|
|
|
minetest.register_alias("mapgen_mese", "default:block_steel")
|
|
|
|
minetest.register_alias("mapgen_stair_cobble", "default:reinforced_frame")
|
|
|
|
minetest.register_alias("mapgen_lava_source", "default:water_source")
|
|
|
|
|
|
|
|
--
|
2015-10-03 22:36:01 +02:00
|
|
|
-- Biome setup
|
2015-09-01 17:15:24 +02:00
|
|
|
--
|
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
minetest.clear_registered_biomes()
|
2015-10-02 19:41:35 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
-- Aboveground biomes
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
minetest.register_biome(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
2015-10-03 22:36:01 +02:00
|
|
|
name = "Marsh",
|
2015-10-02 02:10:41 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
node_filler = "default:dirt",
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
depth_filler = 0,
|
|
|
|
depth_top = 1,
|
2015-10-02 19:41:35 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
y_min = 2,
|
|
|
|
y_max = 6,
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
heat_point = 35,
|
|
|
|
humidity_point = 55,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
minetest.register_biome(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
2015-10-03 22:36:01 +02:00
|
|
|
name = "Swamp",
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
node_top = "default:dirt_with_swamp_grass",
|
|
|
|
node_filler = "default:swamp_dirt",
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
depth_filler = 7,
|
|
|
|
depth_top = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
y_min = 2,
|
|
|
|
y_max = 10,
|
|
|
|
|
|
|
|
heat_point = 30,
|
|
|
|
humidity_point = 42,
|
|
|
|
})
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-09-01 22:52:01 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Deep Forest",
|
2015-10-02 19:41:35 +02:00
|
|
|
|
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
|
|
|
depth_filler = 6,
|
|
|
|
depth_top = 1,
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
y_min = 10,
|
2015-10-02 19:41:35 +02:00
|
|
|
y_max = 50,
|
|
|
|
|
|
|
|
heat_point = 30,
|
|
|
|
humidity_point = 40,
|
2015-09-01 22:52:01 +02:00
|
|
|
})
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Forest",
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
|
|
|
depth_filler = 6,
|
|
|
|
depth_top = 1,
|
|
|
|
|
|
|
|
y_min = 2,
|
|
|
|
y_max = 200,
|
|
|
|
|
|
|
|
heat_point = 35,
|
|
|
|
humidity_point = 40,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Grassland",
|
2015-10-02 19:41:35 +02:00
|
|
|
|
|
|
|
node_top = "default:dirt_with_grass",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
|
|
|
depth_filler = 3,
|
|
|
|
depth_top = 1,
|
|
|
|
|
|
|
|
y_min = 3,
|
|
|
|
y_max = 32000,
|
|
|
|
|
|
|
|
heat_point = 50,
|
|
|
|
humidity_point = 35,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2015-10-02 02:10:41 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
2015-10-03 20:57:35 +02:00
|
|
|
name = "Chaparral",
|
2015-10-02 19:41:35 +02:00
|
|
|
|
|
|
|
node_top = "default:dirt_with_dry_grass",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
depth_filler = 0,
|
2015-10-02 19:41:35 +02:00
|
|
|
depth_top = 1,
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
y_min = 56,
|
2015-10-02 19:41:35 +02:00
|
|
|
y_max = 32000,
|
|
|
|
|
|
|
|
heat_point = 60,
|
|
|
|
humidity_point = 30,
|
2015-10-02 02:10:41 +02:00
|
|
|
})
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Savanna",
|
|
|
|
|
|
|
|
node_top = "default:dirt_with_dry_grass",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
|
|
|
depth_filler = 2,
|
|
|
|
depth_top = 1,
|
|
|
|
|
|
|
|
y_min = 1,
|
|
|
|
y_max = 55,
|
|
|
|
|
|
|
|
heat_point = 60,
|
|
|
|
humidity_point = 25,
|
|
|
|
})
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Desert",
|
2015-10-02 19:41:35 +02:00
|
|
|
|
|
|
|
node_top = "default:sand",
|
|
|
|
node_filler = "default:sandstone",
|
|
|
|
|
|
|
|
depth_filler = 8,
|
|
|
|
depth_top = 3,
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
y_min = 1,
|
2015-10-02 19:41:35 +02:00
|
|
|
y_max = 32000,
|
|
|
|
|
|
|
|
heat_point = 70,
|
|
|
|
humidity_point = 20,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Oceans
|
2015-10-03 22:36:01 +02:00
|
|
|
|
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Swamp Ocean",
|
|
|
|
|
|
|
|
node_water = "default:swamp_water_source",
|
|
|
|
node_top = "default:swamp_dirt",
|
|
|
|
node_filler = "default:swamp_dirt",
|
|
|
|
|
|
|
|
depth_filler = 0,
|
|
|
|
depth_top = 9,
|
|
|
|
|
|
|
|
y_min = -3,
|
|
|
|
y_max = 1,
|
|
|
|
|
|
|
|
heat_point = 30,
|
|
|
|
humidity_point = 50,
|
|
|
|
})
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Grassland Ocean",
|
|
|
|
|
|
|
|
node_top = "default:sand",
|
|
|
|
node_filler = "default:dirt",
|
|
|
|
|
|
|
|
depth_filler = 1,
|
|
|
|
depth_top = 3,
|
|
|
|
|
|
|
|
y_min = -32000,
|
|
|
|
y_max = 2,
|
|
|
|
|
|
|
|
heat_point = 50,
|
|
|
|
humidity_point = 35,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
minetest.register_biome(
|
|
|
|
{
|
|
|
|
name = "Savanna Ocean",
|
|
|
|
|
|
|
|
node_top = "default:dirt",
|
|
|
|
node_filler = "dfault:dirt",
|
|
|
|
|
|
|
|
depth_filler = 0,
|
|
|
|
depth_top = 1,
|
|
|
|
|
|
|
|
y_min = -32000,
|
2015-10-03 20:57:35 +02:00
|
|
|
y_max = 0,
|
2015-10-02 19:41:35 +02:00
|
|
|
|
|
|
|
heat_point = 60,
|
|
|
|
humidity_point = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
2015-09-01 17:15:24 +02:00
|
|
|
-- Decorations
|
2015-10-02 19:41:35 +02:00
|
|
|
--
|
|
|
|
|
|
|
|
-- Trees
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
2015-10-02 19:41:35 +02:00
|
|
|
fill_ratio = 0.004,
|
|
|
|
biomes = {"Forest"},
|
2015-09-01 17:15:24 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-10-02 19:41:35 +02:00
|
|
|
replacements = {["default:leaves"] = "default:leaves_birch", ["default:tree"] = "default:tree_birch", ["default:apple"] = "air"},
|
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_squaretree.mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
y_min = -32000,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
2015-09-01 23:29:41 +02:00
|
|
|
place_on = {"default:dirt_with_grass"},
|
2015-09-01 17:15:24 +02:00
|
|
|
sidelen = 16,
|
2015-10-02 19:41:35 +02:00
|
|
|
fill_ratio = 0.005,
|
|
|
|
biomes = {"Grassland"},
|
2015-09-01 17:15:24 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-09-01 23:29:41 +02:00
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_tree.mts",
|
2015-10-02 19:41:35 +02:00
|
|
|
y_min = 10,
|
2015-09-01 23:29:41 +02:00
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
2015-10-02 19:41:35 +02:00
|
|
|
fill_ratio = 0.009,
|
|
|
|
biomes = {"Forest", "Deep Forest"},
|
2015-09-01 23:29:41 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-10-02 19:41:35 +02:00
|
|
|
replacements = {["default:leaves"] = "default:leaves_oak", ["default:tree"] = "default:tree_oak", ["default:apple"] = "air"},
|
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_tree.mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
y_min = -32000,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
2015-10-02 19:41:35 +02:00
|
|
|
fill_ratio = 0.008,
|
2015-09-01 17:15:24 +02:00
|
|
|
biomes = {"Forest"},
|
|
|
|
flags = "place_center_x, place_center_z",
|
2015-10-02 19:41:35 +02:00
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_megatree.mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
y_min = -32000,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
2015-10-02 19:41:35 +02:00
|
|
|
fill_ratio = 0.028,
|
|
|
|
biomes = {"Deep Forest"},
|
2015-09-01 17:15:24 +02:00
|
|
|
flags = "place_center_x, place_center_z",
|
2015-10-02 19:41:35 +02:00
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_gigatree.mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
y_min = -32000,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
-- Papyrus
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
2015-09-24 00:49:08 +02:00
|
|
|
place_on = {"default:sand", "default:dirt", "default:dirt_with_grass"},
|
|
|
|
spawn_by = {"default:water_source", "default:water_flowing"},
|
|
|
|
num_spawn_by = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
sidelen = 16,
|
2015-09-24 00:49:08 +02:00
|
|
|
fill_ratio = 0.08,
|
2015-10-02 19:41:35 +02:00
|
|
|
biomes = {"Grassland Ocean", "Grassland", "Forest", "Deep Forest"},
|
2015-09-24 00:49:08 +02:00
|
|
|
decoration = {"default:papyrus"},
|
|
|
|
height = 2,
|
|
|
|
height_max = 3,
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 31000,
|
|
|
|
})
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
-- Grasses
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_grass",
|
|
|
|
sidelen = 16,
|
2015-09-01 23:29:41 +02:00
|
|
|
fill_ratio = 0.18,
|
|
|
|
biomes = {"Grassland"},
|
|
|
|
decoration = {"default:grass"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_swamp_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.04,
|
|
|
|
biomes = {"Swamp"},
|
|
|
|
decoration = {"default:swamp_grass"},
|
|
|
|
y_min = 2,
|
|
|
|
y_max = 40,
|
|
|
|
})
|
|
|
|
|
2015-10-02 02:10:41 +02:00
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_dry_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.07,
|
2015-10-03 20:57:35 +02:00
|
|
|
biomes = {"Desert", "Savanna", "Chaparral"},
|
2015-10-02 02:10:41 +02:00
|
|
|
decoration = {"default:dry_grass"},
|
2015-10-02 19:41:35 +02:00
|
|
|
y_min = 10,
|
|
|
|
y_max = 500,
|
2015-10-02 02:10:41 +02:00
|
|
|
})
|
|
|
|
|
2015-09-01 23:29:41 +02:00
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.08,
|
|
|
|
biomes = {"Forest", "Deep Forest"},
|
2015-09-01 17:15:24 +02:00
|
|
|
decoration = {"default:grass"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.08,
|
2015-10-03 22:36:01 +02:00
|
|
|
biomes = {"Forest", "Marsh"},
|
2015-09-01 17:15:24 +02:00
|
|
|
decoration = {"default:tall_grass"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
2015-09-01 23:29:41 +02:00
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.15,
|
|
|
|
biomes = {"Deep Forest"},
|
|
|
|
decoration = {"default:tall_grass"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
2015-10-02 19:41:35 +02:00
|
|
|
-- Farming
|
|
|
|
|
|
|
|
if minetest.get_modpath("farming") ~= nil then
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:dirt_with_grass",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.006,
|
|
|
|
biomes = {"Grassland", "Savanna"},
|
|
|
|
decoration = {"farming:wheat_4"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = "default:sand",
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.004,
|
|
|
|
biomes = {"Desert"},
|
|
|
|
decoration = {"farming:cotton_4"},
|
|
|
|
y_min = 0,
|
|
|
|
y_max = 32000,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Cactus
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:sand"},
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.004,
|
|
|
|
biomes = {"Desert"},
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_cactus.mts",
|
2015-10-02 19:41:35 +02:00
|
|
|
y_min = 10,
|
|
|
|
y_max = 500,
|
2015-09-01 17:15:24 +02:00
|
|
|
rotation = "random",
|
|
|
|
})
|
|
|
|
|
2015-10-03 20:57:35 +02:00
|
|
|
-- Shrubs
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_dry_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.005,
|
|
|
|
biomes = {"Savanna", "Chaparral"},
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
replacements = {["default:leaves"] = "default:dry_leaves"},
|
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_shrub.mts",
|
|
|
|
y_min = 3,
|
|
|
|
y_max = 32000,
|
|
|
|
rotation = "0",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_decoration(
|
|
|
|
{
|
|
|
|
deco_type = "schematic",
|
|
|
|
place_on = {"default:dirt_with_dry_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
fill_ratio = 0.06,
|
|
|
|
biomes = {"Chaparral"},
|
|
|
|
flags = "place_center_x, place_center_z",
|
|
|
|
replacements = {["default:leaves"] = "default:dry_leaves"},
|
|
|
|
schematic = minetest.get_modpath("default").."/schematics/default_bush.mts",
|
|
|
|
y_min = -32000,
|
|
|
|
y_max = 32000,
|
|
|
|
rotation = "0",
|
|
|
|
})
|
|
|
|
|
2015-10-03 22:36:01 +02:00
|
|
|
--
|
|
|
|
-- Ore generation
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Coal
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 10*10*10,
|
|
|
|
clust_num_ores = 6,
|
|
|
|
clust_size = 4,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = 32,
|
|
|
|
})
|
|
|
|
|
|
|
|
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 = 6,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = -32,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_coal",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 9*9*9,
|
|
|
|
clust_num_ores = 20,
|
|
|
|
clust_size = 10,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = -64,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Iron
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_iron",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8*8*8,
|
|
|
|
clust_num_ores = 6,
|
|
|
|
clust_size = 4,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = 0,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "scatter",
|
|
|
|
ore = "default:stone_with_iron",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 8*8*8,
|
|
|
|
clust_num_ores = 20,
|
|
|
|
clust_size = 10,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = -32,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Steel blocks
|
|
|
|
|
|
|
|
minetest.register_ore(
|
|
|
|
{
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:block_steel",
|
|
|
|
wherein = "default:stone",
|
|
|
|
clust_scarcity = 12*12*12,
|
|
|
|
clust_num_ores = 10,
|
|
|
|
clust_size = 10,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = -128,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Water
|
|
|
|
|
|
|
|
minetest.register_ore( -- Springs
|
|
|
|
{
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:water_source",
|
|
|
|
wherein = "default:dirt_with_grass",
|
|
|
|
clust_scarcity = 18*18*18,
|
|
|
|
clust_num_ores = 1,
|
|
|
|
clust_size = 1,
|
|
|
|
height_min = 20,
|
|
|
|
height_max = 31000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore( -- Swamp
|
|
|
|
{
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:swamp_water_source",
|
|
|
|
wherein = {"default:dirt_with_swamp_grass", "default:swamp_dirt"},
|
|
|
|
biomes = {"Swamp", "Swamp Ocean"},
|
|
|
|
clust_scarcity = 10*10*10,
|
|
|
|
clust_num_ores = 10,
|
|
|
|
clust_size = 4,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = 31000,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_ore( -- Marsh
|
|
|
|
{
|
|
|
|
ore_type = "blob",
|
|
|
|
ore = "default:swamp_water_source",
|
|
|
|
wherein = {"default:dirt_with_grass", "default:dirt"},
|
|
|
|
biomes = {"Marsh"},
|
|
|
|
clust_scarcity = 6*6*6,
|
|
|
|
clust_num_ores = 10,
|
|
|
|
clust_size = 6,
|
|
|
|
height_min = -31000,
|
|
|
|
height_max = 31000,
|
|
|
|
})
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
default.log("mapgen", "loaded")
|