summaryrefslogtreecommitdiff
path: root/builtin/settingtypes.txt
diff options
context:
space:
mode:
authorparamat <paramat@users.noreply.github.com>2017-06-21 04:20:18 +0100
committerparamat <mat.gregory@virginmedia.com>2017-06-22 03:14:56 +0100
commit2652d8db19fb2758de1da4c04ce169f80c87e5c7 (patch)
treeb2e88382103c2084e642db43ad9823867bdbaa88 /builtin/settingtypes.txt
parentbc53c82bcf923d11725e3de8565eb4c7e435cd2b (diff)
downloadminetest-2652d8db19fb2758de1da4c04ce169f80c87e5c7.tar.gz
minetest-2652d8db19fb2758de1da4c04ce169f80c87e5c7.tar.bz2
minetest-2652d8db19fb2758de1da4c04ce169f80c87e5c7.zip
CavesRandomWalk: Make 'lava_depth' a mapgen parameter
As with 'large_cave_depth', lava depth was previously a fixed y value and therefore incompatible with the ability to shift terrain vertically. Add 'lava_depth' mapgen parameter to mgflat, mgfractal, mgv5, mgv7.
Diffstat (limited to 'builtin/settingtypes.txt')
-rw-r--r--builtin/settingtypes.txt20
1 files changed, 16 insertions, 4 deletions
diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt
index ebdc9f752..f15fc679b 100644
--- a/builtin/settingtypes.txt
+++ b/builtin/settingtypes.txt
@@ -1028,9 +1028,12 @@ mgv5_spflags (Mapgen v5 specific flags) flags caverns caverns,nocaverns
# Controls width of tunnels, a smaller value creates wider tunnels.
mgv5_cave_width (Cave width) float 0.125
-# Y of upper limit of large pseudorandom caves.
+# Y of upper limit of large caves.
mgv5_large_cave_depth (Large cave depth) int -256
+# Y of upper limit of lava in large caves.
+mgv5_lava_depth (Lava depth) int -256
+
# Y-level of cavern upper limit.
mgv5_cavern_limit (Cavern limit) int -256
@@ -1137,9 +1140,12 @@ mgv7_spflags (Mapgen v7 specific flags) flags mountains,ridges,nofloatlands,cave
# Controls width of tunnels, a smaller value creates wider tunnels.
mgv7_cave_width (Cave width) float 0.09
-# Y of upper limit of large pseudorandom caves.
+# Y of upper limit of large caves.
mgv7_large_cave_depth (Large cave depth) int -33
+# Y of upper limit of lava in large caves.
+mgv7_lava_depth (Lava depth) int -256
+
# Controls the density of floatland mountain terrain.
# Is an offset added to the 'np_mountain' noise value.
mgv7_float_mount_density (Floatland mountain density) float 0.6
@@ -1218,9 +1224,12 @@ mgflat_spflags (Mapgen flat specific flags) flags nolakes,nohills lakes,hills,no
# Y of flat ground.
mgflat_ground_level (Ground level) int 8
-# Y of upper limit of large pseudorandom caves.
+# Y of upper limit of large caves.
mgflat_large_cave_depth (Large cave depth) int -33
+# Y of upper limit of lava in large caves.
+mgflat_lava_depth (Lava depth) int -256
+
# Controls width of tunnels, a smaller value creates wider tunnels.
mgflat_cave_width (Cave width) float 0.09
@@ -1257,9 +1266,12 @@ mgflat_np_cave2 (Cave2 noise) noise_params 0, 12, (67, 67, 67), 10325, 3, 0.5, 2
# Controls width of tunnels, a smaller value creates wider tunnels.
mgfractal_cave_width (Cave width) float 0.09
-# Y of upper limit of large pseudorandom caves.
+# Y of upper limit of large caves.
mgfractal_large_cave_depth (Large cave depth) int -33
+# Y of upper limit of lava in large caves.
+mgfractal_lava_depth (Lava depth) int -256
+
# Choice of 18 fractals from 9 formulas.
# 1 = 4D "Roundy" mandelbrot set.
# 2 = 4D "Roundy" julia set.