Included content
| Name | |
|---|---|
This version adds a new system for handling coins dropped by mobs.
You can now assign a base value for a mob in the configuration file (/config/numismatic-overhaul.json5).
The mob will drop this amount on death, after being multiplied by the modifiers.
The gamerule moneyMobDropVariancePercentage directly modifies the base value in both directions (higher and lower).
By default, it is set to 50 (50%), meaning the mob will drop between 50% and 150% of the base value.
There is also the scaleOnHealth in the config file. Money dropped this way by default is multiplied by the mobs max health divided by twenty.
This option requires a restart to apply, and is generally a bit experimental. Be careful using it, since with really high HP it can lead to very high coin counts.
To offset the money drops in high HP contexts you can also use the healthScaleReduction to further reduce the impact of health scaling.
The full formula for coins looks like this: finalValue = baseValue * (variance) * ([mob max health] / (20 * healthScaleReduction))
| Name | |
|---|---|
| File | Type | Size | |
|---|---|---|---|
| numismatic-overhaul-0.3.2+1.21-sources.jar | Unknown | 253.14 KiB |
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.
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:ZXm8hVxN:IVK9SNFp"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ZXm8hVxN:IVK9SNFp"
}