ZSGG Public Library
Hunting Grounds
Neutral 2v2 Map
import { Map2v2 } from "../../../engine/map.js";
export class HuntingGrounds extends Map2v2 {
override uuid: string;
// Static property for source path
static override src = "src/zerospace/map/2v2/hunting-grounds.ts";
constructor() {
super();
this.name = "Hunting Grounds";
this.uuid = "238d0e43-df81-46f8-aa87-aa0785ed90fa";
this.xpTowers = 3;
this.inLadderPool = false;
this.description = "3 Towers, 1 Boss";
}
}
export default HuntingGrounds;