From 3baca43ef916cdf6dc52e9ff80e496a8188f048d Mon Sep 17 00:00:00 2001 From: Gael-de-Sailly Date: Fri, 28 Aug 2015 13:46:32 +0200 Subject: [PATCH] More mithril --- mods/moreores/ores.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/mods/moreores/ores.lua b/mods/moreores/ores.lua index a2fe443f..e978f65e 100644 --- a/mods/moreores/ores.lua +++ b/mods/moreores/ores.lua @@ -32,3 +32,36 @@ minetest.register_ore({ y_min = -31000, y_max = -1024, }) + +minetest.register_ore({ + ore_type = "scatter", + ore = "moreores:mineral_mithril", + wherein = "default:stone", + clust_scarcity = 15 * 15 * 15, + clust_num_ores = 2, + clust_size = 6, + y_min = -31000, + y_max = -2048, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "moreores:mineral_mithril", + wherein = "default:stone", + clust_scarcity = 22 * 22 * 22, + clust_num_ores = 5, + clust_size = 9, + y_min = -31000, + y_max = -4096, +}) + +minetest.register_ore({ + ore_type = "scatter", + ore = "moreores:mineral_mithril", + wherein = "default:stone", + clust_scarcity = 28 * 28 * 28, + clust_num_ores = 20, + clust_size = 12, + y_min = -31000, + y_max = -12288, +})