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

23 lines
724 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",
2021-08-22 00:15:58 +02:00
"additionalProperties": false,
"type": "object",
2022-06-07 21:39:02 +02:00
"title": "Flammable",
2021-08-22 00:15:58 +02:00
"description": "Describes the flammable properties for this block.",
"additionalItems": false,
"properties": {
"burn_odds": {
"type": "integer",
"default": 0,
2021-09-21 23:02:34 +02:00
"description": "How likely the block will be destroyed by flames when on fire. Value must be greater than or equal to 0.",
2021-08-22 00:15:58 +02:00
"title": "Burn Odds"
},
"flame_odds": {
"type": "integer",
"default": 0,
2021-09-21 23:02:34 +02:00
"description": "How likely the block will catch flame when next to a fire. Value must be greater than or equal to 0.",
2021-08-22 00:15:58 +02:00
"title": "Flame Odds"
}
}
}