Files
minecraft-bedrock-json-schemas/behaviour/items/1.16.100/components/minecraft.fuel.json
2021-01-18 01:29:00 +01:00

17 lines
513 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.1.16.100.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."
}
}
}