ZeroSpace.gg

Arandi Asterion

Arandi T1 Merc Unit

import { ArandiMercUnit } from "../../../../defaults/arandi.js"; import { Attack } from "../../../../engine/ability.js"; class ArandiAsterion extends ArandiMercUnit { override uuid: string; static override src = "src/zerospace/mercenary/arandi/unit/arandi-asterion.ts"; constructor() { super(); this.hexiteCost = 250; this.fluxCost = 250; this.buildCount = 2; this.name = "Arandi Asterion"; this.tier = "T1"; this.hotkey = ""; this.uuid = "bc06f7b0-5707-4c28-81cd-adca4071b789"; this.internalId = "Troop_Arandi_Prison_C"; this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Arandi_Prison.Default__Troop_Arandi_Prison_C"; this.internalTags = ["Attackable.Unit.Troop", "Attackable.ArmorType.Heavy", "Local.Arandi"]; this.internalSecondaryTags = ["Vehicle"]; this.description = "Weapon projectiles are slow but pass through enemies damaging all on its way."; this.shields = 0; this.armor = 1; this.armorType = "heavy"; this.hp = 300; this.speed = 500; this.supply = 4; this.turnSpeed = 3000; this.vision = 1600; this.pushability = 1; this.createdBy = ["mercenary/arandi/building/arandi-penumbra"]; // TODO: Convert to getter - this.infuseCost = 7; this.attacks.energyPulsar = new Attack({ internalId: "Default__Weapon_Arandi_Prison_C", name: "Energy Pulsar", damage: 60, range: 1300, cooldown: 3, armorPenetration: 0, delay: 0.15, targets: ["ground"], description: "Channels interdimensional power to destabilize molecular bonds across dimensional barriers", parentId: this.id, parentUUID: this.uuid, }); } } export default ArandiAsterion;