UNPKG

@zerospacegg/iolin

Version:

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

20 lines 586 B
/** * Tenebris 1v1 Map * Ported from tenebris_1v1.pkl */ import { Map1v1 } from "../../../engine/map.js"; export class TenebrisMap extends 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; } } // Static property for source path TenebrisMap.src = "src/zerospace/map/1v1/tenebris-1v1.ts"; export default TenebrisMap; //# sourceMappingURL=tenebris-1v1.js.map