You are viewing a potentially older version of this package. View all versions.
MM94-MonsterFallDamage-1.0.1 icon

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-5.4.2202 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.

Preferred version: 5.4.2202

README

MonsterFallDamage

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

  1. Install BepInExPack Valheim
  2. Drop MonsterFallDamagePlugin.dll into BepInEx/plugins/
  3. 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