ZSGG Public Library
Tenebris
Neutral 1v1 Map
/**
* Tenebris 1v1 Map
* Ported from tenebris_1v1.pkl
*/
import { Map1v1 } from "../../../engine/map.js";
export class Tenebris extends Map1v1 {
override uuid: string;
// Static property for source path
static override src = "src/zerospace/map/1v1/tenebris.ts";
constructor() {
super();
this.name = "Tenebris";
this.uuid = "fd501a59-b96e-418f-a3f5-b0b967bb60a1";
this.xpTowers = 2;
this.inLadderPool = true;
this.description =
"A small map featuring three control towers and direct paths to enemy bases. Expect fast-paced battles and frequent skirmishes.";
}
}
export default Tenebris;