@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
28 lines • 1.09 kB
TypeScript
/**
* 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 type { DomainType } from "../../../../engine/ability.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ArandiMercOutpostBuilding extends ArandiMercOutpost {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hotkey: HotKey;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly maxOwned: number;
readonly domain: DomainType;
constructor();
}
export default ArandiMercOutpostBuilding;
//# sourceMappingURL=arandi-merc-outpost.d.ts.map