Skip to content

Instantly share code, notes, and snippets.

@krusynth
Created May 19, 2019 19:50
Show Gist options
  • Save krusynth/08bcfc143c1602c0625f5ace6801c1c5 to your computer and use it in GitHub Desktop.
Save krusynth/08bcfc143c1602c0625f5ace6801c1c5 to your computer and use it in GitHub Desktop.
Minecraft CraftTweaker recipes for BigFork modpack
// Easier clay
recipes.addShapeless('bigfork_clay',<minecraft:clay>*4,[<minecraft:dirt>,<minecraft:dirt>,<minecraft:dirt>,<minecraft:dirt>]);
// Easier leather, replace monster jerky from Tinkers Construct
mods.tconstruct.Drying.removeRecipe(<tconstruct:edible:10>, <minecraft:rotten_flesh>);
mods.tconstruct.Drying.addRecipe(<minecraft:leather>,<minecraft:rotten_flesh>, 100);
// Add back missing Botania flowers with Easy Pickings flowers
mods.botania.Apothecary.addRecipe(<easypickings:flower_daybloom>,[<ore:petalYellow>,<ore:petalYellow>,<ore:petalOrange>,<ore:petalLightBlue>]);
mods.botania.Apothecary.addRecipe(<easypickings:flower_nightshade>,[<ore:petalBlack>,<ore:petalBlack>,<ore:petalPurple>,<ore:petalGray>]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment