mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-05 01:50:43 +01:00
580 lines
19 KiB
Lua
580 lines
19 KiB
Lua
--dfcaverns.spawn_tower_cap_vm(vi, area, data)
|
|
--dfcaverns.spawn_fungiwood_vm(vi, area, data)
|
|
--dfcaverns.spawn_tunnel_tube_vm(vi, area, data, param2_data)
|
|
--dfcaverns.spawn_spore_tree_vm(vi, data, area)
|
|
--dfcaverns.spawn_goblin_cap_vm(vi, area, data)
|
|
|
|
local c_water = minetest.get_content_id("default:water_source")
|
|
local c_air = minetest.get_content_id("air")
|
|
local c_stone = minetest.get_content_id("default:stone")
|
|
local c_cobble = minetest.get_content_id("default:cobble")
|
|
local c_mossycobble = minetest.get_content_id("default:mossycobble")
|
|
local c_dirt = minetest.get_content_id("default:dirt")
|
|
local c_stone_with_coal = minetest.get_content_id("default:stone_with_coal")
|
|
|
|
local c_dirt_moss = minetest.get_content_id("dfcaverns:dirt_with_cave_moss")
|
|
local c_cobble_fungus = minetest.get_content_id("dfcaverns:cobble_with_floor_fungus")
|
|
|
|
local c_wet_flowstone = minetest.get_content_id("dfcaverns:wet_flowstone")
|
|
local c_dry_flowstone = minetest.get_content_id("dfcaverns:dry_flowstone")
|
|
|
|
local c_sweet_pod = minetest.get_content_id("dfcaverns:sweet_pod_6") -- param2 = 0
|
|
local c_quarry_bush = minetest.get_content_id("dfcaverns:quarry_bush_5") -- param2 = 4
|
|
local c_plump_helmet = minetest.get_content_id("dfcaverns:plump_helmet_4") -- param2 = 0-3
|
|
local c_pig_tail = minetest.get_content_id("dfcaverns:pig_tail_8") -- param2 = 3
|
|
local c_dimple_cup = minetest.get_content_id("dfcaverns:dimple_cup_4") -- param2 = 0
|
|
local c_cave_wheat = minetest.get_content_id("dfcaverns:cave_wheat_8") -- param2 = 3
|
|
local c_dead_fungus = minetest.get_content_id("dfcaverns:dead_fungus") -- param2 = 0
|
|
local c_cavern_fungi = minetest.get_content_id("dfcaverns:cavern_fungi") -- param2 = 0
|
|
|
|
local subsea_level = (dfcaverns.config.level1_min - dfcaverns.config.level2_min) * 0.3 + dfcaverns.config.level2_min
|
|
local flooded_biomes = dfcaverns.config.flooded_biomes
|
|
|
|
local level_2_tower_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_dirt
|
|
else
|
|
data[bi] = c_dirt_moss
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if math.random() < 0.1 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_plump_helmet, c_pig_tail, c_dead_fungus, c_cavern_fungi})
|
|
elseif drip_rand < 0.0025 then
|
|
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.005 then
|
|
dfcaverns.spawn_tower_cap_vm(vi, area, data)
|
|
end
|
|
end
|
|
|
|
local level_2_fungiwood_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_dirt
|
|
else
|
|
data[bi] = c_dirt_moss
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if math.random() < 0.1 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_pig_tail, c_cave_wheat, c_cave_wheat, c_dead_fungus, c_cavern_fungi})
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.005 then
|
|
dfcaverns.spawn_fungiwood_vm(vi, area, data)
|
|
end
|
|
end
|
|
|
|
local level_2_tunnel_tube_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_dirt
|
|
else
|
|
data[bi] = c_dirt_moss
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if math.random() < 0.1 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_pig_tail, c_pig_tail, c_cave_wheat, c_cave_wheat, c_dead_fungus, c_cavern_fungi})
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.05 then
|
|
dfcaverns.spawn_tunnel_tube_vm(vi, area, data, param2_data)
|
|
end
|
|
end
|
|
|
|
local level_2_black_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_stone_with_coal
|
|
else
|
|
data[bi] = c_cobble_fungus
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if math.random() < 0.05 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_quarry_bush, c_dead_fungus, c_dead_fungus})
|
|
elseif drip_rand < 0.001 then
|
|
subterrane:giant_stalagmite(bi, area, data, 6, 15, c_dry_flowstone, c_dry_flowstone, c_dry_flowstone)
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.025 then
|
|
dfcaverns.spawn_black_cap_vm(vi, area, data)
|
|
end
|
|
end
|
|
|
|
local level_2_spore_tree_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_dirt
|
|
else
|
|
data[bi] = c_dirt_moss
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if math.random() < 0.1 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_pig_tail, c_dimple_cup, c_dimple_cup, c_cave_wheat, c_dead_fungus, c_cavern_fungi})
|
|
elseif drip_rand < 0.001 then
|
|
subterrane:giant_stalagmite(bi, area, data, 6, 15, c_wet_flowstone, c_wet_flowstone, c_wet_flowstone)
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.05 then
|
|
dfcaverns.spawn_spore_tree_vm(vi, area, data)
|
|
end
|
|
end
|
|
|
|
local level_2_goblin_cap_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_dirt
|
|
else
|
|
data[bi] = c_dirt_moss
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if math.random() < 0.1 then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_plump_helmet, c_dimple_cup, c_pig_tail, c_dead_fungus, c_cavern_fungi})
|
|
elseif drip_rand < 0.001 then
|
|
subterrane:giant_stalagmite(bi, area, data, 6, 15, c_wet_flowstone, c_wet_flowstone, c_wet_flowstone)
|
|
elseif drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.025 then
|
|
dfcaverns.spawn_goblin_cap_vm(vi, area, data)
|
|
end
|
|
end
|
|
|
|
|
|
local level_2_moist_ceiling = function(area, data, ai, vi, bi, param2_data)
|
|
if data[ai] ~= c_stone then
|
|
return
|
|
end
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if drip_rand < 0.002 then
|
|
subterrane:giant_stalactite(ai, area, data, 6, 15, c_wet_flowstone, c_wet_flowstone, c_wet_flowstone)
|
|
elseif drip_rand < 0.07 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.07 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.wet_stalagmite_ids)
|
|
elseif math.random() < 0.025 then
|
|
dfcaverns.glow_worm_ceiling(area, data, ai, vi, bi)
|
|
end
|
|
end
|
|
|
|
local level_2_wet_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.5 then
|
|
data[bi] = c_mossycobble
|
|
if math.random() < 0.05 then
|
|
data[vi] = c_dead_fungus
|
|
elseif math.random() < 0.05 then
|
|
data[vi] = c_cavern_fungi
|
|
end
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if drip_rand < 0.001 then
|
|
subterrane:giant_stalagmite(bi, area, data, 6, 15, c_wet_flowstone, c_wet_flowstone, c_wet_flowstone)
|
|
elseif drip_rand < 0.05 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.05 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
local level_2_dry_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.25 then
|
|
data[bi] = c_cobble_fungus
|
|
if math.random() < 0.1 then
|
|
data[vi] = c_dead_fungus
|
|
end
|
|
elseif math.random() < 0.5 then
|
|
data[bi] = c_cobble
|
|
end
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if drip_rand < 0.001 then
|
|
subterrane:giant_stalagmite(bi, area, data, 6, 15, c_dry_flowstone, c_dry_flowstone, c_dry_flowstone)
|
|
elseif drip_rand < 0.05 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.05 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.dry_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
local level_2_dry_ceiling = function(area, data, ai, vi, bi, param2_data)
|
|
if data[ai] ~= c_stone then
|
|
return
|
|
end
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if drip_rand < 0.075 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.075 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.dry_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
local level_2_black_cap_ceiling = function(area, data, ai, vi, bi, param2_data)
|
|
if data[ai] ~= c_stone then
|
|
return
|
|
end
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if drip_rand < 0.075 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.075 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.dry_stalagmite_ids)
|
|
elseif math.random() < 0.25 then
|
|
data[ai] = c_stone_with_coal
|
|
end
|
|
end
|
|
|
|
local level_2_crystal_ceiling = function(area, data, ai, vi, bi, param2_data)
|
|
if data[ai] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
if math.random() < 0.0025 then
|
|
dfcaverns.place_big_crystal_cluster(area, data, param2_data, vi, math.random(0,1), true)
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if drip_rand < 0.075 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.075 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.dry_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
local level_2_underwater_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
data[bi] = c_dirt
|
|
|
|
if flooded_biomes then
|
|
if data[vi] == c_air then
|
|
data[vi] = c_water
|
|
end
|
|
if data[ai] == c_air then
|
|
data[ai] = c_water
|
|
end
|
|
elseif math.random() < 0.01 then
|
|
if data[vi] == c_air then
|
|
data[vi] = c_water
|
|
end
|
|
end
|
|
end
|
|
|
|
local level_2_cave_floor = function(area, data, ai, vi, bi, param2_data)
|
|
if dfcaverns.can_support_vegetation[data[bi]] then
|
|
data[bi] = c_cobble_fungus
|
|
if math.random() < 0.15 then
|
|
if data[vi] == c_air then
|
|
dfcaverns.place_shrub(data, vi, param2_data, {c_plump_helmet, c_pig_tail, c_dead_fungus, c_dead_fungus, c_cavern_fungi})
|
|
end
|
|
end
|
|
return
|
|
end
|
|
|
|
if data[bi] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
if drip_rand < 0.075 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.075 * 4)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, height, dfcaverns.wet_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
local level_2_cave_ceiling = function(area, data, ai, vi, bi, param2_data)
|
|
if data[ai] ~= c_stone then
|
|
return
|
|
end
|
|
|
|
local drip_rand = subterrane:vertically_consistent_random(vi, area)
|
|
|
|
if drip_rand < 0.1 then
|
|
local param2 = drip_rand*1000000 - math.floor(drip_rand*1000000/4)*4
|
|
local height = math.floor(drip_rand/0.1 * 5)
|
|
subterrane:small_stalagmite(vi, area, data, param2_data, param2, -height, dfcaverns.wet_stalagmite_ids)
|
|
end
|
|
end
|
|
|
|
-------------------------------------------------------------------------------------------
|
|
|
|
local c_flood_fill
|
|
if flooded_biomes then
|
|
c_flood_fill = c_water
|
|
else
|
|
c_flood_fill = c_air
|
|
end
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_flooded_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 50,
|
|
humidity_point = 90,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_fill_node = c_flood_fill,
|
|
_subterrane_floor_decor = level_2_underwater_floor,
|
|
_subterrane_mitigate_lava = false,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_flooded_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 50,
|
|
humidity_point = 90,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_wet_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_fill_node = c_flood_fill,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_tower_cap_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 0,
|
|
humidity_point = 40,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_tower_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_tower_cap_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 0,
|
|
humidity_point = 40,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_tower_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_fungiwood_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 100,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_fungiwood_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_fungiwood_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 100,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_fungiwood_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_goblin_cap_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 20,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_goblin_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_goblin_cap_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 20,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_goblin_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_spore_tree_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 60,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_spore_tree_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_spore_tree_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 60,
|
|
humidity_point = 60,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_spore_tree_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_tunnel_tube_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 80,
|
|
humidity_point = 40,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_tunnel_tube_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_tunnel_tube_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 80,
|
|
humidity_point = 40,
|
|
_subterrane_ceiling_decor = level_2_moist_ceiling,
|
|
_subterrane_floor_decor = level_2_tunnel_tube_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_black_cap_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 50,
|
|
humidity_point = 20,
|
|
_subterrane_ceiling_decor = level_2_black_cap_ceiling,
|
|
_subterrane_floor_decor = level_2_black_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_column_node = c_dry_flowstone,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_black_cap_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 50,
|
|
humidity_point = 20,
|
|
_subterrane_ceiling_decor = level_2_black_cap_ceiling,
|
|
_subterrane_floor_decor = level_2_black_cap_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_column_node = c_dry_flowstone,
|
|
_subterrane_cave_floor_decor = level_2_cave_floor,
|
|
_subterrane_cave_ceiling_decor = level_2_cave_ceiling,
|
|
_subterrane_mitigate_lava = true,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_dry_biome_lower",
|
|
y_min = dfcaverns.config.level2_min,
|
|
y_max = subsea_level,
|
|
heat_point = 50,
|
|
humidity_point = 15,
|
|
_subterrane_ceiling_decor = level_2_crystal_ceiling,
|
|
_subterrane_floor_decor = level_2_dry_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_column_node = c_dry_flowstone,
|
|
_subterrane_mitigate_lava = false,
|
|
})
|
|
|
|
minetest.register_biome({
|
|
name = "dfcaverns_level2_dry_biome_upper",
|
|
y_min = subsea_level,
|
|
y_max = dfcaverns.config.level1_min,
|
|
heat_point = 50,
|
|
humidity_point = 15,
|
|
_subterrane_ceiling_decor = level_2_dry_ceiling,
|
|
_subterrane_floor_decor = level_2_dry_floor,
|
|
_subterrane_fill_node = c_air,
|
|
_subterrane_column_node = c_dry_flowstone,
|
|
_subterrane_mitigate_lava = false,
|
|
}) |