Skip to content

wisp-forest/accessories

Repository files navigation


αccessories

Maven metadata URL

Overview

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.

Build Setup

Groovy

repositories {
    maven { url 'https://maven.wispforest.io' }
    maven { url "https://maven.su5ed.dev/releases" }
    maven { url 'https://maven.fabricmc.net' }
    maven { url 'https://maven.neoforged.net/releases' }
}

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}")
}

Kotlin DSL

repositories {
    maven("https://maven.wispforest.io")
    maven("https://maven.su5ed.dev/releases")
    maven("https://maven.fabricmc.net")
    maven("https://maven.neoforged.net/releases")
}

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"]}")
}

Features

  • 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})

About

A extendable and data-driven Accessory Mod for Minecraft

Resources

License

Unknown, LGPL-3.0 licenses found

Licenses found

Unknown
LICENSE
LGPL-3.0
CCLAYER_LICENSE

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages