@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
16 lines • 857 B
JavaScript
import { CoopMission } from "../../../engine/mission.js";
class FrozenWatch extends CoopMission {
constructor() {
super({
name: "The Frozen Watch",
description: "You are being deployed behind enemy lines. Your aim is to secure the area while a massive artillery gun is assembled, loaded, and fired. The team must repel the attacking Grell while the gun is reloaded. The gun will be fired each day to destroy a Grell tunnel being used to reinforce the area. For the Idals!",
missionType: "survival",
uuid: "5ea3b101-f4d7-487a-bd3b-2a3434f569d9",
});
this.name = "The Frozen Watch";
this.uuid = "5ea3b101-f4d7-487a-bd3b-2a3434f569d9";
}
}
FrozenWatch.src = "src/zerospace/mission/coop/frozen-watch.ts";
export default FrozenWatch;
//# sourceMappingURL=frozen-watch.js.map