promotional bannermobile promotional banner

Content Creator

A mod for creating items, blocks, fluids and more with crafttweaker

File Details

ContentCreator-1.3.92.jar

  • R
  • Dec 30, 2024
  • 298.81 KB
  • 74.4K
  • 1.12.2+1
  • Forge

File Name

ContentCreator-1.3.92.jar

Supported Versions

  • 1.12.2
  • 1.12

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:content-creator-622862:6035583")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Commissioned by xkforce/penteractgaming

Added Blocks:

-Pumpkin/Stem crops

-2-block tall crops

-Crops that require a certain block next to them

-Tall crops that require a certain block next to them

Constructors:

GenericBlock.createStem(String name, String cropBlockId, int cropBlockMeta).register();

GenericBlock.createCropRestrictedByBlock(String name, String cropId, String blockId, int cropMeta, int blockMeta, int cropMinDrop, int cropMaxDrop).register();

GenericBlock.createCropRestrictedByOreDictionary(String name, String cropId, String oreDict, int cropMeta, int cropMinDrop, int cropMaxDrop).register();

GenericBlock.createCropTall(String name, String cropId, int meta, int cropMinDrop, int cropMaxDrop).register();

GenericBlock.createCropTallRestrictedByBlock(String name, String cropId, String blockId, int cropMeta, int blockMeta, int cropMinDrop, int cropMaxDrop).register();

GenericBlock.createCropTallRestrictedByOreDictionary(String name, String cropId, String oreDict, int cropMeta, int cropMinDrop, int cropMaxDrop).register();