-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Elysium-API is a comprehensive library mod for Minecraft NeoForge 1.21.1. It provides a robust collection of utilities, built-in features, and data-driven systems designed to simplify and expand the modification capabilities for both mod developers and modpack creators.
Elysium's target is to make the game easier to modify by providing tools for the the more esoteric, overlooked or hardcoded parts of Minecraft; in other words, areas where vanilla behavior is often difficult or impossible to change without invasive workarounds. It solves this by introducing:
- Various Java APIs
- Utility Classes and Methods
- Data-driven and Resource-driven functions
- And quite possibly more in the future!
This wiki will act as a guide to help setup and start using Elysium in your Mods as dependency or as an additional mod to improve the capabilities of your Modpacks and Datapacks, you'll find practical examples and detailed explanations throughout.
under repositories in your build.gradle add Modrinth Maven, then inside of your dependencies you can implement Elysium API directly from Modrinth
repositories {
maven {
url = "https://api.modrinth.com/maven"
content {
includeGroup("maven.modrinth")
}
}
}
dependencies {
implementation fg.deobf("maven.modrinth:elysium-api:1.20.1-1.1.0")
}lastly include Elysium API as a dependency inside your mods.toml file
[[dependencies.${mod_id}]]
modId="elysium_api"
mandatory=true
versionRange="[1.1.0,)"
ordering="NONE"
side="BOTH"