ZeroSpace.gg

Grell Keeper

Grell Co-Op T2 Army Unit

import { GrellKeeper } from "../../../../faction/grell/unit/grell-keeper.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopGrellKeeper extends GrellKeeper { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-grell-keeper.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.creates = ["coop/commander/vynthra/unit/coop-vynthra-arkanid"]; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid, }); } } export default CoopGrellKeeper;