ZeroSpace.gg

Harbinger

Grell Co-Op T2 Army Unit

import Harbinger from "../../../../faction/grell/unit/harbinger.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopHarbinger extends Harbinger { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-harbinger.ts"; constructor() { super(); this.internalId = undefined; this.internalPath = undefined; this.setVariantUUID("coop-vynthra"); this.unlockedBy = [ "coop/commander/vynthra/building/coop-vynthra-incubator", ]; 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 CoopHarbinger;