* Starting on blocks * Updated collision box * Updated block components * Fixed block/rotation * Making orbi responsible for dependencies * Updating blocks * trigger -> triggers
25 lines
861 B
JSON
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
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|