Merge pull request 'Fix nether and blackstone gold ore drops' (#2677) from fix_nether_gold_drops into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2677
Reviewed-by: Johannes Fritz <mrrar@noreply.git.minetest.land>
This commit is contained in:
cora 2022-09-27 09:44:26 +00:00
commit 5887067cb9
1 changed files with 10 additions and 9 deletions

View File

@ -25,11 +25,12 @@ minetest.register_node("mcl_blackstone:blackstone_gilded", {
drop = {
max_items = 1,
items = {
{items = {"mcl_core:gold_nugget 2"},rarity = 5},
{items = {"mcl_core:gold_nugget 3"},rarity = 5},
{items = {"mcl_core:gold_nugget 4"},rarity = 5},
{items = {"mcl_core:gold_nugget 5"},rarity = 5},
{items = {"mcl_blackstone:blackstone_gilded"}, rarity = 8},
{items = {"mcl_core:gold_nugget 2"},rarity = 40},
{items = {"mcl_core:gold_nugget 3"},rarity = 40},
{items = {"mcl_core:gold_nugget 4"},rarity = 40},
{items = {"mcl_core:gold_nugget 5"},rarity = 40},
-- 4x 1 in 40 chance adds up to a 10% chance
{items = {"mcl_blackstone:blackstone_gilded"}, rarity = 1},
}
},
_mcl_blast_resistance = 2,
@ -46,11 +47,11 @@ minetest.register_node("mcl_blackstone:nether_gold", {
drop = {
max_items = 1,
items = {
{items = {"mcl_core:gold_nugget 2"},rarity = 5},
{items = {"mcl_core:gold_nugget 3"},rarity = 5},
{items = {"mcl_core:gold_nugget 4"},rarity = 5},
{items = {"mcl_core:gold_nugget 6"},rarity = 5},
{items = {"mcl_core:gold_nugget 5"},rarity = 5},
{items = {"mcl_blackstone:nether_gold"}, rarity = 8},
{items = {"mcl_core:gold_nugget 4"},rarity = 5},
{items = {"mcl_core:gold_nugget 3"},rarity = 5},
{items = {"mcl_core:gold_nugget 2"},rarity = 1},
}
},
_mcl_blast_resistance = 3,