@skyblock-finance/actions
Version:
This package contains actions players can take in Hypixel Skyblock
112 lines (111 loc) • 5.6 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.allActions = exports.wood = exports.northStarsCrafts = exports.gemstones = exports.gems = exports.forging = exports.crimsonIsle = exports.bitsCrafts = exports.minionsZombie = exports.minionsVampire = exports.minionsSpider = exports.minionsSlime = exports.minionsSkeleton = exports.minionsGhast = exports.minionsEnderman = exports.minionsCreeper = exports.minionsCaveSpider = exports.minionsBlaze = exports.smithmonger = exports.skymart = exports.seymour = exports.plumberJoe = exports.phillip = exports.marthos = exports.hilda = exports.fishingMerchant = exports.elizabeth = exports.einary = exports.bulvar = exports.bubu = exports.bingo = exports.adventurer = exports.materialsMithril = exports.materialsDiamond = exports.materialsCoal = void 0;
const bits_crafts_json_1 = require("../data/bits-crafts.json");
const crimson_isle_json_1 = require("../data/crimson-isle.json");
const forging_json_1 = require("../data/forging.json");
const gems_json_1 = require("../data/gems.json");
const gemstones_json_1 = require("../data/gemstones.json");
const coal_json_1 = require("../data/materials/coal.json");
const diamond_json_1 = require("../data/materials/diamond.json");
const mithril_json_1 = require("../data/materials/mithril.json");
const adventurer_json_1 = require("../data/merchants/adventurer.json");
const bingo_json_1 = require("../data/merchants/bingo.json");
const bubu_json_1 = require("../data/merchants/bubu.json");
const bulvar_json_1 = require("../data/merchants/bulvar.json");
const einary_json_1 = require("../data/merchants/einary.json");
const elizabeth_json_1 = require("../data/merchants/elizabeth.json");
const fishing_merchant_json_1 = require("../data/merchants/fishing-merchant.json");
const hilda_json_1 = require("../data/merchants/hilda.json");
const marthos_json_1 = require("../data/merchants/marthos.json");
const phillip_json_1 = require("../data/merchants/phillip.json");
const plumber_joe_json_1 = require("../data/merchants/plumber-joe.json");
const seymour_json_1 = require("../data/merchants/seymour.json");
const skymart_json_1 = require("../data/merchants/skymart.json");
const smithmonger_json_1 = require("../data/merchants/smithmonger.json");
const blaze_json_1 = require("../data/minions/blaze.json");
const cave_spider_json_1 = require("../data/minions/cave-spider.json");
const creeper_json_1 = require("../data/minions/creeper.json");
const enderman_json_1 = require("../data/minions/enderman.json");
const ghast_json_1 = require("../data/minions/ghast.json");
const skeleton_json_1 = require("../data/minions/skeleton.json");
const slime_json_1 = require("../data/minions/slime.json");
const spider_json_1 = require("../data/minions/spider.json");
const vampire_json_1 = require("../data/minions/vampire.json");
const zombie_json_1 = require("../data/minions/zombie.json");
const north_stars_crafts_json_1 = require("../data/north-stars-crafts.json");
const wood_json_1 = require("../data/wood.json");
// materials
exports.materialsCoal = coal_json_1.actions;
exports.materialsDiamond = diamond_json_1.actions;
exports.materialsMithril = mithril_json_1.actions;
// merchants
exports.adventurer = adventurer_json_1.actions;
exports.bingo = bingo_json_1.actions;
exports.bubu = bubu_json_1.actions;
exports.bulvar = bulvar_json_1.actions;
exports.einary = einary_json_1.actions;
exports.elizabeth = elizabeth_json_1.actions;
exports.fishingMerchant = fishing_merchant_json_1.actions;
exports.hilda = hilda_json_1.actions;
exports.marthos = marthos_json_1.actions;
exports.phillip = phillip_json_1.actions;
exports.plumberJoe = plumber_joe_json_1.actions;
exports.seymour = seymour_json_1.actions;
exports.skymart = skymart_json_1.actions;
exports.smithmonger = smithmonger_json_1.actions;
// minions
exports.minionsBlaze = blaze_json_1.actions;
exports.minionsCaveSpider = cave_spider_json_1.actions;
exports.minionsCreeper = creeper_json_1.actions;
exports.minionsEnderman = enderman_json_1.actions;
exports.minionsGhast = ghast_json_1.actions;
exports.minionsSkeleton = skeleton_json_1.actions;
exports.minionsSlime = slime_json_1.actions;
exports.minionsSpider = spider_json_1.actions;
exports.minionsVampire = vampire_json_1.actions;
exports.minionsZombie = zombie_json_1.actions;
// other
exports.bitsCrafts = bits_crafts_json_1.actions;
exports.crimsonIsle = crimson_isle_json_1.actions;
exports.forging = forging_json_1.actions;
exports.gems = gems_json_1.actions;
exports.gemstones = gemstones_json_1.actions;
exports.northStarsCrafts = north_stars_crafts_json_1.actions;
exports.wood = wood_json_1.actions;
exports.allActions = [
...exports.adventurer,
...exports.bingo,
...exports.bitsCrafts,
...exports.bubu,
...exports.bulvar,
...exports.crimsonIsle,
...exports.einary,
...exports.elizabeth,
...exports.fishingMerchant,
...exports.forging,
...exports.gems,
...exports.gemstones,
...exports.hilda,
...exports.marthos,
...exports.materialsCoal,
...exports.materialsDiamond,
...exports.materialsMithril,
...exports.minionsBlaze,
...exports.minionsCaveSpider,
...exports.minionsCreeper,
...exports.minionsEnderman,
...exports.minionsGhast,
...exports.minionsSkeleton,
...exports.minionsSlime,
...exports.minionsSpider,
...exports.minionsVampire,
...exports.minionsZombie,
...exports.northStarsCrafts,
...exports.phillip,
...exports.plumberJoe,
...exports.seymour,
...exports.skymart,
...exports.smithmonger,
...exports.wood,
];