@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 768 B
JavaScript
;
/**
* Echis Point 2v2 Map
* Ported from echis_point_2v2.pkl
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.EchisPointMap = void 0;
const map_js_1 = require("../../../engine/map.cjs");
class EchisPointMap extends map_js_1.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;
}
}
exports.EchisPointMap = EchisPointMap;
// Static property for source path
EchisPointMap.src = "src/zerospace/map/2v2/echis-point-2v2.ts";
exports.default = EchisPointMap;
//# sourceMappingURL=echis-point-2v2.js.map