Перейти к содержимому
Mineforgian

Geode

Level up your average Minecraft modding experience.

Загрузки
1K
Подписчики
4
Обновлён
7 февраля 2026 г.
Лицензия
Apache-2.0

Опубликован 25 января 2026 г.

Banner


Important!
Geode is a library mod. It won't do anything on it's own, only add it if other mods require it.

🤔 What is Geode?

Geode is a powerful library enhancing many aspects of Minecraft modding, including:

  • 🛠️ Powerful Builder Based Registration
    A new way of registering your items, blocks, entities and more using builders, all in one centralized Geode instance.
  • 📐 Extensive Math API
    A large collection of common Math functions, as well as niche ones such as the inverse square root.
  • 📖 Plenty Helpers
    Many many helper classes to aid with every aspect of minecraft development, from raymarching to getting an identifier from registries.

💻 Importing Geode

You may import Geode in your repositories using the Modrinth API:

In your gradle.properties file:

# Geode Version.
geode_version = U4o9vfpy # Add the version here

In your build.gradle file:

repositories {
    // Add the modrinth maven
    maven { url = "https://api.modrinth.com/maven" }
}

dependencies {
    // Adding a Geode dependency for Fabric.
    modImplementation "maven.modrinth:geode:${project.geode_version}"
}

❓ How to get the version

On Modrinth,

  1. Go to the category named Versions.
  2. Choose the version you want and click on More Options.
  3. Click Copy ID.
Visual Guide

Instructions

❓ How to get Documentation in JetBrains IDEA?

Because the mod is uploaded on Modrinth's Maven, I sadly cannot upload the source in a way where you can easily get the documentation. However, attached with every build of Geode is the sources for that version. Here are the steps to set up documentation:

  1. Download the sources from the desired Geode version.
  2. In IDEA, open any Geode class. For example, press Ctrl+N to open the file browser, and search for "Draw". Press Enter.
  3. On the top of the class should be a blue banner, with two buttons on the right: "Download Sources" and "Choose File".
  4. Click Choose File, and select the file you downloaded.

Geode will not be ported to Forge/NeoForge/Quilt. It will also not be backported and only be maintained in the newest available version.


@ 2026 The Collective. All Rights Reserved.
Geode is licensed under Apache-2.0.  

Ченджлог

1.2.1Бета1.21.11 · 7 февраля 2026 г.

Version 1.2.1

Patches & Bug Fixes

  • Removed "Sharpness Copycat"

Additions

Enchantments

GeodeEnchantment has been expanded with new utility methods.

Features

  • getRegistryEntry(ServerWorld) to get the registry entry of that enchantment.
  • getLevel(ServerWorld, ItemStack) to get the level of this enchantment on the given stack, or 0 if the enchantment isn't present.
  • hasEnchantment(ServerWorld, ItemStack) to check whether the stack is enchanted with this enchantment or not.
1.2Бета1.21.11 · 4 февраля 2026 г.

Version 1.2

🛠️ Added

🏷️ Datagen

  • Added getModId to GeodeDataGeneration providing the generation with the ID of the mod data is generated for. Example:
    @Override
    public String getModId() {
      return ExampleMod.MOD_ID;
    }
    
  • Added block state datagen.
1.1Бета1.21.11 · 3 февраля 2026 г.

Geode 1.1

🔥 Bug Fixes

  • Fixed Draw#arrow(double3, double3, int) calling Draw#line(double3, double3, int, float) instead of Draw#arrow(double3, double3, int, float).
1.0Релиз1.21.11 · 28 января 2026 г.

First Version

Комментарии

Загружаем…