ZSGG Public Library
Siege
Co-op Mission
import { CoopMission } from "../../../engine/mission.js";
class Siege extends CoopMission {
static override src = "src/zerospace/coop/mission/siege.ts";
constructor() {
super();
this.uuid = "a71e1bdf-8db0-4ac1-acc8-630bc15bc2fa";
this.name = "Siege";
this.shortName = "Siege";
this.description = "Protect ZeroSpace Relay. Destroy enemy mechs. Shield Generators make mechs invulnerable.";
}
}
export default Siege;