Skip to content

Commit badfe4d

Browse files
authored
Allow additional Ars Elemental Armors to be used for Allthemodium Arcanist Gear
1 parent b094625 commit badfe4d

File tree

1 file changed

+22
-0
lines changed
  • kubejs/server_scripts/tweaks

1 file changed

+22
-0
lines changed

kubejs/server_scripts/tweaks/tags.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,28 @@ ServerEvents.tags("item", (allthemods) => {
284284

285285
allthemods.add("c:sawdust", "exdeorum:wood_chippings")
286286

287+
// Allow additional Ars Elemental armors to be used for Allthemodium Arcanist Gear
288+
289+
allthemods.add("allthearcanistgear:elemental_hat", [
290+
/ars_elemental:.*_helmet/,
291+
/ars_elemental:.*_hood/
292+
])
293+
294+
allthemods.add("allthearcanistgear:elemental_chest", [
295+
/ars_elemental:.*_chestplate/,
296+
/ars_elemental:.*_tunic/
297+
])
298+
299+
allthemods.add("allthearcanistgear:elemental_legs", [
300+
/ars_elemental:.*_leggings_heavy/,
301+
/ars_elemental:.*_pants/
302+
])
303+
304+
allthemods.add("allthearcanistgear:elemental_boots", [
305+
/ars_elemental:.*_boots_heavy/,
306+
/ars_elemental:.*_shoes/
307+
])
308+
287309
// For crushing recipes
288310
allthemods.add("c:deepslate_blocks", ["minecraft:deepslate", "minecraft:cobbled_deepslate"])
289311
})

0 commit comments

Comments
 (0)