├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .ksp_deploy_config.yml ├── .mod_data.yml ├── CKAN └── WaterfallRestock.netkan ├── GameData └── WaterfallRestock │ ├── Patches │ ├── RestockPlus │ │ ├── RestockPlusBoar.cfg │ │ ├── RestockPlusCaravel.cfg │ │ ├── RestockPlusCherenkov.cfg │ │ ├── RestockPlusCorgi.cfg │ │ ├── RestockPlusGalleon.cfg │ │ ├── RestockPlusPug.cfg │ │ ├── RestockPlusRCS.cfg │ │ ├── RestockPlusSchnauzer.cfg │ │ ├── RestockPlusTorch.cfg │ │ ├── RestockPlusTrashPanda.cfg │ │ ├── RestockPlusUrsa.cfg │ │ └── RestockPlusValiant.cfg │ └── Squad │ │ ├── LiquidEngineKE-1.cfg │ │ ├── LiquidEngineRE-I2.cfg │ │ ├── LiquidEngineRE-J10.cfg │ │ ├── LiquidEngineRK-7.cfg │ │ ├── LiquidEngineRV-1.cfg │ │ ├── SSME.cfg │ │ ├── Size3AdvancedEngine.cfg │ │ ├── Size3EngineCluster.cfg │ │ ├── SquadLights.cfg │ │ ├── SquadRCS.cfg │ │ ├── engineLargeSkipper_v2.cfg │ │ ├── ionEngine.cfg │ │ ├── liquidEngineMainsail.cfg │ │ ├── liquidEngineMini_v2.cfg │ │ ├── liquidEnginePoodle.cfg │ │ ├── liquidEngineReliant.cfg │ │ ├── liquidEngineReliant_v2.cfg │ │ ├── liquidEngineSwivel.cfg │ │ ├── liquidEngineSwivel_v2.cfg │ │ ├── liquidEngineTerrier.cfg │ │ ├── liquidEngineTwinBoar.cfg │ │ ├── liquidEngineTwinBoar_v2.cfg │ │ ├── microEngine_v2.cfg │ │ ├── nuclearEngine.cfg │ │ ├── omsEngine.cfg │ │ ├── radialEngineMini_v2.cfg │ │ ├── smallRadialEngine_v2.cfg │ │ ├── spotLight1.cfg │ │ └── spotLight2.cfg │ └── Versioning │ └── WaterfallRestock.version ├── README.md ├── changelog.txt └── readme.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/.gitignore -------------------------------------------------------------------------------- /.ksp_deploy_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/.ksp_deploy_config.yml -------------------------------------------------------------------------------- /.mod_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/.mod_data.yml -------------------------------------------------------------------------------- /CKAN/WaterfallRestock.netkan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/CKAN/WaterfallRestock.netkan -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusBoar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusBoar.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCaravel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCaravel.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCherenkov.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCherenkov.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCorgi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusCorgi.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusGalleon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusGalleon.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusPug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusPug.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusRCS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusRCS.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusSchnauzer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusSchnauzer.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusTorch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusTorch.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusTrashPanda.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusTrashPanda.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusUrsa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusUrsa.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusValiant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/RestockPlus/RestockPlusValiant.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/LiquidEngineKE-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/LiquidEngineKE-1.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/LiquidEngineRE-I2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/LiquidEngineRE-I2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/LiquidEngineRE-J10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/LiquidEngineRE-J10.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/LiquidEngineRK-7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/LiquidEngineRK-7.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/LiquidEngineRV-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/LiquidEngineRV-1.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/SSME.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/SSME.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/Size3AdvancedEngine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/Size3AdvancedEngine.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/Size3EngineCluster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/Size3EngineCluster.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/SquadLights.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/SquadLights.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/SquadRCS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/SquadRCS.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/engineLargeSkipper_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/engineLargeSkipper_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/ionEngine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/ionEngine.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineMainsail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineMainsail.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineMini_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineMini_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEnginePoodle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEnginePoodle.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineReliant.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineReliant.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineReliant_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineReliant_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineSwivel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineSwivel.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineSwivel_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineSwivel_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineTerrier.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineTerrier.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineTwinBoar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineTwinBoar.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/liquidEngineTwinBoar_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/liquidEngineTwinBoar_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/microEngine_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/microEngine_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/nuclearEngine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/nuclearEngine.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/omsEngine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/omsEngine.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/radialEngineMini_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/radialEngineMini_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/smallRadialEngine_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/smallRadialEngine_v2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/spotLight1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/spotLight1.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Patches/Squad/spotLight2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Patches/Squad/spotLight2.cfg -------------------------------------------------------------------------------- /GameData/WaterfallRestock/Versioning/WaterfallRestock.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/GameData/WaterfallRestock/Versioning/WaterfallRestock.version -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/changelog.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post-kerbin-mining-corporation/WaterfallRestock/HEAD/readme.txt --------------------------------------------------------------------------------