Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. JSON(Assuming all keys are required to be present):
  2. {
  3. "recipes":
  4. [
  5. {
  6. "input": {"itemName": "ingotIron", "isOreDictionary": true, "isWildcard": false,"damage": 2}
  7. ,"output": {"itemName": "minecraft:stick", "isOreDictionary": false, "isWildcard": false, "damage": 16, "stackSize": 5}
  8. ,"experience": 0.5
  9. }
  10. ]
  11. }
  12.  
  13. JSON(Assuming all keys are not required to be present):
  14. {
  15. "recipes":
  16. [
  17. {
  18. "input": {"itemName": "ingotIron", "isOreDictionary": true, "damage": 2}
  19. ,"output": {"itemName": "minecraft:stick", "damage": 16, "stackSize": 5}
  20. ,"experience": 0.5
  21. }
  22. ]
  23. }
  24.  
  25. MineTweaker:
  26. import mods.betterbeginnings.Kiln;
  27. Kiln.addRecipe(<ore:ingotIron:2>, <minecraft:stick:16> * 5, 0.5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement