Accessories is a Data-Driven Accessory mod for NeoForge and Fabric with emphasis on using a Common API for both platforms when possible
Such API is based on the works of Curios and Trinkets with credit going to both TheIllusiveC4 and emilyploszaj for their work on Accessory mods for Minecraft.
repositories {
maven { url 'https://maven.wispforest.io' }
maven { url "https://maven.su5ed.dev/releases" }
maven { url 'https://maven.fabricmc.net' }
}
dependencies {
// Fabric
modImplementation("io.wispforest:accessories-fabric:${project.accessories_version}")
// Neoforge
fg.deobf("io.wispforest:accessories-neoforge:${project.accessories_version}")
// Arch Common
modImplementation("io.wispforest:accessories-common:${project.accessories_version}")
}
repositories {
maven("https://maven.wispforest.io")
maven("https://maven.su5ed.dev/releases")
maven("https://maven.fabricmc.net")
}
dependencies {
// Fabric
modImplementation("io.wispforest:accessories-fabric:${properties["accessories_version"]}")
// Neoforge
fg.deobf("io.wispforest:accessories-neoforge:${properties["accessories_version"]}")
// Arch Common
modImplementation("io.wispforest:accessories-common:${properties["accessories_version"]}")
}
- Compatibility Layers with existing Accessory Mods like Curios and Trinkets
- Full Support for NBT-based Accessories (More Info on Wiki {TODO: ADD LINK TO SUCH})
- Existing API Events for Piglin Neutral Items, Enderman Masks, Looting Adjustments, Fortune Adjustments, and Snow Walking Ability.
- Unique Slot API for Mod Specific Accessories (More Info on Wiki {TODO: ADD LINK TO SUCH})