From 0aeaf99781749c0c0dad2a01359f6d70922bfa21 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 4 Mar 2017 05:45:03 +0100 Subject: [PATCH] Tweak coal generation and gen. it in deep levels --- mods/MAPGEN/mcl_mapgen_core/init.lua | 77 ++++++++++++++++++++++++++-- 1 file changed, 74 insertions(+), 3 deletions(-) diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index d80c17eb8..959037dc3 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -104,7 +104,7 @@ minetest.register_ore({ clust_num_ores = 5, clust_size = 3, y_min = 13, - y_max = 31000, + y_max = 500, }) minetest.register_ore({ ore_type = "scatter", @@ -126,14 +126,85 @@ minetest.register_ore({ y_min = -11, y_max = 64, }) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 1000, + clust_num_ores = 7, + clust_size = 4, + y_min = -500, + y_max = -12, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 1000, + clust_num_ores = 8, + clust_size = 4, + y_min = -30, + y_max = -12, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 5000, + clust_num_ores = 9, + clust_size = 4, + y_min = -30, + y_max = -12, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 1500, + clust_num_ores = 5, + clust_size = 3, + y_min = -500, + y_max = -30, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 1000, + clust_num_ores = 9, + clust_size = 5, + y_min = -500, + y_max = -30, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 2500, + clust_num_ores = 10, + clust_size = 4, + y_min = -500, + y_max = -30, +}) +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_core:stone_with_coal", + wherein = "mcl_core:stone", + clust_scarcity = 6000, + clust_num_ores = 12, + clust_size = 4, + y_min = -500, + y_max = -40, +}) + minetest.register_ore({ ore_type = "scatter", ore = "mcl_core:stone_with_coal", wherein = "mcl_core:stone", clust_scarcity = 5000, clust_num_ores = 4, - clust_size = 2, - y_min = 65, + clust_size = 3, + y_min = 50, y_max = 67, })