ZeroSpace.gg

Lost Expedition

Neutral 2v2 Map

import { Map2v2 } from "../../../engine/map.js"; export class LostExpedition extends Map2v2 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/2v2/lost-expedition.ts"; constructor() { super(); this.name = "Lost Expedition"; this.uuid = "94563931-fc16-45a6-9477-d8dc21c444b9"; this.xpTowers = 4; this.inLadderPool = false; this.description = "A medium-sized 2v2 map with few expansions, 3 control towers, and two boss spawn locations."; } } export default LostExpedition;