create: balance it with the grist system

This commit is contained in:
2025-04-21 18:01:56 +02:00
parent 44b1468bf5
commit dcd137de00
9 changed files with 124 additions and 99 deletions

@ -97,7 +97,7 @@ ServerEvents.recipes(event => {
event.custom({
type: "create:crushing",
ingredients: [
{tag: `forge:raw_materials/${metal}`}
{tag: `forge:storage_blocks/${metal}`}
],
results: [
{item: dustType.id, count: 9, chance: 1.05},
@ -178,7 +178,7 @@ ServerEvents.recipes(event => {
{let _ = ['copper', 'iron', 'tin', 'nickel', 'zinc', 'lead', 'aluminum', 'gold'].forEach(ore => {
console.log(`Setting up ${ore} hammering...`);
let dustType = metalForm(ore, 'dusts', 'dust');
event.shapeless(dustType.withCount(2), [`#forge:raw_materials/${ore}`, '#alltheores:ore_hammers']).id(`kubejs:ore_crushing_${ore}_manual_only`);
event.shapeless(dustType.withCount(2), [`#forge:raw_materials/${ore}`, '#alltheores:ore_hammers']).id(`kubejs:ore_crushing_2_${ore}_manual_only`);
event.shapeless(dustType.withCount(2 * 9), [`#forge:storage_blocks/raw_${ore}`, '#alltheores:ore_hammers']).id(`kubejs:ore_block_crushing_${ore}_manual_only`);
});}