merge
This commit is contained in:
commit
1305d713f4
28 changed files with 523 additions and 352 deletions
|
|
@ -209,6 +209,9 @@ const registerTFCItemSize = (event) => {
|
|||
event.itemSize('tfg:fishing_net/magnalium', 'large', 'medium', 'magnalium_fishing_net')
|
||||
|
||||
event.itemSize('#tfc:ore_pieces', 'very_small', 'very_light', 'tfc_ores')
|
||||
|
||||
event.itemSize('#tfc:foods/sealed_preserves', 'tiny', 'medium', 'sealed_preserves')
|
||||
event.itemSize('#tfc:foods/preserves', 'tiny', 'medium', 'preserves')
|
||||
|
||||
}
|
||||
//#endregion
|
||||
|
|
|
|||
|
|
@ -30,6 +30,18 @@ function registerTFCDyeRecipes(event) {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Terracotta
|
||||
|
||||
event.replaceInput({id: 'tfc:barrel/dye/bleach_terracotta'}, '#tfc:colored_terracotta', 'minecraft:terracotta')
|
||||
|
||||
event.replaceInput({id: 'gtceu:chemical_bath/decolor_terracotta'}, '#minecraft:terracotta', '#tfc:colored_terracotta')
|
||||
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
event.replaceInput({id: `gtceu:chemical_bath/dye_terracotta_to_${dye}`}, 'minecraft:terracotta', '#minecraft:terracotta')
|
||||
})
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Обычный сосуд
|
||||
|
||||
event.recipes.gtceu.chemical_bath(`unfired_vessel_decolor`)
|
||||
|
|
@ -122,7 +134,7 @@ function registerTFCDyeRecipes(event) {
|
|||
inputArray.push(`#forge:dyes/${dyeName}`);
|
||||
}
|
||||
|
||||
event.recipes.tfc.pot(inputArray, Fluid.of('tfc:salt_water', 250 * i), 600, 2000)
|
||||
event.recipes.tfc.pot(inputArray, Fluid.of('tfc:vinegar', 250 * i), 200, 200)
|
||||
.fluidOutput(Fluid.of(`tfc:${dyeName}_dye`, 144 * i))
|
||||
.id(`tfc:pot/${i}x_${dyeName}_dye`)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -544,4 +544,34 @@ function registerTFCMachineRecipes(event) {
|
|||
.itemOutputs('#forge:dusts/carbon')
|
||||
.duration(20)
|
||||
.EUt(2)
|
||||
|
||||
// Stripped logs
|
||||
|
||||
global.TFC_WOOD_TYPES.forEach(wood => {
|
||||
event.recipes.gtceu.lathe(`tfg:stripping_${wood}_log`)
|
||||
.itemInputs(`tfc:wood/log/${wood}`)
|
||||
.itemOutputs(`tfc:wood/stripped_log/${wood}`)
|
||||
.duration(50)
|
||||
.EUt(2)
|
||||
|
||||
event.recipes.gtceu.lathe(`tfg:stripping_${wood}_wood`)
|
||||
.itemInputs(`tfc:wood/wood/${wood}`)
|
||||
.itemOutputs(`tfc:wood/stripped_wood/${wood}`)
|
||||
.duration(50)
|
||||
.EUt(2)
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:turning',
|
||||
ingredients: [{ item: `tfc:wood/log/${wood}` }],
|
||||
results: [{ item: `tfc:wood/stripped_log/${wood}` }],
|
||||
processingTime: 50
|
||||
}).id(`tfg:vi/lathe/stripping_${wood}_log`)
|
||||
|
||||
event.custom({
|
||||
type: 'vintageimprovements:turning',
|
||||
ingredients: [{ item: `tfc:wood/wood/${wood}` }],
|
||||
results: [{ item: `tfc:wood/stripped_wood/${wood}` }],
|
||||
processingTime: 50
|
||||
}).id(`tfg:vi/lathe/stripping_${wood}_wood`)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue