Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/components/redstone_conductivity.json
Xterionix ca1b07bc2d Update from 1.21.0 to 1.21.30 (#307)
* - Remove deprecated biome components
* - Remove block hcf
* - Add item specific destroy speeds
* - Add owner distance filter
* - Update scatter feature distribution property
* - Add new entity components
- Remove behavior.peek
* - Add new item components
- Remove hcf item stuff
* - Remove volumes
* - Add set_potion loot table function
* - Mark fields as required
* - Add item display transforms
* - Add redstone conductivity block component
* - Add is_navigating filter
* - Fix move around target ref
* - Add pack namespaced loot tables functions
2024-09-22 13:25:16 +02:00

22 lines
885 B
JSON

{
"$id": "blockception.minecraft.behavior.blocks.minecraft.redstone_conductivity",
"title": "Redstone Conductivity",
"description": "The basic redstone properties of a block; if the component is not provided the default values are used. Requires the Upcoming Creator Features experiment.",
"type": "object",
"additionalProperties": false,
"required": [ ],
"properties": {
"allows_wire_to_step_down": {
"title": "Allows Wire To Step Down",
"description": "Specifies if redstone wire can stair-step downward on the block.",
"type": "boolean",
"default": true
},
"redstone_conductor": {
"title": "Redstone Conductor",
"description": "Specifies if the block can be powered by redstone.",
"type": "boolean",
"default": false
}
}
}