]> git.lizzy.rs Git - skycraft.git/commitdiff
Ajust Ore Probability
authorElias Fleckenstein <eliasfleckenstein@web.de>
Sun, 7 Jun 2020 07:50:49 +0000 (09:50 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Sun, 7 Jun 2020 07:50:49 +0000 (09:50 +0200)
map.lua

diff --git a/map.lua b/map.lua
index 946f1cacb7f470eeadf6d34c11d12808f4af7f86..0ee3ff4fdd5968dfe90beb761ebba715e83aff7b 100644 (file)
--- a/map.lua
+++ b/map.lua
@@ -1,12 +1,12 @@
 skycraft.ores = skycraft.random:new()
 skycraft.ores:add_choice("mcl_core:cobble", 1000)
-skycraft.ores:add_choice("mcl_core:stone", 100)
-skycraft.ores:add_choice("mcl_core:stone_with_coal", 25)
-skycraft.ores:add_choice("mcl_core:stone_with_iron", 10)
-skycraft.ores:add_choice("mcl_core:stone_with_gold", 5)
-skycraft.ores:add_choice("mcl_core:stone_with_lapis", 5)
-skycraft.ores:add_choice("mcl_core:stone_with_redstone", 5)
-skycraft.ores:add_choice("mcl_core:stone_with_diamond", 1)
+skycraft.ores:add_choice("mcl_core:stone", 200)
+skycraft.ores:add_choice("mcl_core:stone_with_coal", 50)
+skycraft.ores:add_choice("mcl_core:stone_with_iron", 25)
+skycraft.ores:add_choice("mcl_core:stone_with_gold", 10)
+skycraft.ores:add_choice("mcl_core:stone_with_lapis", 10)
+skycraft.ores:add_choice("mcl_core:stone_with_redstone", 10)
+skycraft.ores:add_choice("mcl_core:stone_with_diamond", 5)
 skycraft.ores:calc_csum()
 
 minetest.register_abm({