UNPKG

@zerospacegg/iolin

Version:

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

52 lines 2.25 kB
"use strict"; /** * 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 */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const ability_js_1 = require("../../../../engine/ability.cjs"); const valkaru_classes_js_1 = require("../../valkaru-classes.cjs"); const valkaru_merc_outpost_js_1 = __importDefault(require("../building/valkaru-merc-outpost.cjs")); class ValkaruTowBot extends valkaru_classes_js_1.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 = [valkaru_merc_outpost_js_1.default.id]; this.unlockedBy = [valkaru_merc_outpost_js_1.default.id]; // Defensive Systems attack - light defensive capability, primarily support-focused this.attacks.defensiveSystems = new ability_js_1.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"; exports.default = ValkaruTowBot; //# sourceMappingURL=valkaru-tow-bot.js.map