ZeroSpace.gg

Fractured Oasis

Neutral 2v2 Map

/** * Fractured Oasis 2v2 Map * Ported from fractured_oasis_2v2.pkl */ import { Map2v2 } from "../../../engine/map.js"; export class FracturedOasis extends Map2v2 { override uuid: string; // Static property for source path static override src = "src/zerospace/map/2v2/fractured-oasis.ts"; constructor() { super(); this.name = "Fractured Oasis"; this.uuid = "25265b2f-799c-45e2-9183-a7a9686d3b00"; this.xpTowers = 3; this.inLadderPool = false; this.description = "A large desert map built for macro-heavy strategies. With distant Flux spots and three control towers. Two boss spawn locations near the ponds. Players should prioritize expansion while maintaining map control"; } } export default FracturedOasis;