15 lines
462 B
TypeScript
15 lines
462 B
TypeScript
/**
|
|
* All possible MinecraftCooldownCategoryTypes
|
|
*/
|
|
export enum MinecraftCooldownCategoryTypes {
|
|
Chorusfruit = "minecraft:chorusfruit",
|
|
EnderPearl = "minecraft:ender_pearl",
|
|
GoatHorn = "minecraft:goat_horn",
|
|
Shield = "minecraft:shield",
|
|
WindCharge = "minecraft:wind_charge",
|
|
}
|
|
/**
|
|
* Union type equivalent of the MinecraftCooldownCategoryTypes enum.
|
|
*/
|
|
export type MinecraftCooldownCategoryTypesUnion = keyof typeof MinecraftCooldownCategoryTypes;
|