ZeroSpace.gg

Keeper

Grell Co-Op T2 Army Unit

import { Keeper } from "../../../../faction/grell/unit/keeper.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopKeeper extends Keeper { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-keeper.ts"; constructor() { super(); // Vynthra's Keepers are built one at a time for 125 hexite; PvP builds pairs for 150/50. this.hexiteCost = 125; this.fluxCost = 0; this.buildCount = 1; this.internalId = undefined; this.internalPath = undefined; this.setVariantUUID("coop-vynthra"); this.upgrades.exoskeletonReinforcement.description = "+75 max HP."; 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-synapse-canopy"]; this.creates = ["coop/commander/vynthra/unit/coop-vynthra-arkanid"]; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid, }); } } export default CoopKeeper;