added missing ULV bus/hatch recipes, fixed LV ones
This commit is contained in:
parent
3c0688a4a3
commit
bff1604f5d
3 changed files with 52 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ recipes:
|
|||
|
||||
# Whether to make miscellaneous recipes harder.
|
||||
# Default: false
|
||||
hardMiscRecipes: true
|
||||
hardMiscRecipes: false
|
||||
|
||||
# Whether to make Glass related recipes harder. Default: true
|
||||
hardGlassRecipes: true
|
||||
|
|
|
|||
|
|
@ -581,6 +581,54 @@ function registerGTCEuMachineRecipes(event) {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region ULV Hatches
|
||||
|
||||
event.recipes.shaped('gtceu:ulv_input_bus', [
|
||||
'CAC',
|
||||
'CBC',
|
||||
'CDC'
|
||||
], {
|
||||
A: '#forge:chests/wooden',
|
||||
B: 'gtceu:ulv_machine_hull',
|
||||
C: 'tfc:glue',
|
||||
D: '#forge:tools/wrenches'
|
||||
}).id('gtceu:shaped/ulv_input_bus')
|
||||
|
||||
event.recipes.shaped('gtceu:ulv_output_bus', [
|
||||
'CDC',
|
||||
'CBC',
|
||||
'CAC'
|
||||
], {
|
||||
A: '#forge:chests/wooden',
|
||||
B: 'gtceu:ulv_machine_hull',
|
||||
C: 'tfc:glue',
|
||||
D: '#forge:tools/wrenches'
|
||||
}).id('gtceu:shaped/ulv_output_bus')
|
||||
|
||||
event.recipes.shaped('gtceu:ulv_input_hatch', [
|
||||
'CAC',
|
||||
'CBC',
|
||||
'CDC'
|
||||
], {
|
||||
A: '#forge:glass',
|
||||
B: 'gtceu:ulv_machine_hull',
|
||||
C: 'tfc:glue',
|
||||
D: '#forge:tools/wrenches'
|
||||
}).id('gtceu:shaped/ulv_input_hatch')
|
||||
|
||||
event.recipes.shaped('gtceu:ulv_output_hatch', [
|
||||
'CDC',
|
||||
'CBC',
|
||||
'CAC'
|
||||
], {
|
||||
A: '#forge:glass',
|
||||
B: 'gtceu:ulv_machine_hull',
|
||||
C: 'tfc:glue',
|
||||
D: '#forge:tools/wrenches'
|
||||
}).id('gtceu:shaped/ulv_output_hatch')
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Long distance pipes
|
||||
|
||||
event.recipes.gtceu.assembler('long_distance_item_pipe')
|
||||
|
|
|
|||
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
function removeGTCEURecipes(event) {
|
||||
|
||||
event.replaceInput({ input: 'gtceu:wood_drum' }, 'gtceu:wood_drum', 'minecraft:glass')
|
||||
event.replaceInput({ input: 'minecraft:chest' }, 'minecraft:chest', '#forge:chests/wooden')
|
||||
|
||||
global.GTCEU_DISABLED_ITEMS.forEach(item => {
|
||||
event.remove({ input: item })
|
||||
event.remove({ output: item })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue