2021-06-06 10:07:19 +00:00
{
"$id" : "blockception.minecraft.behavior.1.16.200.items.minecraft:cooldown" ,
"title" : "Cooldown" ,
2021-06-06 13:00:25 +02:00
"description" : "Cool down time for a component. After you use an item it becomes unusable for the duration specified by the `cool down time` setting in this component." ,
2021-06-06 10:07:19 +00:00
"type" : "object" ,
"additionalProperties" : false ,
"required" : [ "category" , "duration" ] ,
"properties" : {
"category" : { "type" : "string" , "description" : "The type of cool down for this item." , "title" : "Category" } ,
"duration" : {
"description" : "The duration of time this item will spend cooling down before becoming usable again." ,
"title" : "Duration" ,
"type" : "number"
}
}
}