@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 675 B
TypeScript
/**
* Guardian Obelisk - Temporary defensive structure
* Sacred defensive turret that provides protection for a limited time
*/
import { LegionSpecialBuilding } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class GuardianObelisk extends LegionSpecialBuilding {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
readonly timedLife: number;
constructor();
}
export default GuardianObelisk;
//# sourceMappingURL=guardian-obelisk.d.ts.map