1
0

mushroom_stew.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "parent": "minecraft:recipes/root",
  3. "rewards": {
  4. "recipes": [
  5. "minecraft:mushroom_stew"
  6. ]
  7. },
  8. "criteria": {
  9. "has_mushroom_stew": {
  10. "trigger": "minecraft:inventory_changed",
  11. "conditions": {
  12. "items": [
  13. {
  14. "item": "minecraft:mushroom_stew"
  15. }
  16. ]
  17. }
  18. },
  19. "has_bowl": {
  20. "trigger": "minecraft:inventory_changed",
  21. "conditions": {
  22. "items": [
  23. {
  24. "item": "minecraft:bowl"
  25. }
  26. ]
  27. }
  28. },
  29. "has_brown_mushroom": {
  30. "trigger": "minecraft:inventory_changed",
  31. "conditions": {
  32. "items": [
  33. {
  34. "item": "minecraft:brown_mushroom"
  35. }
  36. ]
  37. }
  38. },
  39. "has_red_mushroom": {
  40. "trigger": "minecraft:inventory_changed",
  41. "conditions": {
  42. "items": [
  43. {
  44. "item": "minecraft:red_mushroom"
  45. }
  46. ]
  47. }
  48. },
  49. "has_the_recipe": {
  50. "trigger": "minecraft:recipe_unlocked",
  51. "conditions": {
  52. "recipe": "minecraft:mushroom_stew"
  53. }
  54. }
  55. },
  56. "requirements": [
  57. [
  58. "has_mushroom_stew",
  59. "has_bowl",
  60. "has_brown_mushroom",
  61. "has_red_mushroom",
  62. "has_the_recipe"
  63. ]
  64. ]
  65. }