Reflector block and some other fixes (#1575)
* Reflector block and some other fixes * Updated Changelog
This commit is contained in:
parent
0f6ce5a9c5
commit
2c5658a185
28 changed files with 2778 additions and 7 deletions
|
|
@ -1043,13 +1043,47 @@ function registerTFGMiscellaneousRecipes(event) {
|
|||
event.recipes.gtceu.assembler('tfg:assembler/machine_casing_aluminium_plated_steel')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 6),
|
||||
ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Steel, 1),
|
||||
ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Steel, 1)
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:silicon', 72))
|
||||
.itemOutputs('2x tfg:machine_casing_aluminium_plated_steel')
|
||||
.circuit(6)
|
||||
.duration(20 * (2.5))
|
||||
.EUt(GTValues.VH[GTValues.LV])
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:reflector_from_lens')
|
||||
.itemInputs(
|
||||
'24x #forge:lenses',
|
||||
ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1)
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:silver', 1296))
|
||||
.itemOutputs('1x tfg:reflector')
|
||||
.circuit(6)
|
||||
.duration(20 * (60))
|
||||
.EUt(GTValues.VH[GTValues.HV])
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:reflector_from_inr')
|
||||
.itemInputs(
|
||||
'1x gtceu:neutron_reflector',
|
||||
ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1)
|
||||
)
|
||||
.itemOutputs('2x tfg:reflector')
|
||||
.circuit(9)
|
||||
.duration(20 * (20))
|
||||
.EUt(GTValues.VH[GTValues.MV])
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:reflector_from_certus')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.plate, GTMaterials.CertusQuartz, 12),
|
||||
ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1)
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:silver', 488))
|
||||
.itemOutputs('1x tfg:reflector')
|
||||
.circuit(6)
|
||||
.dimension('ad_astra:moon')
|
||||
.duration(20 * (60))
|
||||
.EUt(GTValues.VH[GTValues.MV])
|
||||
|
||||
//#endregion
|
||||
|
||||
//region ammonia borane
|
||||
|
|
|
|||
|
|
@ -463,9 +463,13 @@ const registerTFGBlockTags = (event) => {
|
|||
event.add('minecraft:mineable/pickaxe', 'tfg:superconductor_coil_large')
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:superconductor_coil_small')
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:electromagnetic_accelerator')
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:reflector')
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:machine_casing_aluminium_plated_steel')
|
||||
event.add('forge:mineable/wrench', 'tfg:superconductor_coil_large')
|
||||
event.add('forge:mineable/wrench', 'tfg:superconductor_coil_small')
|
||||
event.add('forge:mineable/wrench', 'tfg:electromagnetic_accelerator')
|
||||
event.add('forge:mineable/wrench', 'tfg:reflector')
|
||||
event.add('forge:mineable/wrench', 'tfg:machine_casing_aluminium_plated_steel')
|
||||
|
||||
}
|
||||
//#endregion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue