Cores
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #287 of 326 forge mods in this game by downloads
📋 About This Mod
# **Cores** (https://github.com/An-Mao/Cores/blob/main/README_ZH.MD) This mod has a built-in (https://github.com/An-Mao/JavaDevCore) library. A library mod developed for Minecraft mod development. It packages numerous frequently used, repetitive code blocks and offers several practical features. ## Player Features - **Attribute Fix** : Modifies the default, maximum, and minimum values of attributes. This can be adjusted via the configuration file. - **Experience Fix** : Modifies experience deduction. When deducting experience levels, it deducts the exact amount of experience points required to level up from level 0 to the target level, instead of using the vanilla calculation of (current level - target level) points. Both of the above features can be disabled via the configuration file. ## Developer Features <details> <summary>Developer Features</summary> - **Color Schemes** : When using this mod's `Screen` or certain rendering-related code, you can customize the color palette by changing the color scheme (as shown in the images below). Press the **Home** key to open the configuration interface: !(https://github.com/An-Mao/Cores/blob/main/image/home_screen.png?raw=true) Select a color scheme: !(https://github.com/An-Mao/Cores/blob/main/image/home_screen_select_color_scheme.png?raw=true) Save and view the results: !(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_amber.png?raw=true) !(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_sunset.png?raw=true) !(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_teal.png?raw=true) !(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_twilight.png?raw=true) - **Network Listening** : Listens on port `4444` and returns the registered content when accessed by players. ```java package dev.anye.mc.cores.am.listen; // For detailed code, please check the dev.anye.mc.cores.am.listen package // Here is an ImageListen instance public class ImageListen extends Listen { protected ImageListen() { super("assets/cores/html/image/",// Resource path (optional). If provided, files under this path will be automatically loaded upon access. "image",// Registration path, used to access this instance (e.g., 127.0.0.1:4444/image/index.html) 300// Shutdown timeout (seconds). Closes this listener after a period of inactivity. ); } // This method has a default implementation that dispatches POST and GET requests to their respective handlers; you can also override it to implement your own logic. public void handle(HttpExchange exchange){} } // How to register public class ListenRegister { // Get registry public static final Register<Listen> LISTEN_REGISTER = new Register<>(Cores.MOD_ID, "listen", builder -> builder.sync(false)); // Register instances public static final DeferredHolder<Listen,ImageListen> IMAGE_LISTEN = LISTEN_REGISTER.register("image", ImageListen::new); //public static final DeferredHolder<Listen,ExampleListen> EXAMPLE_LISTEN = LISTEN_REGISTER.register("example", ExampleListen::new); // Call this method during mod initialization public static void register(IEventBus eventBus){ LISTEN_REGISTER.register(eventBus); } // Assuming this is your Mod initialization function (constructor) public Cores(IEventBus modEventBus, ModContainer modContainer) { ListenRegister.register(modEventBus); } } ``` </details> ## Support status by version B : Bug fixes only X : No further updates U : Updates L :Low-frequency updates Trend : U -> L -> B -> X | Version | Forge | Neoforge | Fabric | |----------------------------------------|-----------------------------|-----------------------------|--------------------------| | <font color=yellow>1.20.1</font> | <font color=yellow>B</font> | <font color=yellow>B</font> | <font color=red>X</font> | | <font color=red>1.20.2 - 1.21.0</font> | <font color=red>X</font> | <font color=red>X</font> | <font color=red>X</font> | | <font color=yellow>1.21.1</font> | <font color=yellow>B</font> | <font color=yellow>B</font> | <font color=red>X</font> | | <font color=red>1.21.2-26.0</font> | <font color=red>X</font> | <font color=red>X</font> | <font color=red>X</font> | | <font color=blue>26.1</font> | <font color=blue>L</font> | <font color=blue>L</font> | <font color=red>X</font> | | **<font color=green>26.2</font>** | <font color=green>U</font> | <font color=green>U</font> | <font color=red>X</font> | Any questions can be asked in github or contacted as below: - (https://url.anye.dev/tg) - (https://url.anye.dev/discord)
# Cores
[简体中文](https://github.com/An-Mao/Cores/blob/main/README_ZH. MD)
This mod has a built-in (https://github.com/An-Mao/JavaDevCore) library.
A library mod developed for Minecraft mod development. It packages numerous frequently used, repetitive code blocks and offers several practical features.
## Player Features - Attribute Fix : Modifies the default, maximum, and minimum values of attributes. This can be adjusted via the configuration file. - Experience Fix : Modifies experience deduction. When deducting experience levels, it deducts the exact amount of experience points required to level up from level 0 to the target level, instead of using the vanilla calculation of (current level - target level) points. Both of the above features can be disabled via the configuration file.
## Developer Features
Developer Features
- Color Schemes : When using this mod's `Screen` or certain rendering-related code, you can customize the color palette by changing the color scheme (as shown in the images below).
Press the Home key to open the configuration interface:
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen.png?raw=true)
Select a color scheme:
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen_select_color_scheme.png?raw=true)
Save and view the results:
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_amber.png?raw=true)
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_sunset.png?raw=true)
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_teal.png?raw=true)
!(https://github.com/An-Mao/Cores/blob/main/image/home_screen_change_twilight.png?raw=true)
- Network Listening : Listens on port `4444` and returns the registered content when accessed by players.
```java
package dev.anye.mc.cores.am.listen;
// For detailed code, please check the dev.anye.mc.cores.am.listen package
// Here is an ImageListen instance public class ImageListen extends Listen {
protected ImageListen() { super("assets/cores/html/image/",// Resource path (optional). If provided, files under this path will be automatically loaded upon access. "image",// Registration path, used to access this instance (e.g., 127. 0. 0. 1:4444/image/index.html) 300// Shutdown timeout (seconds). Closes this listener after a period of inactivity. ); } // This method has a default implementation that dispatches POST and GET requests to their respective handlers; you can also override it to implement your own logic. public void handle(HttpExchange exchange){} }
// How to register
public class ListenRegister {
// Get registry
public static final Register
## Support status by version B : Bug fixes only X : No further updates U : Updates L :Low-frequency updates Trend : U -> L -> B -> X | Version | Forge | Neoforge | Fabric | |----------------------------------------|-----------------------------|-----------------------------|--------------------------| | 1. 20. 1 | B | B | X | | 1. 20. 2 - 1. 21. 0 | X | X | X | | 1. 21. 1 | B | B | X | | 1. 21. 2-26. 0 | X | X | X | | 26. 1 | L | L | X | | 26. 2 | U | U | X |
Any questions can be asked in github or contacted as below: - (https://url.anye.dev/tg) - (https://url.anye.dev/discord)
📊 Mod Details
- Game
- Minecraft Mods
- Author
- anmao
- Version
- 26.2-2.0.5-26081500-Neo
- Downloads
- 4,279
- Endorsements
- 0
- Category
- forge
- Created
- 3/14/2024
- Updated
- 8/15/2026
- Game Versions
- 26.2
- Tags
- library
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Cores support?
The author lists 26.2. Other versions may work but are untested by the author.
What is the latest version of Cores?
Version 26.2-2.0.5-26081500-Neo, published 2026-08-15 with 4,279 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await