diff --git a/README.md b/README.md index d2ba932..f0bcb19 100644 --- a/README.md +++ b/README.md @@ -12,25 +12,25 @@ In Moleus, ores generate higher up in the world than default Minetest Game. It u ##### New ore heights: -Coal: 128 (old 64) NOTE: The Coal will be found infrequently at this hight +Coal: 128 (old 64) NOTE: The Coal will be found infrequently at this height Tin: -32 (old -128) Copper: -32 (old -128) -Iron: -48 (old -256) +Iron: -64 (old -256) Gold: -96 (old -512) -Mese Crystal: -128 (old -1024) +Mese Crystal: -152 (old -1024) -Diamond: -128 (old -2048) +Diamond: -152 (old -2048) -Mese Block: -160 (old -4096) +Mese Block: -180 (old -4096) Silver (moreores): -32 (old -64) -Mithril (moreores): -128 (old -2048) +Mithril (moreores): -152 (old -2048) #### Changes to MTG mods diff --git a/mods/Moleus/moleus_ore_tweaks/README.md b/mods/Moleus/moleus_ore_tweaks/README.md index 6b16216..8052294 100644 --- a/mods/Moleus/moleus_ore_tweaks/README.md +++ b/mods/Moleus/moleus_ore_tweaks/README.md @@ -4,25 +4,25 @@ This is a small mod that makes ores generate higher up in the world. It is used ### New ore heights: -Coal: 128 (old 64) NOTE: The Coal will be found infrequently at this hight +Coal: 128 (old 64) NOTE: The Coal will be found infrequently at this height Tin: -32 (old -128) Copper: -32 (old -128) -Iron: -48 (old -256) +Iron: -64 (old -256) Gold: -96 (old -512) -Mese Crystal: -128 (old -1024) +Mese Crystal: -152 (old -1024) -Diamond: -128 (old -2048) +Diamond: -152 (old -2048) -Mese Block: -160 (old -4096) +Mese Block: -180 (old -4096) Silver (moreores): -32 (old -64) -Mithril (moreores): -128 (old -2048) +Mithril (moreores): -152 (old -2048) ### License diff --git a/mods/Moleus/moleus_ore_tweaks/init.lua b/mods/Moleus/moleus_ore_tweaks/init.lua index 5c2413a..464c8b6 100644 --- a/mods/Moleus/moleus_ore_tweaks/init.lua +++ b/mods/Moleus/moleus_ore_tweaks/init.lua @@ -57,7 +57,7 @@ clust_scarcity = 6 * 6 * 6, clust_num_ores = 5, clust_size = 3, - y_max = -48, + y_max = -64, y_min = -255, }) @@ -85,7 +85,7 @@ clust_scarcity = 17 * 17 * 17, clust_num_ores = 3, clust_size = 2, - y_max = -128, + y_max = -152, y_min = -1023, }) @@ -99,7 +99,7 @@ clust_scarcity = 16 * 16 * 16, clust_num_ores = 4, clust_size = 3, - y_max = -128, + y_max = -152, y_min = -2047, }) @@ -113,7 +113,7 @@ clust_scarcity = 35 * 35 * 35, clust_num_ores = 3, clust_size = 2, - y_max = -160, + y_max = -180, y_min = -4095, }) @@ -139,7 +139,7 @@ clust_scarcity = 21 * 21 * 21, clust_num_ores = 2, clust_size = 3, - y_max = -128, + y_max = -152, y_min = -2047, })