ZSGG Public Library
Cha'Kru Clackjaw
Chakru T1 Merc Unit
import { ChakruMercUnit } from "../../../../defaults/chakru.js";
import { Attack } from "../../../../engine/ability.js";
class ChakruClackjaw extends ChakruMercUnit {
override uuid: string;
static override src = "src/zerospace/mercenary/chakru/unit/chakru-clakjaw.ts";
constructor() {
super();
this.hexiteCost = 112.5;
this.fluxCost = 0;
this.name = "Cha'Kru Clackjaw";
this.tier = "T1";
this.hotkey = "";
this.internalId = "Troop_Kingdom_Crab_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Kingdom_Crab.Default__Troop_Kingdom_Crab_C";
this.internalTags = [
"Attackable.Unit.Troop",
"Attackable.ArmorType.Heavy",
"Attackable.Biological",
"Attackable.Unit.Chakru.B",
];
this.internalSecondaryTags = ["Biological", "Infantry"];
this.uuid = "b61d73d5-71a6-469a-b41e-1e9f2f4855ae";
this.description = "Tanky armored unit which reduces incoming damage by 5.";
this.shortName = "Clackjaw";
this.hp = 275;
this.shields = 0;
this.armor = 5;
this.armorType = "heavy";
this.speed = 500;
this.supply = 3;
this.turnSpeed = 3000;
this.pushability = 0;
// TODO: Convert to getter - this.infuseCost = 6;
this.createdBy = ["mercenary/chakru/building/chakru-temple-of-water"!];
this.unlockedBy = ["mercenary/chakru/building/chakru-temple-of-water"!];
this.attacks.Pincers = new Attack({
name: "Pincers",
damage: 18,
cooldown: 0.8,
armorPenetration: 0,
delay: 0.215,
range: 100,
targets: ["ground"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default ChakruClackjaw;