diff --git a/mods/MAPGEN/biomes/victoria.lua b/mods/MAPGEN/biomes/victoria.lua index ff16b94..f443f37 100644 --- a/mods/MAPGEN/biomes/victoria.lua +++ b/mods/MAPGEN/biomes/victoria.lua @@ -55,6 +55,18 @@ minetest.register_ore({ y_max = 31000, }) +--Coal +minetest.register_ore({ + ore_type = "scatter", + ore = "base:stone_with_coal", + wherein = "base:stone", + clust_scarcity = 512, + clust_num_ores = 8, + clust_size = 3, + y_min = -31, + y_max = 15, +}) + --[[ Decorations diff --git a/mods/MAPGEN/mapgen_core/init.lua b/mods/MAPGEN/mapgen_core/init.lua index 09b6a8a..36193ae 100644 --- a/mods/MAPGEN/mapgen_core/init.lua +++ b/mods/MAPGEN/mapgen_core/init.lua @@ -211,46 +211,47 @@ minetest.register_ore({ ore_type = "scatter", ore = "base:stone_with_coal", wherein = "base:stone", - clust_scarcity = 8 * 8 * 8, + clust_scarcity = 512, clust_num_ores = 8, clust_size = 3, y_min = -31000, - y_max = 64, + y_max = -512, }) minetest.register_ore({ ore_type = "scatter", ore = "base:diorite_with_coal", wherein = "base:diorite", - clust_scarcity = 8 * 8 * 8, + clust_scarcity = 512, clust_num_ores = 8, clust_size = 3, y_min = -31000, - y_max = 64, + y_max = -512, }) minetest.register_ore({ ore_type = "scatter", ore = "base:stone_with_coal", wherein = "base:stone", - clust_scarcity = 24 * 24 * 24, + clust_scarcity = 13824, clust_num_ores = 27, clust_size = 6, y_min = -31000, - y_max = 0, + y_max = -1072, }) minetest.register_ore({ ore_type = "scatter", ore = "base:diorite_with_coal", wherein = "base:diorite", - clust_scarcity = 24 * 24 * 24, + clust_scarcity = 13824, clust_num_ores = 27, clust_size = 6, y_min = -31000, - y_max = 0, + y_max = -1072, }) + --Copper minetest.register_ore({ ore_type = "scatter",