@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
17 lines • 610 B
TypeScript
/**
* Light Turret - Temporary automated defense turret deployed by field commanders
* Defensive building with timed life and area denial capabilities
*/
import { ProtectorateSpecialBuilding } from "../../protectorate-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class LightTurret extends ProtectorateSpecialBuilding {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly buildTime: number;
readonly timedLife: number;
constructor();
}
export default LightTurret;
//# sourceMappingURL=light-turret.d.ts.map