mooshroom.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "type": "minecraft:entity",
  3. "pools": [
  4. {
  5. "rolls": 1,
  6. "entries": [
  7. {
  8. "type": "minecraft:item",
  9. "functions": [
  10. {
  11. "function": "minecraft:set_count",
  12. "count": {
  13. "min": 0.0,
  14. "max": 2.0,
  15. "type": "minecraft:uniform"
  16. }
  17. },
  18. {
  19. "function": "minecraft:looting_enchant",
  20. "count": {
  21. "min": 0.0,
  22. "max": 1.0
  23. }
  24. }
  25. ],
  26. "name": "minecraft:leather"
  27. }
  28. ]
  29. },
  30. {
  31. "rolls": 1,
  32. "entries": [
  33. {
  34. "type": "minecraft:item",
  35. "functions": [
  36. {
  37. "function": "minecraft:set_count",
  38. "count": {
  39. "min": 1.0,
  40. "max": 3.0,
  41. "type": "minecraft:uniform"
  42. }
  43. },
  44. {
  45. "function": "minecraft:furnace_smelt",
  46. "conditions": [
  47. {
  48. "condition": "minecraft:entity_properties",
  49. "predicate": {
  50. "flags": {
  51. "is_on_fire": true
  52. }
  53. },
  54. "entity": "this"
  55. }
  56. ]
  57. },
  58. {
  59. "function": "minecraft:looting_enchant",
  60. "count": {
  61. "min": 0.0,
  62. "max": 1.0
  63. }
  64. }
  65. ],
  66. "name": "minecraft:beef"
  67. }
  68. ]
  69. }
  70. ]
  71. }