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.
MonsterFallDamage
Monsters take fall damage just like players. Fully configurable — set minimum fall height, damage per interval, and optional damage cap.
By MM94
| Date uploaded | a day ago |
| Version | 1.0.1 |
| Download link | MM94-MonsterFallDamage-1.0.1.zip |
| Downloads | 40 |
| Dependency string | MM94-MonsterFallDamage-1.0.1 |
This mod requires the following mods to function
denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.2202README
MonsterFallDamage
![]()
Monsters now take fall damage just like players do in Valheim.
By default, the damage formula is identical to the player's — fully configurable to your liking.
Features
- All monsters take fall damage on landing
- Same formula as the player by default
- Dead monsters are safely ignored
- Multiplayer-safe (only the network owner calculates damage)
- Compatible with BepInEx Configuration Manager for in-game adjustments
Configuration
Located at: BepInEx/config/com.mods.monsterfallDamage.cfg
| Setting | Default | Description |
|---|---|---|
| Min Fall Height (m) | 4 | Falls below this height deal no damage |
| Damage Interval (m) | 16 | Damage added for every X meters fallen above the minimum |
| Damage Per Interval | 100 | Damage dealt per interval |
| Max Damage (0 = unlimited) | 100 | Cap on fall damage. 0 means no limit |
Default formula (same as player):
damage = (fallHeight - 4) / 16 × 100, capped at 100
Example — harsher setting (100 dmg per 6.5m, no cap):
Min Fall Height: 4 / Damage Interval: 6.5 / Damage Per Interval: 100 / Max Damage: 0
Installation
- Install BepInExPack Valheim
- Drop
MonsterFallDamagePlugin.dllintoBepInEx/plugins/ - Launch the game — config file is auto-generated on first run
Compatibility
- Valheim (latest)
- Works alongside other mods that add custom monsters
- No known conflicts
Changelog
1.0.1
- Config descriptions changed to English
- Manifest description updated to English
- Package structure improved (plugin subfolder)
1.0.0
- Initial release