farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
59 lines • 1.72 kB
JavaScript
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { Rarity } from '../../constants/reforges.js';
import { Stat } from '../../constants/stats.js';
import { FarmingPetDefinition } from '../base-pet.js';
export class RabbitPet extends FarmingPetDefinition {
get id() {
return FarmingPets.Rabbit;
}
get name() {
return 'Rabbit';
}
get wiki() {
return 'https://w.elitesb.gg/Rabbit_Pet';
}
maxRarity = Rarity.Mythic;
perLevelStats = {
[]: {
name: 'Rabbit Speed',
value: 0.2,
type: FarmingPetStatType.Base,
},
[]: {
name: 'Rabbit Health',
value: 1,
type: FarmingPetStatType.Base,
},
};
perRarityLevelStats = {
[]: {
[]: {
name: 'Farming Wisdom Boost',
value: 0.25,
type: FarmingPetStatType.Ability,
},
},
[]: {
[]: {
name: 'Farming Wisdom Boost',
value: 0.3,
type: FarmingPetStatType.Ability,
},
},
[]: {
[]: {
name: 'Farming Wisdom Boost',
value: 0.3,
type: FarmingPetStatType.Ability,
},
},
[]: {
[]: {
name: 'Farming Wisdom Boost',
value: 0.3,
type: FarmingPetStatType.Ability,
},
},
};
}
//# sourceMappingURL=rabbit.js.map