Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/data/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ export namespace General {
documentation: "Returns 1.0 if the entity has chests attached to it, else it returns 0.0.",
},
{
id: "is_cooldown_type",
documentation: "Returns 1.0 if the specified held or worn item has the specified cooldown type name, otherwise returns 0.0. First argument is the cooldown name to check for, second argument is the equipment slot name, and if required third argument is the numerical slot id. For second and third arguments, uses the same name and id that the replaceitem command takes when querying entities."
id: "is_cooldown_category",
documentation: "Returns 1.0 if the specified held or worn item has the specified cooldown category, otherwise returns 0.0. First argument is the cooldown name to check for, second argument is the equipment slot name, and if required third argument is the numerical slot id. For second and third arguments, uses the same name and id that the replaceitem command takes when querying entities."
},
{
id: "is_crawling",
Expand Down Expand Up @@ -1561,6 +1561,11 @@ export namespace General {
"DEPRECATED (Use query.is_name_any instead if possible so names can be changed later without breaking content.)",
deprecated: "query.is_name_any",
},
{
id: "is_cooldown_type",
documentation: "DEPRECATED",
deprecated: "query.is_cooldown_category"
},
{
id: "overlay_alpha",
documentation: "DEPRECATED (Do not use - this function is deprecated and will be removed)",
Expand Down
Loading