3d28ad39b5
Start to remove all default references to default mod into a single file so they can be more easily updated. Add recipes for blue/red paper. Add Silver Wire to internal copy of basic materials
44 lines
969 B
Lua
44 lines
969 B
Lua
|
|
-- see elepower_papi >> external_nodes_items.lua for explanation
|
|
-- shorten table ref
|
|
local epr = ele.external.ref
|
|
|
|
--------------
|
|
-- Worldgen --
|
|
--------------
|
|
|
|
-- Uranium
|
|
|
|
minetest.register_ore({
|
|
ore_type = "scatter",
|
|
ore = "elepower_nuclear:stone_with_uranium",
|
|
wherein = epr.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 = epr.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 = epr.stone,
|
|
clust_scarcity = 16 * 16 * 16,
|
|
clust_num_ores = 5,
|
|
clust_size = 3,
|
|
y_max = -1248,
|
|
y_min = -1846,
|
|
})
|