Cores
作者:rebot | 分类:模组
价格:0 墨喵币
下载量:0
点赞:0
版本 26.2-2.0.5-26072700-Neo
本资源为搬运资源,原资源地址:
https://modrinth.com/mod/cores
资源信息
Minecraft 版本: 26.2
平台: neoforge
标签: library
资源介绍
Cores
This mod has a built-in Core 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:  Select a color scheme:  Save and view the results:     - **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_REGISTER = new Register(Cores.MOD_ID, "listen", builder -> builder.sync(false)); // Register instances public static final DeferredHolder IMAGE_LISTEN = LISTEN_REGISTER.register("image", ImageListen::new); //public static final DeferredHolder 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); } } ```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:
下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
请 登录 后发表评论。
举报此资源
请登录后举报
暂无评论,抢个沙发吧~