|
@@ -27,6 +27,14 @@ minetest.register_node(":technic_aluminum:stone_with_bauxite", {
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
})
|
|
|
|
|
|
+minetest.register_node(":technic_aluminum:stone_with_bauxite_rich", {
|
|
|
+ description = "Rich Bauxite Ore",
|
|
|
+ tiles = {"default_stone.png^aluminum_mineral_bauxite_rich.png"},
|
|
|
+ groups = {cracky = 2},
|
|
|
+ drop = 'technic_aluminum:bauxite_lump 2',
|
|
|
+ sounds = default.node_sound_stone_defaults(),
|
|
|
+})
|
|
|
+
|
|
|
--[[
|
|
|
Aluminum is actually the most abundant metal in the Earth's crust,
|
|
|
even more so than iron, but since it's a mid/late-game metal, the
|
|
@@ -47,7 +55,7 @@ minetest.register_ore({
|
|
|
ore_type = "scatter",
|
|
|
ore = "technic_aluminum:stone_with_bauxite",
|
|
|
wherein = "default:stone",
|
|
|
- clust_scarcity = 7 * 7 * 7,
|
|
|
+ clust_scarcity = 8 * 8 * 8,
|
|
|
clust_num_ores = 5,
|
|
|
clust_size = 3,
|
|
|
y_min = 65,
|
|
@@ -59,7 +67,7 @@ minetest.register_ore({
|
|
|
ore_type = "scatter",
|
|
|
ore = "technic_aluminum:stone_with_bauxite",
|
|
|
wherein = "default:stone",
|
|
|
- clust_scarcity = 9 * 9 * 9,
|
|
|
+ clust_scarcity = 11 * 11 * 11,
|
|
|
clust_num_ores = 5,
|
|
|
clust_size = 3,
|
|
|
y_min = 32,
|
|
@@ -70,7 +78,7 @@ minetest.register_ore({
|
|
|
ore_type = "scatter",
|
|
|
ore = "technic_aluminum:stone_with_bauxite",
|
|
|
wherein = "default:stone",
|
|
|
- clust_scarcity = 12 * 12 * 12,
|
|
|
+ clust_scarcity = 14 * 14 * 14,
|
|
|
clust_num_ores = 3,
|
|
|
clust_size = 2,
|
|
|
y_min = -15,
|
|
@@ -81,7 +89,7 @@ minetest.register_ore({
|
|
|
ore_type = "scatter",
|
|
|
ore = "technic_aluminum:stone_with_bauxite",
|
|
|
wherein = "default:stone",
|
|
|
- clust_scarcity = 9 * 9 * 9,
|
|
|
+ clust_scarcity = 11 * 11 * 11,
|
|
|
clust_num_ores = 4,
|
|
|
clust_size = 3,
|
|
|
y_min = -63,
|
|
@@ -92,9 +100,31 @@ minetest.register_ore({
|
|
|
ore_type = "scatter",
|
|
|
ore = "technic_aluminum:stone_with_bauxite",
|
|
|
wherein = "default:stone",
|
|
|
- clust_scarcity = 8 * 8 * 8,
|
|
|
+ clust_scarcity = 10 * 10 * 10,
|
|
|
clust_num_ores = 5,
|
|
|
clust_size = 3,
|
|
|
y_min = -31000,
|
|
|
y_max = -64,
|
|
|
})
|
|
|
+
|
|
|
+minetest.register_ore({
|
|
|
+ ore_type = "scatter",
|
|
|
+ ore = "technic_aluminum:stone_with_bauxite_rich",
|
|
|
+ wherein = "default:stone",
|
|
|
+ clust_scarcity = 16 * 16 * 16,
|
|
|
+ clust_num_ores = 5,
|
|
|
+ clust_size = 3,
|
|
|
+ y_min = 32,
|
|
|
+ y_max = 64,
|
|
|
+})
|
|
|
+
|
|
|
+minetest.register_ore({
|
|
|
+ ore_type = "scatter",
|
|
|
+ ore = "technic_aluminum:stone_with_bauxite",
|
|
|
+ wherein = "default:stone",
|
|
|
+ clust_scarcity = 16 * 16 * 16,
|
|
|
+ clust_num_ores = 3,
|
|
|
+ clust_size = 2,
|
|
|
+ y_min = -1500,
|
|
|
+ y_max = 63,
|
|
|
+})
|