Skip to content

Instantly share code, notes, and snippets.

@AHrubik
Created November 3, 2014 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AHrubik/991a7141d972cb917bd0 to your computer and use it in GitHub Desktop.
Save AHrubik/991a7141d972cb917bd0 to your computer and use it in GitHub Desktop.
Minetweaker script for the Equitas modded Terrafirmacraft pack
recipes.remove(<minecraft:hay_block>);
recipes.addShaped(<minecraft:hay_block>, [[<terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>], [<terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>]]);
recipes.remove(<CarpentersBlocks:blockCarpentersBlock>);
recipes.addShaped(<CarpentersBlocks:blockCarpentersBlock>*5, [[<terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>], [<terrafirmacraft:item.stick>, <terrafirmacraft:item.SinglePlank:*>, <terrafirmacraft:item.stick>], [<terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>]]);
recipes.remove(<CarpentersBlocks:itemCarpentersChisel>);
recipes.addShaped(<CarpentersBlocks:itemCarpentersChisel>, [[<terrafirmacraft:item.Copper Ingot>, null, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.addShaped(<CarpentersBlocks:itemCarpentersChisel>, [[<terrafirmacraft:item.Tin Ingot>, null, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.addShaped(<CarpentersBlocks:itemCarpentersChisel>, [[<terrafirmacraft:item.Zinc Ingot>, null, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.remove(<CarpentersBlocks:itemCarpentersHammer>);
recipes.addShaped(<CarpentersBlocks:itemCarpentersHammer>, [[<terrafirmacraft:item.Copper Ingot>, <terrafirmacraft:item.Copper Ingot>, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.addShaped(<CarpentersBlocks:itemCarpentersHammer>, [[<terrafirmacraft:item.Tin Ingot>, <terrafirmacraft:item.Tin Ingot>, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.addShaped(<CarpentersBlocks:itemCarpentersHammer>, [[<terrafirmacraft:item.Zinc Ingot>, <terrafirmacraft:item.Zinc Ingot>, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment