farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
19 lines (18 loc) • 462 B
TypeScript
import { Rarity } from '../../constants/reforges.js';
import { BaseAccessory } from './base.js';
export declare class PowerRelic extends BaseAccessory {
get skyblockId(): string;
get name(): string;
get wiki(): string;
get maxRarity(): Rarity;
gemSlots: {
slot_type: string;
costs: never[];
}[];
cost: {
items: {
PERFECT_PLATE: number;
GLACITE_AMALGAMATION: number;
};
};
}