ZeroSpace.gg

Canyon

Neutral 1v1 Map

import { Map1v1 } from "../../../engine/map.js"; export class Canyon extends Map1v1 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/1v1/canyon.ts"; constructor() { super(); this.name = "Canyon"; this.uuid = "d551e519-8fb0-463e-9f79-fe85b231ab97"; this.xpTowers = 3; this.inLadderPool = true; this.description = "Unusual elevation changes, carved by a River over eons, offter tactical opportunities to outmanouver your opponent. (3 XP towers)"; } } export default Canyon;