Well-rounded Minecraft 1.18.2 modpack featuring Tech, Magic, Exploration and Decoration content. Made with love. 💚
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.

18 lines
551 B

2 years ago
// priority: 0
onEvent("recipes", event => {
event.remove({ id: "corail_woodcutter:woodcutting/quark/jungle_post_from_jungle_logs" });
event.remove({ id: "corail_woodcutter:woodcutting/quark/jungle_post_from_jungle_planks" });
event.custom({
type: "corail_woodcutter:woodcutting",
ingredient: { tag: "minecraft:jungle_logs" },
result: "quark:jungle_post", count: 4
});
event.custom({
type: "corail_woodcutter:woodcutting",
ingredient: { tag: "forge:planks/jungle" },
result: "quark:jungle_post", count: 1
});
});