-
Notifications
You must be signed in to change notification settings - Fork 0
Pattern & Matchers
DarkBladeDev edited this page Dec 27, 2025
·
1 revision
The pattern list defines the structure's shape.
pattern:
- offset: [x, y, z]
match: <MATCHER>
optional: <BOOLEAN> # Default: falseMatches a specific material.
match: OBSIDIANMatches empty space (must be air).
match: AIRMatches any block within a Vanilla Tag.
match: "#minecraft:logs" # Matches oak_log, birch_log, etc.
match: "#minecraft:wool"Matches exact state.
match: "minecraft:switch[face=floor,facing=north]"Matches if the block is ANY of the specified types.
match:
- COBBLESTONE
- MOSSY_COBBLESTONE
- STONE_BRICKS