2024-09-22 16:25:16 +05:00
|
|
|
{
|
|
|
|
|
"$id": "blockception.minecraft.behavior.blocks.minecraft.redstone_conductivity",
|
|
|
|
|
"title": "Redstone Conductivity",
|
2024-11-18 19:33:19 +05:00
|
|
|
"description": "The basic redstone properties of a block; if the component is not provided the default values are used.",
|
2024-09-22 16:25:16 +05:00
|
|
|
"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
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|