ZeroSpace.gg

Echis Point

Neutral 2v2 Map

import { Map2v2 } from "../../../engine/map.js"; export class EchisPoint extends Map2v2 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/2v2/echis-point.ts"; constructor() { super(); this.name = "Echis Point"; this.uuid = "da8c1f5e-9874-4a18-aea1-ca5b0ae5c729"; this.xpTowers = 2; this.inLadderPool = false; this.description = "A small rocky island harboring unique vegatation, 3 XP Towers and 2 Boss spawn locations at the corners (spawn a boss after 10 minutes)"; } } export default EchisPoint;