You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
253 B
11 lines
253 B
2 years ago
|
// 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()
|
||
|
});
|
||
|
}
|