UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

27 lines 757 B
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js'; import { Stat } from '../../constants/stats.js'; import { FarmingPetDefinition } from '../base-pet.js'; export class ChickenPet extends FarmingPetDefinition { get id() { return FarmingPets.Chicken; } get name() { return 'Chicken'; } get wiki() { return 'https://w.elitesb.gg/Chicken_Pet'; } perLevelStats = { [Stat.Speed]: { name: 'Speed', value: 0.5, type: FarmingPetStatType.Base, }, [Stat.FarmingFortune]: { name: 'Farming Fortune', value: 0.5, type: FarmingPetStatType.Base, }, }; } //# sourceMappingURL=chicken.js.map