@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
41 lines • 1.42 kB
JavaScript
/**
* Arandi Phoenix Guard - Elite interdimensional assault warriors
* Quantum immortal fighters who exist across multiple realities
* Summoned by "Call in the Phoenix Guard" topbar ability
*/
import { Attack } from "../../../../engine/ability.js";
import { ArandiMercUnit } from "../../arandi-classes.js";
class ArandiPhoenixGuard extends ArandiMercUnit {
constructor() {
super();
this.name = "Arandi Phoenix Guard";
this.tier = "T1";
this.hotkey = "";
this.hexiteCost = 0;
this.fluxCost = 0;
this.buildTime = 0;
this.buildCount = 3;
this.uuid = "43dd50c8-ec0c-42bc-b69b-446049f677e3";
// Mutable properties (can be modified by upgrades)
this.hp = 300;
this.shields = 0;
this.armor = 0;
this.armorType = "medium";
this.speed = 500;
this.supply = 3;
// Primary attack - Void Blaster
this.attacks.voidBlaster = new Attack({
name: "Void Blaster",
damage: 70,
range: 600,
cooldown: 1.75,
targets: ["ground", "air"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
// Static property for source path
ArandiPhoenixGuard.src = "src/zerospace/mercenary/arandi/unit/arandi-phoenix-guard.ts";
export default ArandiPhoenixGuard;
//# sourceMappingURL=arandi-phoenix-guard.js.map