@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 584 B
JavaScript
/**
* Starsand 1v1 Map
* Ported from starsand_1v1.pkl
*/
import { Map1v1 } from "../../../engine/map.js";
export class StarsandMap extends Map1v1 {
constructor() {
super();
this.name = "Starsand 1v1";
this.uuid = "bfdb9bc1-ae26-4728-8706-279a1e3e8bd8";
this.xpTowers = 3;
this.fluxDistance = "close";
this.mapSize = "large";
this.inLadderPool = true;
}
}
// Static property for source path
StarsandMap.src = "src/zerospace/map/1v1/starsand-1v1.ts";
export default StarsandMap;
//# sourceMappingURL=starsand-1v1.js.map