farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
24 lines (23 loc) • 773 B
TypeScript
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 RoseDragonPet extends FarmingPetDefinition {
get id(): FarmingPets;
get name(): string;
get wiki(): string;
maxLevel: number;
stats: {
farming_fortune: {
name: string;
type: FarmingPetStatType;
calculated: (pet: FarmingPet) => number;
};
Speed: {
name: string;
type: FarmingPetStatType;
calculated: (pet: FarmingPet) => number;
};
};
abilities: FarmingPetAbility[];
}