ZeroSpace.gg

Treasure

Neutral 2v2 Map

import { Map2v2 } from "../../../engine/map.js"; export class Treasure extends Map2v2 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/2v2/treasure.ts"; constructor() { super(); this.name = "Treasure"; this.uuid = "b26e6011-3f91-4731-9e91-1cf3ab678b7f"; this.xpTowers = 4; this.inLadderPool = false; this.description = "Mirror symmetry map not yet decorated, which has 4 XP Towers. A boss spawns at the bottom one after 10 minutes."; } } export default Treasure;