shiny_gear.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "parent": "minecraft:story/mine_diamond",
  3. "display": {
  4. "icon": {
  5. "item": "minecraft:diamond_chestplate",
  6. "nbt": "{Damage:0}"
  7. },
  8. "title": {
  9. "translate": "advancements.story.shiny_gear.title"
  10. },
  11. "description": {
  12. "translate": "advancements.story.shiny_gear.description"
  13. },
  14. "frame": "task",
  15. "show_toast": true,
  16. "announce_to_chat": true,
  17. "hidden": false
  18. },
  19. "criteria": {
  20. "diamond_helmet": {
  21. "trigger": "minecraft:inventory_changed",
  22. "conditions": {
  23. "items": [
  24. {
  25. "item": "minecraft:diamond_helmet"
  26. }
  27. ]
  28. }
  29. },
  30. "diamond_chestplate": {
  31. "trigger": "minecraft:inventory_changed",
  32. "conditions": {
  33. "items": [
  34. {
  35. "item": "minecraft:diamond_chestplate"
  36. }
  37. ]
  38. }
  39. },
  40. "diamond_leggings": {
  41. "trigger": "minecraft:inventory_changed",
  42. "conditions": {
  43. "items": [
  44. {
  45. "item": "minecraft:diamond_leggings"
  46. }
  47. ]
  48. }
  49. },
  50. "diamond_boots": {
  51. "trigger": "minecraft:inventory_changed",
  52. "conditions": {
  53. "items": [
  54. {
  55. "item": "minecraft:diamond_boots"
  56. }
  57. ]
  58. }
  59. }
  60. },
  61. "requirements": [
  62. [
  63. "diamond_helmet",
  64. "diamond_chestplate",
  65. "diamond_leggings",
  66. "diamond_boots"
  67. ]
  68. ]
  69. }