Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 13x 13x 13x 13x 1x 1x 1x 1x 1x 1x 1x 1x 1x 13x 13x 1x 1x 1x 13x | import { Encounter, Hero, ModularSet, Pack, Scenario } from "../@models";
import { EncountersService, HeroesService, ModularSetsService, PacksService, ScenariosService } from ".";
export const load = async (): Promise<[Encounter[], Hero[], ModularSet[], Scenario[]]> => {
// load json data
const encountersService = new EncountersService();
const encounters = await encountersService.load();
const heroesService = new HeroesService();
const heroes = await heroesService.load();
const modulesService = new ModularSetsService();
const modules = await modulesService.load();
const scenariosService = new ScenariosService();
const scenarios = await scenariosService.load();
return [encounters, heroes, modules, scenarios];
};
export const loadUpcoming = async (): Promise<[Pack[]]> => {
const packsService = new PacksService();
const packs = await packsService.load(true);
return [packs];
};
|