Fix stupid minecraft

This commit is contained in:
2024-08-05 13:31:08 +02:00
parent 7259b53176
commit cd5f473460
24 changed files with 7208 additions and 156 deletions

View File

@@ -0,0 +1,14 @@
/**
* 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;