├── .github └── FUNDING.yml ├── .gitignore ├── Changelog.txt ├── Credits.txt ├── Extras ├── ReduceClampSounds_(Recommended) │ └── GameData │ │ ├── KWRocketry │ │ └── ReduceLaunchClampSounds │ │ │ └── launchClamp.cfg │ │ └── Squad │ │ └── Parts │ │ └── Utility │ │ └── launchClamp1 │ │ └── launchClamp1 │ │ └── Sounds │ │ └── sound_decoupler_fire_quietkw.wav ├── Subassemblies_for_default_(procedural)_fairings │ └── Subassemblies │ │ ├── Launcher 1.25m Heavy - Procedural.craft │ │ ├── Launcher 1.25m Light - Procedural.craft │ │ ├── Launcher 2.5m Heavy - Procedural.craft │ │ ├── Launcher 2.5m Light - Procedural.craft │ │ ├── Launcher 3.75m Heavy - Procedural.craft │ │ ├── Launcher 3.75m Light - Procedural.craft │ │ └── Launcher 5m Heavy - Procedural.craft └── Subassemblies_for_legacy_FAR_compatible_fairings │ └── Subassemblies │ ├── 1.25m Expanded Fairing.craft │ ├── 1.25m Inline Fairing.craft │ ├── 2.5m Expanded Fairing.craft │ ├── 2.5m Inline Fairing.craft │ ├── 3.75m Expanded Fairing.craft │ ├── 3.75m Inline Fairing.craft │ ├── 5m Expanded Fairing.craft │ ├── 5m Inline Fairing.craft │ ├── Launcher 1.25m Heavy.craft │ ├── Launcher 1.25m Light.craft │ ├── Launcher 2.5m Heavy.craft │ ├── Launcher 2.5m Light.craft │ ├── Launcher 3.75m Heavy.craft │ ├── Launcher 3.75m Light.craft │ ├── Launcher 5m Heavy.craft │ └── Launcher 5m Ultra-Heavy.craft ├── GameData └── KWRocketry │ ├── Flags │ ├── KWFlag01.png │ ├── KWFlag02.png │ ├── KWFlag03.png │ ├── KWFlag04.png │ ├── KWFlag05.png │ └── KWFlag06.png │ ├── KWCommunityFixes │ ├── KWPatch-Community-Parts.cfg │ ├── PatchesForMods │ │ ├── KW_ETT.cfg │ │ └── KW_FAR.cfg │ ├── SRB Fix │ └── interstageFix.cfg │ ├── KWRocketryRebalanced.version │ ├── License.txt │ ├── Localization │ ├── en-us.cfg │ └── zh-cn.cfg │ ├── Parts │ ├── Aero │ │ ├── 150mSRBTop │ │ │ ├── 150mSRBConeNormal.dds │ │ │ ├── 150mSRBConeSmall.dds │ │ │ ├── KW2mSRBNoseCone.cfg │ │ │ └── KW_150mSRBTop.mu │ │ ├── KW5mNoseCone │ │ │ └── KW5mNoseCone.cfg │ │ ├── KWFin │ │ │ └── KWFin.cfg │ │ ├── KWFinGC │ │ │ └── KWFinGC.cfg │ │ └── KWNoseCone │ │ │ ├── 1mNosecone.dds │ │ │ ├── 1mNoseconeNormal.dds │ │ │ ├── KW1mNoseCone.cfg │ │ │ ├── KW2mNoseCone.cfg │ │ │ ├── KW3mNoseCone.cfg │ │ │ └── KW_Aero_Nosecone.mu │ ├── Control │ │ └── KWRadialSAS │ │ │ ├── 2mRadSAS.dds │ │ │ ├── 2mRadSASNormals_NRM.dds │ │ │ ├── KWSASmodule2mHalf.cfg │ │ │ ├── KWSASmodule3mHalf.cfg │ │ │ ├── KWSASmodule5mHalf.cfg │ │ │ └── KW_Control_2mRadialSAS.mu │ ├── Electrical │ │ ├── LargeRadialBatteries │ │ │ ├── KWRadBattLargeL.cfg │ │ │ ├── KWRadBattLargeS.cfg │ │ │ ├── KW_Elec_LargeRadBatL.mu │ │ │ ├── KW_Elec_LargeRadBatS.mu │ │ │ ├── LargeBatteries8bit.dds │ │ │ ├── LargeBatteriesEmissiveLights.dds │ │ │ └── LargeBatteriesNormal_NRM.dds │ │ └── SmallRadialBatteries │ │ │ ├── KWRadBattSmallL.cfg │ │ │ ├── KWRadBattSmallS.cfg │ │ │ ├── KW_Elec_SmallRadBatL.mu │ │ │ ├── KW_Elec_SmallRadBatS.mu │ │ │ ├── SmallBatteries8bit.dds │ │ │ ├── SmallBatteriesEmissiveLights.dds │ │ │ └── SmallBatteriesNormal_NRM.dds │ ├── Engines │ │ ├── 1mMaverick1D │ │ │ ├── KW1mengineMaverick1D.cfg │ │ │ ├── KW1mengineMaverick8bit.dds │ │ │ ├── KW1mengineMaverickF1Emis.dds │ │ │ ├── KW1mengineMaverickNormal_NRM.dds │ │ │ └── KW_1mEngine_Maverick1D_M.mu │ │ ├── 1mVestaVR1 │ │ │ ├── KW1mengineVesta18bit.dds │ │ │ ├── KW1mengineVesta1Normal_NRM.dds │ │ │ ├── KW1mengineVestaF1Emis.dds │ │ │ ├── KW1mengineVestaVR1.cfg │ │ │ └── KW_1mEngine_VestaVR1_M.mu │ │ ├── 1mWildcat5 │ │ │ ├── KW1mengineWildCat8bit.dds │ │ │ ├── KW1mengineWildCatEmissive.dds │ │ │ ├── KW1mengineWildCatNormal_NRM.dds │ │ │ ├── KW1mengineWildCatV.cfg │ │ │ └── KW_1mEngine_Wildcat5_M.mu │ │ ├── 2mGriffonG8D │ │ │ ├── 2mGriffon8bitNormal_NRM.dds │ │ │ ├── 2mGriffonF2b.dds │ │ │ ├── 2mGriffonF2bEmiss2.dds │ │ │ ├── KW2mengineGriffonG8D.cfg │ │ │ └── KW_2mEngine_GriffonG8D_M.mu │ │ ├── 2mMaverickV │ │ │ ├── 2mworkhorse.dds │ │ │ ├── 2mworkhorseF1Emiss.dds │ │ │ ├── 2mworkhorseNormal_NRM.dds │ │ │ ├── KW2mengineMaverickV.cfg │ │ │ └── KW_2mEngine_Maverick5_M.mu │ │ ├── 2mSPS │ │ │ ├── KW2mengineSPS.cfg │ │ │ ├── KW2mengineSPS8bit.tga │ │ │ ├── KW2mengineSPSF1Emiss.tga │ │ │ ├── KW2mengineSPSNorm_NRM.tga │ │ │ └── KW_2mEngine_SPS_M.mu │ │ ├── 2mVestaVR9D │ │ │ ├── KW2mengineVestaVR9D.cfg │ │ │ ├── KW_2mEngine_VestaVR9D_M.mu │ │ │ ├── efish2m.dds │ │ │ ├── efish2mF1Emiss.dds │ │ │ └── efish2mNormal_NRM.dds │ │ ├── 3mGriffonXX │ │ │ ├── 3mgriffon8BitEmissive.dds │ │ │ ├── 3mgriffonF1N.dds │ │ │ ├── 3mgriffonNormal_NRM.dds │ │ │ ├── KW3mengineGriffonXX.cfg │ │ │ └── KW_3mEngine_GriffonXX_M.mu │ │ ├── 3mTitanI │ │ │ ├── KW3mengineTitan18bit2.dds │ │ │ ├── KW3mengineTitan18bitNormal_NRM.dds │ │ │ ├── KW3mengineTitan1F1Emiss8bit.dds │ │ │ ├── KW3mengineTitanT1.cfg │ │ │ └── KW_3mEngine_TitanI_M.mu │ │ ├── 3mWildcatXR │ │ │ ├── 3mupperstageF1.dds │ │ │ ├── 3mupperstageF1Emiss.dds │ │ │ ├── 3mupperstageNormal_NRM.dds │ │ │ ├── KW3mengineWildcatXR.cfg │ │ │ └── KW_3mEngine_WildcatXR_M.mu │ │ └── 5mEngines │ │ │ ├── 5mG_NamePlates_F18bit.mbm │ │ │ ├── 5mG_NamePlates_F18bitNormal.mbm │ │ │ ├── 5mGriffonF18bit.dds │ │ │ ├── 5mGriffonF18bitEmissive.dds │ │ │ ├── 5mGriffonF18bitNormal.dds │ │ │ ├── 5mtitan8bit.dds │ │ │ ├── 5mtitan8bitEmissive.dds │ │ │ ├── 5mtitan8bitNormal.dds │ │ │ ├── KW5mengineGriffonC.cfg │ │ │ ├── KW5mengineTitanV.cfg │ │ │ ├── KW_5mEngine_GriffonCentury_M.mu │ │ │ └── KW_5mEngine_TitanV_M.mu │ ├── FairingBases │ │ ├── KWExpandedFairingBase │ │ │ ├── KW1875mFairingPFE.cfg │ │ │ ├── KW1mFairingPFE.cfg │ │ │ ├── KW2mExpandedFairingBase8bit.dds │ │ │ ├── KW2mExpandedFairingBaseNormal.dds │ │ │ ├── KW2mFairingPFE.cfg │ │ │ ├── KW3mFairingPFE.cfg │ │ │ ├── KW_Fairing_BaseExpanded1m.mu │ │ │ ├── KW_Fairing_BaseExpanded2m.mu │ │ │ └── KW_Fairing_BaseExpanded3m.mu │ │ └── KWFairingBase │ │ │ ├── KW1875mFairingPF.cfg │ │ │ ├── KW1mFairingPF.cfg │ │ │ ├── KW2mFairingBase8bit.dds │ │ │ ├── KW2mFairingBaseNormal.dds │ │ │ ├── KW2mFairingPF.cfg │ │ │ ├── KW3mFairingPF.cfg │ │ │ ├── KW_Fairing_Base1m.mu │ │ │ ├── KW_Fairing_Base2m.mu │ │ │ ├── KW_Fairing_Base3m.mu │ │ │ ├── fairings_diff_KWBlack.dds │ │ │ └── fairings_diff_KWWhite.dds │ ├── Fairings │ │ ├── UnifiedFairings │ │ │ ├── KW1mDecouplerShroud.cfg │ │ │ ├── KW2mDecouplerShroud.cfg │ │ │ ├── KW3mDecouplerShroud.cfg │ │ │ ├── KW5mDecouplerShroud.cfg │ │ │ ├── KW5x3AdapterShroud.cfg │ │ │ ├── KW_Auto_1mMavShroud.mu │ │ │ ├── KW_Auto_1mVestaShroud.mu │ │ │ ├── KW_Auto_1mWildcatShroud.mu │ │ │ ├── KW_Auto_2mGriffonShroud.mu │ │ │ ├── KW_Auto_2mMavShroud.mu │ │ │ ├── KW_Auto_2mSPSShroud.mu │ │ │ ├── KW_Auto_2mVestaShroud.mu │ │ │ ├── KW_Auto_3mGriffonShroud.mu │ │ │ ├── KW_Auto_3mTitanShroud.mu │ │ │ ├── KW_Auto_3mWildcatShroud.mu │ │ │ ├── KW_Auto_5mInterstage.mu │ │ │ ├── KW_Auto_5mInterstage2.mu │ │ │ ├── KW_Struct_1mShroudDecoupler.mu │ │ │ ├── KW_Struct_2mShroudDecoupler.mu │ │ │ ├── KW_Struct_3mShroudDecoupler.mu │ │ │ ├── UnifiedFairingF18Bit.dds │ │ │ └── UnifiedFairingF1_Normal.dds │ │ └── UnifiedFairings5m │ │ │ ├── 5mFairingUnified8Bit.dds │ │ │ ├── 5mFairingUnified8BitNormal.dds │ │ │ ├── KW5mFairingPF.cfg │ │ │ ├── KW5mFairingPFE.cfg │ │ │ ├── KW_Fairing_Base5m.mu │ │ │ ├── KW_Fairing_ExpandingBase5m.mu │ │ │ ├── KW_Fairing_Nosecone5m.mu │ │ │ └── KW_Struct_Decoupler5m.mu │ ├── Fuel │ │ ├── KWSidetank │ │ │ ├── KW2Sidetank.cfg │ │ │ ├── KW2mSidetank8Bit.dds │ │ │ ├── KW2mSidetankNormal.dds │ │ │ ├── KW3Sidetank.cfg │ │ │ └── KW_Fuel_2mST.mu │ │ └── KW_Universal_Tanks │ │ │ ├── 1_25ShaftsF1.dds │ │ │ ├── 1_25ShaftsF1Normal.dds │ │ │ ├── 2014unifiedadaptersF18Bit.dds │ │ │ ├── 2014unifiedadaptersF18BitNormal.dds │ │ │ ├── 2_50ShaftsF1.dds │ │ │ ├── 2_50ShaftsF1Normal.dds │ │ │ ├── 3_75ShaftsF1.dds │ │ │ ├── 3_75ShaftsF1Normal.dds │ │ │ ├── 5_00ShaftsF1.dds │ │ │ ├── 5_00ShaftsF1Normal.dds │ │ │ ├── EndCapF1.dds │ │ │ ├── EndCapF1Norm.dds │ │ │ ├── KW1mRCSfuel.cfg │ │ │ ├── KW1mtankL0_5.cfg │ │ │ ├── KW1mtankL1.cfg │ │ │ ├── KW1mtankL2.cfg │ │ │ ├── KW1mtankL4.cfg │ │ │ ├── KW1mtankPancake.cfg │ │ │ ├── KW2mRCSfuel.cfg │ │ │ ├── KW2mtankL0_5.cfg │ │ │ ├── KW2mtankL1.cfg │ │ │ ├── KW2mtankL2.cfg │ │ │ ├── KW2mtankL4.cfg │ │ │ ├── KW2mtankL4A.cfg │ │ │ ├── KW2mtankPancake.cfg │ │ │ ├── KW3mRCSfuel.cfg │ │ │ ├── KW3mtankL0_5.cfg │ │ │ ├── KW3mtankL1.cfg │ │ │ ├── KW3mtankL2.cfg │ │ │ ├── KW3mtankL4.cfg │ │ │ ├── KW3mtankL4A.cfg │ │ │ ├── KW3mtankPancake.cfg │ │ │ ├── KW5mtankL05.cfg │ │ │ ├── KW5mtankL1_5.cfg │ │ │ ├── KW5mtankL3_5.cfg │ │ │ ├── KWPetalAdapter3m.mu │ │ │ ├── KW_AdapterF_2x1m.mu │ │ │ ├── KW_AdapterF_2x1m_L.mu │ │ │ ├── KW_AdapterF_3x1m.mu │ │ │ ├── KW_AdapterF_3x1m_L.mu │ │ │ ├── KW_AdapterF_3x2m.mu │ │ │ ├── KW_AdapterF_3x2m_L.mu │ │ │ ├── KW_AdapterF_5x2m.mu │ │ │ ├── KW_AdapterF_5x3m.mu │ │ │ ├── KW_AdapterS_2x1m.mu │ │ │ ├── KW_AdapterS_3x2m.mu │ │ │ ├── KW_AdapterS_5x3m.mu │ │ │ ├── KW_Control_5mASAS.mu │ │ │ ├── KW_Fuel_1mL0_5.mu │ │ │ ├── KW_Fuel_1mL0_5RCS.mu │ │ │ ├── KW_Fuel_1mL1.mu │ │ │ ├── KW_Fuel_1mL2.mu │ │ │ ├── KW_Fuel_1mL4.mu │ │ │ ├── KW_Fuel_1mPancakeL0_5.mu │ │ │ ├── KW_Fuel_2mL0_5.mu │ │ │ ├── KW_Fuel_2mL0_5RCS.mu │ │ │ ├── KW_Fuel_2mL1.mu │ │ │ ├── KW_Fuel_2mL2.mu │ │ │ ├── KW_Fuel_2mL4.mu │ │ │ ├── KW_Fuel_2mL4A.mu │ │ │ ├── KW_Fuel_2mPancakeL0_5.mu │ │ │ ├── KW_Fuel_3mL0_5.mu │ │ │ ├── KW_Fuel_3mL0_5RCS.mu │ │ │ ├── KW_Fuel_3mL1.mu │ │ │ ├── KW_Fuel_3mL2.mu │ │ │ ├── KW_Fuel_3mL4.mu │ │ │ ├── KW_Fuel_3mL4A.mu │ │ │ ├── KW_Fuel_3mPancakeL0_5.mu │ │ │ ├── KW_Fuel_5mL0_5.mu │ │ │ ├── KW_Fuel_5mL1_5.mu │ │ │ ├── KW_Fuel_5mL3_5.mu │ │ │ ├── KW_Solid_SepMotorLarge.mu │ │ │ ├── KWfin.mu │ │ │ ├── KWfinGC.mu │ │ │ ├── PancakeF1.dds │ │ │ ├── PancakeF1Norm.dds │ │ │ ├── RCSInnerF1.dds │ │ │ └── RCSInnerF1Normal.dds │ ├── RCS │ │ ├── KWrcsPod │ │ │ ├── KW_RCS_2mPod.mu │ │ │ ├── KWrcsPod.cfg │ │ │ ├── rcspod8Bit.dds │ │ │ └── rcspodNormals_NRM.dds │ │ ├── KWrcsQuad │ │ │ ├── KW_RCS_1mBlock.mu │ │ │ ├── KWrcsQuad.cfg │ │ │ └── KWrcsQuad8bit.dds │ │ └── KWrcsQuad45 │ │ │ ├── KW_RCS_1mBlock45.mu │ │ │ ├── KWrcsQuad45.cfg │ │ │ └── RCSquad45.dds │ ├── Solids │ │ ├── 025mGlobeI │ │ │ ├── GlobeI8bit512.dds │ │ │ ├── GlobeIEmissive.dds │ │ │ ├── GlobeINormal.dds │ │ │ ├── KW_025mSRBGlobeI.mu │ │ │ └── KWsrbGlobeI.cfg │ │ ├── 075mAeroSRBs │ │ │ ├── 075mAerosrbF1.dds │ │ │ ├── 075mAerosrbF1Emiss.dds │ │ │ ├── 075mAerosrbNormal.dds │ │ │ ├── KW_075mAeroSRB_L.mu │ │ │ ├── KW_075mAeroSRB_S.mu │ │ │ ├── KWsrbGlobeV.cfg │ │ │ └── KWsrbGlobeVI.cfg │ │ ├── 150mSRBs │ │ │ ├── 150mSRB8Bit.dds │ │ │ ├── 150mSRBEmiss.dds │ │ │ ├── 150mSRBNormal.dds │ │ │ ├── KW_150mSRB_L.mu │ │ │ ├── KW_150mSRB_S.mu │ │ │ ├── KWsrbGlobeX.cfg │ │ │ └── KWsrbGlobeX2.cfg │ │ ├── 250mInlineThor │ │ │ ├── InlineThor8bit.dds │ │ │ ├── InlineThor8bitEmissive.dds │ │ │ ├── InlineThor8bitNormal.dds │ │ │ ├── KW_250mSRBInlineThorL.mu │ │ │ ├── KW_250mSRBInlineThorS.mu │ │ │ ├── KWsrbGlobeX10L.cfg │ │ │ └── KWsrbGlobeX10S.cfg │ │ ├── 250mSRBThor │ │ │ ├── KWThor.dds │ │ │ ├── KW_250mSRBThor.mu │ │ │ ├── KWsrbGlobeX5.cfg │ │ │ ├── ThorEmissive.dds │ │ │ └── ThorNormal.dds │ │ └── SRBUllage │ │ │ ├── KW_SRBUllage.mu │ │ │ ├── KWsrbUllage.cfg │ │ │ ├── KWsrbUllageLarge.cfg │ │ │ ├── ullage8Bit.dds │ │ │ └── ullageNormal.dds │ └── Structural │ │ ├── KW3mDockingRing │ │ ├── KW3mDockingRing.cfg │ │ ├── KW_Struct_3mDockingRing.mu │ │ ├── UVW3mDocking8bit.dds │ │ └── UVW3mDockingNormal.dds │ │ ├── KWDecoupler │ │ ├── KW1875mDecoupler.cfg │ │ ├── KW1mDecoupler.cfg │ │ ├── KW2mDecoupler.cfg │ │ ├── KW3mDecoupler.cfg │ │ ├── KW5mStageDecoupler.cfg │ │ ├── KW_Struct_Decoupler.mu │ │ ├── flatdecoupler Normal.dds │ │ └── flatdecouplerx512.dds │ │ ├── KWFlatadapter2x1 │ │ ├── 2x1FlatAdaptor.dds │ │ ├── 2x1Normal_NRM.dds │ │ ├── KWFlatadapter2x1.cfg │ │ └── KW_Struct_FlatAdapter21.mu │ │ ├── KWFlatadapter3x1 │ │ ├── 3x1FlatAdapter.dds │ │ ├── 3x1Normal_NRM.dds │ │ ├── KWFlatadapter3x1.cfg │ │ └── KW_Struct_FlatAdapter31.mu │ │ ├── KWFlatadapter3x2 │ │ ├── 3x2Flatadapter.dds │ │ ├── 3x2Normal_NRM.dds │ │ ├── KWFlatadapter3x2.cfg │ │ └── KW_Struct_FlatAdapter32.mu │ │ ├── KWFuelAdapter │ │ ├── KWFuelAdapter2x1.cfg │ │ ├── KWFuelAdapter2x1S.cfg │ │ ├── KWFuelAdapter3x1.cfg │ │ ├── KWFuelAdapter3x1S.cfg │ │ ├── KWFuelAdapter3x2.cfg │ │ ├── KWFuelAdapter3x2S.cfg │ │ ├── KWFuelAdapter5x2.cfg │ │ └── KWFuelAdapter5x3.cfg │ │ ├── KWPetalAdapter3m │ │ └── KW3mPetalAdapter.cfg │ │ ├── KWadapter2x1 │ │ └── KWadapter2x1.cfg │ │ ├── KWadapter3x2 │ │ └── KWadapter3x2.cfg │ │ ├── kwstrutConnectorHeavy │ │ ├── model.mu │ │ ├── model000.mbm │ │ └── strutConnectorHeavy.cfg │ │ └── kwstrutConnectorMedium │ │ ├── model.mu │ │ ├── model000.mbm │ │ └── strutConnectorMedium.cfg │ ├── PatchManager │ ├── PM_GraduatedPowerResponse.cfg │ ├── PM_NameChanges.cfg │ ├── PM_PoodSRBPatch.cfg │ ├── PM_ShortenNameChanges.cfg │ ├── PM_SizeTankDecoupler.cfg │ └── PluginData │ │ ├── GraduatedPowerResponse.cfg │ │ ├── NameChanges.cfg │ │ ├── Pood_KW_SRB_Patch.cfg │ │ ├── ShortenName.cfg │ │ └── sideTankDecoupler.cfg │ └── Soundbank │ ├── sound_altloop.wav │ ├── sound_altloop2.wav │ ├── sound_liq1.wav │ ├── sound_liq10.wav │ ├── sound_liq11.wav │ ├── sound_liq2.wav │ ├── sound_liq3.wav │ ├── sound_liq4.wav │ ├── sound_liq5.wav │ ├── sound_liq6.wav │ ├── sound_liq7.wav │ ├── sound_liq8.wav │ ├── sound_liq9.wav │ ├── sound_sepmotor.wav │ ├── sound_sps.wav │ ├── sound_spsloop.wav │ ├── sound_srb1.wav │ ├── sound_srb2.wav │ ├── sound_srb3.wav │ ├── sound_srb4.wav │ └── sound_srbloop.wav ├── Installation Instructions.txt ├── KWRocketryRebalanced.version ├── KWRocketryRedux-Extras.netkan ├── KWRocketryRedux.netkan ├── README.md ├── a.sh ├── buildit.bat └── jenkins.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: linuxgurugamer 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | custom: # Replace with a single custom sponsorship URL 9 | -------------------------------------------------------------------------------- /Credits.txt: -------------------------------------------------------------------------------- 1 | Kickasskyle and Winston 2 | 3 | Virtualgenius for the "Installation for Dummies" docs 4 | 5 | And countless people who have suggested changes and updates 6 | 7 | -- 8 | For the Rebalancing update: 9 | 10 | CarnageINC for doing a lot of work in spreadsheets with me doing the majority 11 | of the calculations for the rebalancing project 12 | -------------------------------------------------------------------------------- /Extras/ReduceClampSounds_(Recommended)/GameData/KWRocketry/ReduceLaunchClampSounds/launchClamp.cfg: -------------------------------------------------------------------------------- 1 | @PART[launchClamp1] 2 | { 3 | -sound_decoupler_fire = activate 4 | %sound_decoupler_fire_quietkw = activate 5 | } 6 | -------------------------------------------------------------------------------- /Extras/ReduceClampSounds_(Recommended)/GameData/Squad/Parts/Utility/launchClamp1/launchClamp1/Sounds/sound_decoupler_fire_quietkw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/Extras/ReduceClampSounds_(Recommended)/GameData/Squad/Parts/Utility/launchClamp1/launchClamp1/Sounds/sound_decoupler_fire_quietkw.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag01.png -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag02.png -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag03.png -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag04.png -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag05.png -------------------------------------------------------------------------------- /GameData/KWRocketry/Flags/KWFlag06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Flags/KWFlag06.png -------------------------------------------------------------------------------- /GameData/KWRocketry/KWCommunityFixes/KWPatch-Community-Parts.cfg: -------------------------------------------------------------------------------- 1 | //KWRocketry Kapollo Service Module Engine 2 | $PART[KW2mengineSPS]:NEEDS[KWRocketry]{ 3 | @name = KW2mengineSPSB 4 | @title = KW Rocketry Service Module Propulsion System 5 | @manufacturer = KW Rocketry (Blackleg Industries Version) 6 | @description = A simple motor for small spacecraft. Built for efficiency in a vacuum. 7 | 8 | -MODULE[ModuleAlternator] {} 9 | -RESOURCE[ElectricCharge] {} 10 | 11 | @MODULE[ModuleEnginesFX] { 12 | -PROPELLANT[MonoPropellant] {} 13 | PROPELLANT { 14 | name = LiquidFuel 15 | ratio = 0.9 16 | DrawGauge = True 17 | } 18 | PROPELLANT { 19 | name = Oxidizer 20 | ratio = 1.1 21 | } 22 | } 23 | } 24 | 25 | //KWRocketry Kapollo Service Module Tank 26 | $PART[KW2mtankL1]:NEEDS[KWRocketry] { 27 | @name = KW2mtankL1B 28 | @title = KW Rocketry SB-1 SMT 29 | @manufacturer = KW Rocketry (Blackleg Industries Version) 30 | @description = 2.5m Service Module Tank. 31 | @mass = 1.0 32 | 33 | RESOURCE { 34 | name = MonoPropellant 35 | amount = 200 36 | maxAmount = 200 37 | } 38 | 39 | @RESOURCE[LiquidFuel] { 40 | @amount = 720 41 | @maxAmount = 720 42 | } 43 | 44 | @RESOURCE[Oxidizer] { 45 | @amount = 880 46 | @maxAmount = 880 47 | } 48 | 49 | RESOURCE:NEEDS[TacLifeSupport] 50 | { 51 | name = Oxygen 52 | amount = 555.19 53 | maxAmount = 555.19 54 | } 55 | } 56 | 57 | -------------------------------------------------------------------------------- /GameData/KWRocketry/KWCommunityFixes/PatchesForMods/KW_ETT.cfg: -------------------------------------------------------------------------------- 1 | //New tech node to house the BIG engines 2 | 3 | @TechTree 4 | { 5 | RDNode:NEEDS[!CommunityTechTree&!B9?Aerospace?HX&!ETT] 6 | { 7 | id = experimentalRocketry 8 | title = Experimental Rocketry 9 | description = The closer the top of your rocket is to the stars on the launchpad, the easier it is to reach them. Well, that's the theory. 10 | cost = 1000 11 | hideEmpty = False 12 | nodeName = node8_experimentalRocketry 13 | anyToUnlock = False 14 | icon = RDicon_rocketry-veryHeavy 15 | pos = -952,1635,-1 16 | scale = 0.6 17 | Parent 18 | { 19 | parentID = veryHeavyRocketry 20 | lineFrom = RIGHT 21 | lineTo = LEFT 22 | } 23 | Parent 24 | { 25 | parentID = highPerformanceFuelSystems 26 | lineFrom = RIGHT 27 | lineTo = LEFT 28 | } 29 | } 30 | 31 | @RDNode:HAS[#id[experimentalRocketry]]:AFTER[B9?Aerospace?HX]:NEEDS[!CommunityTechTree&B9?Aerospace?HX&!ETT] 32 | { 33 | Parent 34 | { 35 | parentID = highPerformanceFuelSystems 36 | lineFrom = RIGHT 37 | lineTo = LEFT 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /GameData/KWRocketry/KWCommunityFixes/PatchesForMods/KW_FAR.cfg: -------------------------------------------------------------------------------- 1 | 2 | @PART[KWFin]:NEEDS[FerramAerospaceResearch]:FOR[KWRocketry] 3 | { 4 | @module = Part 5 | @maximum_drag = 0 6 | @minimum_drag = 0 7 | @angularDrag = 0 8 | @dragCoeff = 0 9 | @deflectionLiftCoeff = 0 10 | @ctrlSurfaceRange = 0 11 | @ctrlSurfaceArea = 0 12 | !MODULE[ModuleLiftingSurface] {} 13 | MODULE 14 | { 15 | name = FARControllableSurface 16 | nonSideAttach = 0 17 | MAC = 1.311 18 | MidChordSweep = 29.375 19 | maxdeflect = 15 20 | b_2 = 1.2 21 | TaperRatio = 0.5 22 | ctrlSurfFrac = 0.3 23 | } 24 | } 25 | @PART[KWFinGC]:NEEDS[FerramAerospaceResearch]:FOR[KWRocketry] 26 | { 27 | @module = Part 28 | @maximum_drag = 0 29 | @minimum_drag = 0 30 | @angularDrag = 0 31 | @dragCoeff = 0 32 | @deflectionLiftCoeff = 0 33 | @ctrlSurfaceRange = 0 34 | @ctrlSurfaceArea = 0 35 | !MODULE[ModuleLiftingSurface] {} 36 | MODULE 37 | { 38 | name = FARControllableSurface 39 | nonSideAttach = 0 40 | MAC = 1.311 41 | MidChordSweep = 23.84 42 | maxdeflect = 20 43 | b_2 = 1.2 44 | TaperRatio = 0.6 45 | ctrlSurfFrac = 0.3 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /GameData/KWRocketry/KWCommunityFixes/SRB Fix: -------------------------------------------------------------------------------- 1 | // This makes the minimum thrust in SRBs 0, this fixes the ghost thrust issue when thrust is set to 0 in-game. 2 | 3 | @PART[KWsrbGlobeI] 4 | { 5 | @MODULE[ModuleEnginesFX] 6 | { 7 | @minThrust = 0 8 | } 9 | } 10 | 11 | 12 | @PART[KWsrbGlobeV] 13 | { 14 | @MODULE[ModuleEnginesFX] 15 | { 16 | @minThrust = 0 17 | } 18 | } 19 | 20 | 21 | @PART[KWsrbGlobeVI] 22 | { 23 | @MODULE[ModuleEnginesFX] 24 | { 25 | @minThrust = 0 26 | } 27 | } 28 | 29 | 30 | @PART[KWsrbGlobeX10S] 31 | { 32 | @MODULE[ModuleEnginesFX] 33 | { 34 | @minThrust = 0 35 | } 36 | } 37 | 38 | 39 | @PART[KWsrbGlobeX5] 40 | { 41 | @MODULE[ModuleEnginesFX] 42 | { 43 | @minThrust = 0 44 | } 45 | } 46 | 47 | 48 | @PART[KWsrbUllage] 49 | { 50 | @MODULE[ModuleEnginesFX] 51 | { 52 | @minThrust = 0 53 | } 54 | } 55 | 56 | 57 | @PART[KWsrbUllageLarge] 58 | { 59 | @MODULE[ModuleEnginesFX] 60 | { 61 | @minThrust = 0 62 | } 63 | } 64 | 65 | 66 | @PART[KWsrbGlobeX10L] 67 | { 68 | @MODULE[ModuleEnginesFX] 69 | { 70 | @minThrust = 0 71 | } 72 | } 73 | 74 | 75 | @PART[KWsrbGlobeX2] 76 | { 77 | @MODULE[ModuleEnginesFX] 78 | { 79 | @minThrust = 0 80 | } 81 | } 82 | 83 | 84 | @PART[KWsrbGlobeX] 85 | { 86 | @MODULE[ModuleEnginesFX] 87 | { 88 | @minThrust = 0 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /GameData/KWRocketry/KWCommunityFixes/interstageFix.cfg: -------------------------------------------------------------------------------- 1 | // 2 | // Patch submitted by Starwaster to fix interstage decoupling 3 | // 4 | 5 | @PART[KW5mDecouplerShroud|KW5x3AdapterShroud|KW1mDecouplerShroud|KW2mDecouplerShroud|KW3mDecouplerShroud]:NEEDS[KWRocketry] 6 | { 7 | @MODULE[ModuleDecouple] 8 | { 9 | %explosiveNodeID = top 10 | %isOmniDecoupler = false 11 | } 12 | MODULE 13 | { 14 | name = ModuleDecouple 15 | ejectionForce = 1500 16 | explosiveNodeID = bottom2 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /GameData/KWRocketry/KWRocketryRebalanced.version: -------------------------------------------------------------------------------- 1 | { 2 | "NAME": "KWRocketryRebalanced", 3 | "URL": "http://ksp.spacetux.net/avc/KWRocketryRebalanced", 4 | "DOWNLOAD": "https://github.com/linuxgurugamer/KWRocketryRedux/releases", 5 | "VERSION": { 6 | "MAJOR": 3, 7 | "MINOR": 2, 8 | "PATCH": 6, 9 | "BUILD": 1 10 | }, 11 | "KSP_VERSION": { 12 | "MAJOR": 1, 13 | "MINOR": 4, 14 | "PATCH": 1 15 | }, 16 | "KSP_VERSION_MIN": { 17 | "MAJOR": 1, 18 | "MINOR": 4, 19 | "PATCH": 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /GameData/KWRocketry/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/License.txt -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/150mSRBTop/150mSRBConeNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/150mSRBTop/150mSRBConeNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/150mSRBTop/150mSRBConeSmall.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/150mSRBTop/150mSRBConeSmall.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/150mSRBTop/KW_150mSRBTop.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/150mSRBTop/KW_150mSRBTop.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KW5mNoseCone/KW5mNoseCone.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW5mNoseCone 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_Nosecone5m 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -1.548, 0.0, 0.0, -1.0, 0.0, 4 20 | 21 | 22 | 23 | // --- FX definitions --- 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = heavyAerodynamics 28 | entryCost = 7500 29 | cost = 1250 30 | category = Aero 31 | subcategory = 0 32 | title = #KW_KW5mNoseCone_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW5mNoseCone_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | stackSymmetry = 2 39 | 40 | // --- standard part parameters --- 41 | mass = 0.08 42 | dragModelType = default 43 | maximum_drag = 0.3 44 | minimum_drag = 0.3 45 | angularDrag = 0.5 46 | crashTolerance = 10 47 | maxTemp = 3400 48 | fuelCrossFeed = True 49 | 50 | tags = [kwrock aero aircraft booster )cap drag fligh plane rocket speed stab stream core 51 | 52 | bulkheadProfiles = size4 53 | } 54 | 55 | // ----- DO NOT EDIT BELOW THIS POINT ------ 56 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWFin/KWFin.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | 4 | // --- general parameters --- 5 | name = KWFin 6 | module = Part 7 | author = KW Rocketry 8 | 9 | // --- asset parameters --- 10 | MODEL 11 | { 12 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfin 13 | scale = 1,1,1 14 | } 15 | scale = 1.0 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_attach = -0.055, 0.0, 0.0, -1.0, 0.0, 0.0 20 | 21 | // --- editor parameters --- 22 | TechRequired = advFlightControl 23 | entryCost = 5400 24 | cost = 700 25 | category = Aero 26 | subcategory = 0 27 | title = #KW_KWFin_title 28 | manufacturer = KW Rocketry 29 | description = #KW_KWFin_desc 30 | attachRules = 0,1,0,0,1 31 | 32 | // --- standard part parameters --- 33 | mass = 0.155 34 | dragModelType = override 35 | maximum_drag = 0.02 36 | minimum_drag = 0.02 37 | angularDrag = 5 38 | crashTolerance = 12 39 | maxTemp = 3400 40 | explosionPotential = 0.1 41 | 42 | tags = [kwrock aero (air canard control (elev fligh (fore lift plane )rudder stab swept 43 | 44 | bulkheadProfiles = srf 45 | 46 | MODULE 47 | { 48 | name = ModuleControlSurface 49 | dragCoeff = 0.8 50 | deflectionLiftCoeff = 1.5 51 | ctrlSurfaceRange = 15 52 | ctrlSurfaceArea = 1.0 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWFinGC/KWFinGC.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | 4 | // --- general parameters --- 5 | name = KWFinGC 6 | module = Part 7 | author = KW Rocketry 8 | 9 | // --- asset parameters --- 10 | MODEL 11 | { 12 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfinGC 13 | scale = 1,1,1 14 | rotation = 0, 0, 0 15 | } 16 | scale = 1.0 17 | 18 | // --- node definitions --- 19 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 20 | node_stack = -0.05, 0.0, 0.00, 0.0, 1.0, 0.0, 1 21 | 22 | // --- editor parameters --- 23 | TechRequired = advFlightControl 24 | entryCost = 5400 25 | cost = 700 26 | category = Aero 27 | subcategory = 0 28 | title = #KW_KWFinGC_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KWFinGC_desc 31 | attachRules = 1,0,1,0,0 32 | 33 | 34 | // --- standard part parameters --- 35 | mass = 0.168 36 | dragModelType = override 37 | maximum_drag = 0.02 38 | minimum_drag = 0.02 39 | angularDrag = 5 40 | crashTolerance = 12 41 | maxTemp = 3400 42 | explosionPotential = 0.1 43 | 44 | tags = [kwrock aero (air canard control (elev fligh (fore lift plane )rudder stab swept 45 | 46 | bulkheadProfiles = srf 47 | 48 | MODULE 49 | { 50 | name = ModuleControlSurface 51 | dragCoeff = 0.8 52 | deflectionLiftCoeff = 1.5 53 | ctrlSurfaceRange = 15 54 | ctrlSurfaceArea = 1.0 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/1mNosecone.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/KWNoseCone/1mNosecone.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/1mNoseconeNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/KWNoseCone/1mNoseconeNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/KW1mNoseCone.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW1mNoseCone 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Aero/KWNoseCone/KW_Aero_Nosecone 12 | scale = 0.625, 0.625, 0.625 13 | } 14 | rescaleFactor = 1.0 15 | scale = 0.5 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 1 20 | 21 | 22 | 23 | // --- FX definitions --- 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = flightControl 28 | entryCost = 1800 29 | cost = 600 30 | category = Aero 31 | subcategory = 0 32 | title = #KW_KW1mNoseCone_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW1mNoseCone_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | stackSymmetry = 2 39 | 40 | // --- standard part parameters --- 41 | mass = 0.01 42 | dragModelType = default 43 | maximum_drag = 0.3 44 | minimum_drag = 0.3 45 | angularDrag = 0.5 46 | crashTolerance = 10 47 | maxTemp = 3400 48 | fuelCrossFeed = True 49 | 50 | tags = [kwrock aero aircraft booster )cap drag fligh plane rocket speed stab stream 51 | bulkheadProfiles = size1 52 | } 53 | 54 | // ----- DO NOT EDIT BELOW THIS POINT ------ 55 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/KW2mNoseCone.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW2mNoseCone 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Aero/KWNoseCone/KW_Aero_Nosecone 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.0 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 2 20 | 21 | 22 | 23 | // --- FX definitions --- 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = supersonicFlight 28 | entryCost = 3200 29 | cost = 750 30 | category = Aero 31 | subcategory = 0 32 | title = #KW_KW2mNoseCone_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW2mNoseCone_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | stackSymmetry = 2 39 | 40 | // --- standard part parameters --- 41 | mass = 0.03 42 | dragModelType = default 43 | maximum_drag = 0.3 44 | minimum_drag = 0.3 45 | angularDrag = 0.5 46 | crashTolerance = 10 47 | maxTemp = 3400 48 | fuelCrossFeed = True 49 | 50 | tags = [kwrock aero aircraft booster )cap drag fligh plane rocket speed stab stream core 51 | bulkheadProfiles = size2 52 | } 53 | 54 | // ----- DO NOT EDIT BELOW THIS POINT ------ 55 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/KW3mNoseCone.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW3mNoseCone 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Aero/KWNoseCone/KW_Aero_Nosecone 12 | scale = 1.875, 1.875, 1.875 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.5 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 3 20 | 21 | 22 | 23 | // --- FX definitions --- 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = advAerodynamics 28 | entryCost = 5000 29 | cost = 1000 30 | category = Aero 31 | subcategory = 0 32 | title = #KW_KW3mNoseCone_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW3mNoseCone_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | stackSymmetry = 2 39 | 40 | // --- standard part parameters --- 41 | mass = 0.05 42 | dragModelType = default 43 | maximum_drag = 0.3 44 | minimum_drag = 0.3 45 | angularDrag = 0.5 46 | crashTolerance = 10 47 | maxTemp = 3400 48 | fuelCrossFeed = True 49 | 50 | tags = [kwrock aero aircraft booster )cap drag fligh plane rocket speed stab stream core 51 | bulkheadProfiles = size3 52 | } 53 | 54 | // ----- DO NOT EDIT BELOW THIS POINT ------ 55 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Aero/KWNoseCone/KW_Aero_Nosecone.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Aero/KWNoseCone/KW_Aero_Nosecone.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/2mRadSAS.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Control/KWRadialSAS/2mRadSAS.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/2mRadSASNormals_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Control/KWRadialSAS/2mRadSASNormals_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/KWSASmodule2mHalf.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | 4 | // --- general parameters --- 5 | name = KWSASmodule2mHalf 6 | module = Part 7 | author = KW Rocketry 8 | 9 | // --- asset parameters --- 10 | MODEL 11 | { 12 | model = KWRocketry/Parts/Control/KWRadialSAS/KW_Control_2mRadialSAS 13 | scale = 1,1,1 14 | } 15 | 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_attach = 0.0, 0.0, -0.03, 0.0, 0.0, 0.0, 1 20 | 21 | // --- FX definitions --- 22 | 23 | 24 | // --- editor parameters --- 25 | TechRequired = specializedControl 26 | entryCost = 12000 27 | cost = 1200 28 | category = Control 29 | subcategory = 0 30 | title = #KW_KW2mSRBNoseCone_title 31 | manufacturer = KW Rocketry 32 | description = #KW_KW2mSRBNoseCone_desc 33 | 34 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 35 | attachRules = 1,1,1,1,0 36 | 37 | // --- standard part parameters --- 38 | mass = 0.25 39 | dragModelType = default 40 | maximum_drag = 0.2 41 | minimum_drag = 0.2 42 | angularDrag = 2 43 | crashTolerance = 9 44 | maxTemp = 3400 45 | breakingForce = 8000 46 | breakingTorque = 8000 47 | 48 | tags = [kwrock cmg cmd command control fly gyro moment react stab steer torque 49 | 50 | bulkheadProfiles = srf, size2 51 | 52 | MODULE 53 | { 54 | name = ModuleSAS 55 | } 56 | 57 | 58 | 59 | MODULE 60 | { 61 | name = ModuleReactionWheel 62 | 63 | PitchTorque = 10 64 | YawTorque = 10 65 | RollTorque = 10 66 | 67 | RESOURCE 68 | { 69 | name = ElectricCharge 70 | rate = 0.25 71 | } 72 | } 73 | 74 | 75 | bulkheadProfiles = size2 76 | } 77 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/KWSASmodule3mHalf.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | 4 | // --- general parameters --- 5 | name = KWSASmodule3mHalf 6 | module = Part 7 | author = KW Rocketry 8 | 9 | // --- asset parameters --- 10 | MODEL 11 | { 12 | model = KWRocketry/Parts/Control/KWRadialSAS/KW_Control_2mRadialSAS 13 | scale = 1.5, 1.5, 1.5 14 | } 15 | scale = 1.5 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_attach = 0.0, 0.0, -0.03, 0.0, 0.0, 0.0, 1 20 | 21 | // --- FX definitions --- 22 | 23 | 24 | // --- editor parameters --- 25 | TechRequired = specializedControl 26 | entryCost = 16000 27 | cost = 2000 28 | category = Control 29 | subcategory = 0 30 | title = #KW_KWSASmodule3mHalf_title 31 | manufacturer = KW Rocketry 32 | description = #KW_KWSASmodule3mHalf_desc 33 | 34 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 35 | attachRules = 1,1,1,1,0 36 | 37 | // --- standard part parameters --- 38 | mass = 0.5625 39 | dragModelType = default 40 | maximum_drag = 0.2 41 | minimum_drag = 0.2 42 | angularDrag = 2 43 | crashTolerance = 9 44 | maxTemp = 3400 45 | breakingForce = 16000 46 | breakingTorque = 16000 47 | 48 | tags = [kwrock cmg cmd command control fly gyro moment react stab steer torque 49 | 50 | bulkheadProfiles = srf, size3 51 | 52 | MODULE 53 | { 54 | name = ModuleSAS 55 | } 56 | 57 | 58 | 59 | MODULE 60 | { 61 | name = ModuleReactionWheel 62 | 63 | PitchTorque = 22.5 64 | YawTorque = 22.5 65 | RollTorque = 22.5 66 | 67 | RESOURCE 68 | { 69 | name = ElectricCharge 70 | rate = 0.5625 71 | } 72 | } 73 | 74 | 75 | bulkheadProfiles = size3 76 | } 77 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/KWSASmodule5mHalf.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | 4 | // --- general parameters --- 5 | name = KWSASmodule5mHalf 6 | module = Part 7 | author = KW Rocketry 8 | 9 | // --- asset parameters --- 10 | MODEL 11 | { 12 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Control_5mASAS 13 | scale = 1, 1, 1 14 | } 15 | 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_attach = 0.0, 0.0, -0.065, 0.0, 0.0, 0.0, 4 20 | // --- FX definitions --- 21 | 22 | 23 | // --- editor parameters --- 24 | TechRequired = metaMaterials 25 | entryCost = 30000 26 | cost = 3000 27 | category = Control 28 | subcategory = 0 29 | title = #KW_KWSASmodule5mHalf_title 30 | manufacturer = KW Rocketry 31 | description = #KW_KWSASmodule5mHalf_desc 32 | 33 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 34 | attachRules = 1,1,1,1,0 35 | 36 | // --- standard part parameters --- 37 | mass = 1.0 38 | dragModelType = default 39 | maximum_drag = 0.2 40 | minimum_drag = 0.2 41 | angularDrag = 2 42 | crashTolerance = 9 43 | maxTemp = 3400 44 | breakingForce = 16000 45 | breakingTorque = 16000 46 | 47 | tags = [kwrock cmg cmd command control fly gyro moment react stab steer torque 48 | 49 | bulkheadProfiles = srf, size4 50 | 51 | MODULE 52 | { 53 | name = ModuleSAS 54 | } 55 | 56 | 57 | 58 | MODULE 59 | { 60 | name = ModuleReactionWheel 61 | 62 | PitchTorque = 22 63 | YawTorque = 22 64 | RollTorque = 40 65 | 66 | RESOURCE 67 | { 68 | name = ElectricCharge 69 | rate = 1.0 70 | } 71 | } 72 | 73 | 74 | bulkheadProfiles = size4 75 | } 76 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Control/KWRadialSAS/KW_Control_2mRadialSAS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Control/KWRadialSAS/KW_Control_2mRadialSAS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KWRadBattLargeL.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWRadBattLargeL 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatL 12 | scale = 1,1,1 13 | } 14 | 15 | // --- node definitions --- 16 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 17 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, -1.0 18 | 19 | 20 | // --- editor parameters --- 21 | TechRequired = advElectrics 22 | entryCost = 6400 23 | cost = 2400 24 | category = Electrical 25 | subcategory = 0 26 | title = #KW_KWRadBattLargeL_title 27 | manufacturer = KW Rocketry 28 | description = #KW_KWRadBattLargeL_desc 29 | 30 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 31 | attachRules = 0,1,0,0,0 32 | 33 | // --- standard part parameters --- 34 | mass = 0.06 35 | dragModelType = default 36 | maximum_drag = 0.2 37 | minimum_drag = 0.2 38 | angularDrag = 1 39 | crashTolerance = 8 40 | maxTemp = 3200 41 | 42 | tags = [kwrock capacitor cell charge e/c elect pack power volt watt radial 43 | 44 | bulkheadProfiles = srf 45 | 46 | RESOURCE 47 | { 48 | name = ElectricCharge 49 | amount = 1200 50 | maxAmount = 1200 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KWRadBattLargeS.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWRadBattLargeS 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatS 12 | scale = 1,1,1 13 | } 14 | 15 | // --- node definitions --- 16 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 17 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, -1.0 18 | 19 | // --- editor parameters --- 20 | TechRequired = advElectrics 21 | entryCost = 3200 22 | cost = 1200 23 | category = Electrical 24 | subcategory = 0 25 | title = #KW_KWRadBattLargeS_title 26 | manufacturer = KW Rocketry 27 | description = #KW_KWRadBattLargeS_title 28 | 29 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 30 | attachRules = 0,1,0,0,0 31 | 32 | // --- standard part parameters --- 33 | mass = 0.03 34 | dragModelType = default 35 | maximum_drag = 0.2 36 | minimum_drag = 0.2 37 | angularDrag = 1 38 | crashTolerance = 8 39 | maxTemp = 3200 40 | 41 | tags = [kwrock capacitor cell charge e/c elect pack power volt watt radial 42 | 43 | bulkheadProfiles = srf 44 | 45 | RESOURCE 46 | { 47 | name = ElectricCharge 48 | amount = 600 49 | maxAmount = 600 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatL.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatL.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/KW_Elec_LargeRadBatS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteries8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteries8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteriesEmissiveLights.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteriesEmissiveLights.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteriesNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/LargeRadialBatteries/LargeBatteriesNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KWRadBattSmallL.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWRadBattSmallL 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatL 12 | scale = 1,1,1 13 | } 14 | 15 | // --- node definitions --- 16 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 17 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, -1.0 18 | 19 | // --- editor parameters --- 20 | TechRequired = electrics 21 | entryCost = 1600 22 | cost = 300 23 | category = Electrical 24 | subcategory = 0 25 | title = #KW_KWRadBattSmallL_title 26 | manufacturer = KW Rocketry 27 | description = #KW_KWRadBattSmallL_desc 28 | 29 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 30 | attachRules = 0,1,0,0,0 31 | 32 | // --- standard part parameters --- 33 | mass = 0.015 34 | dragModelType = default 35 | maximum_drag = 0.2 36 | minimum_drag = 0.2 37 | angularDrag = 1 38 | crashTolerance = 8 39 | maxTemp = 3200 40 | 41 | tags = [kwrock capacitor cell charge e/c elect pack power volt watt radial 42 | 43 | bulkheadProfiles = srf 44 | 45 | RESOURCE 46 | { 47 | name = ElectricCharge 48 | amount = 300 49 | maxAmount = 300 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KWRadBattSmallS.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWRadBattSmallS 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatS 12 | scale = 1,1,1 13 | } 14 | 15 | // --- node definitions --- 16 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 17 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, -1.0 18 | 19 | // --- editor parameters --- 20 | TechRequired = electrics 21 | entryCost = 800 22 | cost = 125 23 | category = Electrical 24 | subcategory = 0 25 | title = #KW_KWRadBattSmallS_title 26 | manufacturer = KW Rocketry 27 | description = #KW_KWRadBattSmallS_desc 28 | 29 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 30 | attachRules = 0,1,0,0,0 31 | 32 | // --- standard part parameters --- 33 | mass = 0.0075 34 | dragModelType = default 35 | maximum_drag = 0.2 36 | minimum_drag = 0.2 37 | angularDrag = 1 38 | crashTolerance = 8 39 | maxTemp = 3200 40 | 41 | tags = [kwrock capacitor cell charge e/c elect pack power volt watt radial 42 | 43 | bulkheadProfiles = srf 44 | 45 | RESOURCE 46 | { 47 | name = ElectricCharge 48 | amount = 150 49 | maxAmount = 150 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatL.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatL.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/KW_Elec_SmallRadBatS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteries8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteries8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteriesEmissiveLights.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteriesEmissiveLights.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteriesNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Electrical/SmallRadialBatteries/SmallBatteriesNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverick8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverick8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverickF1Emis.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverickF1Emis.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverickNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW1mengineMaverickNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW_1mEngine_Maverick1D_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mMaverick1D/KW_1mEngine_Maverick1D_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVesta18bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVesta18bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVesta1Normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVesta1Normal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVestaF1Emis.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW1mengineVestaF1Emis.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW_1mEngine_VestaVR1_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mVestaVR1/KW_1mEngine_VestaVR1_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCat8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCat8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCatEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCatEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCatNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mWildcat5/KW1mengineWildCatNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/1mWildcat5/KW_1mEngine_Wildcat5_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/1mWildcat5/KW_1mEngine_Wildcat5_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffon8bitNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffon8bitNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffonF2b.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffonF2b.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffonF2bEmiss2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mGriffonG8D/2mGriffonF2bEmiss2.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mGriffonG8D/KW_2mEngine_GriffonG8D_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mGriffonG8D/KW_2mEngine_GriffonG8D_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorse.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorseF1Emiss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorseF1Emiss.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorseNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mMaverickV/2mworkhorseNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mMaverickV/KW_2mEngine_Maverick5_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mMaverickV/KW_2mEngine_Maverick5_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPS8bit.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPS8bit.tga -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPSF1Emiss.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPSF1Emiss.tga -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPSNorm_NRM.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mSPS/KW2mengineSPSNorm_NRM.tga -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mSPS/KW_2mEngine_SPS_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mSPS/KW_2mEngine_SPS_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mVestaVR9D/KW_2mEngine_VestaVR9D_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mVestaVR9D/KW_2mEngine_VestaVR9D_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2m.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2m.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2mF1Emiss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2mF1Emiss.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2mNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/2mVestaVR9D/efish2mNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffon8BitEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffon8BitEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffonF1N.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffonF1N.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffonNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mGriffonXX/3mgriffonNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mGriffonXX/KW_3mEngine_GriffonXX_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mGriffonXX/KW_3mEngine_GriffonXX_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan18bit2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan18bit2.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan18bitNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan18bitNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan1F1Emiss8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mTitanI/KW3mengineTitan1F1Emiss8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mTitanI/KW_3mEngine_TitanI_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mTitanI/KW_3mEngine_TitanI_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageF1Emiss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageF1Emiss.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageNormal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mWildcatXR/3mupperstageNormal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/3mWildcatXR/KW_3mEngine_WildcatXR_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/3mWildcatXR/KW_3mEngine_WildcatXR_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mG_NamePlates_F18bit.mbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mG_NamePlates_F18bit.mbm -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mG_NamePlates_F18bitNormal.mbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mG_NamePlates_F18bitNormal.mbm -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bitEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bitEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bitNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mGriffonF18bitNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bitEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bitEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bitNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/5mtitan8bitNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/KW_5mEngine_GriffonCentury_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/KW_5mEngine_GriffonCentury_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Engines/5mEngines/KW_5mEngine_TitanV_M.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Engines/5mEngines/KW_5mEngine_TitanV_M.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW2mExpandedFairingBase8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW2mExpandedFairingBase8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW2mExpandedFairingBaseNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW2mExpandedFairingBaseNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded1m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded1m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded2m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded2m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded3m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWExpandedFairingBase/KW_Fairing_BaseExpanded3m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW2mFairingBase8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW2mFairingBase8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW2mFairingBaseNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW2mFairingBaseNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base1m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base1m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base2m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base2m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base3m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/KW_Fairing_Base3m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/fairings_diff_KWBlack.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/fairings_diff_KWBlack.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/FairingBases/KWFairingBase/fairings_diff_KWWhite.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/FairingBases/KWFairingBase/fairings_diff_KWWhite.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW1mDecouplerShroud.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW1mDecouplerShroud 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_1mShroudDecoupler 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 1 20 | node_stack_bottom2 = 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1 21 | node_stack_top = 0.0, 1.525, 0.0, 0.0, 1.0, 0.0, 1 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 1.617, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = generalConstruction 31 | entryCost = 2000 32 | cost = 400 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KW1mDecouplerShroud_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KW1mDecouplerShroud_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 0.25 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | breakingForce = 8000 54 | breakingTorque = 8000 55 | 56 | stageOffset = 1 57 | childStageOffset = 1 58 | 59 | bulkheadProfiles = size1 60 | 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 250 67 | isOmniDecoupler = true 68 | } 69 | bulkheadProfiles = size1 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW2mDecouplerShroud.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW2mDecouplerShroud 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_2mShroudDecoupler 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 2 20 | node_stack_bottom2 = 0.0, 0.25, 0.0, 0.0, 1.0, 0.0, 2 21 | node_stack_top = 0.0, 2.7, 0.0, 0.0, 1.0, 0.0, 2 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 2.64, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = advConstruction 31 | entryCost = 4000 32 | cost = 800 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KW2mDecouplerShroud_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KW2mDecouplerShroud_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 1 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | breakingForce = 8000 54 | breakingTorque = 8000 55 | 56 | stageOffset = 1 57 | childStageOffset = 1 58 | 59 | bulkheadProfiles = size2 60 | 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 1000 67 | isOmniDecoupler = true 68 | } 69 | bulkheadProfiles = size2 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW3mDecouplerShroud.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW3mDecouplerShroud 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_3mShroudDecoupler 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 3 20 | node_stack_bottom2 = 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 3 21 | node_stack_top = 0.0, 3.7, 0.0, 0.0, 1.0, 0.0, 3 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 1.617, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = metaMaterials 31 | entryCost = 8000 32 | cost = 1600 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KW3mDecouplerShroud_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KW3mDecouplerShroud_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 2 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | breakingForce = 18000 54 | breakingTorque = 18000 55 | 56 | stageOffset = 1 57 | childStageOffset = 1 58 | 59 | bulkheadProfiles = size3 60 | 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 1500 67 | isOmniDecoupler = true 68 | } 69 | bulkheadProfiles = size3 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW5mDecouplerShroud.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW5mDecouplerShroud 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_5mInterstage2 12 | scale = 1.6665625, 1.6665625, 1.6665625 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 4 20 | node_stack_bottom2 = 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 4 21 | node_stack_top = 0.0, 2.5145, 0.0, 0.0, 1.0, 0.0, 4 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 1.617, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = metaMaterials 31 | entryCost = 16000 32 | cost = 3200 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KW5mDecouplerShroud_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KW5mDecouplerShroud_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 3.75 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | breakingForce = 18000 54 | breakingTorque = 18000 55 | 56 | stageOffset = 1 57 | childStageOffset = 1 58 | 59 | bulkheadProfiles = size4 60 | 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 1500 67 | isOmniDecoupler = true 68 | } 69 | bulkheadProfiles = size4 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW5x3AdapterShroud.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW5x3AdapterShroud 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_5x3m 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -1.73081, 0.0, 0.0, -1.0, 0.0, 4 20 | node_stack_bottom2 = 0.0, -1.63081, 0.0, 0.0, 1.0, 0.0, 4 21 | node_stack_top = 0.0, 1.75, 0.0, 0.0, 1.0, 0.0, 3 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 1.617, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = metaMaterials 31 | entryCost = 12000 32 | cost = 3000 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KW5x3AdapterShroud_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KW5x3AdapterShroud_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 3.75 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | breakingForce = 18000 54 | breakingTorque = 18000 55 | 56 | stageOffset = 1 57 | childStageOffset = 1 58 | 59 | bulkheadProfiles = size3, size4 60 | 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 1500 67 | isOmniDecoupler = true 68 | } 69 | bulkheadProfiles = size4 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mMavShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mMavShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mVestaShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mVestaShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mWildcatShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_1mWildcatShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mGriffonShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mGriffonShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mMavShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mMavShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mSPSShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mSPSShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mVestaShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_2mVestaShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mGriffonShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mGriffonShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mTitanShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mTitanShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mWildcatShroud.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_3mWildcatShroud.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_5mInterstage.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_5mInterstage.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_5mInterstage2.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Auto_5mInterstage2.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_1mShroudDecoupler.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_1mShroudDecoupler.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_2mShroudDecoupler.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_2mShroudDecoupler.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_3mShroudDecoupler.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/KW_Struct_3mShroudDecoupler.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/UnifiedFairingF18Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/UnifiedFairingF18Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings/UnifiedFairingF1_Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings/UnifiedFairingF1_Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/5mFairingUnified8Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/5mFairingUnified8Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/5mFairingUnified8BitNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/5mFairingUnified8BitNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_Base5m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_Base5m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_ExpandingBase5m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_ExpandingBase5m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_Nosecone5m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Fairing_Nosecone5m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Struct_Decoupler5m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Struct_Decoupler5m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KWSidetank/KW2Sidetank.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mSidetank 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2Sidetank 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KWSidetank/KW_Fuel_2mST 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 0.125 20 | 21 | // --- node definitions --- 22 | node_stack_bottom = 0.0, -40.0, 0.0, 0.0, -1.0, 0.0, 2 23 | node_attach = 0.0, 0.0, -10.75, 0.0, 0.0, 0.0, 2 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = advFuelSystems 28 | entryCost = 6480 29 | cost = 6580 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW2Sidetank_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW2Sidetank_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 3.1 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 40000 48 | breakingTorque = 40000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket radial side [aspar 51 | 52 | bulkheadProfiles = srf, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 2240 58 | maxAmount = 2240 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 2738 65 | maxAmount = 2738 66 | } 67 | bulkheadProfiles = size2 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KWSidetank/KW2mSidetank8Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KWSidetank/KW2mSidetank8Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KWSidetank/KW2mSidetankNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KWSidetank/KW2mSidetankNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KWSidetank/KW3Sidetank.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mSidetank 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3Sidetank 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KWSidetank/KW_Fuel_2mST 16 | scale = 1.875, 1.875, 1.875 17 | } 18 | rescaleFactor = 1.0 19 | scale = 0.1875 20 | 21 | // --- node definitions --- 22 | node_stack_bottom = 0.0, -40.0, 0.0, 0.0, -1.0, 0.0, 3 23 | node_attach = 0.0, 0.0, -10.75, 0.0, 0.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = highPerformanceFuelSystems 28 | entryCost = 21870 29 | cost = 21970 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW3Sidetank_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW3Sidetank_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 11.028 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 80000 48 | breakingTorque = 80000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket radial side [aspar 51 | 52 | bulkheadProfiles = srf, size3 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 7940 58 | maxAmount = 7940 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 9704 65 | maxAmount = 9704 66 | } 67 | bulkheadProfiles = size3 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KWSidetank/KW_Fuel_2mST.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KWSidetank/KW_Fuel_2mST.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/1_25ShaftsF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/1_25ShaftsF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/1_25ShaftsF1Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/1_25ShaftsF1Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2014unifiedadaptersF18Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2014unifiedadaptersF18Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2014unifiedadaptersF18BitNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2014unifiedadaptersF18BitNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2_50ShaftsF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2_50ShaftsF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2_50ShaftsF1Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/2_50ShaftsF1Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/3_75ShaftsF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/3_75ShaftsF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/3_75ShaftsF1Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/3_75ShaftsF1Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/5_00ShaftsF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/5_00ShaftsF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/5_00ShaftsF1Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/5_00ShaftsF1Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/EndCapF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/EndCapF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/EndCapF1Norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/EndCapF1Norm.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mRCSfuel.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | 5 | // --- general parameters --- 6 | name = KW1mRCSfuel 7 | module = Part 8 | author = KW Rocketry 9 | 10 | // --- asset parameters --- 11 | MODEL 12 | { 13 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5RCS 14 | scale = 1.25, 1.25, 1.25 15 | } 16 | rescaleFactor = 1.0 17 | scale = 1.25 18 | 19 | // --- node definitions --- 20 | node_stack_top = 0.0, 0.25, 0.0, 0.0, 1.0, 0.0, 1 21 | node_stack_bottom = 0.0, -0.25, 0.0, 0.0, -1.0, 0.0, 1 22 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 23 | 24 | // --- editor parameters --- 25 | TechRequired = fuelSystems 26 | entryCost = 400 27 | cost = 800 28 | category = FuelTank 29 | subcategory = 0 30 | title = #KW_KW1mRCSfuel_title 31 | manufacturer = KW Rocketry 32 | description = #KW_KW1mRCSfuel_desc 33 | 34 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 35 | attachRules = 1,1,1,1,0 36 | 37 | // --- standard part parameters --- 38 | mass = 0.137 39 | dragModelType = default 40 | maximum_drag = 0.2 41 | minimum_drag = 0.2 42 | angularDrag = 2 43 | crashTolerance = 12 44 | maxTemp = 2000 45 | fuelCrossFeed = True 46 | 47 | tags = [kwrock fueltank mono monopropellant propellant 48 | 49 | bulkheadProfiles = size1 50 | 51 | // --- rcs fuel tank parameters --- 52 | 53 | RESOURCE 54 | { 55 | name = MonoPropellant 56 | amount = 240 57 | maxAmount = 240 58 | } 59 | bulkheadProfiles = size1 60 | } 61 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mtankL0_5.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW1mtankL0_5 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW1mtankL0_5 9 | module = Part 10 | author = KW Rocketry 11 | 12 | MODEL 13 | { 14 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5 15 | scale = 1.25, 1.25, 1.25 16 | } 17 | rescaleFactor = 1.0 18 | scale = 1.25 19 | 20 | // --- node definitions --- 21 | node_stack_top = 0.0, 0.25, 0.0, 0.0, 1.0, 0.0, 1 22 | node_stack_bottom = 0.0, -0.25, 0.0, 0.0, -1.0, 0.0, 1 23 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = basicRocketry 28 | entryCost = 120 29 | cost = 220 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW1mtankL0_5_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW1mtankL0_5_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.069 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 1200 48 | breakingTorque = 1200 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 51 | 52 | bulkheadProfiles = size1 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 50 58 | maxAmount = 50 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 61 65 | maxAmount = 61 66 | } 67 | bulkheadProfiles = size1 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mtankL1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW1mtankL1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW1mtankL1 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL1 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -0.5, 0.0, 0.0, -1.0, 0.0, 1 24 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = generalRocketry 29 | entryCost = 240 30 | cost = 340 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW1mtankL1_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW1mtankL1_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 0.153 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 1200 49 | breakingTorque = 1200 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size1 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 110 59 | maxAmount = 110 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 134 66 | maxAmount = 134 67 | } 68 | bulkheadProfiles = size1 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mtankL2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW1mtankL2 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW1mtankL2 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL2 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 1 24 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = advRocketry 29 | entryCost = 480 30 | cost = 580 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW1mtankL2_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW1mtankL2_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 0.292 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 2500 49 | breakingTorque = 2500 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size1 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 210 59 | maxAmount = 210 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 257 66 | maxAmount = 257 67 | } 68 | bulkheadProfiles = size1 69 | 70 | 71 | } 72 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mtankL4.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW1mtankL4 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW1mtankL4 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL4 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -2.0, 0.0, 0.0, -1.0, 0.0, 1 24 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = fuelSystems 29 | entryCost = 960 30 | cost = 1060 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW1mtankL4_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW1mtankL4_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 0.597 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 5000 49 | breakingTorque = 5000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size1 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 430 59 | maxAmount = 430 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 526 66 | maxAmount = 526 67 | } 68 | 69 | MODULE 70 | { 71 | name = FlagDecal 72 | textureQuadName = FlagMesh 73 | } 74 | 75 | bulkheadProfiles = size1 76 | } 77 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW1mtankPancake.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW1mtankPancake 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW1mtankPancake 9 | module = Part 10 | author = KW Rocketry 11 | 12 | MODEL 13 | { 14 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mPancakeL0_5 15 | scale = 1.25, 1.25, 1.25 16 | } 17 | rescaleFactor = 1.0 18 | scale = 1.25 19 | 20 | // --- node definitions --- 21 | node_stack_top = 0.0, 0.1875, 0.0, 0.0, 1.0, 0.0, 1 22 | node_stack_bottom = 0.0, -0.1875, 0.0, 0.0, -1.0, 0.0, 1 23 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 1 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = basicRocketry 28 | entryCost = 120 29 | cost = 220 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW1mtankPancake_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW1mtankPancake_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.052 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 1200 48 | breakingTorque = 1200 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket (pancake 51 | 52 | bulkheadProfiles = size1 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 38 58 | maxAmount = 38 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 46 65 | maxAmount = 46 66 | } 67 | bulkheadProfiles = size1 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mRCSfuel.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | 5 | // --- general parameters --- 6 | name = KW2mRCSfuel 7 | module = Part 8 | author = KW Rocketry 9 | 10 | // --- asset parameters --- 11 | MODEL 12 | { 13 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5RCS 14 | scale = 1.25, 1.25, 1.25 15 | } 16 | rescaleFactor = 1.0 17 | scale = 1.25 18 | 19 | // --- node definitions --- 20 | node_stack_top = 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 2 21 | node_stack_bottom = 0.0, -0.5, 0.0, 0.0, -1.0, 0.0, 2 22 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 23 | 24 | // --- editor parameters --- 25 | TechRequired = specializedControl 26 | entryCost = 1760 27 | cost = 3520 28 | category = FuelTank 29 | subcategory = 0 30 | title = #KW_KW2mRCSfuel_title 31 | manufacturer = KW Rocketry 32 | description = #KW_KW2mRCSfuel_desc 33 | 34 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 35 | attachRules = 1,1,1,1,0 36 | 37 | // --- standard part parameters --- 38 | mass = 0.514 39 | dragModelType = default 40 | maximum_drag = 0.2 41 | minimum_drag = 0.2 42 | angularDrag = 2 43 | crashTolerance = 12 44 | maxTemp = 2000 45 | fuelCrossFeed = True 46 | 47 | tags = [kwrock fueltank mono monopropellant propellant 48 | 49 | // --- rcs fuel tank parameters --- 50 | 51 | bulkheadProfiles = size2 52 | 53 | RESOURCE 54 | { 55 | name = MonoPropellant 56 | amount = 900 57 | maxAmount = 900 58 | } 59 | bulkheadProfiles = size2 60 | } 61 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankL0_5.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankL1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankL0_5 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -0.5, 0.0, 0.0, -1.0, 0.0, 2 24 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = fuelSystems 29 | entryCost = 960 30 | cost = 1060 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW2mtankL0_5_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW2mtankL0_5_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 0.639 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 10000 49 | breakingTorque = 10000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size2 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 460 59 | maxAmount = 460 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 562 66 | maxAmount = 562 67 | } 68 | bulkheadProfiles = size2 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankL1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankL1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankL1 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL1 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 2 24 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 25 | 26 | 27 | 28 | // --- editor parameters --- 29 | TechRequired = fuelSystems 30 | entryCost = 1920 31 | cost = 2020 32 | category = FuelTank 33 | subcategory = 0 34 | title = #KW_KW2mtankL1_title 35 | manufacturer = KW Rocketry 36 | description = #KW_KW2mtankL1_desc 37 | 38 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 39 | attachRules = 1,1,1,1,0 40 | 41 | // --- standard part parameters --- 42 | mass = 1.278 43 | dragModelType = default 44 | maximum_drag = 0.2 45 | minimum_drag = 0.3 46 | angularDrag = 2 47 | crashTolerance = 6 48 | maxTemp = 2000 49 | breakingForce = 10000 50 | breakingTorque = 10000 51 | 52 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 53 | 54 | bulkheadProfiles = size2 55 | 56 | RESOURCE 57 | { 58 | name = LiquidFuel 59 | amount = 920 60 | maxAmount = 920 61 | } 62 | 63 | RESOURCE 64 | { 65 | name = Oxidizer 66 | amount = 1124 67 | maxAmount = 1124 68 | } 69 | bulkheadProfiles = size2 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankL2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankL2 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankL2 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL2 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -2.0, 0.0, 0.0, -1.0, 0.0, 2 24 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = fuelSystems 29 | entryCost = 3840 30 | cost = 3940 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW2mtankL2_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW2mtankL2_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 2.583 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 20000 49 | breakingTorque = 20000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size2 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 1860 59 | maxAmount = 1860 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 2273 66 | maxAmount = 2273 67 | } 68 | bulkheadProfiles = size2 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankL4.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankL4 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankL4 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 4.0, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -4.0, 0.0, 0.0, -1.0, 0.0, 2 24 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = advFuelSystems 29 | entryCost = 7680 30 | cost = 7780 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW2mtankL4_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW2mtankL4_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 5.264 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 40000 49 | breakingTorque = 40000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size2 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 3790 59 | maxAmount = 3790 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 4632 66 | maxAmount = 4632 67 | } 68 | 69 | MODULE 70 | { 71 | name = FlagDecal 72 | textureQuadName = FlagMesh 73 | } 74 | 75 | bulkheadProfiles = size2 76 | } 77 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankL4A.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankL4A 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankL4A 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4A 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 4.0, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -4.0, 0.0, 0.0, -1.0, 0.0, 2 24 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = advFuelSystems 29 | entryCost = 7680 30 | cost = 7780 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW2mtankL4A_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW2mtankL4A_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 5.264 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 40000 49 | breakingTorque = 40000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size2 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 3790 59 | maxAmount = 3790 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 4632 66 | maxAmount = 4632 67 | } 68 | bulkheadProfiles = size2 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW2mtankPancake.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW2mtankPancake 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW2mtankPancake 9 | module = Part 10 | author = KW Rocketry 11 | 12 | MODEL 13 | { 14 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mPancakeL0_5 15 | scale = 1.25, 1.25, 1.25 16 | } 17 | rescaleFactor = 1.0 18 | scale = 1.25 19 | 20 | // --- node definitions --- 21 | node_stack_top = 0.0, 0.375, 0.0, 0.0, 1.0, 0.0, 2 22 | node_stack_bottom = 0.0, -0.375, 0.0, 0.0, -1.0, 0.0, 2 23 | node_attach = 0.0, 0.0, -1.01, 0.0, 0.0, 0.0, 2 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = heavyRocketry 28 | entryCost = 960 29 | cost = 1060 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW2mtankPancake_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW2mtankPancake_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.458 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 1200 48 | breakingTorque = 1200 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket (pancake 51 | 52 | bulkheadProfiles = size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 330 58 | maxAmount = 330 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 403 65 | maxAmount = 403 66 | } 67 | bulkheadProfiles = size2 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mRCSfuel.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | 5 | // --- general parameters --- 6 | name = KW3mRCSfuel 7 | module = Part 8 | author = KW Rocketry 9 | 10 | // --- asset parameters --- 11 | MODEL 12 | { 13 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5RCS 14 | scale = 1.25, 1.25, 1.25 15 | } 16 | rescaleFactor = 1.0 17 | scale = 1.25 18 | 19 | // --- node definitions --- 20 | node_stack_top = 0.0, 0.75, 0.0, 0.0, 1.0, 0.0, 3 21 | node_stack_bottom = 0.0, -0.75, 0.0, 0.0, -1.0, 0.0, 3 22 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 23 | 24 | 25 | // --- editor parameters --- 26 | TechRequired = metaMaterials 27 | entryCost = 5940 28 | cost = 11880 29 | category = FuelTank 30 | subcategory = 0 31 | title = #KW_KW3mRCSfuel_title 32 | manufacturer = KW Rocketry 33 | description = #KW_KW3mRCSfuel_desc 34 | 35 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 36 | attachRules = 1,1,1,1,0 37 | 38 | // --- standard part parameters --- 39 | mass = 1.103 40 | dragModelType = default 41 | maximum_drag = 0.2 42 | minimum_drag = 0.2 43 | angularDrag = 2 44 | crashTolerance = 12 45 | maxTemp = 2000 46 | fuelCrossFeed = True 47 | 48 | tags = [kwrock fueltank mono monopropellant propellant 49 | 50 | bulkheadProfiles = size3 51 | 52 | // --- rcs fuel tank parameters --- 53 | 54 | RESOURCE 55 | { 56 | name = MonoPropellant 57 | amount = 1930 58 | maxAmount = 1930 59 | } 60 | bulkheadProfiles = size3 61 | } 62 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankL0_5.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankL0_5 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankL0_5 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.75, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -0.75, 0.0, 0.0, -1.0, 0.0, 3 24 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = largeVolumeContainment 29 | entryCost = 3240 30 | cost = 3340 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW3mtankL0_5_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW3mtankL0_5_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 2.278 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 30000 49 | breakingTorque = 30000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size3 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 1640 59 | maxAmount = 1640 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 2004 66 | maxAmount = 2004 67 | } 68 | bulkheadProfiles = size3 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankL1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankL1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankL1 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL1 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -1.5, 0.0, 0.0, -1.0, 0.0, 3 24 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 25 | 26 | 27 | 28 | // --- editor parameters --- 29 | TechRequired = largeVolumeContainment 30 | entryCost = 6480 31 | cost = 6580 32 | category = FuelTank 33 | subcategory = 0 34 | title = #KW_KW3mtankL1_title 35 | manufacturer = KW Rocketry 36 | description = #KW_KW3mtankL1_desc 37 | 38 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 39 | attachRules = 1,1,1,1,0 40 | 41 | // --- standard part parameters --- 42 | mass = 4.528 43 | dragModelType = default 44 | maximum_drag = 0.2 45 | minimum_drag = 0.3 46 | angularDrag = 2 47 | crashTolerance = 6 48 | maxTemp = 2000 49 | breakingForce = 30000 50 | breakingTorque = 30000 51 | 52 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 53 | 54 | bulkheadProfiles = size3 55 | 56 | RESOURCE 57 | { 58 | name = LiquidFuel 59 | amount = 3260 60 | maxAmount = 3260 61 | } 62 | 63 | RESOURCE 64 | { 65 | name = Oxidizer 66 | amount = 3984 67 | maxAmount = 3984 68 | } 69 | bulkheadProfiles = size3 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankL2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankL2 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankL2 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL2 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -3.0, 0.0, 0.0, -1.0, 0.0, 3 24 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = largeVolumeContainment 29 | entryCost = 12960 30 | cost = 13060 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW3mtankL2_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW3mtankL2_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 9.167 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 45000 49 | breakingTorque = 45000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size3 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 6600 59 | maxAmount = 6600 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 8067 66 | maxAmount = 8067 67 | } 68 | bulkheadProfiles = size3 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankL4.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankL4 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankL4 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 6.0, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -6.0, 0.0, 0.0, -1.0, 0.0, 3 24 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = highPerformanceFuelSystems 29 | entryCost = 25920 30 | cost = 26020 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW3mtankL4_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW3mtankL4_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 18.694 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 80000 49 | breakingTorque = 80000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size3 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 13460 59 | maxAmount = 13460 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 16451 66 | maxAmount = 16451 67 | } 68 | 69 | MODULE 70 | { 71 | name = FlagDecal 72 | textureQuadName = FlagMesh 73 | } 74 | bulkheadProfiles = size3 75 | } 76 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankL4A.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankL4A 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankL4A 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4A 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 6.0, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -6.0, 0.0, 0.0, -1.0, 0.0, 3 24 | node_attach = 0.0, 0.0, -1.515, 0.0, 0.0, 0.0, 3 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = highPerformanceFuelSystems 29 | entryCost = 25920 30 | cost = 26020 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW3mtankL4A_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW3mtankL4A_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 18.694 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 80000 49 | breakingTorque = 80000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size3 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 13460 59 | maxAmount = 13460 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 16451 66 | maxAmount = 16451 67 | } 68 | bulkheadProfiles = size3 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW3mtankPancake.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW3mtankPancake 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW3mtankPancake 9 | module = Part 10 | author = KW Rocketry 11 | 12 | MODEL 13 | { 14 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mPancakeL0_5 15 | scale = 1.25, 1.25, 1.25 16 | } 17 | rescaleFactor = 1.0 18 | scale = 1.25 19 | 20 | // --- node definitions --- 21 | node_stack_top = 0.0, 0.5625, 0.0, 0.0, 1.0, 0.0, 3 22 | node_stack_bottom = 0.0, -0.5625, 0.0, 0.0, -1.0, 0.0, 3 23 | node_attach = 0.0, 0.0, -0.505, 0.0, 0.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = largeVolumeContainment 28 | entryCost = 3240 29 | cost = 3340 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KW3mtankPancake_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KW3mtankPancake_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,1,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 1.625 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 1200 48 | breakingTorque = 1200 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket (pancake 51 | 52 | bulkheadProfiles = size3 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 1170 58 | maxAmount = 1170 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 1430 65 | maxAmount = 1430 66 | } 67 | bulkheadProfiles = size3 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW5mtankL05.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW5mtankL1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW5mtankL05 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL0_5 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 4 23 | node_stack_bottom = 0.0, -1.0, 0.0, 0.0, -1.0, 0.0, 4 24 | node_attach = 0.0, 0.0, -2.022, 0.0, 0.0, 0.0, 4 25 | 26 | 27 | 28 | // --- editor parameters --- 29 | TechRequired = highPerformanceFuelSystems 30 | entryCost = 7680 31 | cost = 7780 32 | category = FuelTank 33 | subcategory = 0 34 | title = #KW_KW5mtankL05_title 35 | manufacturer = KW Rocketry 36 | description = #KW_KW5mtankL05_desc 37 | 38 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 39 | attachRules = 1,1,1,1,0 40 | 41 | // --- standard part parameters --- 42 | mass = 5.486 43 | dragModelType = default 44 | maximum_drag = 0.2 45 | minimum_drag = 0.3 46 | angularDrag = 2 47 | crashTolerance = 6 48 | maxTemp = 2000 49 | breakingForce = 30000 50 | breakingTorque = 30000 51 | 52 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 53 | 54 | bulkheadProfiles = size4 55 | 56 | RESOURCE 57 | { 58 | name = LiquidFuel 59 | amount = 3950 60 | maxAmount = 3950 61 | } 62 | 63 | RESOURCE 64 | { 65 | name = Oxidizer 66 | amount = 4828 67 | maxAmount = 4828 68 | } 69 | bulkheadProfiles = size4 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW5mtankL1_5.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW5mtankL1_5 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW5mtankL1_5 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL1_5 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 4 23 | node_stack_bottom = 0.0, -3.0, 0.0, 0.0, -1.0, 0.0, 4 24 | node_attach = 0.0, 0.0, -2.022, 0.0, 0.0, 0.0, 4 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = highPerformanceFuelSystems 29 | entryCost = 23040 30 | cost = 23140 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW5mtankL1_5_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW5mtankL1_5_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 16.667 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 45000 49 | breakingTorque = 45000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size4 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 12000 59 | maxAmount = 12000 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 14667 66 | maxAmount = 14667 67 | } 68 | bulkheadProfiles = size4 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW5mtankL3_5.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KW5mtankL3_5 5 | // 6 | 7 | // --- general parameters --- 8 | name = KW5mtankL3_5 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL3_5 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 7.0, 0.0, 0.0, 1.0, 0.0, 4 23 | node_stack_bottom = 0.0, -7.0, 0.0, 0.0, -1.0, 0.0, 4 24 | node_attach = 0.0, 0.0, -2.022, 0.0, 0.0, 0.0, 4 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = highPerformanceFuelSystems 29 | entryCost = 53760 30 | cost = 53860 31 | category = FuelTank 32 | subcategory = 0 33 | title = #KW_KW5mtankL3_5_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW5mtankL3_5_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,1,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 39.903 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.3 45 | angularDrag = 2 46 | crashTolerance = 6 47 | maxTemp = 2000 48 | breakingForce = 80000 49 | breakingTorque = 80000 50 | 51 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket 52 | 53 | bulkheadProfiles = size4 54 | 55 | RESOURCE 56 | { 57 | name = LiquidFuel 58 | amount = 28730 59 | maxAmount = 28730 60 | } 61 | 62 | RESOURCE 63 | { 64 | name = Oxidizer 65 | amount = 35114 66 | maxAmount = 35114 67 | } 68 | 69 | MODULE 70 | { 71 | name = FlagDecal 72 | textureQuadName = FlagMesh 73 | } 74 | bulkheadProfiles = size4 75 | } 76 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWPetalAdapter3m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWPetalAdapter3m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m_L.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m_L.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m_L.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m_L.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m_L.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m_L.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x2m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x2m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x3m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x3m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_2x1m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_2x1m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_3x2m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_3x2m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_5x3m.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_5x3m.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Control_5mASAS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Control_5mASAS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5RCS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL0_5RCS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL1.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL1.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL2.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL2.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL4.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mL4.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mPancakeL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_1mPancakeL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5RCS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL0_5RCS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL1.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL1.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL2.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL2.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4A.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mL4A.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mPancakeL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_2mPancakeL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5RCS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL0_5RCS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL1.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL1.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL2.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL2.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4A.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mL4A.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mPancakeL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_3mPancakeL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL0_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL0_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL1_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL1_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL3_5.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Fuel_5mL3_5.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Solid_SepMotorLarge.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_Solid_SepMotorLarge.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfin.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfin.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfinGC.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/KWfinGC.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/PancakeF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/PancakeF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/PancakeF1Norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/PancakeF1Norm.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/RCSInnerF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/RCSInnerF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/RCSInnerF1Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Fuel/KW_Universal_Tanks/RCSInnerF1Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsPod/KW_RCS_2mPod.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsPod/KW_RCS_2mPod.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsPod/rcspod8Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsPod/rcspod8Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsPod/rcspodNormals_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsPod/rcspodNormals_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad/KW_RCS_1mBlock.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsQuad/KW_RCS_1mBlock.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad/KWrcsQuad.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWrcsQuad 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/RCS/KWrcsQuad/KW_RCS_1mBlock 12 | scale = 1,1,1 13 | } 14 | scale = 1.0 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 19 | 20 | 21 | 22 | // --- editor parameters --- 23 | TechRequired = advFlightControl 24 | entryCost = 3400 25 | cost = 450 26 | category = Control 27 | subcategory = 0 28 | title = #KW_KWrcsQuad_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KWrcsQuad_desc 31 | 32 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 33 | attachRules = 0,1,0,0,0 34 | 35 | // --- standard part parameters --- 36 | mass = 0.05 37 | dragModelType = default 38 | maximum_drag = 0.001 39 | minimum_drag = 0.001 40 | angularDrag = 2 41 | crashTolerance = 15 42 | maxTemp = 3600 43 | 44 | tags = [kwrock cluster control dock maneuver manoeuvre react rendezvous rotate stab steer translate 45 | 46 | bulkheadProfiles = srf 47 | 48 | // --- rcs module parameters --- 49 | 50 | EFFECTS 51 | { 52 | running 53 | { 54 | AUDIO 55 | { 56 | channel = Ship 57 | clip = sound_rocket_mini 58 | volume = 0.0 0.0 59 | volume = 0.02 0.2 60 | volume = 0.2 0.2 61 | volume = 0.4 0.2 62 | pitch = 0.0 0.75 63 | pitch = 1.0 1.5 64 | loop = true 65 | } 66 | MODEL_MULTI_PARTICLE 67 | { 68 | modelName = Squad/FX/Monoprop_small 69 | transformName = RCSthruster 70 | emission = 0.0 0.0 71 | emission = 0.1 0.0 72 | emission = 0.4 1.0 73 | speed = 0.0 0.8 74 | speed = 1.0 1.0 75 | localRotation = -90, 0, 0 76 | } 77 | } 78 | } 79 | MODULE 80 | { 81 | name = ModuleRCSFX 82 | thrusterTransformName = RCSthruster 83 | thrusterPower = 0.4 84 | resourceName = MonoPropellant 85 | runningEffectName = running 86 | atmosphereCurve 87 | { 88 | key = 0 270 89 | key = 1 80 90 | } 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad/KWrcsQuad8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsQuad/KWrcsQuad8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad45/KW_RCS_1mBlock45.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsQuad45/KW_RCS_1mBlock45.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad45/KWrcsQuad45.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWrcsQuad45 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/RCS/KWrcsQuad45/KW_RCS_1mBlock45 12 | scale = 1,1,1 13 | } 14 | scale = 1.0 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_attach = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 19 | 20 | 21 | 22 | // --- editor parameters --- 23 | TechRequired = advFlightControl 24 | entryCost = 3400 25 | cost = 450 26 | category = Control 27 | subcategory = 0 28 | title = #KW_KWrcsQuad45_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KWrcsQuad45_desc 31 | 32 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 33 | attachRules = 0,1,0,0,0 34 | 35 | // --- standard part parameters --- 36 | mass = 0.05 37 | dragModelType = default 38 | maximum_drag = 0.001 39 | minimum_drag = 0.001 40 | angularDrag = 2 41 | crashTolerance = 15 42 | maxTemp = 3600 43 | 44 | tags = [kwrock cluster control dock maneuver manoeuvre react rendezvous rotate stab steer translate 45 | 46 | bulkheadProfiles = srf 47 | 48 | // --- rcs module parameters --- 49 | EFFECTS 50 | { 51 | running 52 | { 53 | AUDIO 54 | { 55 | channel = Ship 56 | clip = sound_rocket_mini 57 | volume = 0.0 0.0 58 | volume = 0.02 0.2 59 | volume = 0.2 0.2 60 | volume = 0.4 0.2 61 | pitch = 0.0 0.75 62 | pitch = 1.0 1.5 63 | loop = true 64 | } 65 | MODEL_MULTI_PARTICLE 66 | { 67 | modelName = Squad/FX/Monoprop_small 68 | transformName = RCSthruster 69 | emission = 0.0 0.0 70 | emission = 0.1 0.0 71 | emission = 0.4 1.0 72 | speed = 0.0 0.8 73 | speed = 1.0 1.0 74 | localRotation = -90, 0, 0 75 | } 76 | } 77 | } 78 | MODULE 79 | { 80 | name = ModuleRCSFX 81 | thrusterTransformName = RCSthruster 82 | thrusterPower = 0.4 83 | resourceName = MonoPropellant 84 | runningEffectName = running 85 | atmosphereCurve 86 | { 87 | key = 0 270 88 | key = 1 80 89 | } 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/RCS/KWrcsQuad45/RCSquad45.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/RCS/KWrcsQuad45/RCSquad45.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeI8bit512.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeI8bit512.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeIEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeIEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeINormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/025mGlobeI/GlobeINormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/025mGlobeI/KW_025mSRBGlobeI.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/025mGlobeI/KW_025mSRBGlobeI.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbF1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbF1.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbF1Emiss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbF1Emiss.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/075mAeroSRBs/075mAerosrbNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/075mAeroSRBs/KW_075mAeroSRB_L.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/075mAeroSRBs/KW_075mAeroSRB_L.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/075mAeroSRBs/KW_075mAeroSRB_S.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/075mAeroSRBs/KW_075mAeroSRB_S.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRB8Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRB8Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRBEmiss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRBEmiss.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRBNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/150mSRBs/150mSRBNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/150mSRBs/KW_150mSRB_L.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/150mSRBs/KW_150mSRB_L.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/150mSRBs/KW_150mSRB_S.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/150mSRBs/KW_150mSRB_S.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bitEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bitEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bitNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mInlineThor/InlineThor8bitNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mInlineThor/KW_250mSRBInlineThorL.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mInlineThor/KW_250mSRBInlineThorL.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mInlineThor/KW_250mSRBInlineThorS.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mInlineThor/KW_250mSRBInlineThorS.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mSRBThor/KWThor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mSRBThor/KWThor.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mSRBThor/KW_250mSRBThor.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mSRBThor/KW_250mSRBThor.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mSRBThor/ThorEmissive.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mSRBThor/ThorEmissive.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/250mSRBThor/ThorNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/250mSRBThor/ThorNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/SRBUllage/KW_SRBUllage.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/SRBUllage/KW_SRBUllage.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/SRBUllage/ullage8Bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/SRBUllage/ullage8Bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Solids/SRBUllage/ullageNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Solids/SRBUllage/ullageNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KW3mDockingRing/KW3mDockingRing.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | name = KW3mDockingRing 4 | module = Part 5 | author = KW Rocketry 6 | 7 | MODEL 8 | { 9 | model = KWRocketry/Parts/Structural/KW3mDockingRing/KW_Struct_3mDockingRing 10 | scale = 1.25, 1.25, 1.25 11 | } 12 | rescaleFactor = 1.0 13 | scale = 1.25 14 | 15 | // --- node definitions --- 16 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 17 | 18 | 19 | node_stack_dockingNode = 0.0, 0.001, 0.0, 0.0, 1.0, 0.0, 2 20 | node_stack_bottom = 0.0, -1.160, 0.0, 0.0, -1.0, 0.0, 2 21 | 22 | // --- editor parameters --- 23 | TechRequired = metaMaterials 24 | entryCost = 14400 25 | cost = 1200 26 | category = Utility 27 | subcategory = 0 28 | title = #KW_KW3mDockingRing_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KW3mDockingRing_desc 31 | 32 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 33 | attachRules = 1,0,1,1,0 34 | 35 | // --- standard part parameters --- 36 | mass = 1.5 37 | dragModelType = default 38 | maximum_drag = 0.2 39 | minimum_drag = 0.2 40 | angularDrag = 2 41 | crashTolerance = 25 42 | breakingForce = 50000 43 | breakingTorque = 50000 44 | maxTemp = 3400 45 | 46 | tags = [kwrock berth capture connect couple dock fasten join moor socket 47 | 48 | bulkheadProfiles = size3 49 | 50 | MODULE 51 | { 52 | name = ModuleDockingNode 53 | nodeType = size2 54 | referenceAttachNode = dockingNode 55 | nodeTransformName = dockingNode 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KW3mDockingRing/KW_Struct_3mDockingRing.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KW3mDockingRing/KW_Struct_3mDockingRing.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KW3mDockingRing/UVW3mDocking8bit.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KW3mDockingRing/UVW3mDocking8bit.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KW3mDockingRing/UVW3mDockingNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KW3mDockingRing/UVW3mDockingNormal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW1875mDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW1875mDecoupler 5 | module = Part 6 | author = KW Rocketry 7 | 8 | MODEL 9 | { 10 | model = KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler 11 | scale = 1.875, 1.875, 1.875 12 | } 13 | rescaleFactor = 1.0 14 | scale = 1.875 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_stack_bottom = 0.0, -0.052, 0.0, 0.0, -1.0, 0.0, 1 19 | node_stack_top = 0.0, 0.052, 0.0, 0.0, 1.0, 0.0, 1 20 | 21 | // --- FX definitions --- 22 | 23 | fx_gasBurst_white = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, decouple 24 | sound_decoupler_fire = decouple 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = engineering101 29 | entryCost = 1200 30 | cost = 325 31 | category = Coupling 32 | subcategory = 0 33 | title = #KW_KW1875mDecoupler_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW1875mDecoupler_title 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.375 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.2 44 | angularDrag = 2 45 | crashTolerance = 9 46 | breakingForce = 200 47 | breakingTorque = 200 48 | maxTemp = 3400 49 | fuelCrossFeed = False 50 | heatConductivity = 0.003 51 | 52 | stageOffset = 1 53 | childStageOffset = 1 54 | 55 | tags = [kwrock break decouple explo separat split 56 | 57 | bulkheadProfiles = size1p5 58 | 59 | MODULE 60 | { 61 | name = ModuleDecouple 62 | ejectionForce = 250 63 | explosiveNodeID = top 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW1mDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW1mDecoupler 5 | module = Part 6 | author = KW Rocketry 7 | 8 | MODEL 9 | { 10 | model = KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler 11 | scale = 1.25, 1.25, 1.25 12 | } 13 | rescaleFactor = 1.0 14 | scale = 1.25 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_stack_bottom = 0.0, -0.052, 0.0, 0.0, -1.0, 0.0, 1 19 | node_stack_top = 0.0, 0.052, 0.0, 0.0, 1.0, 0.0, 1 20 | 21 | // --- FX definitions --- 22 | 23 | fx_gasBurst_white = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, decouple 24 | sound_decoupler_fire = decouple 25 | 26 | 27 | // --- editor parameters --- 28 | TechRequired = engineering101 29 | entryCost = 1200 30 | cost = 250 31 | category = Coupling 32 | subcategory = 0 33 | title = #KW_KW1mDecoupler_title 34 | manufacturer = KW Rocketry 35 | description = #KW_KW1mDecoupler_desc 36 | 37 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 38 | attachRules = 1,0,1,1,0 39 | 40 | // --- standard part parameters --- 41 | mass = 0.25 42 | dragModelType = default 43 | maximum_drag = 0.2 44 | minimum_drag = 0.2 45 | angularDrag = 2 46 | crashTolerance = 9 47 | breakingForce = 200 48 | breakingTorque = 200 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | heatConductivity = 0.003 52 | 53 | stageOffset = 1 54 | childStageOffset = 1 55 | 56 | tags = [kwrock break decouple explo separat split 57 | 58 | bulkheadProfiles = size1 59 | 60 | MODULE 61 | { 62 | name = ModuleDecouple 63 | ejectionForce = 250 64 | explosiveNodeID = top 65 | } 66 | bulkheadProfiles = size1 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW2mDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW2mDecoupler 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler 12 | scale = 2.5, 2.5, 2.5 13 | } 14 | rescaleFactor = 1.0 15 | scale = 2.5 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -0.052, 0.0, 0.0, -1.0, 0.0, 2 20 | node_stack_top = 0.0, 0.052, 0.0, 0.0, 1.0, 0.0, 2 21 | 22 | // --- FX definitions --- 23 | 24 | fx_gasBurst_white = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, decouple 25 | sound_decoupler_fire = decouple 26 | 27 | 28 | // --- editor parameters --- 29 | TechRequired = advConstruction 30 | entryCost = 2800 31 | cost = 440 32 | category = Coupling 33 | subcategory = 0 34 | title = #KW_KW2mDecoupler_title 35 | manufacturer = KW Rocketry 36 | description = #KW_KW2mDecoupler_desc 37 | 38 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 39 | attachRules = 1,0,1,1,0 40 | 41 | // --- standard part parameters --- 42 | mass = 0.5 43 | dragModelType = default 44 | maximum_drag = 0.2 45 | minimum_drag = 0.2 46 | angularDrag = 2 47 | crashTolerance = 9 48 | breakingForce = 200 49 | breakingTorque = 200 50 | maxTemp = 3400 51 | fuelCrossFeed = False 52 | heatConductivity = 0.003 53 | 54 | stageOffset = 1 55 | childStageOffset = 1 56 | 57 | tags = [kwrock break decouple explo separat split 58 | 59 | bulkheadProfiles = size2 60 | 61 | MODULE 62 | { 63 | name = ModuleDecouple 64 | ejectionForce = 250 65 | explosiveNodeID = top 66 | } 67 | bulkheadProfiles = size2 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW3mDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW3mDecoupler 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler 12 | scale = 3.75, 3.75, 3.75 13 | } 14 | rescaleFactor = 1.0 15 | scale = 3.75 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -0.052, 0.0, 0.0, -1.0, 0.0, 3 20 | node_stack_top = 0.0, 0.052, 0.0, 0.0, 1.0, 0.0, 3 21 | 22 | // --- FX definitions --- 23 | 24 | fx_gasBurst_white = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, decouple 25 | sound_decoupler_fire = decouple 26 | 27 | 28 | // --- editor parameters --- 29 | TechRequired = specializedConstruction 30 | entryCost = 5800 31 | cost = 750 32 | category = Coupling 33 | subcategory = 0 34 | title = #KW_KW3mDecoupler_title 35 | manufacturer = KW Rocketry 36 | description = #KW_KW3mDecoupler_desc 37 | 38 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 39 | attachRules = 1,0,1,1,0 40 | 41 | // --- standard part parameters --- 42 | mass = 2 43 | dragModelType = default 44 | maximum_drag = 0.2 45 | minimum_drag = 0.2 46 | angularDrag = 2 47 | crashTolerance = 9 48 | breakingForce = 200 49 | breakingTorque = 200 50 | maxTemp = 3400 51 | fuelCrossFeed = False 52 | heatConductivity = 0.003 53 | 54 | stageOffset = 1 55 | childStageOffset = 1 56 | 57 | tags = [kwrock break decouple explo separat split 58 | 59 | bulkheadProfiles = size3 60 | 61 | MODULE 62 | { 63 | name = ModuleDecouple 64 | ejectionForce = 250 65 | explosiveNodeID = top 66 | } 67 | bulkheadProfiles = size3 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW5mStageDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KW5mStageDecoupler 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fairings/UnifiedFairings5m/KW_Struct_Decoupler5m 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | 20 | 21 | 22 | node_stack_bottom = 0.0, -0.141, 0.0, 0.0, -1.0, 0.0, 4 23 | node_stack_top = 0.0, 0.161, 0.0, 0.0, 1.0, 0.0, 4 24 | 25 | // --- FX definitions --- 26 | 27 | fx_gasBurst_white = 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, decouple 28 | sound_vent_large = decouple 29 | 30 | 31 | // --- editor parameters --- 32 | TechRequired = metaMaterials 33 | entryCost = 8500 34 | cost = 1000 35 | category = Coupling 36 | subcategory = 0 37 | title = #KW_KW5mStageDecoupler_title 38 | manufacturer = KW Rocketry 39 | description = #KW_KW5mStageDecoupler_desc 40 | 41 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 42 | attachRules = 1,0,1,1,0 43 | 44 | // --- standard part parameters --- 45 | mass = 1.6 46 | dragModelType = default 47 | maximum_drag = 0.2 48 | minimum_drag = 0.2 49 | angularDrag = 2 50 | crashTolerance = 9 51 | maxTemp = 3400 52 | fuelCrossFeed = False 53 | heatConductivity = 0.003 54 | 55 | breakingForce = 24000 56 | breakingTorque = 24000 57 | 58 | stageOffset = 1 59 | childStageOffset = 1 60 | 61 | tags = [kwrock break decouple explo separat split 62 | 63 | bulkheadProfiles = size4 64 | 65 | // --- Stage Separator parameters --- 66 | 67 | 68 | MODULE 69 | { 70 | name = ModuleDecouple 71 | ejectionForce = 750 72 | explosiveNodeID = top 73 | } 74 | bulkheadProfiles = size4 75 | } 76 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWDecoupler/KW_Struct_Decoupler.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/flatdecoupler Normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWDecoupler/flatdecoupler Normal.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWDecoupler/flatdecouplerx512.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWDecoupler/flatdecouplerx512.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/2x1FlatAdaptor.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/2x1FlatAdaptor.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/2x1Normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/2x1Normal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/KWFlatadapter2x1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWFlatadapter2x1 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Structural/KWFlatadapter2x1/KW_Struct_FlatAdapter21 12 | scale = 0.66666, 0.66666, 0.66666 13 | } 14 | scale = 0.66666 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_stack_top = 0.0, 0.600, 0.0, 0.0, 1.0, 0.0, 1 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 2 20 | 21 | 22 | // --- editor parameters --- 23 | TechRequired = advConstruction 24 | entryCost = 4500 25 | cost = 250 26 | category = 2 27 | subcategory = 0 28 | title = #KW_KWFlatadapter2x1_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KWFlatadapter2x1_desc 31 | 32 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 33 | attachRules = 1,0,1,1,0 34 | 35 | // --- standard part parameters --- 36 | mass = 0.1 37 | dragModelType = default 38 | maximum_drag = 0.2 39 | minimum_drag = 0.2 40 | angularDrag = 2 41 | crashTolerance = 9 42 | maxTemp = 3400 43 | fuelCrossFeed = True 44 | 45 | breakingForce = 8000 46 | breakingTorque = 8000 47 | 48 | stageOffset = 1 49 | childStageOffset = 1 50 | 51 | tags = [kwrock cone truncat adapt 52 | 53 | bulkheadProfiles = size1, size2 54 | // --- Stage Separator parameters --- 55 | 56 | } 57 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/KW_Struct_FlatAdapter21.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter2x1/KW_Struct_FlatAdapter21.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/3x1FlatAdapter.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/3x1FlatAdapter.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/3x1Normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/3x1Normal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/KWFlatadapter3x1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWFlatadapter3x1 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Structural/KWFlatadapter3x1/KW_Struct_FlatAdapter31 12 | scale = 0.66666, 0.66666, 0.66666 13 | } 14 | scale = 0.66666 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_stack_top = 0.0, 0.900, 0.0, 0.0, 1.0, 0.0, 1 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 3 20 | 21 | 22 | // --- editor parameters --- 23 | TechRequired = specializedConstruction 24 | entryCost = 5500 25 | cost = 400 26 | category = 2 27 | subcategory = 0 28 | title = #KW_KWFlatadapter3x1_title 29 | manufacturer = KW Rocketry 30 | description = #KW_KWFlatadapter3x1_desc 31 | 32 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 33 | attachRules = 1,0,1,1,0 34 | 35 | // --- standard part parameters --- 36 | mass = 0.3 37 | dragModelType = default 38 | maximum_drag = 0.2 39 | minimum_drag = 0.2 40 | angularDrag = 2 41 | crashTolerance = 9 42 | maxTemp = 3400 43 | fuelCrossFeed = True 44 | 45 | breakingForce = 15000 46 | breakingTorque = 15000 47 | 48 | stageOffset = 1 49 | childStageOffset = 1 50 | 51 | tags = [kwrock cone truncat adapt 52 | 53 | bulkheadProfiles = size1, size3 54 | // --- Stage Separator parameters --- 55 | 56 | } 57 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/KW_Struct_FlatAdapter31.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x1/KW_Struct_FlatAdapter31.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/3x2Flatadapter.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/3x2Flatadapter.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/3x2Normal_NRM.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/3x2Normal_NRM.dds -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/KWFlatadapter3x2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWFlatadapter3x2 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Structural/KWFlatadapter3x2/KW_Struct_FlatAdapter32 12 | scale = 0.66666, 0.66666, 0.66666 13 | } 14 | scale = 0.66666 15 | 16 | // --- node definitions --- 17 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 18 | node_stack_top = 0.0, 0.65, 0.0, 0.0, 1.0, 0.0, 2 19 | node_stack_bottom = 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 3 20 | 21 | 22 | 23 | // --- editor parameters --- 24 | TechRequired = specializedConstruction 25 | entryCost = 7000 26 | cost = 800 27 | category = 2 28 | subcategory = 0 29 | title = #KW_KWFlatadapter3x2_title 30 | manufacturer = KW Rocketry 31 | description = #KW_KWFlatadapter3x2_desc 32 | 33 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 34 | attachRules = 1,0,1,1,0 35 | 36 | // --- standard part parameters --- 37 | mass = 0.5 38 | dragModelType = default 39 | maximum_drag = 0.2 40 | minimum_drag = 0.2 41 | angularDrag = 2 42 | crashTolerance = 9 43 | maxTemp = 3400 44 | fuelCrossFeed = True 45 | 46 | breakingForce = 15000 47 | breakingTorque = 15000 48 | 49 | stageOffset = 1 50 | childStageOffset = 1 51 | 52 | tags = [kwrock cone truncat adapt 53 | 54 | bulkheadProfiles = size2, size3 55 | 56 | // --- Stage Separator parameters --- 57 | 58 | } 59 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/KW_Struct_FlatAdapter32.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/KWFlatadapter3x2/KW_Struct_FlatAdapter32.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter2x1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter2x1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter2x1 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m_L 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.075, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -1.0745, 0.0, 0.0, -1.0, 0.0, 2 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = advConstruction 28 | entryCost = 1239 29 | cost = 2478 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter2x1_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter2x1_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.778 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size1, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 560 58 | maxAmount = 560 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 684 65 | maxAmount = 684 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter2x1S.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter2x1-Short 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter2x1S 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_2x1m 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.527, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -0.540, 0.0, 0.0, -1.0, 0.0, 2 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = advConstruction 28 | entryCost = 570 29 | cost = 1140 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter2x1S_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter2x1S_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 0.389 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size1, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 280 58 | maxAmount = 280 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 342 65 | maxAmount = 342 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter3x1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter3x1 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter3x1 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m_L 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 3.173, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -1.075, 0.0, 0.0, -1.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = specializedConstruction 28 | entryCost = 4720 29 | cost = 9439 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter3x1_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter3x1_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 2.986 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size1, size3 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 2150 58 | maxAmount = 2150 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 2628 65 | maxAmount = 2628 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter3x1S.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter3x1S 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter3x1S 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x1m 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.07882, 0.0, 0.0, 1.0, 0.0, 1 23 | node_stack_bottom = 0.0, -1.076, 0.0, 0.0, -1.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = specializedConstruction 28 | entryCost = 2308 29 | cost = 4617 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter3x1S_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter3x1S_desc 35 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 36 | attachRules = 1,0,1,1,0 37 | 38 | // --- standard part parameters --- 39 | mass = 1.5 40 | dragModelType = default 41 | maximum_drag = 0.2 42 | minimum_drag = 0.3 43 | angularDrag = 2 44 | crashTolerance = 6 45 | maxTemp = 2000 46 | breakingForce = 10000 47 | breakingTorque = 10000 48 | 49 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 50 | 51 | bulkheadProfiles = size1, size3 52 | 53 | RESOURCE 54 | { 55 | name = LiquidFuel 56 | amount = 1080 57 | maxAmount = 1080 58 | } 59 | 60 | RESOURCE 61 | { 62 | name = Oxidizer 63 | amount = 1320 64 | maxAmount = 1320 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter3x2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter3x2 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter3x2 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m_L 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.0775, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -1.0755, 0.0, 0.0, -1.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = specializedConstruction 28 | entryCost = 3373 29 | cost = 6748 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter3x2_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter3x2_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 2.236 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size3, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 1610 58 | maxAmount = 1610 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 1968 65 | maxAmount = 1968 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter3x2S.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter3x2S 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter3x2S 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_3x2m 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.555, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -0.562, 0.0, 0.0, -1.0, 0.0, 3 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = specializedConstruction 28 | entryCost = 1625 29 | cost = 3250 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter3x2S_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter3x2S_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 1.167 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size3, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 840 58 | maxAmount = 840 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 1027 65 | maxAmount = 1027 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter5x2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter5x2 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter5x2 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x2m 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 1.703, 0.0, 0.0, 1.0, 0.0, 2 23 | node_stack_bottom = 0.0, -1.331, 0.0, 0.0, -1.0, 0.0, 4 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = metaMaterials 28 | entryCost = 7025 29 | cost = 14055 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter5x2_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter5x2_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 4.750 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size4, size2 53 | 54 | RESOURCE 55 | { 56 | name = LiquidFuel 57 | amount = 3420 58 | maxAmount = 3420 59 | } 60 | 61 | RESOURCE 62 | { 63 | name = Oxidizer 64 | amount = 4180 65 | maxAmount = 4180 66 | } 67 | bulkheadProfiles = size4 68 | } 69 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWFuelAdapter/KWFuelAdapter5x3.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // Kerbal Space Program - Part Config 4 | // KWFuelAdapter5x3 5 | // 6 | 7 | // --- general parameters --- 8 | name = KWFuelAdapter5x3 9 | module = Part 10 | author = KW Rocketry 11 | 12 | // --- asset parameters --- 13 | MODEL 14 | { 15 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterF_5x3m 16 | scale = 1.25, 1.25, 1.25 17 | } 18 | rescaleFactor = 1.0 19 | scale = 1.25 20 | 21 | // --- node definitions --- 22 | node_stack_top = 0.0, 0.949, 0.0, 0.0, 1.0, 0.0, 3 23 | node_stack_bottom = 0.0, -0.868, 0.0, 0.0, -1.0, 0.0, 5 24 | 25 | 26 | // --- editor parameters --- 27 | TechRequired = metaMaterials 28 | entryCost = 5296 29 | cost = 10593 30 | category = FuelTank 31 | subcategory = 0 32 | title = #KW_KWFuelAdapter5x3_title 33 | manufacturer = KW Rocketry 34 | description = #KW_KWFuelAdapter5x3_desc 35 | 36 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 37 | attachRules = 1,0,1,1,0 38 | 39 | // --- standard part parameters --- 40 | mass = 3.833 41 | dragModelType = default 42 | maximum_drag = 0.2 43 | minimum_drag = 0.3 44 | angularDrag = 2 45 | crashTolerance = 6 46 | maxTemp = 2000 47 | breakingForce = 10000 48 | breakingTorque = 10000 49 | 50 | tags = [kwrock fueltank ?lfo liquid oxidizer propellant rocket cone truncat adapt 51 | 52 | bulkheadProfiles = size3, size4 53 | RESOURCE 54 | { 55 | name = LiquidFuel 56 | amount = 2760 57 | maxAmount = 2760 58 | } 59 | 60 | RESOURCE 61 | { 62 | name = Oxidizer 63 | amount = 3373 64 | maxAmount = 3373 65 | } 66 | bulkheadProfiles = size4 67 | } 68 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWadapter2x1/KWadapter2x1.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWadapter2x1 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_2x1m 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -0.852, 0.0, 0.0, -1.0, 0.0, 2 20 | node_stack_bottom2 = 0.0, -0.80, 0.0, 0.0, 1.0, 0.0, 2 21 | node_stack_top = 0.0, 0.8, 0.0, 0.0, 1.0, 0.0, 1 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 0.849, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = advConstruction 31 | entryCost = 3500 32 | cost = 750 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KWadapter2x1_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KWadapter2x1_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 0.1 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | 52 | breakingForce = 8000 53 | breakingTorque = 8000 54 | 55 | stageOffset = 1 56 | childStageOffset = 1 57 | 58 | tags = [kwrock break decouple explo separat split inter stage shroud fairing 59 | 60 | bulkheadProfiles = size1, size2 61 | 62 | // --- Stage Separator parameters --- 63 | 64 | MODULE 65 | { 66 | name = ModuleDecouple 67 | ejectionForce = 100 68 | isOmniDecoupler = true 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/KWadapter3x2/KWadapter3x2.cfg: -------------------------------------------------------------------------------- 1 | PART 2 | { 3 | // --- general parameters --- 4 | name = KWadapter3x2 5 | module = Part 6 | author = KW Rocketry 7 | 8 | // --- asset parameters --- 9 | MODEL 10 | { 11 | model = KWRocketry/Parts/Fuel/KW_Universal_Tanks/KW_AdapterS_3x2m 12 | scale = 1.25, 1.25, 1.25 13 | } 14 | rescaleFactor = 1.0 15 | scale = 1.25 16 | 17 | // --- node definitions --- 18 | // definition format is Position X, Position Y, Position Z, Up X, Up Y, Up Z 19 | node_stack_bottom = 0.0, -1.079, 0.0, 0.0, -1.0, 0.0, 3 20 | node_stack_bottom2 = 0.0, -1.029, 0.0, 0.0, 1.0, 0.0, 3 21 | node_stack_top = 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2 22 | 23 | // --- FX definitions --- 24 | 25 | fx_gasBurst_white = 0.0, 1.076, 0.0, 0.0, 1.0, 0.0, decouple 26 | sound_decoupler_fire = decouple 27 | 28 | 29 | // --- editor parameters --- 30 | TechRequired = specializedConstruction 31 | entryCost = 6000 32 | cost = 1200 33 | category = 2 34 | subcategory = 0 35 | title = #KW_KWadapter3x2_title 36 | manufacturer = KW Rocketry 37 | description = #KW_KWadapter3x2_desc 38 | 39 | // attachment rules: stack, srfAttach, allowStack, allowSrfAttach, allowCollision 40 | attachRules = 1,0,1,1,0 41 | 42 | // --- standard part parameters --- 43 | mass = 1 44 | dragModelType = default 45 | maximum_drag = 0.2 46 | minimum_drag = 0.2 47 | angularDrag = 2 48 | crashTolerance = 9 49 | maxTemp = 3400 50 | fuelCrossFeed = False 51 | 52 | breakingForce = 18000 53 | breakingTorque = 18000 54 | 55 | stageOffset = 1 56 | childStageOffset = 1 57 | 58 | tags = [kwrock break decouple explo separat split inter stage shroud fairing 59 | 60 | bulkheadProfiles = size3, size2 61 | // --- Stage Separator parameters --- 62 | 63 | MODULE 64 | { 65 | name = ModuleDecouple 66 | ejectionForce = 1000 67 | isOmniDecoupler = true 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/kwstrutConnectorHeavy/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/kwstrutConnectorHeavy/model.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/kwstrutConnectorHeavy/model000.mbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/kwstrutConnectorHeavy/model000.mbm -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/kwstrutConnectorMedium/model.mu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/kwstrutConnectorMedium/model.mu -------------------------------------------------------------------------------- /GameData/KWRocketry/Parts/Structural/kwstrutConnectorMedium/model000.mbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Parts/Structural/kwstrutConnectorMedium/model000.mbm -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PM_GraduatedPowerResponse.cfg: -------------------------------------------------------------------------------- 1 | PatchManager 2 | { 3 | // Required settings. 4 | // srcPath should use forward slashes, and include the full file name. srcPath should be in a directory 5 | // called ".../PatchManager/PluginData" 6 | modName = KW Rocketry 7 | patchName = GraduatedPowerResponse 8 | srcPath = KWRocketry/PatchManager/PluginData/GraduatedPowerResponse.cfg 9 | shortDescr = Graduated Power Response 10 | 11 | // Optional, but recommended 12 | longDescr = Makes the engines take time to spool up and down 13 | 14 | 15 | //// Optional entries here 16 | 17 | // dependencies, only show this patch if these specified mods are available 18 | // List either the directory of the mod (as show by ModuleManager), or the 19 | // mod DLL (as show by ModuleManager) 20 | //dependencies = 21 | 22 | // Path to icon, if desired. Can be a flag 23 | icon = KWRocketry/Flags/KWFlag04 24 | 25 | // Author's name, if desired 26 | author = Linuxgurugamer 27 | } 28 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PM_NameChanges.cfg: -------------------------------------------------------------------------------- 1 | PatchManager 2 | { 3 | // Required settings. 4 | // srcPath should use forward slashes, and include the full file name. srcPath should be in a directory 5 | // called ".../PatchManager/PluginData" 6 | modName = KW Rocketry 7 | patchName = NameChanges 8 | srcPath = KWRocketry/PatchManager/PluginData/NameChanges.cfg 9 | shortDescr = Truncate part names 10 | 11 | // Optional, but recommended 12 | longDescr = Remove the "KW Rocketry" from the title of the parts 13 | 14 | 15 | //// Optional entries here 16 | exclusions = ShortenName 17 | 18 | // dependencies, only show this patch if these specified mods are available 19 | // List either the directory of the mod (as show by ModuleManager), or the 20 | // mod DLL (as show by ModuleManager) 21 | //dependencies = 22 | 23 | // Path to icon, if desired. Can be a flag 24 | icon = KWRocketry/Flags/KWFlag04 25 | 26 | // Author's name, if desired 27 | author = Linuxgurugamer,Tyko 28 | } 29 | 30 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PM_PoodSRBPatch.cfg: -------------------------------------------------------------------------------- 1 | PatchManager 2 | { 3 | // Required settings. 4 | // srcPath should use forward slashes, and include the full file name. srcPath should be in a directory 5 | // called ".../PatchManager/PluginData" 6 | modName = KW Rocketry 7 | patchName = Poodmund's SRB Patch 8 | srcPath = KWRocketry/PatchManager/PluginData/Pood_KW_SRB_Patch.cfg 9 | shortDescr = Make SRBs stock-alike 10 | 11 | // Optional, but recommended 12 | longDescr = Pood's Patches for KW Rocketry SRBs adjusting dry mass, fuel capacity and thrust to fall in line, more so, with Stock SRBs. I've always felt that the KW SRBs (mostly the Globe V, VI, X and X-2) could do with some re-balancing as they tend to have way too much thrust for their size when compared to the other SRBs and especially the stock SRBs (minus the RT-5 and R-10 which sit way outside the other motors stats wise). To this end, I tried to find sensible dry mass/volume, fuel capacity/volume and thrust/wet mass ratios, from the stock SRBs and retroactively apply them back to the KW SRBs to try and balance them against the stock game a lot more. I fell on values of around 0.195t/m^3 for dry mass, around 130 SolidFuel units/m^3 and around 28kN/t for thrust to weight. 13 | 14 | 15 | //// Optional entries here 16 | 17 | // dependencies, only show this patch if these specified mods are available 18 | // List either the directory of the mod (as show by ModuleManager), or the 19 | // mod DLL (as show by ModuleManager) 20 | //dependencies = 21 | 22 | // Path to icon, if desired. Can be a flag 23 | icon = KWRocketry/Flags/KWFlag04 24 | 25 | // Author's name, if desired 26 | author = Poodmund 27 | } 28 | 29 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PM_ShortenNameChanges.cfg: -------------------------------------------------------------------------------- 1 | PatchManager 2 | { 3 | // Required settings. 4 | // srcPath should use forward slashes, and include the full file name. srcPath should be in a directory 5 | // called ".../PatchManager/PluginData" 6 | modName = KW Rocketry 7 | patchName = ShortenName 8 | srcPath = KWRocketry/PatchManager/PluginData/ShortenName.cfg 9 | shortDescr = Shorten part names 10 | 11 | // Optional, but recommended 12 | longDescr = Replace the "KW Rocketry" with "KW-R" in the titles 13 | 14 | 15 | //// Optional entries here 16 | exclusions = NameChanges 17 | 18 | // dependencies, only show this patch if these specified mods are available 19 | // List either the directory of the mod (as show by ModuleManager), or the 20 | // mod DLL (as show by ModuleManager) 21 | //dependencies = 22 | 23 | // Path to icon, if desired. Can be a flag 24 | icon = KWRocketry/Flags/KWFlag04 25 | 26 | // Author's name, if desired 27 | author = Linuxgurugamer,Tyko 28 | } 29 | 30 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PM_SizeTankDecoupler.cfg: -------------------------------------------------------------------------------- 1 | PatchManager 2 | { 3 | // Required settings. 4 | // srcPath should use forward slashes, and include the full file name. srcPath should be in a directory 5 | // called ".../PatchManager/PluginData" 6 | modName = KW Rocketry 7 | patchName = Side Tank Decouplers 8 | srcPath = KWRocketry/PatchManager/PluginData/sideTankDecoupler.cfg 9 | shortDescr = Side tank decouplers 10 | 11 | // Optional, but recommended 12 | longDescr = Adds built-in decouplers to the two side tanks 13 | 14 | 15 | //// Optional entries here 16 | 17 | // dependencies, only show this patch if these specified mods are available 18 | // List either the directory of the mod (as show by ModuleManager), or the 19 | // mod DLL (as show by ModuleManager) 20 | //dependencies = 21 | 22 | // Path to icon, if desired. Can be a flag 23 | icon = KWRocketry/Flags/KWFlag04 24 | 25 | // Author's name, if desired 26 | author = Linuxgurugamer 27 | } 28 | 29 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PluginData/GraduatedPowerResponse.cfg: -------------------------------------------------------------------------------- 1 | @PART[KW1mengineMaverick1D] 2 | { 3 | @MODULE[ModuleEnginesFX] 4 | { 5 | useEngineResponseTime = True 6 | engineAccelerationSpeed = 1.3 7 | engineDecelerationSpeed = 1.5 8 | } 9 | } 10 | @PART[KW1mengineWildCatV] 11 | { 12 | @MODULE[ModuleEnginesFX] 13 | { 14 | useEngineResponseTime = True 15 | engineAccelerationSpeed = 2.00 16 | engineDecelerationSpeed = 2.30 17 | } 18 | } 19 | 20 | @PART[KW2mengineGriffonG8D] 21 | { 22 | @MODULE[ModuleEnginesFX] 23 | { 24 | useEngineResponseTime = True 25 | engineAccelerationSpeed = 0.70 26 | engineDecelerationSpeed = 0.80 27 | } 28 | } 29 | @PART[KW2mengineMaverickV] 30 | { 31 | @MODULE[ModuleEnginesFX] 32 | { 33 | useEngineResponseTime = True 34 | engineAccelerationSpeed = 1.75 35 | engineDecelerationSpeed = 1.95 36 | } 37 | } 38 | @PART[KW3mengineGriffonXX] 39 | { 40 | @MODULE[ModuleEnginesFX] 41 | { 42 | useEngineResponseTime = True 43 | engineAccelerationSpeed = 0.60 44 | engineDecelerationSpeed = 0.75 45 | } 46 | } 47 | @PART[KW3mengineTitanT1] 48 | { 49 | @MODULE[ModuleEnginesFX] 50 | { 51 | useEngineResponseTime = True 52 | engineAccelerationSpeed = 0.30 53 | engineDecelerationSpeed = 0.45 54 | } 55 | } 56 | @PART[KW5mengineGriffonC] 57 | { 58 | @MODULE[ModuleEnginesFX] 59 | { 60 | useEngineResponseTime = True 61 | engineAccelerationSpeed = 2.00 62 | engineDecelerationSpeed = 2.30 63 | } 64 | } 65 | 66 | 67 | 68 | @PART[KW5mengineTitanV] 69 | { 70 | @MODULE[ModuleEnginesFX] 71 | { 72 | useEngineResponseTime = True 73 | engineAccelerationSpeed = 1.50 74 | engineDecelerationSpeed = 1.80 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /GameData/KWRocketry/PatchManager/PluginData/sideTankDecoupler.cfg: -------------------------------------------------------------------------------- 1 | @PART[KW2Sidetank|KW3Sidetank] 2 | { 3 | @fuelCrossFeed = false 4 | MODULE 5 | { 6 | name = ModuleDecouple 7 | explosiveNodeID = srf 8 | isOmniDecoupler = false 9 | ejectionForce = 300 10 | } 11 | MODULE 12 | { 13 | name = ModuleToggleCrossfeed 14 | crossfeedStatus = false 15 | toggleEditor = true 16 | toggleFlight = true 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_altloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_altloop.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_altloop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_altloop2.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq1.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq10.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq11.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq2.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq3.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq4.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq5.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq6.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq7.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq8.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_liq9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_liq9.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_sepmotor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_sepmotor.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_sps.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_sps.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_spsloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_spsloop.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_srb1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_srb1.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_srb2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_srb2.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_srb3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_srb3.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_srb4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_srb4.wav -------------------------------------------------------------------------------- /GameData/KWRocketry/Soundbank/sound_srbloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/9c56a20993a02300519fcb0db2e1159eef00f567/GameData/KWRocketry/Soundbank/sound_srbloop.wav -------------------------------------------------------------------------------- /Installation Instructions.txt: -------------------------------------------------------------------------------- 1 | These are the instructions to install KWRocketry Rebalanced. 2 | 3 | See the changelog for specifics on the differences between this and the old 4 | KWRocketryRedux mod 5 | 6 | How to install: 7 | Firstly, Insure any older version of KW has been removed. (GameData/KWRocketry) 8 | 9 | 10 | ----MAIN INSTALLATION---- 11 | 12 | KWRocketry comes with an optional patch, which is installed using the included 13 | PatchManager mod There is no need to worry about merging directories anymore 14 | 15 | In the GameData directory, you will find the following directories: 16 | 17 | KWRocketry 18 | PatchManager 19 | 20 | The PatchManager is optional, and is only needed if you want to install the 21 | Graduated Power Response configurations 22 | 23 | Copy these directories to the GameData directory in your KSP game. 24 | 25 | And that's it. 26 | 27 | Enjoy 28 | 29 | -------------------------------------------------------------------------------- /KWRocketryRebalanced.version: -------------------------------------------------------------------------------- 1 | { 2 | "NAME": "KWRocketryRebalanced", 3 | "URL": "https://raw.githubusercontent.com/linuxgurugamer/KWRocketryRedux/refs/heads/master/KWRocketryRebalanced.version", 4 | "DOWNLOAD": "https://github.com/linuxgurugamer/KWRocketryRedux/releases", 5 | "VERSION": { 6 | "MAJOR": 3, 7 | "MINOR": 2, 8 | "PATCH": 7, 9 | "BUILD": 4 10 | }, 11 | "KSP_VERSION": { 12 | "MAJOR": 1, 13 | "MINOR": 4, 14 | "PATCH": 1 15 | }, 16 | "KSP_VERSION_MIN": { 17 | "MAJOR": 1, 18 | "MINOR": 8, 19 | "PATCH": 0 20 | }, 21 | "KSP_VERSION_MAX": { 22 | "MAJOR": 1, 23 | "MINOR": 12, 24 | "PATCH": 99 25 | }, 26 | "INSTALL_LOC_1": { 27 | "NAME": "KWRocketryRebalanced", 28 | "PATH": "", 29 | "DIRECTORY": "KWRocketry", 30 | "FILE": "KWRocketryRebalanced.version" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /KWRocketryRedux-Extras.netkan: -------------------------------------------------------------------------------- 1 | { 2 | "spec_version" : "v1.4", 3 | "identifier" : "KWRocketry-wExtras", 4 | "$kref" : "#/ckan/kerbalstuff/67", 5 | "license" : "CC-BY-SA-3.0", 6 | "name" : "KW Rocketry", 7 | "abstract" : "KW Rocketry is the premiere modpack produced by Kickasskyle and Winston. Built originally for KSP version .15, KW Rocketry has seen many iterations, and has been reworked for KSP version .22 up to what we see now. KW Rocketry was originally produced as a pack meant to add more parts with realistic balance to KSP, with a focus on VAB built vehicles. KSP has been widely used, however, for everything from fuel stations to shuttles and has seen many fan built craft posted on the KSP official forums.", 8 | "depends" : [ 9 | { "name" : "KWRocketry-CommunityFixes" }, 10 | ], 11 | "suggests" : [ 12 | { "name" : "KWRocketry-CommunityFixes-interstage" }, 13 | following needs repackaging, it overwrites files 14 | { "name" : "KWRocketry-InstantPowerResponse" }, 15 | { "name" : "KWRocketry-oldFARFairings" }, 16 | 17 | following not doable, overwrites squad files 18 | { "name" : "KWRocketry-ReduceClampSounds" }, 19 | 20 | Following not doable, no Subassemblies in root: 21 | # { "name" : "KWRocketry-Subassemblies4DefaultFairings" }, 22 | # { "name" : "KWRocketry-Subaddemblies4legacyFAR" } 23 | ], 24 | "install" : [ 25 | { 26 | "find" : "KWRocketry", 27 | "install_to": "GameData" 28 | } 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /KWRocketryRedux.netkan: -------------------------------------------------------------------------------- 1 | { 2 | "spec_version" : "v1.4", 3 | "identifier" : "KWRocketryRedux", 4 | "$kref" : "#/ckan/github/linuxgurugamer/KWRocketryRedux", 5 | "license" : "CC-BY-SA-3.0", 6 | "name" : "KW Rocketry Redux, including the Community Fixes", 7 | "abstract" : "This is the full KW Rocketry with the Community Fixes included. Repackaged so that the power configs are selecteable in CKAN", 8 | "resources" : { 9 | "homepage" : "https://github.com/linuxgurugamer/KWRocketryRedux" 10 | }, 11 | "depends": [ 12 | { "name" : "ModuleManager" }, 13 | { "name" : "KWRocketryRedux-power" } 14 | ], 15 | "conflicts" : [ 16 | { "name" : "KWRocketry" }, 17 | { "name" : "KWRocketry-CommunityFixes" }, 18 | { "name" : "KWRocketry-CommunityFixes-interstage" } 19 | ], 20 | "install" : [ 21 | { 22 | "find" : "KWRocketry/GameData/KWRocketry", 23 | "install_to": "GameData" 24 | } 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KWRocketryRedux -------------------------------------------------------------------------------- /a.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | awk ' 4 | { line[NR] = $0 5 | } 6 | /./ { lastNB = NR 7 | } 8 | END { for(i = 1; i <= NR; i++) 9 | if(i != lastNB) 10 | print line[i] 11 | }' KWRocketryRebalanced.version 12 | -------------------------------------------------------------------------------- /buildit.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set RELEASEDIR=d:\Users\jbb\release 4 | set ZIP="c:\Program Files\7-zip\7z.exe" 5 | 6 | copy KWRocketryRebalanced.version GameData\KWRocketry 7 | 8 | 9 | copy KWRocketryRebalanced.version a.version 10 | set VERSIONFILE=a.version 11 | rem set /p VERSION= "Enter version: " 12 | 13 | rem The following requires the JQ program, available here: https://stedolan.github.io/jq/download/ 14 | c:\local\jq-win64 ".VERSION.MAJOR" %VERSIONFILE% >tmpfile 15 | set /P major=tmpfile 18 | set /P minor=tmpfile 21 | set /P patch=tmpfile 24 | set /P build=