Advertisement
Guest User

Custom user.recipes

a guest
Jun 11th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. # To use different sets of recipes, include other recipe files in the order of
  2. # priority to use the recipes defined in them. The last include has the highest
  3. # priority (i.e. included recipes simply replace the current definition for all
  4. # already known recipes).
  5.  
  6. # To disable a recipe, assign a boolean value to it. For example, to disable
  7. # the recipe for the transistor: `transistor = false`. This will disable the
  8. # recipe and hide the item in the creative tab and NEI. If you assign `true`,
  9. # the recipe will still be disabled, but not hidden in the creative tab/NEI.
  10.  
  11. include file("default.recipes")
  12. #include file("hardmode.recipes")
  13. #include file("gregtech.recipes")
  14. #include file("peaceful.recipes")
  15. #include file("your_custom.recipes")
  16.  
  17. # You can also specify custom recipes in this file directly. Have a look at the
  18. # default.recipes file to get an idea how recipes have to be structured. You'll
  19. # want to define your recipes after all includes, to avoid those overwriting
  20. # your recipes.
  21.  
  22. chipDiamond {
  23. type: shapeless
  24. input: gemDiamond
  25. output: 12
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement