farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
78 lines • 2.43 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 BeePet extends FarmingPetDefinition {
get id() {
return FarmingPets.Bee;
}
get name() {
return 'Bee';
}
get wiki() {
return 'https://w.elitesb.gg/Bee_Pet';
}
perLevelStats = {
[]: {
name: 'Bee Strength',
value: 0.3,
type: FarmingPetStatType.Base,
},
};
perRarityLevelStats = {
[]: {
[]: {
name: 'Busy Buzz Buzz',
value: 0.2,
type: FarmingPetStatType.Base,
},
},
[]: {
[]: {
name: 'Busy Buzz Buzz',
value: 0.3,
type: FarmingPetStatType.Base,
},
},
[]: {
[]: {
name: 'Busy Buzz Buzz',
value: 0.3,
type: FarmingPetStatType.Base,
},
},
[]: {
[]: {
name: 'Busy Buzz Buzz',
value: 0.4,
type: FarmingPetStatType.Base,
},
},
};
abilities = [
{
name: 'Powered by Pollen',
exists: (_, pet) => pet.rarity === Rarity.Mythic,
computed: (_, pet) => {
return {
[]: {
name: 'Powered by Pollen',
value: 1.6 * pet.level,
type: FarmingPetStatType.Ability,
},
[]: {
name: 'Powered by Pollen',
value: 1.6 * pet.level,
type: FarmingPetStatType.Ability,
},
[]: {
name: 'Powered by Pollen',
value: 1.6 * pet.level,
type: FarmingPetStatType.Ability,
},
};
},
},
];
}
//# sourceMappingURL=bee.js.map