farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
31 lines (30 loc) • 873 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 HedgehogPet extends FarmingPetDefinition {
get id(): FarmingPets;
get name(): string;
get wiki(): string;
perLevelStats: {
Speed: {
name: string;
value: number;
type: FarmingPetStatType;
};
};
perRarityLevelStats: {
Legendary: {
pest_kill_fortune: {
name: string;
value: number;
type: FarmingPetStatType;
};
Overbloom: {
name: string;
value: number;
type: FarmingPetStatType;
};
};
};
abilities: FarmingPetAbility[];
}