Refactor to ns_caves
parent
856987bb45
commit
6b38a7d7b2
|
@ -0,0 +1,46 @@
|
||||||
|
ns_caves.register_shape({
|
||||||
|
name = "ns_caves:bubbles",
|
||||||
|
noise_params = {
|
||||||
|
offset = -0.2,
|
||||||
|
scale = 0.5,
|
||||||
|
spread = { x = 100, y = 100, z = 100 },
|
||||||
|
seed = 248039,
|
||||||
|
octaves = 2,
|
||||||
|
persistence = 0.6,
|
||||||
|
lacunarity = 2.0,
|
||||||
|
flags = "eased",
|
||||||
|
},
|
||||||
|
y_min = -31000,
|
||||||
|
y_max = 0,
|
||||||
|
connectivity_point = 10,
|
||||||
|
verticality_point = 10,
|
||||||
|
})
|
||||||
|
|
||||||
|
ns_caves.register_shape({
|
||||||
|
name = "ns_caves:cliffs",
|
||||||
|
noise_params = {
|
||||||
|
offset = -0.4,
|
||||||
|
scale = 0.9,
|
||||||
|
spread = { x = 30, y = 200, z = 30 },
|
||||||
|
seed = 92742002,
|
||||||
|
octaves = 2,
|
||||||
|
persistence = 0.6,
|
||||||
|
lacunarity = 3.0,
|
||||||
|
flags = "eased",
|
||||||
|
},
|
||||||
|
y_min = -31000,
|
||||||
|
y_max = 0,
|
||||||
|
connectivity_point = 20,
|
||||||
|
verticality_point = 80,
|
||||||
|
})
|
||||||
|
|
||||||
|
ns_caves.register_biome({
|
||||||
|
name = "ns_caves:snow",
|
||||||
|
node_dust = "mcl_core:snow",
|
||||||
|
node_floor = "mcl_crimson:shroomlight",
|
||||||
|
node_wall = "mcl_core:cobble",
|
||||||
|
node_roof = "dripstone:dry_dripstone_block",
|
||||||
|
node_air = "air",
|
||||||
|
heat_point = 0,
|
||||||
|
humidity_point = 50,
|
||||||
|
})
|
2
mod.conf
2
mod.conf
|
@ -1,4 +1,4 @@
|
||||||
name=noordstar_caves
|
name=ns_caves
|
||||||
description=A mod that adds more depths and caves to VoxeLibre or Mineclonia
|
description=A mod that adds more depths and caves to VoxeLibre or Mineclonia
|
||||||
author=Noordstar
|
author=Noordstar
|
||||||
title=Noordstar Caves
|
title=Noordstar Caves
|
||||||
|
|
Loading…
Reference in New Issue