@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
19 lines • 555 B
JavaScript
/**
* Koru Mercenary Faction
* Planetary consciousness mercenary faction - not yet implemented
*/
import { KoruFaction } from "./koru-classes.js";
// Create concrete Koru faction class
export class Koru extends KoruFaction {
constructor() {
super();
this.name = "Koru";
this.inGame = false;
this.uuid = "2eaec4a7-b819-4e88-bfbb-ee25e89ef7c8";
}
}
// Static property for source path
Koru.src = "src/zerospace/mercenary/koru.ts";
// Export the class as default
export default Koru;
//# sourceMappingURL=koru.js.map