UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

18 lines (17 loc) 608 B
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js'; import type { FarmingPet } from '../../fortune/farmingpet.js'; import { FarmingPetDefinition } from '../base-pet.js'; import type { FarmingPetAbility } from '../types/pets.js'; export declare class MooshroomCowPet extends FarmingPetDefinition { get id(): FarmingPets; get name(): string; get wiki(): string; stats: { farming_fortune: { name: string; calculated: (pet: FarmingPet) => number; type: FarmingPetStatType; }; }; abilities: FarmingPetAbility[]; }