ZeroSpace.gg

Boomer

Grell Co-Op Army Unit

import { Boomer } from "../../../../faction/grell/unit/boomer.js"; import { CoopFrenzySkill } from "../../../../../defaults/grell.js"; export class CoopVynthraBoomer extends Boomer { static override src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-boomer.ts"; constructor() { super(); this.uuid = "11fc882c-c55f-4c3a-a567-74fa8b26ceab"; this.internalId = "Troop_Koru_Boomer_C"; this.internalTags = [...this.internalTags!, "Logic.NoEssence"]; this.timedLife = 15; this.hp = 525; this.speed = 345; this.attacks.explode.damage = 400; this.attacks.explode.cooldown = 1; this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-destroyer"]; this.unlockedBy = ["coop/commander/vynthra/unit/coop-vynthra-destroyer"]; this.spells.frenzy = new CoopFrenzySkill({ parentId: this.id, parentUUID: this.uuid }); } } export default CoopVynthraBoomer;