@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
47 lines • 1.76 kB
JavaScript
/**
* Valkaru Beast - Massive bio-enhanced war creature forged through ritual combat trials
* T1 heavy tank with devastating melee attacks and incredible durability
*/
import { Attack } from "../../../../engine/ability.js";
import { ValkaruMercUnit } from "../../valkaru-classes.js";
import ValkaruMercOutpost from "../building/valkaru-merc-outpost.js";
class ValkaruBeast extends 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 = [ValkaruMercOutpost.id];
this.unlockedBy = [ValkaruMercOutpost.id];
// Devastating melee attack - massive damage but slow
this.attacks.attack = new 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";
export default ValkaruBeast;
//# sourceMappingURL=valkaru-beast.js.map