ZeroSpace.gg

Hunting Grounds Camps

Neutral 2v2 Map

import { Map2v2 } from "../../../engine/map.js"; export class HuntingGroundsCamps extends Map2v2 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/2v2/hunting-grounds-camps.ts"; constructor() { super(); this.name = "Hunting Grounds Camps"; this.uuid = "d6e96a41-65f7-4af1-9ccb-8e5fa7fa486f"; this.xpTowers = 3; this.inLadderPool = false; this.description = "An experimental map, not yet decorated. There are 3 XP Towers (1 Boss center 10 minutes) and lots of hostile mercenary camps (XP Reward)"; } } export default HuntingGroundsCamps;