Tags
Creators
Details
Licensed MIT
Published 5 months ago
Updated 5 months ago
All versions
1.0.0
Release
Health Based Mob Scaling 1.0.05 months ago 220
Compatibility
Minecraft: Java Edition
1.21.11
Platform
Fabric
Supported environments
Client-side
Server-side
Required content
Unavailable version
Changes
๐ข v1.0 โ Initial Release
โจ Features
- Added health-based mob scaling system
- Mobs dynamically change size based on their current health
- Step height now scales with mob size
- Fully automatic system (no commands required)
โ๏ธ Mechanics
- Scale = Health ร 0.25
- Step Height = Health ร 0.125
- Only affects living entities (mobs)
๐ Performance
- Optimized update system (runs every 20 ticks / 1 second)
- Only affects mobs within 128 blocks of players
- Designed to minimize lag in survival worlds
๐ ๏ธ Technical
- Uses Minecraft attribute system (scale & step height)
- Safe attribute checks to prevent crashes
- Compatible with Fabric 1.21.11
๐ฆ Requirements
- Fabric Loader
- Fabric API
- Minecraft 1.21.11
๐ฎ Future Updates
- Config file for custom scaling values
- Smooth scaling transitions
- Per-mob customization options
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:XFznfOUS:p5A9pbeb"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:XFznfOUS:p5A9pbeb"
}

