farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
22 lines (21 loc) • 636 B
TypeScript
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { FarmingPetDefinition } from '../base-pet.js';
import type { FarmingPetAbility } from '../types/pets.js';
export declare class PigPet extends FarmingPetDefinition {
get id(): FarmingPets;
get name(): string;
get wiki(): string;
perLevelStats: {
Speed: {
name: string;
value: number;
type: FarmingPetStatType;
};
potato_fortune: {
name: string;
value: number;
type: FarmingPetStatType;
};
};
abilities: FarmingPetAbility[];
}