Links
Tags
Creators
Details
Licensed MIT
Published 3 years ago
Updated 2 days ago
All versions
4.0.0+1.21.11-neoforge
Release
4.0.0+1.21.113 weeks ago 139
Compatibility
Minecraft: Java Edition
1.21.11
Platform
NeoForge
Supported environments
Client and server
Changes
4.0.0
Package and maven group reworked, no functional change.
- Java package is now
net.rpg_foundation.ranged_weapon(wasnet.fabric_extras.ranged_weapon) - Maven group is now
net.rpg_foundation(wasnet.foundation), artifactranged_weapon_api-<loader>unchanged - Mod id, resource namespaces and every
ranged_weapon:attribute/effect/component/property id are unchanged - Migration: update imports and the Gradle coordinate
- BREAKING:
CustomBow/CustomCrossbowno longer take a repair ingredient supplier; repairability is the vanillaminecraft:repairablecomponent (Item.Settings.repairable(tag)) - Ranged weapon item models use the vanilla properties: bows
minecraft:use_duration(scale 0.05, re-expressed against the item's real pull time), crossbowsminecraft:crossbow/pull;ranged_weapon:pullis deprecated - Fix potion and tipped arrow names on 1.21.11
- Trimmed mob-AI injects that vanilla no longer reaches
Optional dependencies
Any compatible version
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:AqaIIO6D:7GXeSJSr"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AqaIIO6D:7GXeSJSr"
}

