ZeroSpace.gg

Gatherer

Grell Co-Op T0 Harvester Unit

import Gatherer from "../../../../faction/grell/unit/gatherer.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopGatherer extends Gatherer { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-gatherer.ts"; constructor() { super(); this.internalId = undefined; this.internalPath = undefined; this.setVariantUUID("coop-vynthra"); this.maxOwned = 6; this.unlockedBy = [ "coop/commander/vynthra/building/coop-vynthra-bloomwell", ]; this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-bloomwell"]; this.creates = ["coop/commander/vynthra/building/coop-vynthra-cultivator"]; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid }); } } export default CoopGatherer;