Напильник и Нож мясника в наковальне тфк + фиксы
This commit is contained in:
parent
ed8f573a86
commit
9c2472a258
4 changed files with 54 additions and 1 deletions
|
|
@ -929,6 +929,15 @@ const registerGTCEURecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Деревянное оголовья инструментов (что?)
|
||||
|
||||
event.remove({id: 'gtceu:shaped/screwdriver_tip_wood'})
|
||||
event.remove({id: 'gtceu:shaped/wrench_head_wood'})
|
||||
event.remove({id: 'gtceu:shaped/drill_head_wood'})
|
||||
event.remove({id: 'gtceu:shaped/chainsaw_head_wood'})
|
||||
|
||||
//#endregion
|
||||
|
||||
// Удаление рецептов связанных с Primitive Blast Furnace
|
||||
event.remove({id: 'gtceu:arc_furnace/arc_primitive_blast_furnace'})
|
||||
event.remove({id: 'gtceu:macerator/macerate_primitive_blast_furnace'})
|
||||
|
|
|
|||
|
|
@ -629,6 +629,48 @@ const registerTFCRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Мясницкий нож
|
||||
|
||||
// Декрафт инструмента в жидкость
|
||||
event.recipes.tfc.heating(`gtceu:${metal}_butchery_knife`, metalSpecs.melt_temp)
|
||||
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
||||
.useDurability(true)
|
||||
.id(`tfc:heating/metal/${metal}_butchery_knife`)
|
||||
|
||||
// Крафт оголовья
|
||||
event.recipes.tfc.anvil(`gtceu:${metal}_knife_butchery_head`, `#forge:ingots/${metal}`, ['punch_last', 'bend_not_last', 'bend_not_last'])
|
||||
.tier(metalSpecs.tier)
|
||||
.bonus(true)
|
||||
.id(`tfc:anvil/${metal}_knife_butchery_head`)
|
||||
|
||||
// Декрафт оголовья в жидкость
|
||||
event.recipes.tfc.heating(`gtceu:${metal}_knife_butchery_head`, metalSpecs.melt_temp)
|
||||
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
||||
.id(`tfc:heating/metal/${metal}_knife_butchery_head`)
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Напильник
|
||||
|
||||
// Декрафт инструмента в жидкость
|
||||
event.recipes.tfc.heating(`gtceu:${metal}_file`, metalSpecs.melt_temp)
|
||||
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
||||
.useDurability(true)
|
||||
.id(`tfc:heating/metal/${metal}_file`)
|
||||
|
||||
// Крафт оголовья
|
||||
event.recipes.tfc.anvil(`gtceu:${metal}_file_head`, `#forge:ingots/${metal}`, ['upset_last', 'bend_not_last', 'punch_not_last'])
|
||||
.tier(metalSpecs.tier)
|
||||
.bonus(true)
|
||||
.id(`tfc:anvil/${metal}_file_head`)
|
||||
|
||||
// Декрафт оголовья в жидкость
|
||||
event.recipes.tfc.heating(`gtceu:${metal}_file_head`, metalSpecs.melt_temp)
|
||||
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
||||
.id(`tfc:heating/metal/${metal}_file_head`)
|
||||
|
||||
//#endregion
|
||||
|
||||
}
|
||||
|
||||
if (metalSpecs.props.includes('utility')) {
|
||||
|
|
|
|||
|
|
@ -14,6 +14,8 @@ global.GTCEU_DISABLED_ITEMS = [
|
|||
'gtceu:wood_drum',
|
||||
'gtceu:primitive_blast_furnace',
|
||||
|
||||
'gtceu:wood_screwdriver_tip',
|
||||
'gtceu:wood_wrench_tip',
|
||||
'gtceu:wood_drill_head',
|
||||
'gtceu:wood_chainsaw_head',
|
||||
'gtceu:rubber_sapling',
|
||||
|
|
|
|||
|
|
@ -606,7 +606,7 @@ global.TFC_DISABLED_ITEMS = [
|
|||
|
||||
'tfc:stone/shovel/igneous_extrusive',
|
||||
'tfc:stone/shovel/igneous_intrusive',
|
||||
'tfc:stone/shovel/sedimentary',
|
||||
'tfc:stone/shovel/metamorphic',
|
||||
'tfc:stone/shovel/sedimentary',
|
||||
|
||||
'tfc:stone/hammer_head/igneous_extrusive',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue