1
0
Fork 0
mirror of https://github.com/xHyroM/aetheria.git synced 2024-09-20 13:23:18 +02:00
aetheria/packwiz/1.20.1/kubejs/server_scripts/regions_unexplored/boats.js

25 lines
901 B
JavaScript
Raw Normal View History

2024-06-17 20:59:21 +02:00
// Modifies the recipes for boats to match the Gregified Integrations recipes
ServerEvents.recipes((event) => {
[
"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",
].forEach((b) => gregifyBoatRecipe(event, "<identifier>:<name>", b));
event.remove({ id: "regions_unexplored:oak_boat" }); // remove recipe for minecraft's oak boat
});