Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
ScalingTumbleLaunch
Makes the damage you deal when tumbling into enemies scale with upgrades.
By SirInfinity
| Date uploaded | 2 weeks ago |
| Version | 1.0.1 |
| Download link | SirInfinity-ScalingTumbleLaunch-1.0.1.zip |
| Downloads | 1199 |
| Dependency string | SirInfinity-ScalingTumbleLaunch-1.0.1 |
This mod requires the following mods to function
BepInEx-BepInExPack
BepInEx pack for Mono Unity games. Preconfigured and ready to use.
Preferred version: 5.4.2305README
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 :)
CHANGELOG
1.0.1
- Updated for newest version of Repo.
- Added a setting to change the mode of scaling for upgrades
1.0.0
Initial release