Advertisement
no00ob

Broken Minecraft Advancement

Dec 31st, 2021
1,438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.85 KB | None | 0 0
  1. 1ST ONE
  2. {
  3.     "display": {
  4.         "icon": {
  5.             "item": "minecraft:music_disc_pigstep"
  6.         },
  7.         "title": {"translate":"New Music!"},
  8.         "description": {"translate":"Obtain the Pigstep music disc from a Bastion Remnant"},
  9.         "frame": "goal"
  10.     },
  11.     "parent": "minecraft:nether/loot_bastion",
  12.     "criteria": {
  13.         "music_disc_pigstep": {
  14.             "trigger": "minecraft:inventory_changed",
  15.             "conditions": {
  16.                 "items": [
  17.                     {
  18.                         "item": "minecraft:music_disc_pigstep"
  19.                     }
  20.                 ]
  21.             }
  22.         }
  23.     },
  24.     "requirements": [
  25.         [
  26.             "music_disc_pigstep"
  27.         ]
  28.     ]
  29. }
  30. 2ND ONE
  31. {
  32.     "display": {
  33.         "icon": {
  34.             "item": "minecraft:cake"
  35.         },
  36.         "title":"The Lie",
  37.         "description":"Craft a cake!"
  38.     },
  39.     "parent": "minecraft:husbandry/plant_seed",    
  40.     "criteria": {
  41.         "cake": {
  42.             "trigger": "minecraft:inventory_changed",
  43.             "conditions": {
  44.                 "items": [
  45.                     {
  46.                         "item": "minecraft:cake"
  47.                     }
  48.                 ]
  49.             }
  50.         }
  51.     }
  52. }
  53. 3RD ONE
  54. {
  55.     "display": {
  56.         "icon": {
  57.             "item": "minecraft:wither_rose"
  58.         },
  59.         "title": {"translate":"Black As Night"},
  60.         "description": {"translate":"Collect some Wither Roses from the aftermath of a wither fight"}
  61.     },
  62.     "parent": "minecraft:nether/summon_wither",
  63.     "criteria": {
  64.         "wither_rose": {
  65.             "trigger": "minecraft:inventory_changed",
  66.             "conditions": {
  67.                 "items": [
  68.                     {
  69.                         "item": "minecraft:wither_rose"
  70.                     }
  71.                 ]
  72.             }
  73.         }
  74.     }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement