Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/components/flammable.json
Daan Verstraten 2fe9f2ed70 Starting on blocks (#137)
* Starting on blocks

* Updated collision box

* Updated block components

* Fixed block/rotation

* Making orbi responsible for dependencies

* Updating blocks

* trigger -> triggers
2022-10-29 16:36:39 +02:00

25 lines
861 B
JSON

{
"$id": "blockception.minecraft.behavior.blocks.minecraft.flammable",
"title": "Flammable",
"description": "Describes the flammable properties for this block. If set to true, default values are used. If set to false, or if this component is omitted, the block will not be able to catch on fire naturally from neighbors, but it can still be directly ignited.",
"oneOf": [
{
"type": "boolean",
"default": true
},
{
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"seconds_to_destroy": {
"title": "Seconds To Destroy",
"description": "Sets the number of seconds it takes to destroy the block with base equipment. Greater numbers result in greater mining times.",
"type": "number",
"default": 0.0
}
}
}
]
}