Nitro and zipper are faster + update README.cat
This commit is contained in:
parent
7d55d196c4
commit
2c56e19620
@ -10,8 +10,10 @@ What I've changed in the mod:
|
|||||||
- Using nitro gives you nitro, instead of taking it away (can help beating
|
- Using nitro gives you nitro, instead of taking it away (can help beating
|
||||||
nitro collecting levels).
|
nitro collecting levels).
|
||||||
|
|
||||||
- Nitro engine force and mult are multiplied by two each.
|
- Nitro engine force and mult are multiplied by 2.5 each.
|
||||||
|
|
||||||
- There is no more auto rescue, use backspace instead.
|
- There is no more auto rescue, use backspace instead.
|
||||||
|
|
||||||
- The speed limit is practically removed (set to the highest float possible)
|
- The speed limit is practically removed (set to the highest float possible)
|
||||||
|
|
||||||
|
- The zipper powerup is VERY fast now, test it in the story mode level select level first.
|
||||||
|
@ -1013,19 +1013,20 @@ float KartProperties::getZipperDuration() const
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getZipperForce() const
|
float KartProperties::getZipperForce() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getZipperForce();
|
return m_cached_characteristic->getZipperForce() * 2.0f;
|
||||||
} // getZipperForce
|
} // getZipperForce
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getZipperSpeedGain() const
|
float KartProperties::getZipperSpeedGain() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getZipperSpeedGain();
|
return m_cached_characteristic->getZipperSpeedGain() * 2.0f;
|
||||||
} // getZipperSpeedGain
|
} // getZipperSpeedGain
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getZipperMaxSpeedIncrease() const
|
float KartProperties::getZipperMaxSpeedIncrease() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getZipperMaxSpeedIncrease();
|
return 340282346638528859811704183484516925440.0f;
|
||||||
|
//return m_cached_characteristic->getZipperMaxSpeedIncrease();
|
||||||
} // getZipperMaxSpeedIncrease
|
} // getZipperMaxSpeedIncrease
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
@ -1151,13 +1152,13 @@ float KartProperties::getNitroDuration() const
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getNitroEngineForce() const
|
float KartProperties::getNitroEngineForce() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getNitroEngineForce() * 2.0f;
|
return m_cached_characteristic->getNitroEngineForce() * 2.5f;
|
||||||
} // getNitroEngineForce
|
} // getNitroEngineForce
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getNitroEngineMult() const
|
float KartProperties::getNitroEngineMult() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getNitroEngineMult() * 2.0f;
|
return m_cached_characteristic->getNitroEngineMult() * 2.5f;
|
||||||
} // getNitroEngineMult
|
} // getNitroEngineMult
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user