Item Restrictions
This mod provides the ability to impose restrictions on various player actions in Minecraft. It can prohibit crafting items on a workbench, smelting in a furnace, brewing potions in a brewing stand, as well as repairing tools and armor.
Additionally, the mod allows restricting the placement and destruction of specific blocks, as well as dealing damage to mobs and other players using particular items. All restrictions are configured through the Arc Lib conditions system, ensuring flexibility and precision in configuration.
Example restriction for working with stone
Here's what the configuration looks like that prohibits placing and destroying the stone block:
{
"types": [
"break_block",
"place_block"
],
"conditions": [
{
"type": "arc:item",
"inverted": true,
"item": "minecraft:stone"
}
]
}