mirror of
https://github.com/sirrobzeroone/elepower.git
synced 2024-11-05 14:53:42 +01:00
40 lines
871 B
Lua
40 lines
871 B
Lua
|
|
--------------
|
|
-- Worldgen --
|
|
--------------
|
|
|
|
-- Uranium
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "elepower_nuclear:stone_with_uranium",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 5,
|
|
clust_size = 3,
|
|
y_max = 846,
|
|
y_min = 248,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "elepower_nuclear:stone_with_uranium",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 5,
|
|
clust_size = 3,
|
|
y_max = -248,
|
|
y_min = -846,
|
|
})
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "elepower_nuclear:stone_with_uranium",
|
|
wherein = "default:stone",
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 5,
|
|
clust_size = 3,
|
|
y_max = -1248,
|
|
y_min = -1846,
|
|
})
|