farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
22 lines • 636 B
JavaScript
import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { Stat } from '../../constants/stats.js';
import { FarmingPetDefinition } from '../base-pet.js';
export class ElephantPet extends FarmingPetDefinition {
get id() {
return FarmingPets.Elephant;
}
get name() {
return 'Elephant';
}
get wiki() {
return 'https://w.elitesb.gg/Elephant_Pet';
}
perLevelStats = {
[]: {
name: 'Farming Fortune',
value: 1.5,
type: FarmingPetStatType.Ability,
},
};
}
//# sourceMappingURL=elephant.js.map