nvb-uy / Item_Obliterator

Modpack Utility Mod to remove any items (or just recipes) from the game, with regex and nbt support.
Other
5 stars 5 forks source link

Regex for remove all items from one mod except one #54

Closed ArcaneAlloy closed 5 months ago

ArcaneAlloy commented 5 months ago

Hello! I would like to know if it is possible to create a regex to ban all the items of a mod, except one. For example, all the items from the Create mod except the "create:experience_nugget"

nvb-uy commented 5 months ago

^(?!.*\bcreate:experience_nugget\b).+$

HoodBlah commented 3 months ago

What if there are multiple items I want to keep? Can I use this multiple times in the "blacklisted_items" section? Like this:

^(?!.\bpneumaticcraft:item_life_upgrade\b).+$, ^(?!.\bpneumaticcraft:armor_upgrade\b).+$, ^(?!.*\bpneumaticcraft:magnet_upgrade\b).+$