UNPKG

@skyblock-finance/actions

Version:

This package contains actions players can take in Hypixel Skyblock

56 lines (55 loc) 1.38 kB
import { Action } from './types'; export declare const bits: Action[]; export declare const bitsCrafts: Action[]; export declare const crimsonIsle: Action[]; export declare const gems: Action[]; export declare const northStars: Action[]; export declare const northStarsCrafts: Action[]; export declare const pests: Action[]; export declare const wood: Action[]; export declare const allActions: { inputs: ({ amount: number; id: string; type: "item"; } | { amount: number; id: "bit" | "coin" | "gem" | "north-star" | "pest" | "second" | "usd"; type: "currency"; })[]; outputs: ({ amount: number; id: string; type: "item"; } | { amount: number; id: "bit" | "coin" | "gem" | "north-star" | "pest" | "second" | "usd"; type: "currency"; })[]; place: ({ type: "anvil"; left: { amount: number; id: string; type: "item"; }; right: { amount: number; id: string; type: "item"; }; } | { id: string; type: "npc"; } | { type: "website"; url: string; } | { type: "workbench"; grid: ({ amount: number; id: string; type: "item"; } | null)[]; })[]; }[];