@@ -4,30 +4,28 @@ This mechanic destroys the block at the given location.
| Parameter | Value | Description | Default |
|-----------|-------|-------------|---------|
| **respectTool** | true/false | Determines whether the destroyed block should be affected by the players tool. This means that e.g. luck enchantments will be respected and that wood tools won't be able to properly mine diamonds (no drop). | false |
| **respectDurability** | true/false | Activate it to damage the players tool. | false |
| **respectDurability** | true/false | Activate it to damage the players tool. 1 Damage per block. | false |
| **doDrops** | true/false | Activate it to enable drops. | true |
| **dropExp** | true/false | Allows EXP to drop from e.g. redstone ore. | true |
## DurabilityMechanic
This mechanic allows you to modify durability values of equipment.
| Parameter | Value | Description | Default |
|-----------|-------|-------------|---------|
| **armorType** | hand/offhand/helmet/chest/legs/boots/all | Choose the one equipment part you want to modify, or just choose them all at once. | all |
| **durability** | Integer | The amount you want to modify the durability by. Passing the number 5 would damage the chosen armor part by 5, negative numbers on the other hand would increase the durability. | 1 |
**Parameters:**
**armorType**: _hand/offhand/helmet/chest/legs/boots/all_ - Choose the one equipment part you want to modify, or choose them all. Default is all.
**durability:** _Integer_ - The amount you want to modify the durability by. Passing the number 5 would damage the chosen armor part by 5, negative numbers on the other hand would increase the durability. Default is 1.
## SmeltBlockMechanic
This mechanic is equivalent to the DestroyBlockMechanic but will smelt all resulting items.
| Parameter | Value | Description | Default |
|-----------|-------|-------------|---------|
| respectTool | true/false | Determines whether the destroyed block should be affected by the players tool. This means that e.g. luck enchantments will be respected and that wood tools won't be able to properly mine diamonds (no drop). | false |
| respectDurability | true/false | Activate it to damage the players tool. 1 Damage per block. | false |
| dropExp | true/false | Allows EXP to drop from e.g. redstone ore. | true |
| destroyBlock | true/false | Setting this to false will keep the block and just drop the items. | true |
| amount | PlaceholderInt/Integer | Determines how many items should drop. This will overwrite the natural drop from respectTool. | _ignored_ |
**respectTool**: _true/false_ - Determines whether the destroyed block should be affected by the players tool. This means that e.g. luck enchantments will be respected and that wood tools won't be able to properly mine diamonds (no drop). Default is false.
**respectDurability**: _true/false_ - Activate it to damage the players tool. Default is false.
**dropExp**: _true/false_ - Allows EXP to drop from e.g. redstone ore. Default is true.
**destroyBlock**: _true/false_ - Setting this to false will keep the block and just drop the items. Default is false.
**amount**: _PlaceholderInt/Integer_ - Determines how many items should drop. This will overwrite the natural drop from respectTool.