UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

100 lines (99 loc) 2.71 kB
import { Crop } from '../../constants/crops.js'; import { Rarity } from '../../constants/reforges.js'; import { UpgradeReason } from '../../constants/upgrades.js'; import { BaseItem } from '../base-item.js'; import { FarmingToolType } from '../definitions.js'; export declare class MelonDicer1 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; upgrade: { id: string; reason: UpgradeReason; cost: { items: { ENCHANTED_MELON_BLOCK: number; JACOBS_TICKET: number; }; }; }; } export declare class MelonDicer2 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; upgrade: { id: string; reason: UpgradeReason; cost: { items: { ENCHANTED_MELON_BLOCK: number; JACOBS_TICKET: number; }; }; }; } export declare class MelonDicer3 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; } export declare class PumpkinDicer1 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; upgrade: { id: string; reason: UpgradeReason; cost: { items: { POLISHED_PUMPKIN: number; JACOBS_TICKET: number; }; }; }; } export declare class PumpkinDicer2 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; upgrade: { id: string; reason: UpgradeReason; cost: { items: { POLISHED_PUMPKIN: number; JACOBS_TICKET: number; }; }; }; } export declare class PumpkinDicer3 extends BaseItem { get skyblockId(): string; get name(): string; get wiki(): string; get maxRarity(): Rarity; crops: Crop[]; type: FarmingToolType; gemSlots: import("./gem-slots.js").ToolGemSlot[]; }