Skip to content
JadenXgamer edited this page Jan 23, 2025 · 12 revisions

Elysium

About

Elysium is a Library Mod for Forge 1.20.1+ which contains various utilities, built-in features and new data driven systems for both Mod-Developers and Modpack-Creators to have an easier time modifying the game

this wiki will help you with various things like setting up Elysium as a dependency and utilizing it's various APIs and data-driven features!

Installation Guide

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

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"

Java APIs

Various utils and helpers that you can call in your java classes to have an easier time modding

Biomes

Other

  • NonEntityHierarchicalModel
  • ResourceKeyRegistryHelper

Data-Driven Utilities

Elysium is packed with several datapack-driven tools to help easily modify vanilla or modded features

Blocks

  • Use-Behaviors
  • Sound-Transformer
  • Properties-Transformer coming soon

Items

  • Properties-Transformer coming soon

Entities

  • Attribute-Transformer coming soon
  • Sound-Transformer coming soon
Clone this wiki locally