UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

20 lines (19 loc) 546 B
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js'; import { FarmingPetDefinition } from '../base-pet.js'; export declare class ChickenPet extends FarmingPetDefinition { get id(): FarmingPets; get name(): string; get wiki(): string; perLevelStats: { Speed: { name: string; value: number; type: FarmingPetStatType; }; farming_fortune: { name: string; value: number; type: FarmingPetStatType; }; }; }