farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
38 lines (37 loc) • 1.04 kB
TypeScript
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { FarmingPetDefinition } from '../base-pet.js';
import type { FarmingPetAbility } from '../types/pets.js';
export declare class SlugPet extends FarmingPetDefinition {
get id(): FarmingPets;
get name(): string;
get wiki(): string;
perLevelStats: {
Defense: {
name: string;
value: number;
type: FarmingPetStatType;
};
Intelligence: {
name: string;
value: number;
type: FarmingPetStatType;
};
};
perRarityLevelStats: {
Epic: {
"Bonus Pest Chance": {
name: string;
value: number;
type: FarmingPetStatType;
};
};
Legendary: {
"Bonus Pest Chance": {
name: string;
value: number;
type: FarmingPetStatType;
};
};
};
abilities: FarmingPetAbility[];
}