Links
Tags
Creators
Details
0.1.1
Compatibility
Changes
WARNING: Highly advise you to run this Alpha mod in a NEW WORLD or your CURRENT BACKUPED SAVE for next one version
Special Effects:
- Anti-Underwater Drag — Near-zero water resistance. Cannot be fired in dry environments.
- Damage Increase — Flat damage boost. No extra effects.
- Armor Pierce — Ignores 70% of armor. Crossbow-only, 10-second cooldown.
- Drag Reduce — Higher initial velocity, lower air resistance. Fully drawn shots shatter blocks on impact.
- ⚠️ Note: Wind Push is not yet available. Implementing it requires another full vanilla-style architecture refactor, which is planned for the next version.
📦 Data-Driven Conflict System
- You can now define which materials cannot be combined using vanilla datapacks — no Java code required. Changes take effect immediately with /reload.
File Location Place a .json file at: .../datapacks/your_pack_name/data/obscure_revival/mutual_exclusion/any_name.json Basic Format json
{
"center": "minecraft:iron_ingot",
"incompatible_with": [
"minecraft:phantom_membrane"
]
}
center — The core material that bans others. incompatible_with — List of materials that conflict with the center.
Example: One-to-Many json
{
"center": "minecraft:obsidian",
"incompatible_with": [
"minecraft:bamboo",
"minecraft:phantom_membrane"
]
}
Note: Materials inside incompatible_with do not conflict with each other. Only the center material is blocked from combining with them.
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:HPWABsYR:soHOd5pB"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:HPWABsYR:soHOd5pB"
}

