UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

20 lines 636 B
/** * Lost Expedition 2v2 Map * Ported from lost_expedition_2v2.pkl */ import { Map2v2 } from "../../../engine/map.js"; export class LostExpeditionMap extends Map2v2 { constructor() { super(); this.name = "Lost Expedition 2v2"; this.uuid = "94563931-fc16-45a6-9477-d8dc21c444b9"; this.xpTowers = 4; this.fluxDistance = "near"; this.mapSize = "large"; this.inLadderPool = true; } } // Static property for source path LostExpeditionMap.src = "src/zerospace/map/2v2/lost-expedition-2v2.ts"; export default LostExpeditionMap; //# sourceMappingURL=lost-expedition-2v2.js.map