Tags
Creators
Details
20.14.0
Compatibility
Required content
Changes
Fixed inBiome condition wording Fixed inBiome condition not inverting Fixed onBlock condition not applying when the player is on a block that is not full size Fixed hideBonusDescription not applying to partial set bonuses Fixed issue when there is only one enchantment and shouldHave = false
Added new conditions:
- onFire - is the entity on fire?
- isRiding - is the entity riding another entity?
- yLevelRange - is the entity between y1,y2? ("extra": "y1,y2")
- healthRange - is the entity's health between x,y? ("extra": "x,y")
- armorRange - is the entity's armor between x,y? ("extra": "x,y")
Updated existing conditions:
- inBiome - now supports tags (eg: #forge:is_forest, #c:forest)
Added "percentageChance" feature, when applying any bonus you can set it to apply with chance. This number should be between 0 (exclusive) and 100 (exclusive).
Added "tagData" field to SetPiece objects. You can now define a tag that the equipped item must have in order for the effect to apply. This can be in "or" or "and" mode. The tag must be an escaped JSON.
Example tagData: "boots": { "itemKey": "minecraft:leather_boots", "mustBeEmpty": false, "tagData": { "orMode": false, "tags": [ "{"Reforge":"quality_equipment.quality.crumbling"}", "{"test":"data"}" ] } }
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:jfBHPmBR:guOAe2lz"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:jfBHPmBR:guOAe2lz"
}


