Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
This commit is contained in:
commit
11876eeac0
3 changed files with 28 additions and 1 deletions
|
|
@ -14,6 +14,7 @@
|
|||
- Added TACZ Guns and Ammo Boxes to tool rack @BlueBoat29
|
||||
- Overhauled the recycling recipes and added many more (#1576) @Pyritie
|
||||
- Added an earlier way to make dough using a normal tfc ceramic/wood bowl @Pyritie
|
||||
- Added ABS recipe for T2 Rocket Alloy @Xtrial-01
|
||||
### Bug fixes
|
||||
- Fixed part of the tungsten processing loop giving way too much salt (#2095) @Redeix
|
||||
- Fixed basic super tanks so you can now left/right click with them in GUIs like you can with the others (#2100) @jurrejelle
|
||||
|
|
|
|||
|
|
@ -113,6 +113,31 @@ const registerAdAstraRecipes = (event) => {
|
|||
|
||||
event.remove({ mod: 'gtceu', input: 'gtceu:hot_rocket_alloy_t2_ingot' })
|
||||
|
||||
event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2')
|
||||
.itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium')
|
||||
.inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000))
|
||||
.outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32))
|
||||
.duration(1320 * 20)
|
||||
.circuit(2)
|
||||
.blastFurnaceTemp(3200)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
|
||||
event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2_gas')
|
||||
.itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium')
|
||||
.inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000), Fluid.of('gtceu:helium', 3200))
|
||||
.outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32))
|
||||
.duration(17688)
|
||||
.circuit(12)
|
||||
.blastFurnaceTemp(3200)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
|
||||
event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/cool_molten_rocket_alloy_t2')
|
||||
.notConsumable('gtceu:ingot_casting_mold')
|
||||
.inputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144), Fluid.of('tfg:cryogenized_fluix', 288))
|
||||
.itemOutputs('#forge:ingots/rocket_alloy_t2')
|
||||
.duration(120)
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
||||
event.recipes.gtceu.mixer('tfg:rocket_alloy_t2')
|
||||
.itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium')
|
||||
.inputFluids(Fluid.of('gtceu:vanadium', 144 * 4))
|
||||
|
|
|
|||
|
|
@ -68,8 +68,9 @@ const registerTFGMaterials = (event) => {
|
|||
.components('19x titanium', '4x vanadium', '3x aluminium', '3x chromium', '3x tin')
|
||||
.color(0x3c253d)
|
||||
.iconSet('metallic')
|
||||
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR)
|
||||
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.DISABLE_ALLOY_BLAST)
|
||||
.blastTemp(3200, 'mid', 1024, 1100)
|
||||
.liquid()
|
||||
|
||||
/* event.create('rocket_alloy_t3')
|
||||
.ingot()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue