Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/components/flammable.json

25 lines
861 B
JSON
Raw Normal View History

2021-08-22 00:15:58 +02:00
{
2022-06-07 21:39:02 +02:00
"$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
2021-08-22 00:15:58 +02:00
},
{
"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
}
}
2021-08-22 00:15:58 +02:00
}
]
2021-08-22 00:15:58 +02:00
}