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