1b9e35efea
Replace the v0.30.x ad-hoc disable mechanisms (KubeJS server script,
datapack recipe override, KubeJS client-side JEI hide -- which was
broken on this KubeJS build) with a single proper tool:
- **Item Obliterator 2.3.0** + dep **Necronomicon API 1.6.0**
Declarative JSON config to remove items from inventories,
creative tabs, all recipes (including modded custom recipe
types), villager trades, and JEI. Exactly the missing capability.
Config: pack/overrides/defaultconfigs/item_obliterator.json5
Blacklists:
alexsmobs:transmutation_table
alexsmobs:shattered_dimensional_carver
Removed (no longer needed):
- pack/overrides/kubejs/server_scripts/disable_alexsmobs_features.js
(Item Obliterator handles transmutation_table recipe removal
and right-click cancel automatically)
- pack/overrides/world/datapacks/bns-fuel/data/alexsmobs/
capsid_recipes/shattered_dimensional_carver.json
(Item Obliterator handles modded recipe removal too)
Both items now correctly:
- Don't appear in JEI search / item list
- Don't appear in creative tabs
- Have no working recipe path
- Can't be right-clicked / used
- Get scrubbed from inventories on join
The Void Worm boss + regular Dimensional Carver still work --
nothing else in Alex's Mobs is affected.
Verified live: both mods discovered, Necronomicon read our config
file successfully ("File exists, reading config"), Item Obliterator
loaded with the blacklist.
Note: config schema is v2; v1 configs get overwritten by the mod's
default. Always write configVersion: 2.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
{
|
|
// -----------------------------------------------------------
|
|
// Item Obliterator -- Brass and Sigil config
|
|
// -----------------------------------------------------------
|
|
// Hides + disables specific Alex's Mobs items that we don't
|
|
// want in this modpack:
|
|
//
|
|
// alexsmobs:transmutation_table -- competes with Ars
|
|
// and undermines the
|
|
// Numismatics economy
|
|
//
|
|
// alexsmobs:shattered_dimensional_carver -- teleports the
|
|
// player 1,000,000
|
|
// blocks in a random
|
|
// direction, breaks
|
|
// world-bounds
|
|
//
|
|
// Both are removed from inventories, creative tabs, recipes
|
|
// (including the Capsid transformation), trades, and JEI.
|
|
// -----------------------------------------------------------
|
|
"configVersion": 2,
|
|
"blacklisted_items": [
|
|
"alexsmobs:transmutation_table",
|
|
"alexsmobs:shattered_dimensional_carver"
|
|
],
|
|
"blacklisted_nbt": [],
|
|
"only_disable_interactions": [],
|
|
"only_disable_attacks": [],
|
|
"only_disable_recipes": [],
|
|
"use_hashmap_optimizations": false
|
|
}
|