ZSGG Public Library
Bulky Spiderling (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 BulkySpiderling extends JungleAIArmyUnit {
override uuid: string;
static override src = "src/zerospace/nonplayer/jungle-ai/unit/bulky-spiderling.ts";
constructor() {
super();
this.name = "Bulky Spiderling (XP Tower Creep)";
this.shortName = "Bulky Spiderling";
this.tier = "T0";
this.hotkey = "";
this.domain = "ground";
this.uuid = "22c3bdf7-fa38-460e-b953-1cfb07df7332";
this.description =
"Basic XP tower guardian creep with slow melee attacks. Guards neutral XP towers across various maps.";
this.hp = 85;
this.speed = 300;
this.armorType = "none";
this.attacks.attack = new Attack({
name: "Attack",
damage: 4,
cooldown: 0.5,
range: 100,
targets: ["ground"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default BulkySpiderling;