diff --git a/source/behavior/blocks/format/traits/connection.json b/source/behavior/blocks/format/traits/connection.json new file mode 100644 index 00000000..827a9670 --- /dev/null +++ b/source/behavior/blocks/format/traits/connection.json @@ -0,0 +1,20 @@ +{ + "$id": "blockception.minecraft.behavior.blocks.traits.minecraft.connection", + "title": "Connection", + "description": "Contains information about whether the block connects to other blocks, and if so, on what faces. The values of the states will change when the block or neighboring blocks change or move.", + "additionalProperties": false, + "type": "object", + "required": ["enabled_states"], + "properties": { + "enabled_states": { + "title": "Enabled States", + "description": "Connection states you wish to enable", + "type": "array", + "uniqueItems": true, + "minItems": 1, + "items": { + "enum": ["minecraft:cardinal_connections"] + } + } + } +}