GTMoreTools exposes addon APIs for its mod integrations. The table below shows current coverage:
| Integration | API package | Status |
|---|---|---|
| Tinkers' Construct | integration.tic.api |
Available |
| Better Builder's Wands | — | No API yet |
| Chisel | — | No API yet |
| Storage Drawers | integration.storagedrawers.api |
Available, but for mixin only |
All registration calls must happen during your mod's preInit phase,
before GTMT's registerBlocks, unless stated otherwise.
Triggered when a GT material's direct composition contains a specific material.
// "If a material contains Osmium, give it the Shiny trait on the tool head"
TraitRegistry.registerCompositionTrait(Materials.Osmium, MyTraits.SHINY, "head");Triggered by a predicate on the material and its ToolProperty.
// "If GT harvest level ≥ 8, give it the Legendary trait on the tool head"
TraitRegistry.registerPropertyTrait(
(mat, prop) -> prop.getToolHarvestLevel() >= 8,
MyTraits.LEGENDARY, "head");Pass null as the slot to apply a trait to all part types.
AbstractTrait heat = TraitRegistry.getHeatResistantTrait();
AbstractTrait cryo = TraitRegistry.getCryogenicTrait();
AbstractTrait anti = TraitRegistry.getAntiCorrosionTrait();
AbstractTrait heavy = TraitRegistry.getHeavyBlowTrait();
AbstractTrait piercer = TraitRegistry.getPiercerTrait();
AbstractTrait moonlit = TraitRegistry.getMoonlitTrait();
AbstractTrait unbr = TraitRegistry.getUnbreakableTrait();
AbstractTrait ench = TraitRegistry.getOrCreateEnchantmentTrait(Enchantments.FORTUNE, 2);GTMT auto-assigns names for harvest levels above Cobalt (4) based on the first GT material seen at that level. Pre-register a name here to override it.
// Must be called before GTMT's registerBlocks
HarvestLevels.register(5, "Vibranium");Register Smeltery melting recipes for custom GT materials.
May be called during init or postInit.
SmelteryHelper.registerRecipe(
OrePrefix.ore, MyMaterials.VIBRANIUM,
MyMaterials.VIBRANIUM.getFluid(),
slimeknights.tconstruct.library.materials.Material.VALUE_Ingot,
SmelteryHelper.getDefaultTemperature(MyMaterials.VIBRANIUM));getDefaultTemperature returns the same temperature tier GTMT derived from the material's
blast temperature (300 / 600 / 900 / 1200), so your recipe integrates consistently with
GTMT's auto-generated recipes.
No addon API is currently available. The following describes the internal logic for reference.
GT-style Wand tools are registered for every GT material that has the TOOL property and
can produce a plate (or gem for Flint).
| Config | Recipe shape | Materials |
|---|---|---|
| Normal | " I" / " S " / "S " |
Ingot + Wood Stick |
hardToolArmorRecipes = true |
" fP" / " Sh" / "S " |
Plate + Wood Stick |
The original BBW recipe is removed when GTMT registers its own.
- Block placement limit —
durability / 16 + 1blocks per use; 512 for Unbreakable tools. - Layout modes — NORTHSOUTH, EASTWEST, VERTICAL, HORIZONTAL, NOLOCK.
- Fluid mode — optionally skip or include fluid blocks.
- Undo — placed block positions are saved to NBT and can be undone.
- Durability decreases by the number of blocks placed per use (no loss in Creative or Unbreakable).
Registered as toolWand.
No addon API is currently available. The following describes the internal logic for reference.
- GT-style Chisel tools — registered for every GT material with the
TOOLproperty. - Auto Chisel machine — LV through UV (tiers 1–9), ID range 11001–11008.
- Extended block variants — Bookshelf (6 wood types), Lamps (Project:RED, 16 colours), and miscellaneous block variants are added to Chisel carving groups.
| Config | Recipe shape | Materials |
|---|---|---|
| Normal | " I" / "S " |
Ingot + Wood Stick |
hardToolArmorRecipes = true |
"fP" / "Sh" |
Plate + Wood Stick |
The original Chisel recipe is removed when GTMT registers its own.
Registered as both toolChisel and craftChisel (the latter allows vanilla Chisel to accept it).
B S B
T H T
M C M
- B =
toolHeadBuzzSaw(Invar) - S = Sensor, H = Hull, M = Motor, C = Circuit (all tier-scaled)
- T =
craftChisel(OreDict — accepts any registered Chisel tool)
All block-to-block conversion recipes are auto-generated from Chisel's Carving API at startup:
each block within a group can be converted to any other block in the same group (10 EU/t, ULV, 10 t).
Parallel count scales as 4^(tier − EV) / 2 from EV upward.
6 wood types × 1 recipe each: 6 planks + 3 Books → carved Bookshelf (100 EU, ULV).
An addon API currently exists, but it is mixin-based and not usable. The following describes the internal logic for reference.
- Storage Upgrades made from GT materials will be registered for the GT materials specified in the cfg.
removeOriginal
- Controls whether the default Storage Upgrade recipes are removed.
- true: All original Storage Upgrade recipes are removed. Only recipes defined by this mod (via upgradeMaterials) will be available.
- false: Original recipes remain alongside the newly added ones.
- Use this if you want to fully replace the default progression with GT-based materials.
upgradeMaterials
- Defines custom materials used to craft Storage Upgrades.
- Each entry adds a new Storage Upgrade variant based on a GT material.
modId:materialName@multiplier%tier
materialName: Must be a valid GT material with a dust property.multiplier: Determines the storage capacity multiplier of the upgrade.- Range: 1 to 2147483647
- Not affected by the StorageDrawers config.
tier(optional): Required Field Generator tier.- Range: 1 (LV) to 8 (UV)
- If omitted, defaults to -1 (no Field Generator required).
- A Storage Upgrade using the specified material will be registered for each entry.
- If the config is empty, only the original materials are available.
- Original materials (Obsidian / Iron / Gold / Diamond / Emerald):
- Always included automatically.
- Use tier -1.
- Their multipliers are controlled by the StorageDrawers config.
- Do NOT define them here.
gregtech:steel@4%2
- Adds a Steel Storage Upgrade
- Multiplier: x4
- Requires MV-tier Field Generator
- Registration results can be checked in the log.
- The process starts with
[GT More Tools]: UpgradeMaterialData registration started.and ends with[GT More Tools]: UpgradeMaterialData registration finished. - On successful registration, the following message is logged:
[GT More Tools]: Registered UpgradeMaterial (Material=..., meta=..., multiplier=x..., requiredTier=...)- For example, a successful registration will produce a log like:
[GT More Tools]: Registered UpgradeMaterial (Material=steel, meta=324, multiplier=x4, requiredTier=2 (MV))
- For example, a successful registration will produce a log like:
- Entries with an invalid format will be skipped, and the log will indicate the issue.
P S P
S U S
P X P
-
P =
plate -
S =
screw -
U = Upgrade Template
-
X = If tier is -1, a
stickLong; otherwise, aField Generatorof the specified tier -
Storage Upgrade conversion recipes between StorageDrawers and GTMoreTools are always added for Obsidian / Iron / Gold / Diamond / Emerald.