rei + some important recipes

This commit is contained in:
SpeeeDCraft 2023-10-25 16:04:52 +07:00
parent 49f5fd44a6
commit d5504b3c36
11 changed files with 115 additions and 6 deletions

View file

@ -10,9 +10,9 @@ const modifyLootGT = (event) => {
event.addBlockLootModifier(blockName)
.removeLoot(Ingredient.all)
.addWeightedLoot([
Item.of(`gtceu:${material}_rich_raw_ore`).withChance(25),
Item.of(`gtceu:${material}_raw_ore`).withChance(50),
Item.of(`gtceu:${material}_poor_raw_ore`).withChance(25)
Item.of(`gtceu:${material}_rich_raw`).withChance(25),
Item.of(`gtceu:raw_${material}`).withChance(50),
Item.of(`gtceu:${material}_poor_raw`).withChance(25)
]);
}
})