UNPKG

@kitten-science/kitten-scientists

Version:

Add-on for the wonderful incremental browser game: https://kittensgame.com/web/

20 lines 3.28 kB
import { type Maybe } from "@oliversalzburg/js-utils/data/nil.js"; import type { GamePage } from "../types/game.js"; import { type UnsafeUpgrade, type Upgrade } from "../types/index.js"; import { SettingTrigger } from "./Settings.js"; export declare class UpgradeSettingsItem extends SettingTrigger { #private; get upgrade(): "chronoforge" | "advancedAutomation" | "advancedRefinement" | "aiBases" | "aiEngineers" | "alloyArmor" | "alloyAxe" | "alloyBarns" | "alloySaw" | "alloyWarehouses" | "amBases" | "amDrive" | "amFission" | "amReactors" | "amReactorsMK2" | "assistance" | "astrolabe" | "astrophysicists" | "augumentation" | "automatedPlants" | "barges" | "biofuel" | "bolas" | "cadSystems" | "caravanserai" | "carbonSequestration" | "cargoShips" | "celestialMechanics" | "chronoEngineers" | "coalFurnace" | "coldFusion" | "combustionEngine" | "compositeBow" | "concreteBarns" | "concreteHuts" | "concreteWarehouses" | "crossbow" | "cryocomputing" | "darkEnergy" | "deepMining" | "distorsion" | "electrolyticSmelting" | "eludiumCracker" | "eludiumHuts" | "eludiumReflectors" | "energyRifts" | "enrichedThorium" | "enrichedUranium" | "factoryAutomation" | "factoryLogistics" | "factoryOptimization" | "factoryProcessing" | "factoryRobotics" | "fluidizedReactors" | "fluxCondensator" | "fuelInjectors" | "geodesy" | "gmo" | "goldOre" | "hubbleTelescope" | "huntingArmor" | "hydroPlantTurbines" | "internet" | "invisibleBlackHand" | "ironAxes" | "ironHoes" | "ironwood" | "lhc" | "logistics" | "longRangeSpaceships" | "machineLearning" | "mineralAxes" | "mineralHoes" | "miningDrill" | "mWReactor" | "nanosuits" | "neuralNetworks" | "nuclearPlants" | "nuclearSmelters" | "offsetPress" | "oilDistillation" | "oilRefinery" | "orbitalGeodesy" | "oxidation" | "photolithography" | "photovoltaic" | "pneumaticPress" | "printingPress" | "pumpjack" | "pyrolysis" | "qdot" | "railgun" | "reactorVessel" | "refrigeration" | "register" | "reinforcedBarns" | "reinforcedSaw" | "reinforcedWarehouses" | "relicStation" | "rotaryKiln" | "satelliteRadio" | "satnav" | "seti" | "silos" | "solarSatellites" | "spaceEngineers" | "spaceManufacturing" | "spiceNavigation" | "starlink" | "stasisChambers" | "steelArmor" | "steelAxe" | "steelPlants" | "steelSaw" | "stoneBarns" | "storageBunkers" | "strenghtenBuild" | "tachyonAccelerators" | "tachyonModerator" | "thinFilm" | "thoriumEngine" | "thoriumReactors" | "titaniumAxe" | "titaniumBarns" | "titaniumMirrors" | "titaniumSaw" | "titaniumWarehouses" | "turnSmoothly" | "unicornSelection" | "unobtainiumAxe" | "unobtainiumDrill" | "unobtainiumHuts" | "unobtainiumReflectors" | "unobtainiumSaw" | "uplink" | "voidAspiration" | "voidEnergy" | "voidReactors"; get $upgrade(): UnsafeUpgrade | undefined; set $upgrade(value: UnsafeUpgrade | undefined); constructor(upgrade: Upgrade, enabled?: boolean); } export type UpgradeSettingsItems = Record<Upgrade, UpgradeSettingsItem>; export declare class UpgradeSettings extends SettingTrigger { readonly upgrades: UpgradeSettingsItems; constructor(enabled?: boolean); private initUpgrades; static validateGame(game: GamePage, settings: UpgradeSettings): void; load(settings: Maybe<Partial<UpgradeSettings>>): void; } //# sourceMappingURL=UpgradeSettings.d.ts.map