-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtechnic.lua
More file actions
40 lines (37 loc) · 1.08 KB
/
Copy pathtechnic.lua
File metadata and controls
40 lines (37 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if enable_display_uranium == false then
minetest.register_alias("display_blocks:uranium_dust", "technic:uranium_block")
minetest.register_alias("display_blocks:uranium_block", "technic:uranium_block")
minetest.register_alias("display_blocks:uranium_ore", "technic:mineral_uranium")
end
if technic_uranium_new_ore_gen == true then
minetest.register_ore({
ore_type = "scatter",
ore = "technic:uranium_mineral",
wherein = "default:stone",
clust_scarcity = 20*20*20,
clust_num_ores = 18,
clust_size = 3,
height_min = -3000,
height_max = -2000,
})
minetest.register_ore({
ore_type = "scatter",
ore = "technic:uranium_mineral",
wherein = "default:stone",
clust_scarcity =30*30*30,
clust_num_ores = 40,
clust_size = 4,
height_min = -7000,
height_max = -5000,
})
end
if enable_technic_recipe == true then
minetest.register_craft({
output = 'display_blocks:uranium_base 5',
recipe = {
{'', 'default:mese_crystal_fragment', ''},
{'technic:uranium_block', 'display_blocks:empty_display', 'technic:uranium_block'},
{'', 'technic:uranium_block', ''},
}
})
end