@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 665 B
JavaScript
/**
* Total Annihiliation FFA Map
* Ported from total_annihiliation_ffa.pkl
*/
import { MapFFA } from "../../../engine/map.js";
export class TotalAnnihilationMap extends MapFFA {
constructor() {
super();
this.name = "Total Annihiliation FFA";
this.uuid = "606da9da-20d1-43e9-9303-b51f69e78878";
this.xpTowers = 8;
this.fluxDistance = "near";
this.mapSize = "large";
this.inLadderPool = true;
}
}
// Static property for source path
TotalAnnihilationMap.src = "src/zerospace/map/ffa/total-annihiliation-ffa.ts";
export default TotalAnnihilationMap;
//# sourceMappingURL=total-annihiliation-ffa.js.map