47 lines
1.1 KiB
Lua
47 lines
1.1 KiB
Lua
-- Springs
|
|
core.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "pyutest_blocks:water_source",
|
|
wherein = PyuTest.ORE_STONES,
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 1,
|
|
clust_size = 1,
|
|
y_max = PyuTest.OVERWORLD_TOP,
|
|
y_min = PyuTest.OVERWORLD_SURFACE_BOTTOM,
|
|
})
|
|
|
|
core.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "pyutest_blocks:lava_source",
|
|
wherein = PyuTest.ORE_STONES,
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 1,
|
|
clust_size = 1,
|
|
y_max = PyuTest.OVERWORLD_TOP,
|
|
y_min = PyuTest.BIOME_TOPS.normal,
|
|
})
|
|
|
|
core.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "pyutest_blocks:lava_source",
|
|
wherein = PyuTest.ORE_STONES,
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 1,
|
|
clust_size = 1,
|
|
y_max = PyuTest.OVERWORLD_DEEP_OCEAN_MIN - 1,
|
|
y_min = PyuTest.OVERWORLD_BOTTOM,
|
|
})
|
|
|
|
-- Mountain Strips
|
|
core.register_ore({
|
|
ore_type = "sheet",
|
|
ore = "pyutest_blocks:calcite_block",
|
|
wherein = "pyutest_blocks:stone_block",
|
|
y_max = PyuTest.BIOME_TOPS.mountains,
|
|
y_min = PyuTest.BIOME_TOPS.normal,
|
|
noise_params = PyuTest.MOUNTAIN_STRIP_NOISE_PARAMS,
|
|
column_height_max = 18,
|
|
column_height_min = 8,
|
|
column_midpoint_factor = 1,
|
|
})
|