2024-10-12 17:40:47 -06:00

36 lines
958 B
Lua

PyuTest.IceWorld = PyuTest.register_world({
name = "ice_world",
y_max = -1000,
y_min = -1999
})
PyuTest.IceWorld:create_token("pyutest_worlds:ice_world_token", "Ice World", "#cbdbfc", "pyutest_blocks:ice_block")
local icy_cavern = PyuTest.IceWorld:register_biome({
name = "icy_cavern",
node_stone = "pyutest_blocks:ice_block",
heat_point = 0,
humidity_point = 0
})
PyuTest.IceWorld:register_ore({
ore_type = "blob",
ore = "pyutest_blocks:snow_block",
wherein = "pyutest_blocks:ice_block",
clust_scarcity = 3 * 3 * 3,
clust_num_ores = 35,
clust_size = 5,
biomes = {icy_cavern},
noise_params = PyuTest.SPECIALSTONE_NOISE_PARAMS
})
PyuTest.IceWorld:register_ore({
ore_type = "blob",
ore = "pyutest_blocks:crystal_lantern_block",
wherein = "pyutest_blocks:ice_block",
clust_scarcity = 4.5 * 4.5 * 4.5,
clust_num_ores = 6,
clust_size = 5,
biomes = {icy_cavern},
noise_params = PyuTest.SPECIALSTONE_NOISE_PARAMS
})