Tweak spawn rate of gold ore

This commit is contained in:
Wuzzy 2017-03-04 06:49:40 +01:00
parent 9d4be7e24b
commit 0d80690145
1 changed files with 8 additions and 7 deletions

View File

@ -239,23 +239,24 @@ minetest.register_ore({
ore_type = "scatter", ore_type = "scatter",
ore = "mcl_core:stone_with_gold", ore = "mcl_core:stone_with_gold",
wherein = "mcl_core:stone", wherein = "mcl_core:stone",
clust_scarcity = 5000, clust_scarcity = 4775,
clust_num_ores = 5, clust_num_ores = 5,
clust_size = 3, clust_size = 3,
y_min = -59, y_min = -500,
y_max = -35, y_max = -32,
}) })
minetest.register_ore({ minetest.register_ore({
ore_type = "scatter", ore_type = "scatter",
ore = "mcl_core:stone_with_gold", ore = "mcl_core:stone_with_gold",
wherein = "mcl_core:stone", wherein = "mcl_core:stone",
clust_scarcity = 10000, clust_scarcity = 6560,
clust_num_ores = 3, clust_num_ores = 7,
clust_size = 2, clust_size = 2,
y_min = -35, y_min = -500,
y_max = -33, y_max = -40,
}) })
-- --
-- Diamond -- Diamond
-- --