ZeroSpace.gg

Stinger

Grell Co-Op T1 Army Unit

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