mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-21 20:46:28 +00:00
25 lines
1007 B
JSON
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"
|
|
}
|
|
} |