Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/fire_resistant.json

20 lines
419 B
JSON
Raw Normal View History

{
"$id": "blockception.minecraft.behavior.items.minecraft:fire_resistant",
"title": "Fire Resistant",
"description": "Determines whether an item is immune to burning when dropped in fire or lava",
"oneOf": [
{
"type": "boolean"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"value": {
"type": "boolean"
}
}
}
]
}