-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**General:** * Recompile for KSP 1.11.2 * Updated KSPModFileLocalizer to version 0.2.3.7 * Updated CCK to version 5.2.0.0 * Updated CRP to version 1.4.2 **Localization:** * Fixed typos in english and german texts. Thanks to [Grimmas](https://forum.kerbalspaceprogram.com/index.php?/profile/207818-grimmas/) **Enhancements:** * Added support for inventory and construction features from KSP 1.11 * Added four new storage container for inventories **Mod Support:** * Added support for the freezer of USI-LS Thanks. to [Grimmas](https://forum.kerbalspaceprogram.com/index.php?/profile/207818-grimmas/) * Improved compatibility and support for MKS. Thanks to [Grimmas](https://forum.kerbalspaceprogram.com/index.php?/profile/207818-grimmas/) **Bug Fixes:** * Fixed crash for OSx Catalina when loading PNG files * Some config fixed for NEED and FOR for ModuleManager. Thanks to [HSJasperism](https://github.com/HSJasperism) * Fixes for CTT support for the KIS Tank. Thanks to [hemeac](https://github.com/hemeac)
- Loading branch information
Nils Büscher
committed
Apr 23, 2021
1 parent
ac597e4
commit c54946f
Showing
29 changed files
with
597 additions
and
142 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-13.4 KB
(75%)
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Flags/PSS.dds
Binary file not shown.
Binary file added
BIN
+696 Bytes
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Icons/filter_cargo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+341 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/FuelTank_Small.dds
Binary file not shown.
Binary file added
BIN
+683 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/FuelTank_g.dds
Binary file not shown.
65 changes: 65 additions & 0 deletions
65
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/container_Inv.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
PART | ||
{ | ||
// Kerbal Space Program - Part Config | ||
// A tank for inventory storage | ||
|
||
MODEL | ||
{ | ||
model = PlanetaryBaseInc/BaseSystem/Parts/Cargo/tank_Inv | ||
} | ||
|
||
// --- general parameters --- | ||
name = KKAOSS_INV_Tank | ||
module = Part | ||
author = Nils277 | ||
|
||
// --- asset parameters --- | ||
scale = 1 | ||
rescaleFactor = 1 | ||
|
||
|
||
// --- node definitions --- | ||
node_stack_top = 0, 0, 0, 1, 0, 0, 1 | ||
|
||
// --- editor parameters --- | ||
TechRequired = spaceExploration | ||
entryCost = 4000 | ||
cost = 600 | ||
category = Cargo | ||
subcategory = 0 | ||
title = #LOC_KPBS.containerinventory.title | ||
manufacturer = #LOC_KPBS.agency | ||
description = #LOC_KPBS.containerinventory.description | ||
|
||
|
||
// --- attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision --- | ||
attachRules = 1,0,1,1,0 | ||
|
||
|
||
// --- standard part parameters --- | ||
mass = 0.2 | ||
dragModelType = default | ||
maximum_drag = 0.2 | ||
minimum_drag = 0.2 | ||
angularDrag = 2 | ||
crashTolerance = 15 | ||
breakingForce = 200 | ||
breakingTorque = 200 | ||
maxTemp = 2000 // = 3000 | ||
tags = #LOC_KPBS.containerinventory.tags | ||
bulkheadProfiles = PlanetaryBase | ||
|
||
MODULE | ||
{ | ||
name = ModuleCargoPart | ||
packedVolume = 2000 | ||
} | ||
|
||
MODULE | ||
{ | ||
name = ModuleInventoryPart | ||
InventorySlots = 6 | ||
packedVolumeLimit = 1500 | ||
} | ||
|
||
} |
64 changes: 64 additions & 0 deletions
64
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/container_Inv_big.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
PART | ||
{ | ||
// Kerbal Space Program - Part Config | ||
// A bigger tank for inventory storage | ||
|
||
MODEL | ||
{ | ||
model = PlanetaryBaseInc/BaseSystem/Parts/Cargo/tank_Inv_big | ||
} | ||
|
||
// --- general parameters --- | ||
name = KKAOSS_INV_Tank_big | ||
module = Part | ||
author = Nils277 | ||
|
||
// --- asset parameters --- | ||
scale = 1 | ||
rescaleFactor = 1 | ||
|
||
|
||
// --- node definitions --- | ||
node_stack_top = 0, 0, 0, 1, 0, 0, 1 | ||
|
||
// --- editor parameters --- | ||
TechRequired = advExploration | ||
entryCost = 7000 | ||
cost = 1200 | ||
category = Cargo | ||
subcategory = 0 | ||
title = #LOC_KPBS.containerinventorybig.title | ||
manufacturer = #LOC_KPBS.agency | ||
description = #LOC_KPBS.containerinventorybig.description | ||
|
||
|
||
// --- attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision --- | ||
attachRules = 1,0,1,1,0 | ||
|
||
|
||
// --- standard part parameters --- | ||
mass = 0.4 | ||
dragModelType = default | ||
maximum_drag = 0.2 | ||
minimum_drag = 0.2 | ||
angularDrag = 2 | ||
crashTolerance = 15 | ||
breakingForce = 200 | ||
breakingTorque = 200 | ||
maxTemp = 2000 // = 3000 | ||
tags = #LOC_KPBS.containerinventorybig.tags | ||
bulkheadProfiles = PlanetaryBase | ||
|
||
MODULE | ||
{ | ||
name = ModuleCargoPart | ||
packedVolume = -1 | ||
} | ||
|
||
MODULE | ||
{ | ||
name = ModuleInventoryPart | ||
InventorySlots = 8 | ||
packedVolumeLimit = 3000 | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
PART | ||
{ | ||
// Kerbal Space Program - Part Config | ||
// A inventory storage for the bases | ||
MODEL | ||
{ | ||
model = PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv | ||
} | ||
|
||
// --- general parameters --- | ||
name = KKAOSS_INV_FuelTank | ||
module = Part | ||
author = Nils277 | ||
|
||
// --- asset parameters --- | ||
scale = 1 | ||
rescaleFactor = 1 | ||
|
||
// --- node definitions --- | ||
node_stack_top = 0, 1.5580, 0, 0, 1, 0, 1 | ||
node_stack_bottom = 0, -1.5580, 0, 0, -1, 0, 1 | ||
node_stack_front = 0, 0, -0.73494, 0, 0, -1, 0 | ||
node_stack_back = 0, 0, 0.6266, 0, 0, 1, 0 | ||
|
||
// --- editor parameters --- | ||
TechRequired = spaceExploration | ||
entryCost = 12300 | ||
cost = 3000 | ||
category = Cargo | ||
subcategory = 0 | ||
title = #LOC_KPBS.inventorystoragesmall.title | ||
manufacturer = #LOC_KPBS.agency | ||
description = #LOC_KPBS.inventorystoragesmall.description | ||
|
||
// --- attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision --- | ||
attachRules = 1,0,1,1,0 | ||
|
||
|
||
// --- standard part parameters --- | ||
mass = 0.4 | ||
dragModelType = default | ||
maximum_drag = 0.2 | ||
minimum_drag = 0.2 | ||
angularDrag = 2 | ||
crashTolerance = 15 | ||
maxTemp = 2000 // = 3000 | ||
tags = #LOC_KPBS.containerinventory.tags | ||
bulkheadProfiles = PlanetaryBase | ||
|
||
MODULE | ||
{ | ||
name = ModuleInventoryPart | ||
InventorySlots = 12 | ||
packedVolumeLimit = 4500 | ||
} | ||
|
||
} |
Binary file added
BIN
+37.8 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv.mu
Binary file not shown.
59 changes: 59 additions & 0 deletions
59
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv_big.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
PART | ||
{ | ||
// Kerbal Space Program - Part Config | ||
// A small inventory storage for the bases | ||
MODEL | ||
{ | ||
model = PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv_small | ||
} | ||
|
||
|
||
// --- general parameters --- | ||
name = KKAOSS_INV_FuelTank_small | ||
module = Part | ||
author = Nils277 | ||
|
||
// --- asset parameters --- | ||
scale = 1 | ||
rescaleFactor = 1 | ||
|
||
// --- node definitions --- | ||
node_stack_top = 0, 0.78125, 0, 0, 1, 0, 1 | ||
node_stack_bottom = 0, -0.78125, 0, 0, -1, 0, 1 | ||
node_stack_front = 0, 0, -0.73494, 0, 0, -1, 0 | ||
node_stack_back = 0, 0, 0.6266, 0, 0, 1, 0 | ||
|
||
// --- editor parameters --- | ||
TechRequired = advExploration | ||
entryCost = 8000 | ||
cost = 6000 | ||
category = Cargo | ||
subcategory = 0 | ||
title = #LOC_KPBS.inventorystorage.title | ||
manufacturer = #LOC_KPBS.agency | ||
description = #LOC_KPBS.inventorystorage.description | ||
|
||
|
||
// --- attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision --- | ||
attachRules = 1,0,1,1,0 | ||
|
||
|
||
// --- standard part parameters --- | ||
mass = 0.8 | ||
dragModelType = default | ||
maximum_drag = 0.2 | ||
minimum_drag = 0.2 | ||
angularDrag = 2 | ||
crashTolerance = 15 | ||
maxTemp = 2000 // = 3000 | ||
tags = #LOC_KPBS.containerinventory.tags | ||
bulkheadProfiles = PlanetaryBase | ||
|
||
MODULE | ||
{ | ||
name = ModuleInventoryPart | ||
InventorySlots = 16 | ||
packedVolumeLimit = 9000 | ||
} | ||
|
||
} |
Binary file added
BIN
+36.5 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/storage_Inv_small.mu
Binary file not shown.
Binary file added
BIN
+23.1 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/tank_Inv.mu
Binary file not shown.
Binary file added
BIN
+30.7 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/tank_Inv_big.mu
Binary file not shown.
Binary file added
BIN
+85.5 KB
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Parts/Cargo/tank_KIS.dds
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
FOR_RELEASE/GameData/PlanetaryBaseInc/BaseSystem/Plugins/PlanetarySurfaceStructures.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.