ZeroSpace.gg

Hunting Ground

Neutral 1v1 Map

import { Map1v1 } from "../../../engine/map.js"; export class HuntingGround extends Map1v1 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/1v1/hunting-ground.ts"; constructor() { super(); this.name = "Hunting Ground"; this.uuid = "71d2d700-1fa3-46c0-aa0b-46cd0bd6bd09"; this.xpTowers = 3; this.inLadderPool = false; this.description = "An experimental map, not yet decorated. 3 XP Towers (1 Boss Center)"; } } export default HuntingGround;