UNPKG

@zerospacegg/iolin

Version:

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

45 lines 1.65 kB
"use strict"; /** * Arandi Shade - Corrupted interdimensional stealth unit * Fallen Arandi warriors possessed by entities from dimensional realms * Masters of phased movement and posthumous revenge */ Object.defineProperty(exports, "__esModule", { value: true }); const ability_js_1 = require("../../../../engine/ability.cjs"); const arandi_classes_js_1 = require("../../arandi-classes.cjs"); class ArandiShade extends arandi_classes_js_1.ArandiMercUnit { constructor() { super(); this.name = "Arandi Shade"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 225; this.fluxCost = 0; this.buildTime = 25; this.buildCount = 3; this.uuid = "ec4d06c9-bedf-4ff4-a4d6-a8d52134a4c7"; this.description = "Deadly melee entity. Can path through other units."; // Mutable properties (can be modified by upgrades) this.hp = 250; this.shields = 0; this.armor = 0; this.armorType = "light"; this.speed = 650; // Fast stealth unit this.supply = 2; // TODO: Convert to getter - this.infuseCost = 4; // Primary attack - Shadow Cleave this.attacks.shadowCleave = new ability_js_1.Attack({ name: "Shadow Cleave", damage: 20, range: 160, cooldown: 0.9, targets: ["ground"], parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ArandiShade.src = "src/zerospace/mercenary/arandi/unit/arandi-shade.ts"; exports.default = ArandiShade; //# sourceMappingURL=arandi-shade.js.map