ZeroSpace.gg

Elder Arkanid (XP Tower Creep)

Jungle-ai T0 Army Unit

import { Attack } from "../../../../engine/ability.js"; import { JungleAIArmyUnit } from "../../../../defaults/jungle-ai.js"; import type { DomainType } from "../../../../engine/ability.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; class ElderArkanid extends JungleAIArmyUnit { override uuid: string; static override src = "src/zerospace/nonplayer/jungle-ai/unit/elder-arkanid.ts"; constructor() { super(); this.name = "Elder Arkanid (XP Tower Creep)"; this.shortName = "Elder Arkanid"; this.tier = "T0"; this.hotkey = ""; this.domain = "ground"; this.uuid = "22c3bdf7-fa38-460e-b953-1cfb07df7332"; this.internalId = "Troop_BulkySpiderling_C"; this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_BulkySpiderling.Default__Troop_BulkySpiderling_C"; this.internalTags = [ "Attackable.ArmorType.Light", "Attackable.Biological", "Attackable.Unit.Light", "Attackable.Unit.Troop", ]; this.internalSecondaryTags = ["Biological"]; this.description = "Basic XP tower guardian creep with slow melee attacks. Guards neutral XP towers across various maps."; this.hp = 75; this.speed = 300; this.armorType = "none"; this.vision = 1800; this.turnSpeed = 5000; this.attacks.arkanidPiercer = new Attack({ internalId: "Default__Grell_SpiderlingMelee_C", name: "Arkanid Piercer", damage: 4, cooldown: 1, range: 100, targets: ["ground"], parentId: this.id, parentUUID: this.uuid, }); } } export default ElderArkanid;