diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-07 09:50:49 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-07 09:50:49 +0200 |
commit | 7ad11e38cbbe90423a0e13aa4d6dd54f46f3792b (patch) | |
tree | 854daffe767bdbce86efe2de00bbcf8292951460 | |
parent | ac34bc90627e152689701298334d0bd012292826 (diff) | |
download | skycraft-7ad11e38cbbe90423a0e13aa4d6dd54f46f3792b.tar.xz |
Ajust Ore Probability
-rw-r--r-- | map.lua | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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({ |