UNPKG

@zerospacegg/iolin

Version:

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

40 lines 1.76 kB
/** * Arandi Merc Outpost - Interdimensional mercenary command center * * The Arandi Merc Outpost serves as a dimensional anchor point for Arandi forces, * allowing them to manifest their advanced units across space and time. This structure * channels the ancient Triarchy's mastery over interdimensional energy to create * a stable command post for mercenary operations. * * Creates: Shade, Horned Mech, Nullseer, Time Warper */ import { ArandiMercOutpost } from "../../arandi-classes.js"; import ArandiHornedMech from "../unit/arandi-horned-mech.js"; import ArandiNullseer from "../unit/arandi-nullseer.js"; import ArandiShade from "../unit/arandi-shade.js"; import ArandiTimeWarper from "../unit/arandi-time-warper.js"; class ArandiMercOutpostBuilding extends ArandiMercOutpost { constructor() { super(); this.name = "Arandi Merc Outpost"; this.tier = "T1"; this.hotkey = ""; this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 45; this.maxOwned = 1; this.domain = "air"; this.uuid = "72f46e74-fe53-4809-a6d6-29a03c96a324"; // Mutable properties (can be modified by upgrades) this.hp = 800; // Reduced from base 1200 for Arandi mobility this.armor = 1; this.armorType = "light"; this.speed = 250; // Mobile outpost // Unit creation capabilities - using safe string references this.creates = [ArandiShade.id, ArandiHornedMech.id, ArandiNullseer.id, ArandiTimeWarper.id]; } } // Static property for source path ArandiMercOutpostBuilding.src = "src/zerospace/mercenary/arandi/building/arandi-merc-outpost.ts"; export default ArandiMercOutpostBuilding; //# sourceMappingURL=arandi-merc-outpost.js.map