⛏️ Range Mining Item
Mines multiple blocks in a configurable area when breaking a block. The range automatically rotates to match the direction you are facing.
items:
default:topaz_pickaxe:
material: golden_pickaxe
behaviors:
- type: range_mining_item
conditions: [] # Conditions for the behavior to activate
range:
- 0,1,0 # width, height, depth — relative to the mined block
- 0,-1,0
- 1,0,0
- -1,0,0
Each entry in range is a width,height,depth offset. A 3x3 flat area around the block:
range:
- 0,1,0
- 1,1,0
- -1,1,0
- 0,0,0
- 1,0,0
- -1,0,0
- 0,-1,0
- 1,-1,0
- -1,-1,0
