Nitro and zipper are faster + update README.cat

This commit is contained in:
ilikecats 2024-07-14 12:46:36 -07:00
parent 7d55d196c4
commit 2c56e19620
2 changed files with 10 additions and 7 deletions

View File

@ -10,8 +10,10 @@ What I've changed in the mod:
- Using nitro gives you nitro, instead of taking it away (can help beating
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.
- 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.

View File

@ -1013,19 +1013,20 @@ float KartProperties::getZipperDuration() const
// ----------------------------------------------------------------------------
float KartProperties::getZipperForce() const
{
return m_cached_characteristic->getZipperForce();
return m_cached_characteristic->getZipperForce() * 2.0f;
} // getZipperForce
// ----------------------------------------------------------------------------
float KartProperties::getZipperSpeedGain() const
{
return m_cached_characteristic->getZipperSpeedGain();
return m_cached_characteristic->getZipperSpeedGain() * 2.0f;
} // getZipperSpeedGain
// ----------------------------------------------------------------------------
float KartProperties::getZipperMaxSpeedIncrease() const
{
return m_cached_characteristic->getZipperMaxSpeedIncrease();
return 340282346638528859811704183484516925440.0f;
//return m_cached_characteristic->getZipperMaxSpeedIncrease();
} // getZipperMaxSpeedIncrease
// ----------------------------------------------------------------------------
@ -1151,13 +1152,13 @@ float KartProperties::getNitroDuration() const
// ----------------------------------------------------------------------------
float KartProperties::getNitroEngineForce() const
{
return m_cached_characteristic->getNitroEngineForce() * 2.0f;
return m_cached_characteristic->getNitroEngineForce() * 2.5f;
} // getNitroEngineForce
// ----------------------------------------------------------------------------
float KartProperties::getNitroEngineMult() const
{
return m_cached_characteristic->getNitroEngineMult() * 2.0f;
return m_cached_characteristic->getNitroEngineMult() * 2.5f;
} // getNitroEngineMult
// ----------------------------------------------------------------------------