UNPKG

@zerospacegg/iolin

Version:

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

47 lines 1.78 kB
/** * Valkaru Hound - Fast scout and harassment specialist bred for reconnaissance and hit-and-run tactics * T1 light unit with exceptional speed and mobility for battlefield reconnaissance */ import { Attack } from "../../../../engine/ability.js"; import { ValkaruMercUnit } from "../../valkaru-classes.js"; import ValkaruMercOutpost from "../building/valkaru-merc-outpost.js"; class ValkaruHound extends ValkaruMercUnit { constructor() { super(); this.name = "Valkaru Hound"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 75; this.fluxCost = 25; this.buildTime = 20; this.buildCount = 1; this.uuid = "cb8218e1-2190-4caf-9868-423242af28b5"; this.description = "Tanky melee unit."; // Mutable properties (can be modified by upgrades) this.shortName = "Hound"; this.hp = 120; this.shields = 0; this.armor = 0; this.armorType = "light"; this.speed = 650; this.supply = 1; // Relationships this.createdBy = [ValkaruMercOutpost.id]; this.unlockedBy = [ValkaruMercOutpost.id]; // Bite attack - fast, light damage for hit-and-run tactics this.attacks.bite = new Attack({ name: "Bite", damage: 25, cooldown: 1.0, range: 100, targets: ["ground"], description: "Quick melee strikes perfect for harassment and hit-and-run tactics against isolated enemies", parentId: this.id, parentUUID: this.uuid, }); } } // Static property for source path ValkaruHound.src = "src/zerospace/mercenary/valkaru/unit/valkaru-hound.ts"; export default ValkaruHound; //# sourceMappingURL=valkaru-hound.js.map