UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

20 lines 611 B
/** * Echis Point 2v2 Map * Ported from echis_point_2v2.pkl */ import { Map2v2 } from "../../../engine/map.js"; export class EchisPointMap extends Map2v2 { constructor() { super(); this.name = "Echis Point 2v2"; this.uuid = "da8c1f5e-9874-4a18-aea1-ca5b0ae5c729"; this.xpTowers = 2; this.fluxDistance = "medium-far"; this.mapSize = "normal"; this.inLadderPool = true; } } // Static property for source path EchisPointMap.src = "src/zerospace/map/2v2/echis-point-2v2.ts"; export default EchisPointMap; //# sourceMappingURL=echis-point-2v2.js.map