Skip to content

Commit

Permalink
biome adjustments
Browse files Browse the repository at this point in the history
restrict palm biomes
remove icesheet
  • Loading branch information
Michiel1973 committed Jun 1, 2020
1 parent 838aa52 commit 4b0f155
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 58 deletions.
114 changes: 57 additions & 57 deletions mods/default/mapgen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -918,63 +918,63 @@ function default.register_biomes()

-- Icesheet

minetest.register_biome({
name = "default_icesheet",
node_dust = "default:snowblock",
node_top = "default:snowblock",
depth_top = 1,
node_filler = "default:snowblock",
depth_filler = 3,
node_stone = "default:cave_ice",
node_water_top = "default:ice",
depth_water_top = 10,
node_river_water = "default:ice",
node_riverbed = "default:gravel",
depth_riverbed = 2,
node_dungeon = "default:ice",
node_dungeon_stair = "stairs:stair_ice",
y_max = 20,
vertical_blend = 3,
horizontal_blend = 4,
y_min = -8,
heat_point = 0,
humidity_point = 73,
})

minetest.register_biome({
name = "default_icesheet_ocean",
node_dust = "default:snowblock",
node_top = "default:sand",
depth_top = 1,
node_filler = "default:sand",
depth_filler = 3,
node_water_top = "default:ice",
depth_water_top = 10,
node_cave_liquid = "default:water_source",
node_dungeon = "default:cobble",
node_dungeon_alt = "default:mossycobble",
node_dungeon_stair = "stairs:stair_cobble",
y_max = -9,
y_min = -255,
vertical_blend = 3,
horizontal_blend = 4,
heat_point = 0,
humidity_point = 73,
})

minetest.register_biome({
name = "default_icesheet_under",
node_cave_liquid = {"default:water_source", "default:lava_source"},
node_dungeon = "default:cobble",
node_dungeon_alt = "default:mossycobble",
node_dungeon_stair = "stairs:stair_cobble",
y_max = -256,
y_min = -31000,
vertical_blend = 3,
horizontal_blend = 4,
heat_point = 0,
humidity_point = 73,
})
-- minetest.register_biome({
-- name = "default_icesheet",
-- node_dust = "default:snowblock",
-- node_top = "default:snowblock",
-- depth_top = 1,
-- node_filler = "default:snowblock",
-- depth_filler = 3,
-- node_stone = "default:cave_ice",
-- node_water_top = "default:ice",
-- depth_water_top = 10,
-- node_river_water = "default:ice",
-- node_riverbed = "default:gravel",
-- depth_riverbed = 2,
-- node_dungeon = "default:ice",
-- node_dungeon_stair = "stairs:stair_ice",
-- y_max = 20,
-- vertical_blend = 3,
-- horizontal_blend = 4,
-- y_min = -8,
-- heat_point = 0,
-- humidity_point = 73,
-- })

-- minetest.register_biome({
-- name = "default_icesheet_ocean",
-- node_dust = "default:snowblock",
-- node_top = "default:sand",
-- depth_top = 1,
-- node_filler = "default:sand",
-- depth_filler = 3,
-- node_water_top = "default:ice",
-- depth_water_top = 10,
-- node_cave_liquid = "default:water_source",
-- node_dungeon = "default:cobble",
-- node_dungeon_alt = "default:mossycobble",
-- node_dungeon_stair = "stairs:stair_cobble",
-- y_max = -9,
-- y_min = -255,
-- vertical_blend = 3,
-- horizontal_blend = 4,
-- heat_point = 0,
-- humidity_point = 73,
-- })

-- minetest.register_biome({
-- name = "default_icesheet_under",
-- node_cave_liquid = {"default:water_source", "default:lava_source"},
-- node_dungeon = "default:cobble",
-- node_dungeon_alt = "default:mossycobble",
-- node_dungeon_stair = "stairs:stair_cobble",
-- y_max = -256,
-- y_min = -31000,
-- vertical_blend = 3,
-- horizontal_blend = 4,
-- heat_point = 0,
-- humidity_point = 73,
-- })

-- Tundra

Expand Down
2 changes: 1 addition & 1 deletion mods/palm/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ minetest.register_decoration({
octaves = 3,
persist = 0.66
},
--biomes = {"sandstone_desert_ocean", "desert_ocean"},
biomes = {"default_grassland_ocean", "default_grassland_dunes","aotearoa_pohutukawa_dunes","default_rainforest_ocean"},
y_min = 1,
y_max = 2,
schematic = palm.palmtree,
Expand Down

0 comments on commit 4b0f155

Please sign in to comment.