Advertisement
ScruffyRules

Spoilers

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