UNPKG

@zerospacegg/iolin

Version:

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

44 lines 1.75 kB
"use strict"; /** * Valkaru Beast - Massive bio-enhanced war creature forged through ritual combat trials * T1 heavy tank with devastating melee attacks and incredible durability */ Object.defineProperty(exports, "__esModule", { value: true }); const ability_js_1 = require("../../../../engine/ability.cjs"); const valkaru_js_1 = require("../../../../defaults/valkaru.cjs"); class ValkaruBeast extends valkaru_js_1.ValkaruMercUnit { constructor() { super(); this.name = "Valkaru Beast"; this.tier = "T1"; this.hotkey = ""; this.uuid = "08c67bb8-e20d-4d3d-a379-cfa76c982e70"; this.description = "Tanky melee unit."; // Mutable properties (can be modified by upgrades) this.shortName = "Beast"; this.hp = 1400; this.shields = 0; this.armor = 0; this.armorType = "light"; this.speed = 575; this.supply = 4; // Relationships this.createdBy = ["mercenary/valkaru/building/valkaru-merc-outpost"]; this.unlockedBy = ["mercenary/valkaru/building/valkaru-merc-outpost"]; // Devastating melee attack - massive damage but slow this.attacks.attack = new ability_js_1.Attack({ name: "Attack", damage: 130, cooldown: 3.0, range: 74, targets: ["ground"], description: "Crushing melee strikes that can devastate enemy formations with overwhelming physical force", parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ValkaruBeast.src = "src/zerospace/mercenary/valkaru/unit/valkaru-beast.ts"; exports.default = ValkaruBeast; //# sourceMappingURL=valkaru-beast.js.map