LogoReliable Remover

Filtering

In Reliable Remover, you define an action and then add filters to the action.

Filter Options

FieldDescriptionExample
itemsList of specific item IDs.["minecraft:tnt"]
blocksList of specific block IDs or block tags.["minecraft:anvil", "#minecraft:beds"]
fluidsList of specific fluid IDs or fluid tags.["minecraft:water"]
effectsList of status effect / potion IDs or effect tags.["minecraft:poison", "minecraft:blindness"]
tagsList of item/block/fluid/effect tags to remove.["minecraft:logs"]
modTarget all items from a mod ID."farmersdelight"
dimensionsList of dimensions where the rule applies.["minecraft:the_nether"]
entitiesList of entity IDs (for interaction, attack, and equipment removal rules).["minecraft:villager"]
patternsA list of Regex patterns to match multiple item/block/fluid/effect IDs.["/.*_sword/", "/.*_helmet/"]
nbtMatches NBT tags (or Data Components in 1.21+). Provide strict SNBT format for a subset match (e.g., "{Damage:0}"), or wrap the string in slashes to use Regex (e.g., "/{.*Damage.*}/").
registryIsolate removal to specific registries (e.g., hiding from the item registry but keeping block behavior, or removing entity drops).["item", "entity"]
tag_typeIsolate removal to specific tag types (e.g., removing from item tags but keeping block tags intact).["item"]
advancementsList of advancement IDs. The rule only applies while the player has not yet earned all listed advancements. Once all advancements are obtained, the rule deactivates and the items become visible/usable again.["minecraft:nether/root"]
replace_withReplaces the removed item in all recipes with this specified item ID."minecraft:copper_ingot"

Logic (not)

You can use the not field to invert conditions. This is useful for creating exceptions (whitelists).

{
"action": "remove",
"mod": ["examplemod"],
"not": {
"items": ["examplemod:safe_item"]
}
}

For complex logical examples, such as "Ban Mod X except Item Y" or "Allow Item only in Dimension Z", please see the advanced examples page.

View 'Advanced Logic & NBT' Examples