Minecraft Mod. Adds a cooking book and multiblock kitchens that only shows recipes you can make with what you currently have in your inventory.
If you're interested in contributing to the mod, you can check out issues labelled as "help wanted". These should be ready to be implemented as they are.
In order to get a development environment set up, clone the repository and run ./gradlew setupDecompWorkspace
and ./gradlew idea
or ./gradlew eclipse
depending on what IDE you use.
If you need help, feel free to join us on Discord.
Potentially unstable in-development releases built straight from the latest code in this repository are available on my Jenkins. They may contain unfinished and broken features and no support is provided for these builds.
The below is a list of IMC message keys handled by Cooking for Blockheads.
- RegisterTool (ItemStack)
- RegisterWaterItem (ItemStack)
- RegisterMilkItem (ItemStack)
- RegisterToast (TagCompound : {Input : ItemStack, Output : ItemStack})
- RegisterToastError (TagCompound : {Input : ItemStack, Message : String})
- RegisterOvenFuel (TagCompound : {Input : ItemStack, FuelValue : Numeric})
- RegisterOvenRecipe (TagCompound : {Input : ItemStack, Output : ItemStack})
- RegisterNonFoodRecipe (ItemStack)
- RegisterCowClass (EntityCowClassName : String) - this will cause the class to be loaded if it isn't already!
If the IMC API is not enough for you, you can build against Cooking for Blockheads' Java API. I suggest using the CurseForge Maven to grab it as a dependency. For info on how to do that, you can check Cooking for Blockheads' own Gradle files.
The Java API allows everything the IMC API does, and certain tasks can only be achieved via the Java API. However, if you don't need that extra control, it is recommended to use the IMC API.