-
-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5434 from ZZZank/tagging_explosives
Tagging explosives
- Loading branch information
Showing
1 changed file
with
99 additions
and
0 deletions.
There are no files selected for viewing
99 changes: 99 additions & 0 deletions
99
kubejs/server_scripts/enigmatica/kubejs/base/tags/items/enigmatica/explosives.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
'use strict'; | ||
|
||
onEvent('item.tags', (event) => { | ||
/** | ||
* Templates for tagging items, with automatic handling of "base tag". | ||
* E.g. when adding `thermal:ice_tnt` into `#enlightened6:explosives/ice`, it will also be added into `#enlightened6:explosives` | ||
* For a targeted tag, it will first remove entries that match elements in `removals`, then add entries in `additions` into it. | ||
* @type {{tag:string,removals?:any[],additions?:any[]}[]} | ||
* @param tag Tag string WITHOUT `#` prefix, like `forge:ingots` or `why:using/this/tag` | ||
* @param removals (Optional) Accepts RegEx, tag string, item string. | ||
* @param additions (Optional) Accepts RegEx, tag string, item string. | ||
*/ | ||
let recipes = [ | ||
{ | ||
tag: 'enigmatica:explosives/base', | ||
additions: [ | ||
'minecraft:tnt', | ||
'minecraft:tnt_minecart', | ||
'thermal:explosive_grenade', | ||
'supplementaries:bomb', | ||
'archers_paradox:explosive_arrow', | ||
'immersiveengineering:he', | ||
'apotheosis:explosive_arrow', | ||
'botania:lens_explosive' | ||
] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/lightning', | ||
additions: [ | ||
'powah:charged_snowball', | ||
'thermal:lightning_charge', | ||
'thermal:lightning_grenade', | ||
'thermal:lightning_tnt', | ||
'thermal:lightning_tnt_minecart', | ||
'archers_paradox:lightning_arrow' | ||
] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/ice', | ||
additions: [ | ||
'thermal:ice_charge', | ||
'thermal:ice_grenade', | ||
'thermal:ice_tnt', | ||
'thermal:ice_tnt_minecart' | ||
] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/earth', | ||
additions: [ | ||
'tconstruct:efln_ball', | ||
'thermal:earth_charge', | ||
'thermal:earth_tnt', | ||
'thermal:earth_tnt_minecart', | ||
'thermal:earth_grenade' | ||
] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/slime', | ||
additions: ['thermal:slime_tnt_minecart', 'thermal:slime_tnt', 'thermal:slime_grenade'] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/fire', | ||
additions: [ | ||
'thermal:fire_grenade', | ||
'minecraft:fire_charge', | ||
'thermal:fire_tnt', | ||
'thermal:fire_tnt_minecart', | ||
'archers_paradox:blaze_arrow' | ||
] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/ender', | ||
additions: ['thermal:ender_grenade', 'thermal:ender_tnt', 'thermal:ender_tnt_minecart'] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/glow', | ||
additions: ['thermal:glowstone_grenade', 'thermal:glowstone_tnt', 'thermal:glowstone_tnt_minecart'] | ||
}, | ||
{ | ||
tag: 'enigmatica:explosives/redstone', | ||
additions: [ | ||
'thermal:redstone_grenade', | ||
'thermal:redstone_tnt', | ||
'thermal:redstone_tnt_minecart', | ||
'archers_paradox:redstone_arrow' | ||
] | ||
} | ||
]; | ||
|
||
recipes.forEach(recipe => { | ||
let removals = recipe.removals ? recipe.removals : []; | ||
let additions = recipe.additions ? recipe.additions : []; | ||
let splitTag = recipe.tag.split('/'); | ||
for (let i = 0; i < splitTag.length; i++) { | ||
let tag = splitTag.slice(0, i + 1).join('/'); | ||
event.get(tag).remove(removals).add(additions); | ||
} | ||
}); | ||
}); |