diff options
author | mat <github@matdoes.dev> | 2022-02-21 20:43:55 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-02-21 20:43:55 -0600 |
commit | c680e2463046f4123f6ef3710e5cf9655cf3da57 (patch) | |
tree | 1e311f04c6f93054e3ac06584f3f2d057e3ce39a /src/lib/APITypes.d.ts | |
parent | 34fcffb95db91bc1db80a00af4cf9d1007a9f575 (diff) | |
download | skyblock-stats-c680e2463046f4123f6ef3710e5cf9655cf3da57.tar.gz skyblock-stats-c680e2463046f4123f6ef3710e5cf9655cf3da57.tar.bz2 skyblock-stats-c680e2463046f4123f6ef3710e5cf9655cf3da57.zip |
add collections and zones
Diffstat (limited to 'src/lib/APITypes.d.ts')
-rw-r--r-- | src/lib/APITypes.d.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/APITypes.d.ts b/src/lib/APITypes.d.ts index 2f1c9ff..119e5b6 100644 --- a/src/lib/APITypes.d.ts +++ b/src/lib/APITypes.d.ts @@ -122,3 +122,19 @@ export interface CleanFullProfileBasicMembers extends CleanProfile { minion_count: number maxUniqueMinions: number } + +declare const COLLECTIONS: { + readonly farming: readonly ["wheat", "carrot", "potato", "pumpkin", "melon_slice", "wheat_seeds", "red_mushroom", "cocoa_beans", "cactus", "sugar_cane", "feather", "leather", "porkchop", "chicken", "mutton", "rabbit", "nether_wart"] + readonly mining: readonly ["cobblestone", "coal", "iron_ingot", "gold_ingot", "diamond", "lapis_lazuli", "emerald", "redstone", "quartz", "obsidian", "glowstone_dust", "gravel", "ice", "netherrack", "sand", "end_stone", "mithril_ore", "gemstone", "hard_stone"] + readonly combat: readonly ["rotten_flesh", "bone", "string", "spider_eye", "gunpowder", "ender_pearl", "ghast_tear", "slime_ball", "blaze_rod", "magma_cream"] + readonly foraging: readonly ["oak_log", "spruce_log", "birch_log", "jungle_log", "acacia_log", "dark_oak_log"] + readonly fishing: readonly ["cod", "salmon", "tropical_fish", "pufferfish", "prismarine_shard", "prismarine_crystals", "clay_ball", "lily_pad", "ink_sac", "sponge"] + readonly unknown: readonly [] +} +declare type CollectionCategory = keyof typeof COLLECTIONS +export interface Collection { + name: string + xp: number + level: number + category: CollectionCategory +} |