forked from ElCeejo/paleotest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathores.lua
68 lines (59 loc) · 1.49 KB
/
ores.lua
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
--------------------
-- PaleoTest Ores --
--------------------
------ Ver 2.0 -----
--------------------
-- Ore Definition --
--------------------
-- Fossil Block --
minetest.register_ore({
ore_type = "scatter",
ore = "paleotest:fossil_block",
wherein = "default:stone",
clust_scarcity = 64 * 64 * 64,
clust_num_ores = 5,
clust_size = 3,
y_max = 64,
y_min = -32,
})
minetest.register_ore({
ore_type = "scatter",
ore = "paleotest:fossil_block",
wherein = "default:stone",
clust_scarcity = 32 * 32 * 32,
clust_num_ores = 4,
clust_size = 3,
y_max = -32,
y_min = -128,
})
minetest.register_ore({
ore_type = "scatter",
ore = "paleotest:fossil_block",
wherein = "default:stone",
clust_scarcity = 16 * 16 * 16,
clust_num_ores = 5,
clust_size = 3,
y_max = -128,
y_min = -31000,
})
-- Suspicious Permafrost --
minetest.register_ore({
ore_type = "scatter",
ore = "paleotest:suspicious_permafrost",
wherein = "default:permafrost_with_stones",
clust_scarcity = 32 * 32 * 32,
clust_num_ores = 5,
clust_size = 3,
y_max = 256,
y_min = -256,
})
minetest.register_ore({
ore_type = "scatter",
ore = "paleotest:suspicious_permafrost",
wherein = "default:permafrost",
clust_scarcity = 32 * 32 * 32,
clust_num_ores = 4,
clust_size = 3,
y_max = 256,
y_min = -256,
})