CM:ME Additions
CM:ME Additions is an extension module for Gregtech Modern that enhances mod creation capabilities by adding new material flags. This addon doesn't introduce any gameplay changes upon simple installation - it requires configuration through KubeJS for activation.
Working with KubeJS
All additional material flags are accessible through the "CMMEMaterialFlags" object in KubeJS. This allows mod developers to significantly expand the standard set of material processing capabilities.
Usage example:
GTCEuStartupEvents.registry('gtceu:material', event => {
GTMaterials.Tin.addFlags(
// All available material flags are listed here
CMMEMaterialFlags.GENERATE_DOUBLE_INGOT,
CMMEMaterialFlags.GENERATE_TRIPLE_INGOT,
CMMEMaterialFlags.GENERATE_QUADRUPLE_INGOT,
CMMEMaterialFlags.GENERATE_QUINTUPLE_INGOT,
CMMEMaterialFlags.GENERATE_TRIPLE_PLATE,
CMMEMaterialFlags.GENERATE_QUADRUPLE_PLATE,
CMMEMaterialFlags.GENERATE_QUINTUPLE_PLATE,
CMMEMaterialFlags.GENERATE_SINGULARITY
)
})
Licensing and Attribution
Some textures were adapted from the Modernity GT:NH project and are distributed under the Attribution-NonCommercial-ShareAlike 4.0 International license.
This mod was originally developed specifically for the Crafted Madness Modern Era modpack.