credit crafting
This commit is contained in:
parent
58e29c68e7
commit
30c8a05036
5 changed files with 53 additions and 3 deletions
|
|
@ -1085,6 +1085,42 @@ const registerGTCEURecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Credits
|
||||
|
||||
event.remove({ id: 'gtceu:forming_press/credit_cupronickel' })
|
||||
|
||||
event.recipes.gtceu.forming_press('gtceu:copper_credit')
|
||||
.itemInputs('#forge:ingots/copper')
|
||||
.notConsumable('gtceu:credit_casting_mold')
|
||||
.itemOutputs('8x gtceu:copper_credit')
|
||||
.duration(50)
|
||||
.EUt(2)
|
||||
|
||||
event.recipes.tfc.anvil('8x gtceu:copper_credit', '#forge:ingots/copper', ['bend_last', 'punch_not_last', 'draw_not_last'])
|
||||
.tier(1)
|
||||
.id(`tfc:anvil/copper_credit`)
|
||||
|
||||
event.recipes.tfc.heating('gtceu:copper_credit', GTMaterials.Copper.getProperty(TFGPropertyKey.TFC_PROPERTY).getMeltTemp())
|
||||
.resultFluid(Fluid.of(GTMaterials.Copper.getFluid(), 144 / 8))
|
||||
.id(`tfc:heating/copper_credit`)
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:curving',
|
||||
ingredients: [{ tag: 'forge:ingots/copper' }],
|
||||
itemAsHead: 'gtceu:credit_casting_mold',
|
||||
results: [{ item: 'gtceu:copper_credit', count: 8 }],
|
||||
processingTime: 50
|
||||
}).id(`tfg:vi/curving/copper_credit`)
|
||||
|
||||
event.recipes.gtceu.extractor('gtceu:copper_credit')
|
||||
.itemInputs('gtceu:copper_credit')
|
||||
.outputFluids(Fluid.of(GTMaterials.Copper.getFluid(), 144 / 8))
|
||||
.category(GTRecipeCategories.EXTRACTOR_RECYCLING)
|
||||
.duration(10)
|
||||
.EUt(2)
|
||||
|
||||
//#endregion
|
||||
|
||||
// TODO: Greate again...
|
||||
event.shapeless('gtceu:programmed_circuit', ['minecraft:stick', '#forge:tools/wrenches'])
|
||||
.id('tfg:shapeless/programmed_circuit_from_stick')
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
function registerGTCEuTFCMetalsRecipes(event)
|
||||
{
|
||||
//#region LV hull
|
||||
//#region LV hull
|
||||
|
||||
event.replaceInput('gtceu:shaped/lv_machine_hull', '#forge:plates/wrought_iron', '#forge:plates/red_steel')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue