farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
17 lines (16 loc) • 658 B
TypeScript
import { GemRarity } from '../fortune/item.js';
import { Rarity } from './reforges.js';
import { Stat } from './stats.js';
export declare const GEMSTONES: Record<string, GemstoneInfo>;
export declare const PERIDOT: {
ROUGH?: Partial<Record<Rarity, number>> | undefined;
FLAWED?: Partial<Record<Rarity, number>> | undefined;
FINE?: Partial<Record<Rarity, number>> | undefined;
FLAWLESS?: Partial<Record<Rarity, number>> | undefined;
PERFECT?: Partial<Record<Rarity, number>> | undefined;
};
export interface GemstoneInfo {
stat: Stat;
chiselBonus?: string;
stats: Partial<Record<GemRarity, Partial<Record<Rarity, number>>>>;
}