HT Materials (HT Materials)
A simple Minecraft mod for Fabric+1.16.5 that provides Material System and Tag Sync.
Material System
The Material System was invented to handle Tags more generally by decomposing them into HTMaterial and HTShape.
HTMaterial represents the material of objects: Iron, Gold, Copper, Stone, Wood, etc.
HTShape represents the shape of objects: Ingot, Nugget, Plate, Gear, Rod, etc.
Part Tag
Many Fabric mods follow Conventional Tag format such as c:copper_ingots. This mod automatically replaces these tags into Part Tag Format by Material System. For example, c:copper_ingots will be converted into part:ingot/copper. You don't need to replace existing tags in JSON files or internal codes!
Fluid Unification
HT Materials can sync not only tags but also fluids! After the flattening, fluid became a vanilla feature and has been managed with Identifier: namespace and path. This destructive change divided fluids with the same name and different namespace. Based on the Material System, these fluids are linked to Conventional Tags.
How to create Addon
- Add new entrypoint
ht_materials
infabric.mod.json
- Implement io.github.hiiragi283.api.HTMaterialsAddon
Example
API
Accessible HT-Materials' API via HTMaterialsAPI.INSTANCE
截图:
[Archived] HT Materials 2.0.0+1.16.5
## What's Changed
* Add missed Localize Key with IR by @MrKono in https://github.com/Robustum/HT-Materials/pull/2
* Remove Material Items by @Hiiragi283 in https://github.com/Robustum/HT-Materials/pull/5
* Refine of pull request #6 by @Hiiragi283 in https://github.com/Robustum/HT-Materials/pull/7
## New Contributors
* @MrKono made their first contribution in https://github.com/Robustum/HT-Materials/pull/2
**Full Changelog**: https://github.com/Robustum/HT-Materials/compare/1.3.0...2.0.0
[Fabric 1.16.5] HT Materials 1.3.0+1.16.5
* Tag format by @Hiiragi283 in https://github.com/Robustum/HT-Materials/pull/1
## New Contributors
* @Hiiragi283 made their first contribution in https://github.com/Robustum/HT-Materials/pull/1
**Full Changelog**: https://github.com/Robustum/HT-Materials/compare/1.2.0...1.3.0
[Fabric 1.16.5] HT Materials 1.2.0+1.16.5
收录