UNPKG

@zerospacegg/iolin

Version:

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

52 lines 2.09 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 */ 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 ValkaruBeast extends valkaru_classes_js_1.ValkaruMercUnit { constructor() { super(); this.name = "Valkaru Beast"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 200; this.fluxCost = 100; this.buildTime = 45; this.buildCount = 1; 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 = [valkaru_merc_outpost_js_1.default.id]; this.unlockedBy = [valkaru_merc_outpost_js_1.default.id]; // 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