ZSGG Public Library
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.upgrades.extensorAdaptation.description = "+50% movement speed.";
this.upgrades.pouncingReflex.name = "Pouncing Reflex";
this.upgrades.dissolvingVenom.name = "Dissolving Venom";
this.upgrades.dissolvingVenom.description =
"Attacks deal 8 damage per second and slow movement speed by 25% for 5 seconds.";
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 });
this.upgrades.extensorAdaptation.fluxCost = 50;
this.upgrades.extensorAdaptation.researchTime = 30;
this.upgrades.biomassSubmersion.fluxCost = 50;
this.upgrades.biomassSubmersion.researchTime = 22;
this.upgrades.pouncingReflex.fluxCost = 62.5;
this.upgrades.pouncingReflex.researchTime = 30;
this.upgrades.dissolvingVenom.fluxCost = 62.5;
this.upgrades.dissolvingVenom.researchTime = 30;
}
}
export default CoopStinger;