Tags
Creators
Details
1.2.0
Compatibility
Required content
Changes
Chestplate Timing Control
You can now control whether the chestplate damage trigger fires before or after the damage is applied to the player.
Before
Before is the old behaviour and remains the default. The hex is triggered and runs before damage is actually applied to the player. This permits tricks like applying a precise amount of absorption.
After
After is the new behaviour. It must be opted-into so as not to break existing hexes. The damage is applied to the player and only then does the hex fire. This prevents simple immortality hexes. The damage passed to the hex is the damage taken after factors like armour and absorption are applied.
Configuration
The behaviour is controlled by a configuration flag in the file hexchanting.properties in your mod configuration directory. Changing this flag will affect all hexes in new and existing worlds. It is technically safe to update this value without creating a new world, however hexes relying on the old triggering behaviour may no longer work as intended.
What's Changed
- Redo runtime deps in dev shell by @arconyx in https://github.com/arconyx/hexchanting/pull/18
- Make chestplate timing configurable by @arconyx in https://github.com/arconyx/hexchanting/pull/21
Full Changelog: https://github.com/arconyx/hexchanting/compare/v1.1.7...v1.2.0
Supplementary resources
| File | Type | Size | |
|---|---|---|---|
| hexchanting-1.2.0-sources.jar | Source jar | 73.25 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.
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:UlOmzEJF:VUs2loSx"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:UlOmzEJF:VUs2loSx"
}


