Floatland biomes: Add ocean biomes to fix missing sandstone

Update biome lists for blob ores.
This commit is contained in:
paramat 2017-06-28 09:56:18 +01:00 committed by paramat
parent 2c666891a8
commit bdc09d2313
1 changed files with 52 additions and 6 deletions

View File

@ -188,7 +188,8 @@ function default.register_blob_ores()
"deciduous_forest_shore", "deciduous_forest_ocean", "cold_desert",
"cold_desert_ocean", "savanna", "savanna_shore", "savanna_ocean",
"rainforest", "rainforest_swamp", "rainforest_ocean", "underground",
"floatland_ocean", "floatland_grassland", "floatland_coniferous_forest"}
"floatland_grassland", "floatland_grassland_ocean",
"floatland_coniferous_forest", "floatland_coniferous_forest_ocean"}
})
-- Dirt
@ -242,7 +243,8 @@ function default.register_blob_ores()
"deciduous_forest_shore", "deciduous_forest_ocean", "cold_desert",
"cold_desert_ocean", "savanna", "savanna_shore", "savanna_ocean",
"rainforest", "rainforest_swamp", "rainforest_ocean", "underground",
"floatland_ocean", "floatland_grassland", "floatland_coniferous_forest"}
"floatland_grassland", "floatland_grassland_ocean",
"floatland_coniferous_forest", "floatland_coniferous_forest_ocean"}
})
end
@ -1201,6 +1203,28 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
humidity_point = 70,
})
-- Coniferous forest ocean
minetest.register_biome({
name = "floatland_coniferous_forest_ocean",
--node_dust = "",
node_top = "default:sand",
depth_top = 1,
node_filler = "default:sand",
depth_filler = 3,
--node_stone = "",
--node_water_top = "",
--depth_water_top = ,
--node_water = "",
--node_river_water = "",
--node_riverbed = "",
--depth_riverbed = ,
y_min = shadow_limit,
y_max = floatland_level + 1,
heat_point = 50,
humidity_point = 70,
})
-- Grassland
minetest.register_biome({
@ -1223,6 +1247,28 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
humidity_point = 35,
})
-- Grassland ocean
minetest.register_biome({
name = "floatland_grassland_ocean",
--node_dust = "",
node_top = "default:sand",
depth_top = 1,
node_filler = "default:sand",
depth_filler = 3,
--node_stone = "",
--node_water_top = "",
--depth_water_top = ,
--node_water = "",
--node_river_water = "",
--node_riverbed = "",
--depth_riverbed = ,
y_min = shadow_limit,
y_max = floatland_level + 1,
heat_point = 50,
humidity_point = 35,
})
-- Sandstone desert
minetest.register_biome({
@ -1245,16 +1291,16 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
humidity_point = 0,
})
-- Floatland ocean / underground
-- Sandstone desert ocean
minetest.register_biome({
name = "floatland_ocean",
name = "floatland_sandstone_desert_ocean",
--node_dust = "",
node_top = "default:sand",
depth_top = 1,
node_filler = "default:sand",
depth_filler = 3,
--node_stone = "",
node_stone = "default:sandstone",
--node_water_top = "",
--depth_water_top = ,
--node_water = "",
@ -1264,7 +1310,7 @@ function default.register_floatland_biomes(floatland_level, shadow_limit)
y_min = shadow_limit,
y_max = floatland_level + 1,
heat_point = 50,
humidity_point = 50,
humidity_point = 0,
})
end