Advertisement
Guest User

Untitled

a guest
Jun 13th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. {
  2. "conditions": [
  3. {
  4. "type": "mod_loaded",
  5. "mod": "minecraft"
  6. }
  7. ],
  8. "type": "minecraft:crafting_shaped",
  9. "group": "random_things",
  10. "pattern": [
  11. "###",
  12. "XXX"
  13. ],
  14. "key": {
  15. "#": {
  16. "item": "#PLANKS"
  17. },
  18. "X": [
  19. {
  20. "item": "minecraft:planks",
  21. "data": 0 // if no output tag is specified, ingredient is used for all results.
  22. },
  23. {
  24. "item": "minecraft:planks",
  25. "data": 1,
  26. "output": "MyResult" // if output tag found, then only applies if result with matching tag is found
  27. },
  28. {
  29. "item": "minecraft:planks",
  30. "data": 2,
  31. "output": "MyOtherResult"
  32. }
  33. ]
  34. },
  35. "result": [
  36. {
  37. "item": "minecraft:bed",
  38. "data": 15
  39. // no output tag, system should assume is a default result. If multiple entries found without tag, assume first or last is default
  40. },
  41. {
  42. "item": "minecraft:bed",
  43. "data": 3,
  44. "output": "MyResult"
  45. },
  46. {
  47. "item": "minecraft:bed",
  48. "data": 4,
  49. "output": "MyOtherResult"
  50. }
  51. ]
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement