UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

38 lines 1.42 kB
/** * Valkaru Merc Outpost - Fortified military installation for pro-war mercenary operations * Primary base that creates all Valkaru units and twin heroes through advanced war technology */ import { ValkaruMercOutpost } from "../../../../defaults/valkaru.js"; class ValkaruMercOutpostBuilding extends ValkaruMercOutpost { // Readonly properties (never change after creation) constructor() { super(); this.name = "Valkaru Merc Outpost"; this.tier = "T1"; this.hotkey = "O"; this.maxOwned = 3; this.uuid = "4b85ed94-054e-45c7-a3c9-7ad81fe2a68e"; // Mutable properties (can be modified by upgrades) this.shortName = "Merc Outpost"; this.hp = 1500; this.shields = 0; this.armor = 4; this.armorType = "building"; this.speed = 0; this.supply = 0; // Production capabilities - creates all Valkaru units and twin heroes this.creates = [ "valkaru-beast", "valkaru-flame-walker", "valkaru-hound", "valkaru-shock-trooper", "valkaru-tow-bot", "torq", "mondar", ]; } } // Static property for source path ValkaruMercOutpostBuilding.src = "src/zerospace/mercenary/valkaru/building/valkaru-merc-outpost.ts"; export default ValkaruMercOutpostBuilding; //# sourceMappingURL=valkaru-merc-outpost.js.map