ZeroSpace.gg

Starsand

Neutral 1v1 Map

/** * Starsand 1v1 Map * Ported from starsand_1v1.pkl */ import { Map1v1 } from "../../../engine/map.js"; export class Starsand extends Map1v1 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/1v1/starsand.ts"; constructor() { super(); this.name = "Starsand"; this.uuid = "bfdb9bc1-ae26-4728-8706-279a1e3e8bd8"; this.xpTowers = 3; this.inLadderPool = true; this.description = "A large and dry landscape with many pathways and a secure first expansion (3 XP Towers)"; } } export default Starsand;