ZeroSpace.gg

Thresher

Grell Co-Op T2.5 Army Unit

import Thresher from "../../../../faction/grell/unit/thresher.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopThresher extends Thresher { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-thresher.ts"; constructor() { super(); this.internalId = undefined; this.internalPath = undefined; this.setVariantUUID("coop-vynthra"); this.unlockedBy = [ "coop/commander/vynthra/building/coop-vynthra-macrogenesis-canopy", ]; this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-incubator"]; this.upgradedBy = ["coop/commander/vynthra/building/coop-vynthra-macrogenesis-canopy"]; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid }); } } export default CoopThresher;