-
Notifications
You must be signed in to change notification settings - Fork 18
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 #11 from JadeOfMaar/dev
1.8.0 signoff
- Loading branch information
Showing
37 changed files
with
5,201 additions
and
194 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,190 @@ | ||
// Create your own extra tank combo configs in this manner: | ||
// * Tank type def | ||
// * Subtype to add without CryoTanks; | ||
// * Subtype to add with CryoTanks | ||
|
||
// These tank types taken from Far Future Technologies and partially used by Galaxies Unbound (planet pack) | ||
B9_TANK_TYPE:NEEDS[!FarFutureTechnologies] | ||
{ | ||
name = Deuterium | ||
tankMass = 0.0 | ||
tankCost = 0 | ||
|
||
RESOURCE | ||
{ | ||
name = LqdDeuterium | ||
unitsPerVolume = 4 | ||
} | ||
|
||
} | ||
B9_TANK_TYPE:NEEDS[!FarFutureTechnologies] | ||
{ | ||
name = He3 | ||
tankMass = 0.00 | ||
tankCost = 0 | ||
|
||
RESOURCE | ||
{ | ||
name = LqdHe3 | ||
unitsPerVolume = 6 | ||
} | ||
} | ||
B9_TANK_TYPE:NEEDS[!FarFutureTechnologies] | ||
{ | ||
name = DeuteriumHe3 | ||
tankMass = 0.0 | ||
tankCost = 0 | ||
|
||
RESOURCE | ||
{ | ||
name = LqdDeuterium | ||
unitsPerVolume = 2 | ||
} | ||
RESOURCE | ||
{ | ||
name = LqdHe3 | ||
unitsPerVolume = 3 | ||
} | ||
} | ||
B9_TANK_TYPE:NEEDS[!FarFutureTechnologies] | ||
{ | ||
name = FissionPellets | ||
tankMass = 0.0 | ||
tankCost = 0 | ||
|
||
RESOURCE | ||
{ | ||
name = FissionPellets | ||
unitsPerVolume = 1 | ||
} | ||
} | ||
B9_TANK_TYPE:NEEDS[!FarFutureTechnologies] | ||
{ | ||
name = FusionPellets | ||
tankMass = 0.0 | ||
tankCost = 0 | ||
RESOURCE | ||
{ | ||
name = FusionPellets | ||
unitsPerVolume = 5 | ||
} | ||
} | ||
|
||
// Add tank type to RR's cloned bread tanks | ||
@PART[RRBreadTank*]:NEEDS[B9PartSwitch]:AFTER[RationalResourcesParts] | ||
{ | ||
@MODULE[ModuleB9PartSwitch]:HAS[#moduleID[RRSwitch]] | ||
{ | ||
SUBTYPE | ||
{ | ||
name = Deuterium | ||
tankType = Deuterium | ||
title = LqdDeuterium | ||
primaryColor = PowderBlue | ||
secondaryColor = PowderBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = Helium3 | ||
tankType = He3 | ||
title = LqdHe3 | ||
primaryColor = CloudyBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = D/He3 | ||
tankType = DeuteriumHe3 | ||
title = LqdDeuterium + LqdHe3 | ||
primaryColor = PowderBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
} | ||
} | ||
// Add tank type to Squad parts without CryoTanks | ||
@PART:HAS[@MODULE[ModuleB9PartSwitch]]:NEEDS[B9PartSwitch,!CryoTanks,!ConfigurableContainers/Parts]:AFTER[RationalResourcesSquad] | ||
{ | ||
@MODULE[ModuleB9PartSwitch]:HAS[#moduleID[RRStockSwitch]] | ||
{ | ||
SUBTYPE | ||
{ | ||
name = Deuterium | ||
tankType = Deuterium | ||
title = LqdDeuterium | ||
primaryColor = PowderBlue | ||
secondaryColor = PowderBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = Helium3 | ||
tankType = He3 | ||
title = LqdHe3 | ||
primaryColor = CloudyBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = D/He3 | ||
tankType = DeuteriumHe3 | ||
title = LqdDeuterium + LqdHe3 | ||
primaryColor = PowderBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
} | ||
} | ||
// Add tank type to CryoTanks parts | ||
@PART[hydrogen-*]:NEEDS[B9PartSwitch,CryoTanks,!ConfigurableContainers/Parts]:AFTER[zzz_CryoTanks] | ||
{ | ||
@MODULE[ModuleB9PartSwitch]:HAS[#moduleID[fuelSwitch]] | ||
{ | ||
SUBTYPE | ||
{ | ||
name = Deuterium | ||
tankType = Deuterium | ||
title = LqdDeuterium | ||
primaryColor = PowderBlue | ||
secondaryColor = PowderBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = Helium3 | ||
tankType = He3 | ||
title = LqdHe3 | ||
primaryColor = CloudyBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
SUBTYPE | ||
{ | ||
name = D/He3 | ||
tankType = DeuteriumHe3 | ||
title = LqdDeuterium + LqdHe3 | ||
primaryColor = PowderBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
} | ||
} | ||
// Color the tank options in FFT tanks | ||
@PART[fusionfuel-*]:NEEDS[FarFutureTechnologies] | ||
{ | ||
@MODULE[ModuleB9PartSwitch]:HAS[#moduleID[fuelSwitch]] | ||
{ | ||
@SUBTYPE[Deuterium] | ||
{ | ||
primaryColor = PowderBlue | ||
secondaryColor = PowderBlue | ||
} | ||
@SUBTYPE[Helium3] | ||
{ | ||
primaryColor = CloudyBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
@SUBTYPE[D/He3] | ||
{ | ||
primaryColor = PowderBlue | ||
secondaryColor = CloudyBlue | ||
} | ||
} | ||
} |
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,47 @@ | ||
@CCKExtraFilterConfig | ||
{ | ||
Item | ||
{ | ||
name = Rational Resources | ||
tag = cck-rr | ||
normalIcon = RationalResources/CCK/RR_N | ||
selectedIcon = RationalResources/CCK/RR_S | ||
usedByMod = Rational Resources | ||
} | ||
} | ||
@PART[OrbitalScanner] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[airScoop]:NEEDS[RationalResourcesParts] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[MiniISRU|ISRU|MiniDrill|RadialDrill|FuelCell|FuelCellArray]:NEEDS[RationalResourcesParts] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART:HAS[#manufacturer[Kenron]]:NEEDS[RationalResourcesParts] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[SMX_*Generator|SMX_*AtmCondenser|SMX_*Drill|SMX_*Pump|SMX_*Ore?ank|SMX_*Driver|SMX_*ISRU*]:NEEDS[MiningExpansion] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[hydrogen-*]:NEEDS[CryoTanks] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[particle-scoop-01|imaging-spectrometer-01|atmosphere-scoop-01|antimatter-*|fusionfuel-*]:NEEDS[FarFutureTechnologies] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[fusion-*-25-1|fusion-*-375-1|z-pinch-*|aim-375-1|am-beam-core-375-1|amcf-375-1|am-plasma-core-375-1]:NEEDS[FarFutureTechnologies] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} | ||
@PART[wbiLasso*|wbiDrillingRig|wbiCastilloFactory|WBI_BuffaloISRU|WBI_BisonISRU]:NEEDS[Pathfinder] | ||
{ | ||
@tags ^= :$: cck-rr: | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.