Cogwheel Tweaker
The Cogwheel Tweaker mod unlocks the ability to create custom gears for the Create mod. You can configure parameters of custom gears using Zen-scripts and data packs.
For a quick start, use the /ct example command - it will generate a sample script with ready-made small andesite and brass gears using pre-installed models and datasets.
If you want to create completely unique gears, utilize data packs from mods like openloader to integrate your own resources into your modpack.
Creating custom gears follows the standard scheme for adding blocks through Content Tweaker:
#loader contenttweaker
import mods.contenttweaker.block.BlockBuilder;
import mods.cogweeltweaker.block.cogwheel.CoTWheelBuilder;
new BlockBuilder()
.withType<CoTWheelBuilder>()
.build("small_cog");
new BlockBuilder()
.withType<CoTWheelBuilder>()
.withLarge(true)
.build("large_cog");
Requirements for operation:
- Create version 0.3.1 or higher
- Content Tweaker
- Craft Tweaker