Skip to content

Commit

Permalink
Mk2Expansion 1.7.25
Browse files Browse the repository at this point in the history
Adds gimbals, various fixes
  • Loading branch information
SuicidalInsanity committed Nov 13, 2016
1 parent f147822 commit 912c96d
Show file tree
Hide file tree
Showing 74 changed files with 1,869 additions and 731 deletions.
17 changes: 17 additions & 0 deletions Mk2Expansion/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
1.7.25
=======================================================
-Fixes Service Bay occulsion issue
-Tweaked Ramjet ThrustCurve
-Tweaked Scramjet ThrustCurve
-Mule Turbofan moved to SupersonicFlight
-Scramjet moved to AerospaceTech, costs adjusted
-Increased Service Tank resource storage capacity
-FF5Way RCS now has Hullmetal White variant
-Mk2 reactor NFE mm patch tweaked, should now produce full rated power when using NFE
-Ramjet now has gimbal
-VTOL engine gimbals restored
-Added cockpit IVA ViewTransforms
-Model Rework: HS-X cockpit
-Model Rework; JE-1 'Mule' turbofan; added size1/mk2 attachment
-Banshee reverted to LF/O fuelmode; alternate fuel modes added via MM patches

1.7.20.1
=====================================================
-Fixes mesh configuration error with Mk2 nosebay
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//Use this patch to make the Banshee lift fans use LiquidFuel & IntakeAir. Mutually exclusive with the ElectricBanshee MM patch


@PART[M2X_FuselageLiftFan]:FOR[Mk2Expansion]
{
@MODULE[ModuleEnginesFX]
{
@PROPELLANT[Oxidizer]
{
@name = IntakeAir
@ratio = 12
}
}

}

@PART[M2X_LiftFan]:FOR[Mk2Expansion]
{
@MODULE[ModuleEnginesFX]
{
@PROPELLANT[Oxidizer]
{
@name = IntakeAir
@ratio = 12
}
}
}
30 changes: 30 additions & 0 deletions Mk2Expansion/Extras/Mk2Expansion/Patches/Mk2X_ElectricBanshee.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//Use this patch to make the Banshee lift fans use ElectricCharge. Mutually exclusive with the AirBreathingBanshee MM patch

@PART[M2X_FuselageLiftFan]:FOR[Mk2Expansion]
{
@MODULE[ModuleEnginesFX]
{
@PROPELLANT[LiquidFuel]
{
@name = ElectricCharge
@ratio = 1000
}
!PROPELLANT[Oxidizer] {}
}
!MODULE[ModuleAlternator] {}

}

@PART[M2X_LiftFan]:FOR[Mk2Expansion]
{
@MODULE[ModuleEnginesFX]
{
@PROPELLANT[LiquidFuel]
{
@name = ElectricCharge
@ratio = 1000
}
!PROPELLANT[Oxidizer] {}
}
!MODULE[ModuleAlternator] {}
}
48 changes: 48 additions & 0 deletions Mk2Expansion/GameData/CommunityResourcePack/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
0.6.1 - 2016.10.15
------------------
Resorted KSPI resources alphabeticly, added abbreviation and Added LqdArgon, LqdFluorine, LqdNitrogen15, LqdOxygen18

0.6.0 - (KSP 1.2)
-------------------
Added ARP icon data for RealFuels
Added/Updated distribution data for:
- Antimatter
- Helium3
- ArgonGas
- XenonGas
- LqdHydrogen
Added several new resources, including:
- HeavyWater
- Deuternium
- Helium4
- Silicates
- Borate
- ColonySupplies
- RefinedExotics


0.5.4 - (KSP 1.1.3)
------------------
Update for KSP 1.1.3
Updated cost of Plutonium
Added Lithium6, Carbon, and Monazite
Karborundum is now tweakable, and 4000 funds per unit (versus 400).
The Kerbol Karburundum harvesting zone is back... now go find it :)
Alumina and Monazite are now planetary resources.
Hydrates are a bit more common.
Added Glykerol (curated by DeepFreeze).

0.5.2 - 2016.05.14
------------------
Added Volume and reverted UF4 and ThF4 to original KSPI density & cost
Added Volume property to other resources used by KSPI
Added default volume to other CRP resources

0.5.1.1 - 2016.04.30
--------------------
KSP 1.1.2 compatibility

0.5.1 - 2016.04.30
------------------
KSP 1.1.1 compatibility

0.5.0 - 2016.03.29
------------------
Compatibility with KSP 1.1
Expand Down
10 changes: 5 additions & 5 deletions Mk2Expansion/GameData/CommunityResourcePack/CRP.version
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
},
"VERSION":{
"MAJOR":0,
"MINOR":5,
"PATCH":0,
"MINOR":6,
"PATCH":1,
"BUILD":0
},
"KSP_VERSION":{
"MAJOR":1,
"MINOR":1,
"MINOR":2,
"PATCH":0
},
"KSP_VERSION_MIN":{
"MAJOR":1,
"MINOR":0,
"MINOR":1,
"PATCH":0
},
"KSP_VERSION_MAX":{
"MAJOR":1,
"MINOR":1,
"MINOR":2,
"PATCH":0
}
}
Loading

0 comments on commit 912c96d

Please sign in to comment.