-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from post-kerbin-mining-corporation/dev
Release 0.3.0
- Loading branch information
Showing
26 changed files
with
629 additions
and
23 deletions.
There are no files selected for viewing
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,27 @@ | ||
{ | ||
"spec_version": "v1.4", | ||
"identifier": "SystemHeat", | ||
"name": "System Heat", | ||
"$kref": "#/ckan/github/post-kerbin-mining-corporation/SystemHeat", | ||
"$vref": "#/ckan/ksp-avc", | ||
"abstract": "System Heat revamps the Core Heat system used in stock KSP to drive drills and harvesters with a new, more powerful system. This core package does not make changes to the base game - install other SystemHeat packs to change drill, converters and the like to use Systemheat", | ||
"author": "Chris Adderley (Nertea)", | ||
"license": "CC-BY-NC-SA-4", | ||
"resources": { | ||
"homepage": "https://forum.kerbalspaceprogram.com/index.php?/topic/193909", | ||
"repository": "https://github.com/post-kerbin-mining-corporation/SystemHeat" | ||
}, | ||
"depends": [ | ||
{ "name": "ModuleManager" } | ||
], | ||
"suggests": [ | ||
{ "name": "SystemHeatConverters" }, | ||
{ "name": "SystemHeatFissionReactors" }, | ||
{ "name": "SystemHeatFissionEngines" }, | ||
{ "name": "SystemHeatHarvesters" } | ||
], | ||
"install": [ { | ||
"find": "SystemHeat", | ||
"install_to": "GameData" | ||
} ] | ||
} |
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 |
---|---|---|
|
@@ -89,4 +89,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -89,4 +89,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -89,4 +89,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -90,4 +90,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -90,4 +90,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -86,4 +86,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -91,4 +91,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
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 |
---|---|---|
|
@@ -77,4 +77,8 @@ | |
|
||
|
||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
.../SystemHeatFissionReactors/NearFutureElectrical/NearFutureElectricalNuclearContainers.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,34 @@ | ||
|
||
|
||
@PART[nuclearfuel-0625] | ||
{ | ||
!MODULE[RadioactiveStorageContainer] {} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
wasteModuleID = wasteColor | ||
fuelModuleID = fuelColor | ||
} | ||
} | ||
|
||
@PART[nuclearfuel-125] | ||
{ | ||
!MODULE[RadioactiveStorageContainer] {} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
wasteModuleID = wasteColor | ||
fuelModuleID = fuelColor | ||
} | ||
} | ||
|
||
@PART[nuclearfuel-25] | ||
{ | ||
!MODULE[RadioactiveStorageContainer] {} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
wasteModuleID = wasteColor | ||
fuelModuleID = fuelColor | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,4 +64,8 @@ | |
FlowMode = NO_FLOW | ||
} | ||
} | ||
MODULE | ||
{ | ||
name = ModuleSystemHeatFissionFuelContainer | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Binary file added
BIN
+14.4 KB
GameData/SystemHeat/Parts/@thumbs/systemheat-nuclear-container-1_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.