oak_boat.json 486 B

12345678910111213141516171819202122232425262728
  1. {
  2. "parent": "minecraft:recipes/root",
  3. "rewards": {
  4. "recipes": [
  5. "minecraft:oak_boat"
  6. ]
  7. },
  8. "criteria": {
  9. "in_water": {
  10. "trigger": "minecraft:enter_block",
  11. "conditions": {
  12. "block": "minecraft:water"
  13. }
  14. },
  15. "has_the_recipe": {
  16. "trigger": "minecraft:recipe_unlocked",
  17. "conditions": {
  18. "recipe": "minecraft:oak_boat"
  19. }
  20. }
  21. },
  22. "requirements": [
  23. [
  24. "in_water",
  25. "has_the_recipe"
  26. ]
  27. ]
  28. }