UNPKG

@zerospacegg/iolin

Version:

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

46 lines 1.89 kB
"use strict"; /** * Arandi Horned Mech - Interdimensional combat mech * Perfect fusion of dimensional mastery and mechanical warfare * The final unit completing the Arandi mercenary faction */ Object.defineProperty(exports, "__esModule", { value: true }); const ability_js_1 = require("../../../../engine/ability.cjs"); const arandi_classes_js_1 = require("../../arandi-classes.cjs"); class ArandiHornedMech extends arandi_classes_js_1.ArandiMercUnit { constructor() { super(); this.name = "Arandi Horned Mech"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 175; this.fluxCost = 100; this.buildTime = 35; this.buildCount = 2; this.uuid = "bc06f7b0-5707-4c28-81cd-adca4071b789"; this.description = "Weapon projectiles are slow but can pass through enemies damaging all on its way. Projectile travel distance slightly longer than weapon range. Attacks ground units."; // Mutable properties (can be modified by upgrades) this.hp = 350; this.shields = 0; this.armor = 2; this.armorType = "heavy"; this.speed = 450; this.supply = 3; // TODO: Convert to getter - this.infuseCost = 7; // Primary attack - Energy Pulsar this.attacks.energyPulsar = new ability_js_1.Attack({ name: "Energy Pulsar", damage: 40, range: 1300, cooldown: 3, targets: ["ground"], description: "Channels interdimensional power to destabilize molecular bonds across dimensional barriers", parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ArandiHornedMech.src = "src/zerospace/mercenary/arandi/unit/arandi-horned-mech.ts"; exports.default = ArandiHornedMech; //# sourceMappingURL=arandi-horned-mech.js.map