This commit is contained in:
parent
a0085fa56b
commit
0d64c4df4f
4 changed files with 69 additions and 8 deletions
|
|
@ -58,7 +58,10 @@ const registerCreateRecipes = (event) => {
|
|||
|
||||
// Remove Table Cloth recipes
|
||||
global.MINECRAFT_DYE_NAMES.forEach(dye => {
|
||||
event.remove([{ id: `create:crafting/logistics/${dye}_table_cloth` }, { id: `create:crafting/logistics/${dye}_table_cloth_from_other_table_cloth` }])
|
||||
event.remove([
|
||||
{ id: `create:crafting/logistics/${dye}_table_cloth` },
|
||||
{ id: `create:crafting/logistics/${dye}_table_cloth_from_other_table_cloth` }
|
||||
])
|
||||
})
|
||||
|
||||
event.remove({ type: 'minecraft:stonecutting', input: 'create:andesite_alloy' })
|
||||
|
|
@ -1412,17 +1415,21 @@ const registerCreateRecipes = (event) => {
|
|||
event.remove({ id: `create:create.toolbox.color.block.create.${dye}_toolbox` })
|
||||
|
||||
event.recipes.tfc.barrel_sealed(1000)
|
||||
.inputs('create:brown_toolbox', Fluid.of(`tfc:${dye}_dye`, 288))
|
||||
.outputItem(`create:${dye}_toolbox`)
|
||||
.inputs('#create:toolboxes', Fluid.of(`tfc:${dye}_dye`, 288))
|
||||
.outputItem(TFC.isp.of(`create:${dye}_toolbox`).simpleModifier('tfg:copy_nbt').asCanonClass())
|
||||
.id(`barrel/create/${dye}_toolbox`)
|
||||
|
||||
event.recipes.gtceu.chemical_bath(`create/${dye}_toolbox`)
|
||||
.itemInputs('create:brown_toolbox')
|
||||
event.recipes.gtceu.food_processor(`create/${dye}_toolbox`)
|
||||
.itemInputs('#create:toolboxes')
|
||||
.inputFluids(Fluid.of(`tfc:${dye}_dye`, 288))
|
||||
.itemOutputs(`create:${dye}_toolbox`)
|
||||
.duration(200)
|
||||
.EUt(4)
|
||||
.category(GTRecipeCategories.CHEM_DYES)
|
||||
|
||||
$ISPRecipeLogic.RegisterRecipeData(`food_processor/create/${dye}_toolbox`,
|
||||
[Ingredient.of('#create:toolboxes')],
|
||||
TFC.isp.of(`create:${dye}_toolbox`).simpleModifier('tfg:copy_nbt').asCanonClass(),
|
||||
[])
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue