If there is a syntax error Im so sorry I just can't find it.
`event.custom({
type: 'create:mixing',
ingredients: [
Ingredient.of('minecraft:coal').toJson(),
Ingredient.of('minecraft:fermented_spider_eye').toJson(),
Ingredient.of('minecraft:paper').toJson()
],
results: [
Ingredient.of('firstaid:plaster').toJson()
],
processingTime: 100
})
event.custom({
type: 'create:mixing',
ingredients: [
Ingredient.of('botania:manaweave_cloth').toJson(),
Ingredient.of('minecraft:fermented_spider_eye').toJson(),
Ingredient.of('minecraft:paper').toJson()
],
results: [
Ingredient.of('firstaid:bandage').toJson()
],
processingTime: 120
})
event.custom({
type: 'create:mixing',
ingredients: [
Ingredient.of('botania:mana_bottle').toJson(),
Ingredient.of('minecraft:fermented_spider_eye').toJson(),
Ingredient.of('botania:ender_air_bottle').toJson()
],
results: [
Ingredient.of('firstaid:morphine').toJson()
],
processingTime: 150
})
`
