// Modifies the recipes for boats to match the Gregified Integrations recipes ServerEvents.recipes((event) => { const MINECRAFT_BOATS = [ "minecraft:oak_boat", // allow only wooden shovel "minecraft:spruce_boat", // allow only wooden shovel "minecraft:birch_boat", // allow only wooden shovel "minecraft:jungle_boat", // allow only wooden shovel "minecraft:acacia_boat", // allow only wooden shovel "minecraft:dark_oak_boat", // allow only wooden shovel "minecraft:mangrove_boat", // allow only wooden shovel "minecraft:cherry_boat", // allow only wooden shovel ]; const BOATS_RECIPES = [ "quark:ancient_boat", "quark:azalea_boat", "quark:blossom_boat", "aether:skyroot_boat", "thermal:rubberwood_boat", "meadow:pine_boat", "regions_unexplored:baobab_boat", "regions_unexplored:blackwood_boat", "regions_unexplored:cypress_boat", "regions_unexplored:dead_boat", "regions_unexplored:eucalyptus_boat", "regions_unexplored:joshua_boat", "regions_unexplored:kapok_boat", "regions_unexplored:larch_boat", "regions_unexplored:magnolia_boat", "regions_unexplored:maple_boat", "regions_unexplored:mauve_boat", "regions_unexplored:palm_boat", "regions_unexplored:pine_boat", "regions_unexplored:redwood_boat", "regions_unexplored:socotra_boat", "regions_unexplored:willow_boat", ]; MINECRAFT_BOATS.forEach((b) => BOATS_RECIPES.push(b)); // spread syntax not supported const BOATS_MOD_RECIPE_IDS_PATTERN = { minecraft: ":", quark: "quark:world/crafting/woodsets//boat", aether: ":", thermal: ":", meadow: ":", regions_unexplored: ":", }; BOATS_RECIPES.forEach((recipe) => { const [identifier, name] = recipe.split(":"); const type = name.split("_").slice(0, -1).join("_"); event.remove({ id: BOATS_MOD_RECIPE_IDS_PATTERN[identifier] .replace("", identifier) .replace("", name) .replace("", type), }); if (identifier === "minecraft" || identifier === "quark") { event.remove({ id: `quark:tweaks/crafting/utility/chest_boat/direct_${type}_chest_boat`, }); } event.shaped(Item.of(recipe, 1), ["WHW", "WKW", "SSS"], { W: `${identifier}:${type}_planks`, H: "minecraft:wooden_shovel", K: "#forge:tools/knives", S: `${identifier}:${ identifier === "quark" ? `${type}_planks` : type }_slab`, }); }); MINECRAFT_BOATS.forEach((id) => { event.remove({ id: `gtceu:shaped/${id.split(":")[1]}` }); }); event.remove({ id: "regions_unexplored:oak_boat" }); });