Merging #653, fixes book and name tag inconsistencies
This commit is contained in:
parent
56311bef5b
commit
9aba2b416c
3 changed files with 25 additions and 4 deletions
|
|
@ -191,7 +191,7 @@ const registerAE2Recipes = (event) => {
|
|||
]).id('tfg:crafting/light_detector')
|
||||
|
||||
// Annihilation Core
|
||||
event.shaped('ae2:annihilation_core', [
|
||||
event.shaped('2x ae2:annihilation_core', [
|
||||
'ABA',
|
||||
'BDB',
|
||||
'ABA'
|
||||
|
|
@ -202,7 +202,7 @@ const registerAE2Recipes = (event) => {
|
|||
}).id('tfg:crafting/annihilation_core')
|
||||
|
||||
// Formation Core
|
||||
event.shaped('ae2:formation_core', [
|
||||
event.shaped('2x ae2:formation_core', [
|
||||
'ABA',
|
||||
'BDB',
|
||||
'ABA'
|
||||
|
|
|
|||
|
|
@ -583,6 +583,8 @@ function removeGTCEURecipes(event) {
|
|||
event.remove({ id: 'gtceu:assembler/treated_trapdoor_steel' })
|
||||
event.remove({ id: 'gtceu:assembler/treated_door' })
|
||||
event.remove({ id: 'gtceu:assembler/barrel' })
|
||||
event.remove({ id: 'gtceu:assembler/book_from_leather' })
|
||||
event.remove({ id: 'gtceu:assembler/name_tag' })
|
||||
|
||||
event.remove({ id: 'gtceu:chemical_reactor/ghast_tear_separation' })
|
||||
}
|
||||
|
|
|
|||
|
|
@ -252,8 +252,27 @@ const registerMinecraftRecipes = (event) => {
|
|||
//#region Выход: Книга
|
||||
|
||||
event.shapeless('minecraft:book', [
|
||||
'minecraft:paper', 'minecraft:paper', 'minecraft:paper', '#forge:leather'
|
||||
]).id('minecraft:book')
|
||||
'#forge:paper', '#forge:paper', '#forge:paper', '#forge:leather', 'tfc:glue'
|
||||
]).id('minecraft:book_from_glue')
|
||||
|
||||
event.shapeless('minecraft:book', [
|
||||
'#forge:paper', '#forge:paper', '#forge:paper', '#forge:leather', 'gtceu:sticky_resin'
|
||||
]).id('minecraft:book_from_sticky_resin')
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/book_from_leather')
|
||||
.itemInputs('3x #forge:paper', '#forge:leather')
|
||||
.itemOutputs('minecraft:book')
|
||||
.inputFluids(Fluid.of('gtceu:glue', 50))
|
||||
.EUt(7).duration(30)
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:assembler/name_tag')
|
||||
.itemInputs('5x #forge:string', '#forge:paper')
|
||||
.itemOutputs('minecraft:name_tag')
|
||||
.EUt(7).duration(100)
|
||||
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue