@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
53 lines • 2.35 kB
JavaScript
/**
* Valkaru Tow Bot - Utility and support mechanical unit for battlefield logistics and tactical support
* T1 support unit specializing in battlefield utility, repair operations, and tactical coordination
*/
import { ValkaruMercUnit } from "../../../../defaults/valkaru.js";
import { Attack } from "../../../../engine/ability.js";
class ValkaruTowBot extends ValkaruMercUnit {
constructor() {
super();
// Auto-generated fixes will be applied after objects are defined
this.hexiteCost = 75;
this.fluxCost = 150;
this.name = "Valkaru Tow Bot";
this.tier = "T1";
this.hotkey = "";
this.internalId = "Troop_Valk_Grabber_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Valk_Grabber.Default__Troop_Valk_Grabber_C";
this.internalTags = ["Attackable.Unit.Troop", "Attackable.ArmorType.Heavy"];
this.internalSecondaryTags = ["Mech"];
this.uuid = "d7ccf37a-fa0e-4c72-9c60-853651b60842";
this.description = "Heavy ranged walker which can pull units towards itself.";
// Mutable properties (can be modified by upgrades)
this.shortName = "Tow Bot";
this.hp = 500;
this.shields = 0;
this.armor = 0;
this.armorType = "medium";
this.speed = 600;
this.supply = 2;
this.turnSpeed = 2000;
// Relationships
this.createdBy = ["mercenary/valkaru/building/valkaru-merc-outpost"];
this.unlockedBy = ["mercenary/valkaru/building/valkaru-merc-outpost"];
// Defensive Systems attack - light defensive capability, primarily support-focused
this.attacks.defensiveSystems = new Attack({
name: "Defensive Systems",
damage: 16,
cooldown: 0.5,
cooldownBetweenShots: 0,
range: 400,
targets: ["ground", "air"],
description: "Light defensive weaponry designed for self-protection and emergency support rather than primary combat",
armorPenetration: 0,
delay: 0.1,
parentId: this.id,
parentUUID: this.uuid,
});
}
}
// Static property for source path
ValkaruTowBot.src = "src/zerospace/mercenary/valkaru/unit/valkaru-tow-bot.ts";
export default ValkaruTowBot;
//# sourceMappingURL=valkaru-tow-bot.js.map