UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

47 lines (46 loc) 1.25 kB
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js'; import { FarmingPetDefinition } from '../base-pet.js'; import type { FarmingPetAbility } from '../pets.js'; export declare class BeePet extends FarmingPetDefinition { get id(): FarmingPets; get name(): string; get wiki(): string; perLevelStats: { Strength: { name: string; value: number; type: FarmingPetStatType; }; }; perRarityLevelStats: { Rare: { farming_fortune: { name: string; value: number; type: FarmingPetStatType; }; }; Epic: { farming_fortune: { name: string; value: number; type: FarmingPetStatType; }; }; Legendary: { farming_fortune: { name: string; value: number; type: FarmingPetStatType; }; }; Mythic: { farming_fortune: { name: string; value: number; type: FarmingPetStatType; }; }; }; abilities: FarmingPetAbility[]; }