farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
23 lines (22 loc) • 472 B
TypeScript
export interface EliteItemDto {
id?: number | null;
count?: number | null;
skyblockId?: string | null;
uuid?: string | null;
name?: string | null;
lore?: string[] | null;
enchantments?: {
[key: string]: number | null;
} | null;
attributes?: {
[key: string]: string | null;
} | null;
gems?: Record<string, string> | null;
}
export declare enum GemRarity {
Rough = 'ROUGH',
Flawed = 'FLAWED',
Fine = 'FINE',
Flawless = 'FLAWLESS',
Perfect = 'PERFECT',
}