Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/fuel.json
DW623 d3a8c7a4a4 Add Item Examples (#182)
Add Examples to Item Components from MS-Learn Website
2023-08-17 20:04:39 +02:00

13 lines
463 B
JSON

{
"$id": "blockception.minecraft.behavior.items.minecraft:fuel",
"title": "Fuel",
"description": "Fuel component. Allows this item to be used as fuel in a furnace to `cook` other items.",
"type": "object",
"additionalProperties": false,
"required": ["duration"],
"properties": { "duration": { "type": "number", "title": "Duration", "description": "How long in seconds will this fuel cook items for." } },
"examples": [
{"duration": 3.0}
]
}