|
| 1 | +package com.github.gtexpert.gtbm.api.unification.material; |
| 2 | + |
| 3 | +/** |
| 4 | + * Material Registration. |
| 5 | + * <p> |
| 6 | + * All Material Builders should follow this general formatting: |
| 7 | + * <p> |
| 8 | + * material = new MaterialBuilder(id, name) |
| 9 | + * .ingot().fluid().ore() <--- types |
| 10 | + * .color().iconSet() <--- appearance |
| 11 | + * .flags() <--- special generation |
| 12 | + * .element() / .components() <--- composition |
| 13 | + * .toolStats() <--- |
| 14 | + * .oreByProducts() | additional properties |
| 15 | + * ... <--- |
| 16 | + * .blastTemp() <--- blast temperature |
| 17 | + * .build(); |
| 18 | + * <p> |
| 19 | + * Use defaults to your advantage! Some defaults: |
| 20 | + * - iconSet: DULL |
| 21 | + * - color: 0xFFFFFF |
| 22 | + */ |
| 23 | +public class GTBMMaterials { |
| 24 | + /* |
| 25 | + * FOR ADDON DEVELOPERS: |
| 26 | + * |
| 27 | + * GTCEu will not take more than 3000 IDs. Anything past ID 2999 |
| 28 | + * is considered FAIR GAME, take whatever you like. |
| 29 | + * |
| 30 | + * If you would like to reserve IDs, feel free to reach out to the |
| 31 | + * development team and claim a range of IDs! We will mark any |
| 32 | + * claimed ranges below this comment. Max value is 32767. |
| 33 | + * |
| 34 | + * - Gregicality: 3000-19999 |
| 35 | + * - Gregification: 20000-20999 |
| 36 | + * - HtmlTech: 21000-21499 |
| 37 | + * - GregTech Food Option: 21500-22499 |
| 38 | + * - FREE RANGE 22500-23599 |
| 39 | + * - MechTech: 23600-23999 |
| 40 | + * - FREE RANGE 24000-31999 |
| 41 | + * - Reserved for CraftTweaker: 32000-32767 |
| 42 | + */ |
| 43 | + |
| 44 | + // Element Materials |
| 45 | + |
| 46 | + // First Degree Materials |
| 47 | + |
| 48 | + // Second Degree Materials |
| 49 | + |
| 50 | + // Third Degree Materials |
| 51 | + |
| 52 | + // Organic Chemistry Materials |
| 53 | + |
| 54 | + // Unknown Composition Materials |
| 55 | + |
| 56 | + public static void registerMaterialsHigh() { |
| 57 | + GTBMMaterialFlags.init(); |
| 58 | + } |
| 59 | + |
| 60 | + public static void registerMaterialsLow() {} |
| 61 | + |
| 62 | + public static void registerMaterialsLowest() {} |
| 63 | +} |
0 commit comments