// priority: 100 function sawmill(event, output, input) { let i = Ingredient.of(input); let o = Item.of(output); event.custom({ type: "corail_woodcutter:woodcutting", ingredient: i.toJson(), result: o.getId(), count: o.getCount() }); }