ZSGG Public Library
Coastal Outpost
Neutral 1v1 Map
import { Map1v1 } from "../../../engine/map.js";
export class CoastalOutpost extends Map1v1 {
override uuid: string;
// Static property for source path
static override src = "src/zerospace/map/1v1/coastal-outpost.ts";
constructor() {
super();
this.name = "Coastal Outpost";
this.uuid = "1fb2fa46-ecf5-4a11-b968-5be2982c0dbd";
this.xpTowers = 3;
this.inLadderPool = true;
this.description = "A big open coastal area with fewer elevation changes. (4 XP Towers)";
}
}
export default CoastalOutpost;