@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
57 lines • 2.88 kB
TypeScript
/**
* Boons - All game boons (positive modifiers)
*
* This module exports all available boons for ZeroSpace gameplay.
* Boons are positive modifiers that provide advantages and enhance
* various aspects of gameplay, from combat effectiveness to economic
* efficiency.
*
* Boon Categories:
* - Combat: Air Supremacy, Shielding
* - Economic: Goldrush
* - Mobility: Haste
* - Special: Spiderlings
*/
import { AirSupremacy } from "./boon/air-supremacy.js";
import { BatteryPack } from "./boon/battery-pack.js";
import { Detonation } from "./boon/detonation.js";
import { Endurance } from "./boon/endurance.js";
import { ExtendedRange } from "./boon/extended-range.js";
import { ExtraProtection } from "./boon/extra-protection.js";
import { ExtraSupply } from "./boon/extra-supply.js";
import { Goldrush } from "./boon/goldrush.js";
import { Haste } from "./boon/haste.js";
import { HeavyOrdnance } from "./boon/heavy-ordnance.js";
import { HeavyPower } from "./boon/heavy-power.js";
import { LightPower } from "./boon/light-power.js";
import { MidPower } from "./boon/mid-power.js";
import { Retribution } from "./boon/retribution.js";
import { Shielding } from "./boon/shielding.js";
import { Siphon } from "./boon/siphon.js";
import { Spiderlings } from "./boon/spiderlings.js";
declare const airSupremacy: AirSupremacy;
declare const batteryPack: BatteryPack;
declare const detonation: Detonation;
declare const endurance: Endurance;
declare const extendedRange: ExtendedRange;
declare const extraProtection: ExtraProtection;
declare const extraSupply: ExtraSupply;
declare const goldrush: Goldrush;
declare const haste: Haste;
declare const heavyOrdnance: HeavyOrdnance;
declare const heavyPower: HeavyPower;
declare const lightPower: LightPower;
declare const midPower: MidPower;
declare const retribution: Retribution;
declare const shielding: Shielding;
declare const siphon: Siphon;
declare const spiderlings: Spiderlings;
export { airSupremacy, batteryPack, detonation, endurance, extendedRange, extraProtection, extraSupply, goldrush, haste, heavyOrdnance, heavyPower, lightPower, midPower, retribution, shielding, siphon, spiderlings, };
export declare const combatBoons: (AirSupremacy | BatteryPack | Detonation | Endurance | ExtendedRange | ExtraProtection | HeavyOrdnance | HeavyPower | LightPower | MidPower | Retribution | Shielding | Siphon)[];
export declare const economicBoons: Goldrush[];
export declare const mobilityBoons: Haste[];
export declare const utilityBoons: ExtraSupply[];
export declare const specialBoons: Spiderlings[];
export declare const allBoons: (AirSupremacy | BatteryPack | Detonation | Endurance | ExtendedRange | ExtraProtection | ExtraSupply | Goldrush | Haste | HeavyOrdnance | HeavyPower | LightPower | MidPower | Retribution | Shielding | Siphon | Spiderlings)[];
export default allBoons;
//# sourceMappingURL=boons.d.ts.map