ZeroSpace.gg

Total Annihiliation FFA

Neutral Ffa Map

/** * Total Annihiliation FFA Map * Ported from total_annihiliation_ffa.pkl */ import { MapFfa } from "../../../engine/map.js"; export class TotalAnnihilation extends MapFfa { override uuid: string; // Static property for source path static override src = "src/zerospace/map/ffa/total-annihilation.ts"; constructor() { super(); this.name = "Total Annihiliation FFA"; this.uuid = "606da9da-20d1-43e9-9303-b51f69e78878"; this.inLadderPool = false; this.players = 4; this.xpTowers = 8; this.description = "In this intense 4-player free-for-all, controlling the central rich flux deposit and surrounding control towers is key to victory. Players start on the outskirts, each separated by an AI-controlled faction, leading to constant skirmishes as you battle for dominance."; } } export default TotalAnnihilation;