From 825917ebd42766c8d01b382b56d94e8fed095d7d Mon Sep 17 00:00:00 2001 From: Ombridride Date: Mon, 15 Dec 2014 03:24:35 +0100 Subject: [PATCH] Tweak diamond ore generation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Trouvable à partir de -256 en petite quantité - Trouvable à partir de -512 en quantité décente - Trouvable à partir de -1024 en grande quantité « parfois » - Chunk énorme de diamants réduit de moitié --- minetestforfun_game/mods/default/mapgen.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/minetestforfun_game/mods/default/mapgen.lua b/minetestforfun_game/mods/default/mapgen.lua index d5c98f14..dd6bf7be 100644 --- a/minetestforfun_game/mods/default/mapgen.lua +++ b/minetestforfun_game/mods/default/mapgen.lua @@ -260,8 +260,8 @@ minetest.register_ore({ clust_scarcity = 17 * 17 * 17, clust_num_ores = 4, clust_size = 3, - height_min = -255, - height_max = -128, + height_min = -512, + height_max = -256, flags = "absheight", }) @@ -273,7 +273,7 @@ minetest.register_ore({ clust_num_ores = 4, clust_size = 3, height_min = -30000, - height_max = -256, + height_max = -512, flags = "absheight", }) @@ -337,10 +337,10 @@ minetest.register_ore({ ore_type = "scatter", ore = "default:stone_with_diamond", wherein = "default:stone", - clust_scarcity = 60 * 60 * 60, + clust_scarcity = 30 * 30 * 30, clust_num_ores = 64, clust_size = 5, - height_max = -5, + height_max = -1024, height_min = -30000, })