black_concrete_powder.json 790 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "parent": "minecraft:recipes/root",
  3. "rewards": {
  4. "recipes": [
  5. "minecraft:black_concrete_powder"
  6. ]
  7. },
  8. "criteria": {
  9. "has_sand": {
  10. "trigger": "minecraft:inventory_changed",
  11. "conditions": {
  12. "items": [
  13. {
  14. "item": "minecraft:sand"
  15. }
  16. ]
  17. }
  18. },
  19. "has_gravel": {
  20. "trigger": "minecraft:inventory_changed",
  21. "conditions": {
  22. "items": [
  23. {
  24. "item": "minecraft:gravel"
  25. }
  26. ]
  27. }
  28. },
  29. "has_the_recipe": {
  30. "trigger": "minecraft:recipe_unlocked",
  31. "conditions": {
  32. "recipe": "minecraft:black_concrete_powder"
  33. }
  34. }
  35. },
  36. "requirements": [
  37. [
  38. "has_sand",
  39. "has_gravel",
  40. "has_the_recipe"
  41. ]
  42. ]
  43. }