ZSGG Public Library
Arkanid
Grell T0 Army Unit
import { GrellArmyUnit } from "../../../../defaults/grell.js";
import { Attack } from "../../../../engine/ability.js";
class Arkanid extends GrellArmyUnit {
override uuid: string;
static override src = "src/zerospace/faction/grell/unit/arkanid.ts";
constructor() {
super();
this.hexiteCost = 0;
this.fluxCost = 0;
this.buildTime = 16;
this.buildCount = 1;
this.name = "Arkanid";
this.description = "Small and weak unit spawned by other Grell units. \nTemporary unit with timed life.";
this.wikiDescription =
"Small and weak temporary unit spawned by [[faction/grell/unit/grell-keeper]], [[faction/grell/unit/reaver]], and [[faction/grell/building/deep-nest]].";
this.tier = "T0";
this.hotkey = "";
this.uuid = "7c978ffc-7c1f-437f-883f-f2f2604e0102";
this.internalId = "Versus_Troop_GrellSpiderling_C";
this.internalPath =
"/Game/Nova/Archetypes_Troops/Versus_Troop_GrellSpiderling.Default__Versus_Troop_GrellSpiderling_C";
this.internalTags = [
"Attackable.Unit.Troop",
"Attackable.Unit.Light",
"Attackable.ArmorType.Light",
"Attackable.Biological",
"Unit.Temporary",
];
this.internalSecondaryTags = ["Biological"];
this.hp = 5;
this.shields = 0;
this.armor = 0;
this.armorType = "light";
this.speed = 725;
this.turnSpeed = 5000;
this.vision = 1200;
this.pushability = 1;
this.supply = 0;
this.createdBy = [
"faction/grell/unit/grell-keeper",
"faction/grell/unit/reaver",
"faction/grell/building/deep-nest",
];
this.attacks.bite = new Attack({
name: "Bite",
damage: 4,
cooldown: 1.0,
armorPenetration: 0,
delay: 0,
range: 50,
targets: ["ground"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default Arkanid;