ZeroSpace.gg

Mandragora

Grell Co-Op T1.5 Army Unit

import Mandragora from "../../../../faction/grell/unit/mandragora.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopMandragora extends Mandragora { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-mandragora.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-young-canopy"]; this.attacks.savageMaw.range = 300; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid }); this.upgrades.endorphicFrenzy.fluxCost = 62.5; this.upgrades.endorphicFrenzy.researchTime = 30; this.upgrades.tunnel.fluxCost = 50; this.upgrades.tunnel.researchTime = 22; this.upgrades.wideMandibles.fluxCost = 50; this.upgrades.wideMandibles.researchTime = 22; } } export default CoopMandragora;