1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-21 20:46:28 +00:00
bedrock-samples/metadata/json_schemas/Cooldown v1.20.50.json
Mike Ammerlaan 1440438305 v1.21.30.3
2024-09-17 09:13:33 -07:00

25 lines
1007 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "886176099",
"title": "minecraft:cooldown v1.20.50",
"description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.",
"type": "object",
"properties": {
"category": {
"description": "The type of cool down for this item. All items with a cool down component with the same category are put on cool down when one is used.",
"type": "string"
},
"duration": {
"description": "The duration of time (in seconds) items with a matching category will spend cooling down before becoming usable again.",
"type": "number"
}
},
"required": [
"category",
"duration"
],
"$metaProperties": {
"CEREAL_DOCUMENTATION_TAG": false,
"CEREAL_JSON_SCHEMA": "Cooldown v1.20.50"
}
}