@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 698 B
JavaScript
;
/**
* Koru Mercenary Faction
* Planetary consciousness mercenary faction - not yet implemented
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Koru = void 0;
const koru_classes_js_1 = require("./koru-classes.cjs");
// Create concrete Koru faction class
class Koru extends koru_classes_js_1.KoruFaction {
constructor() {
super();
this.name = "Koru";
this.inGame = false;
this.uuid = "2eaec4a7-b819-4e88-bfbb-ee25e89ef7c8";
}
}
exports.Koru = Koru;
// Static property for source path
Koru.src = "src/zerospace/mercenary/koru.ts";
// Export the class as default
exports.default = Koru;
//# sourceMappingURL=koru.js.map