UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

47 lines 1.92 kB
/** * Valkaru Tow Bot - Utility and support mechanical unit for battlefield logistics and tactical support * T1 support unit specializing in battlefield utility, repair operations, and tactical coordination */ import { Attack } from "../../../../engine/ability.js"; import { ValkaruMercUnit } from "../../valkaru-classes.js"; import ValkaruMercOutpost from "../building/valkaru-merc-outpost.js"; class ValkaruTowBot extends ValkaruMercUnit { constructor() { super(); this.name = "Valkaru Tow Bot"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 100; this.fluxCost = 50; this.buildTime = 25; this.buildCount = 1; this.uuid = "d7ccf37a-fa0e-4c72-9c60-853651b60842"; this.description = "Heavy ranged walker which can pull units towards itself."; // Mutable properties (can be modified by upgrades) this.shortName = "Tow Bot"; this.hp = 550; this.shields = 0; this.armor = 1; this.armorType = "medium"; this.speed = 450; this.supply = 2; // Relationships this.createdBy = [ValkaruMercOutpost.id]; this.unlockedBy = [ValkaruMercOutpost.id]; // Defensive Systems attack - light defensive capability, primarily support-focused this.attacks.defensiveSystems = new Attack({ name: "Defensive Systems", damage: 16, cooldown: 1.5, range: 400, targets: ["ground", "air"], description: "Light defensive weaponry designed for self-protection and emergency support rather than primary combat", parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ValkaruTowBot.src = "src/zerospace/mercenary/valkaru/unit/valkaru-tow-bot.ts"; export default ValkaruTowBot; //# sourceMappingURL=valkaru-tow-bot.js.map