UNPKG

@zerospacegg/iolin

Version:

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

41 lines 1.49 kB
"use strict"; /** * Arandi Oathguard - Sacred interdimensional healing warriors * Warrior-healers bound by dimensional vows that transcend reality * Summoned by "Call in the Oathguard" topbar ability */ Object.defineProperty(exports, "__esModule", { value: true }); const arandi_js_1 = require("../../../../defaults/arandi.cjs"); const ability_js_1 = require("../../../../engine/ability.cjs"); class ArandiOathguard extends arandi_js_1.ArandiMercUnit { constructor() { super(); this.hexiteCost = 0; this.fluxCost = 0; this.buildCount = 3; this.name = "Arandi Oathguard"; this.tier = "T1"; this.hotkey = ""; this.uuid = "641ee676-a6cb-4b33-a288-50c0bcd2b262"; this.hp = 200; this.shields = 0; this.armor = 0; this.armorType = "medium"; this.speed = 500; // Primary ability - Healing Beam this.heals.healingBeam = new ability_js_1.Heal({ name: "Healing Beam", healing: 10, range: 1300, cooldown: 0.25, targets: ["ground", "air"], description: "Precise healing beam that rapidly restores health to friendly units.", parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ArandiOathguard.src = "src/zerospace/mercenary/arandi/unit/arandi-oathguard.ts"; exports.default = ArandiOathguard; //# sourceMappingURL=arandi-oathguard.js.map