merge
This commit is contained in:
commit
b7cc04f188
26 changed files with 544 additions and 275 deletions
|
|
@ -722,7 +722,7 @@ function registerGTCEuMachineRecipes(event) {
|
|||
event.recipes.gtceu.assembly_line('ultimate_battery')
|
||||
.itemInputs('16x #forge:double_plates/darmstadtium',
|
||||
'4x #gtceu:circuits/uhv',
|
||||
'16x #gtceu:batteries/uv',
|
||||
'16x gtceu:energy_cluster',
|
||||
'4x gtceu:uv_field_generator',
|
||||
'64x gtceu:uhpic_wafer',
|
||||
'64x gtceu:uhpic_wafer',
|
||||
|
|
|
|||
|
|
@ -221,7 +221,7 @@ function registerGTCEUMetalRecipes(event) {
|
|||
.outputFluids(Fluid.of(material.getFluid(), 288))
|
||||
.duration(material.getMass())
|
||||
.category(GTRecipeCategories.EXTRACTOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
.EUt(material.hasProperty(PropertyKey.BLAST) ? GTValues.VA[GTValues.MV] : GTValues.VA[GTValues.ULV])
|
||||
}
|
||||
|
||||
if (material.hasProperty(PropertyKey.DUST)) {
|
||||
|
|
@ -843,7 +843,6 @@ function registerGTCEUMetalRecipes(event) {
|
|||
.itemOutputs(barsStack)
|
||||
.duration(100)
|
||||
.EUt(GTValues.VA[GTValues.LV])
|
||||
.circuit(1)
|
||||
}
|
||||
|
||||
forEachMaterial(material => {
|
||||
|
|
|
|||
|
|
@ -645,6 +645,13 @@ function removeGTCEURecipes(event) {
|
|||
|
||||
event.remove({ id: 'gtceu:wiremill/string_from_polycaprolactam' })
|
||||
|
||||
event.remove({ id: 'gtceu:chemical_bath/black_steel_cool_down' })
|
||||
event.remove({ id: 'gtceu:chemical_bath/black_steel_cool_down_distilled_water' })
|
||||
event.remove({ id: 'gtceu:chemical_bath/red_steel_cool_down' })
|
||||
event.remove({ id: 'gtceu:chemical_bath/red_steel_cool_down_distilled_water' })
|
||||
event.remove({ id: 'gtceu:chemical_bath/blue_steel_cool_down' })
|
||||
event.remove({ id: 'gtceu:chemical_bath/blue_steel_cool_down_distilled_water' })
|
||||
|
||||
event.remove({ id: 'gtceu:compressor/compress_certus_quartz_to_raw_ore_block' })
|
||||
|
||||
// Remove vanilla Eye of Ender
|
||||
|
|
|
|||
|
|
@ -123,4 +123,7 @@ const registerGTCEUFluidTags = (event) => {
|
|||
|
||||
event.add('c:hidden_from_recipe_viewers', /gtceu.*potion.*/)
|
||||
|
||||
event.add('c:hidden_from_recipe_viewers', 'gtceu:molten_black_steel')
|
||||
event.add('c:hidden_from_recipe_viewers', 'gtceu:molten_red_steel')
|
||||
event.add('c:hidden_from_recipe_viewers', 'gtceu:molten_blue_steel')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue