Skip to content

Commit

Permalink
Merge pull request #642 from Pyritie/patch-4
Browse files Browse the repository at this point in the history
Added quern recipes for graphite
  • Loading branch information
Exzept1on authored Dec 29, 2024
2 parents ae06931 + 6b5373b commit 58f2a04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kubejs/startup_scripts/tfc/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,9 @@ global.TFC_QUERN_POWDER_RECIPE_COMPONENTS = [
{ input: '#forge:dusts/borax', output: '4x tfc:powder/flux', name: 'flux_powder' },
{ input: '#forge:dusts/soda_ash', output: '4x tfc:powder/soda_ash', name: 'soda_ash' },
{ input: 'minecraft:charcoal', output: '2x tfc:powder/charcoal', name: 'charcoal' },
{ input: 'gtceu:raw_graphite', output: 'gtceu:graphite_dust', name: 'raw_graphite_to_dust' },
{ input: 'gtceu:poor_raw_graphite', output: '5x gtceu:tiny_graphite_dust', name: 'poor_raw_graphite_to_dust' },
{ input: 'gtceu:rich_raw_graphite', output: '2x gtceu:graphite_dust', name: 'rich_graphite_to_dust' },
];

global.TFC_QUERN_GRAIN_RECIPE_COMPONENTS = [
Expand Down Expand Up @@ -1060,4 +1063,4 @@ global.TFC_GREENHOUSE_BERRY_RECIPE_COMPONENTS = [
global.calcAmountOfMetal = (defaultAmount, percents) => {
const value = defaultAmount / (100 / percents)
return (value % 2 == 0) ? value : Math.round(value) - 1
}
}

0 comments on commit 58f2a04

Please sign in to comment.