zer0Kerbal / SpaceYExpanded

An expansion pack for the SpaceY Heavy Lifters (SYL) parts addon and adds 7.5m parts, plus additional engines, accessories, and other parts that go beyond the original stated purpose of SpaceY Heavy Lifters. For Kerbal Space Program. **This pack requires SpaceY Corp (SYC), SpaceY Lifters (SYL) and Module Manager, to be installed as dependencies.**
https://forum.kerbalspaceprogram.com/index.php?/topic/211576-*/
Other
2 stars 6 forks source link

[PATCH] Penguin Engines Thrust #72

Closed zer0Kerbal closed 1 year ago

zer0Kerbal commented 1 year ago

@linuxgurugamer https://forum.kerbalspaceprogram.com/index.php?/topic/120012-14-spacey-expanded-v15-2018-04-02/&do=findComment&comment=4221465

linuxgurugamer image

Second, this is a patch that I use to adjust the maxthrust on three of the engines. Been a while since I made them, but I believe it was because they were underpowered:

//1750 * 4

//  SpaceY P1 "Penguin" Vacuum Engine
@PART[SYengine3mP1]:NEEDS[!CryoEngines]:AFTER[SpaceY-Expanded]
{
    @MODULE[ModuleEnginesFX]
    {
        @maxThrust = 1750
    }
}

//    SpaceY P2 "Dual-Penguin" Vacuum Engine
@PART[SYengine5mP2]:NEEDS[!CryoEngines]:AFTER[SpaceY-Expanded]
{
    @MODULE[ModuleEnginesFX]
    {
        @maxThrust = 3500
    }
}

// SpaceY P4 "Quad-Penguin" Vacuum Engine
@PART[SYengine7mP4]:NEEDS[!CryoEngines]:AFTER[SpaceY-Expanded]
{
    @MODULE[ModuleEnginesFX]
    {
        @maxThrust = 7000
    }
}