This commit is contained in:
Dmitry 2024-01-09 18:18:23 +07:00
parent 3c9134e070
commit 94bf85633d
3 changed files with 7 additions and 26 deletions

View file

@ -168,32 +168,12 @@ const registerGTCEURecipes = (event) => {
//#region Выход: Пропитанные доски
event.shaped('8x gtceu:treated_wood_planks', [
'AAA',
'ABA',
'AAA'
], {
A: '#minecraft:planks',
B: Item.of('tfc:wooden_bucket', '{fluid:{Amount:1000,FluidName:"gtceu:creosote"}}').strongNBT()
}).id('tfg:shaped/treated_wood_planks_wood_bucket')
event.remove({ id: 'gtceu:shaped/treated_wood_planks' })
event.shaped('8x gtceu:treated_wood_planks', [
'AAA',
'ABA',
'AAA'
], {
A: '#minecraft:planks',
B: Item.of('tfc:metal/bucket/red_steel', '{fluid:{Amount:1000,FluidName:"gtceu:creosote"}}').strongNBT()
}).id('tfg:shaped/treated_wood_planks_red_steel_bucket')
event.shaped('8x gtceu:treated_wood_planks', [
'AAA',
'ABA',
'AAA'
], {
A: '#minecraft:planks',
B: Item.of('tfc:metal/bucket/blue_steel', '{fluid:{Amount:1000,FluidName:"gtceu:creosote"}}').strongNBT()
}).id('tfg:shaped/treated_wood_planks_blue_steel_bucket')
event.recipes.tfc.barrel_sealed(4000)
.outputItem('gtceu:treated_wood_planks')
.inputs('#minecraft:planks', TFC.fluidStackIngredient('#forge:creosote', 100))
.id('tfg:barrel/treated_wood_planks')
//#endregion

View file

@ -103,7 +103,7 @@ const registerTFCFuels = (event) => {
}
const registerTFCLampFuels = (event) => {
event.lampFuel('gtceu:creosote', '#tfc:lamps', 1)
event.lampFuel('gtceu:creosote', '#tfc:lamps', 1000)
}
const registerTFCFertilizers = (event) => {

View file

@ -243,6 +243,7 @@ const registerTFCFluidTags = (event) => {
event.add('tfc:usable_in_wooden_bucket', "gtceu:latex")
event.add('tfc:usable_in_barrel', 'gtceu:creosote')
event.add('tfc:usable_in_wooden_bucket', 'gtceu:creosote')
event.add('tfc:usable_in_red_steel_bucket', 'gtceu:creosote')
event.add('tfc:usable_in_blue_steel_bucket', 'gtceu:creosote')