UNPKG

@zerospacegg/iolin

Version:

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

24 lines 737 B
"use strict"; /** * Tenebris 1v1 Map * Ported from tenebris_1v1.pkl */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TenebrisMap = void 0; const map_js_1 = require("../../../engine/map.cjs"); class TenebrisMap extends map_js_1.Map1v1 { constructor() { super(); this.name = "Tenebris 1v1"; this.uuid = "fd501a59-b96e-418f-a3f5-b0b967bb60a1"; this.xpTowers = 2; this.fluxDistance = "distant"; this.mapSize = "small"; this.inLadderPool = true; } } exports.TenebrisMap = TenebrisMap; // Static property for source path TenebrisMap.src = "src/zerospace/map/1v1/tenebris-1v1.ts"; exports.default = TenebrisMap; //# sourceMappingURL=tenebris-1v1.js.map