nerfed durability of wooden tongs, slightly tweaked their recipe
This commit is contained in:
parent
242a31b515
commit
8bc9247b24
2 changed files with 10 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
||||||
itemDamageTimeInterval = 60
|
itemDamageTimeInterval = 60
|
||||||
#Durability for wooden tongs.
|
#Durability for wooden tongs.
|
||||||
#Range: > 0
|
#Range: > 0
|
||||||
woodenTongsDurability = 250
|
woodenTongsDurability = 100
|
||||||
#Durability for potholders.
|
#Durability for potholders.
|
||||||
#Range: > 0
|
#Range: > 0
|
||||||
potholderDurability = 600
|
potholderDurability = 600
|
||||||
|
|
|
||||||
|
|
@ -1114,6 +1114,15 @@ function registerTFCMaterialsRecipes(event) {
|
||||||
let tongPartStack = Item.of(`tfchotornot:tong_part/${material.getName()}`)
|
let tongPartStack = Item.of(`tfchotornot:tong_part/${material.getName()}`)
|
||||||
|
|
||||||
if (!tongsStack.isEmpty() && !tongPartStack.isEmpty()) {
|
if (!tongsStack.isEmpty() && !tongPartStack.isEmpty()) {
|
||||||
|
event.shaped(tongsStack, [
|
||||||
|
'AA',
|
||||||
|
'BC'
|
||||||
|
], {
|
||||||
|
A: tongPartStack,
|
||||||
|
B: '#forge:bolts',
|
||||||
|
C: '#forge:tools/hammers'
|
||||||
|
}).id(`tfchotornot:crafting/tongs/${material.getName()}`)
|
||||||
|
|
||||||
// Ручка щипцов
|
// Ручка щипцов
|
||||||
event.recipes.tfc.heating(tongPartStack, tfcProperty.getMeltTemp())
|
event.recipes.tfc.heating(tongPartStack, tfcProperty.getMeltTemp())
|
||||||
.resultFluid(Fluid.of(outputMaterial.getFluid(), 144))
|
.resultFluid(Fluid.of(outputMaterial.getFluid(), 144))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue