RealBadAngel
2013-03-30 279776ff62951a8a9ab96b86b03b7558e77a1c87
commit | author | age
279776 1 minetest.register_ore({
R 2     ore_type       = "scatter",
3     ore            = "technic:mineral_diamond",
4     wherein        = "default:stone",
5     clust_scarcity = 11*11*11,
6     clust_num_ores = 4,
7     clust_size     = 3,
8     height_min     = -31000,
9     height_max     = -450,
10 })
11
12 minetest.register_ore({
13     ore_type       = "scatter",
14     ore            = "technic:mineral_uranium",
15     wherein        = "default:stone",
16     clust_scarcity = 10*10*10,
17     clust_num_ores = 4,
18     clust_size     = 3,
19     height_min     = -300,
20     height_max     = -80,
21 })
22 minetest.register_ore({
23     ore_type       = "scatter",
24     ore            = "technic:mineral_chromium",
25     wherein        = "default:stone",
26     clust_scarcity = 10*10*10,
27     clust_num_ores = 2,
28     clust_size     = 3,
29     height_min     = -31000,
30     height_max     = -100,
31 })
32 minetest.register_ore({
33     ore_type       = "scatter",
34     ore            = "technic:mineral_zinc",
35     wherein        = "default:stone",
36     clust_scarcity = 9*9*9,
37     clust_num_ores = 4,
38     clust_size     = 3,
39     height_min     = -31000,
40     height_max     = 2,
41 })
42 minetest.register_ore({
43     ore_type       = "sheet",
44     ore            = "technic:marble",
45     wherein        = "default:stone",
46     clust_scarcity = 1,
47     clust_num_ores = 1,
48     clust_size     = 3,
49     height_min     = -150,
50     height_max     = -50,
51     noise_threshhold = 0.5,
52     noise_params = {offset=0, scale=15, spread={x=150, y=150, z=150}, seed=23, octaves=3, persist=0.70}
53 })
54 minetest.register_ore({
55     ore_type       = "sheet",
56     ore            = "technic:granite",
57     wherein        = "default:stone",
58     clust_scarcity = 1,
59     clust_num_ores = 1,
60     clust_size     = 4,
61     height_min     = -100,
62     height_max     = -250,
63     noise_threshhold = 0.5,
64     noise_params = {offset=0, scale=15, spread={x=130, y=130, z=130}, seed=24, octaves=3, persist=0.70}
65 })
66