Advertisement
Guest User

Contents of spoilers.7z

a guest
Mar 23rd, 2017
719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. advancements/chest_recipe.json:
  2.  
  3. {
  4. "rewards": {
  5. "recipes": ["minecraft:chest"]
  6. },
  7. "criteria": {
  8. "slightly_full_inventory": {
  9. "trigger": "minecraft:inventory_changed",
  10. "conditions": {
  11. "slots": {
  12. "occupied": 9
  13. }
  14. }
  15. },
  16. "already_has_recipe": {
  17. "trigger": "minecraft:recipe_unlocked",
  18. "conditions": {
  19. "recipe": "minecraft:chest"
  20. }
  21. }
  22. },
  23. "requirements": [["slightly_full_inventory"], ["already_has_recipe"]]
  24. }
  25.  
  26. advancements/upgrade_tools.json:
  27.  
  28. {
  29. "display": {
  30. "icon": "minecraft:stone_pickaxe",
  31. "title": "Upgrade tools"
  32. },
  33. "parent": "minecraft:story/mine_stone",
  34. "criteria": {
  35. "stone_pickaxe": {
  36. "trigger": "minecraft:inventory_changed",
  37. "conditions": {
  38. "items": [
  39. {
  40. "item": "minecraft:stone_pickaxe"
  41. }
  42. ]
  43. }
  44. }
  45. }
  46. }
  47.  
  48.  
  49. recipes/book.json:
  50.  
  51. {
  52. "type": "crafting_shapeless",
  53. "ingredients": [
  54. {
  55. "item": "minecraft:paper"
  56. },
  57. {
  58. "item": "minecraft:paper"
  59. },
  60. {
  61. "item": "minecraft:paper"
  62. },
  63. {
  64. "item": "minecraft:leather"
  65. }
  66. ],
  67. "result": {
  68. "item": "minecraft:book"
  69. }
  70. }
  71.  
  72. recipes/golden_axe.json:
  73.  
  74. {
  75. "type": "crafting_shaped",
  76. "pattern": [
  77. "XX",
  78. "X#",
  79. " #"
  80. ],
  81. "key": {
  82. "#": {
  83. "item": "minecraft:stick"
  84. },
  85. "X": {
  86. "item": "minecraft:gold_ingot"
  87. }
  88. },
  89. "result": {
  90. "item": "minecraft:golden_axe"
  91. }
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement