@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
32 lines • 652 B
JavaScript
/**
* Koru Mercenary Faction Classes
* Base classes for the Koru mercenary faction
*/
import { MercFaction } from "../engine/faction.js";
/**
* Base class for Koru mercenary faction
*/
export class KoruFaction extends MercFaction {
constructor() {
super();
this.faction = "koru";
}
}
/**
* Base class for Koru talents
*/
export class KoruTalent {
constructor() { }
}
/**
* Base class for Koru topbar abilities
*/
export class KoruTopbar {
constructor() {
this.topbarType = "special";
this.slot = 5;
this.energyCost = 0;
this.cooldown = 0;
}
}
//# sourceMappingURL=koru.js.map