Description
Makes the damage you deal when tumbling into enemies scale with upgrades. Using yourself as a weapon now should have more sense, especially during the late game.
Mod includes multiple configurable scaling methods, allowing you to customize how damage grows with upgrades:
- BetterTumble (flat multiplier)
- Formula: damage * scale
- e.g. 15 * 1.2 = 18 damage
- Linear
- Formula: damage * (scale * upgrades)
- e.g. 15 * (1.2 * 4) = 72 damage
- Square Root
- Formula: damage * (scale * √upgrades)
- e.g. 15 * (1.2 * √4) = 36 damage
- Cube Root
- Formula: damage * (scale * ∛upgrades)
- e.g. 15 * (1.2 * ∛4) = 25 damage
- Logarithmic
- Formula: damage * (scale * log₂(upgrades + 1))
- e.g. 15 * (1.2 * log₂(4 + 1)) = 42 damage
- Quadratic
- Formula: damage * (scale * upgrades²)
- e.g. 15 * (1.2 * 4²) = 288 damage
- Cubic
- Formula: damage * (scale * upgrades³)
- e.g. 15 * (1.2 * 4³) = 1152 damage
Only host needs this mod to work.
Forked off of BetterTumble by prxphet: https://thunderstore.io/c/repo/p/prxphet/BetterTumble/
Find me (sirinfinity) in the R.E.P.O modding discord server and ping me if you have found a bug or issue with the mod.
Planned Features:
- None :)