This commit is contained in:
Reid 2025-11-29 16:08:41 -08:00
commit 39c14ec533
300 changed files with 6620 additions and 0 deletions

View file

@ -0,0 +1,94 @@
{
// -----------------------------------------------------------
// Item Obliterator by ElocinDev
// -----------------------------------------------------------
//
// How to add items?
// - They are json strings, so you need to separate each
// entry with a comma, except the last
// - If you start an entry with !, it will be treated as a regular expression
// Example: "!minecraft:.*_sword" to disable all swords
//
// -----------------------------------------------------------
// Do not touch this
"configVersion": 2,
// -----------------------------------------------------------
// Items here will be unusable completely
// Example: minecraft:diamond
"blacklisted_items": [
// create crafts and additions adds lots of stuff covered by c:ne
// goodbye
"createaddition:spool",
"createaddition:copper_spool",
"createaddition:gold_spool",
"createaddition:electrum_spool",
"createaddition:festive_spool",
"createaddition:copper_rod",
"createaddition:iron_rod",
"createaddition:gold_rod",
"createaddition:electrum_rod",
"createaddition:brass_rod",
"createaddition:copper_wire", // others have a use (barbed wire, mysterious trinket ??)
"createaddition:gold_wire",
"createaddition:zinc_sheet", // electrum sheet has a use (electrum wire)
"createaddition:capacitor",
"createaddition:connector",
"createaddition:small_light_connector",
"createaddition:large_connector",
"createaddition:modular_accumulator", // not compatible with c:ne either ahhahaha
"createaddition:tesla_coil",
"createaddition:creative_energy",
"createaddition:electric_motor",
"createaddition:portable_energy_interface",
"createaddition:alternator", // we're using create new age for dat
"ae2:vibration_chamber",
"ae2:crystal_resonance_chamber",
"create:potato_cannon",
"create:extendo_grip",
"createdieselgenerators:chemical_sprayer_lighter",
"supplementaries:quiver"
],
// -----------------------------------------------------------
// Removes an item if it contains certain nbt tag. If the whole entry (or expression) is present, the item gets removed.
// Use with caution! This is a very expensive operation and can cause lag if you have a lot of items blacklisted.
//
// Example to disable a regeneration potion: Potion:"minecraft:regeneration"
//
// You can also use regular expressions by starting the value with !
"blacklisted_nbt": [],
// -----------------------------------------------------------
// Items here will not be able to be right-clicked (Interact)
// Example: minecraft:apple
"only_disable_interactions": [
"examplemod:example_item"
],
// -----------------------------------------------------------
// Items here will not be able to be used to attack
// Example: minecraft:diamond_sword
"only_disable_attacks": [
"examplemod:example_item"
],
// -----------------------------------------------------------
// Items here will get their recipes disabled
// Keep in mind this already is applied to blacklisted items
"only_disable_recipes": [
"examplemod:example_item"
],
// -----------------------------------------------------------
// If true, the mod will use a hashset to handle the blacklisted items
// This is a more optimized approach only if you have a lot of items blacklisted (20 or more is recommended)
// If you just have a small amount of items blacklisted, keep this false
//
// [!] Enabling this will disable all regular expressions
// [!] Does not apply to NBT, only item blacklist / interaction / attack
"use_hashmap_optimizations": false
}