chicken.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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:feather"
  27. }
  28. ]
  29. },
  30. {
  31. "rolls": 1,
  32. "entries": [
  33. {
  34. "type": "minecraft:item",
  35. "functions": [
  36. {
  37. "function": "minecraft:furnace_smelt",
  38. "conditions": [
  39. {
  40. "condition": "minecraft:entity_properties",
  41. "predicate": {
  42. "flags": {
  43. "is_on_fire": true
  44. }
  45. },
  46. "entity": "this"
  47. }
  48. ]
  49. },
  50. {
  51. "function": "minecraft:looting_enchant",
  52. "count": {
  53. "min": 0.0,
  54. "max": 1.0
  55. }
  56. }
  57. ],
  58. "name": "minecraft:chicken"
  59. }
  60. ]
  61. }
  62. ]
  63. }