Advertisement
Jragon014

Loot tables example.

Dec 31st, 2015
4,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. {
  2. "pools": [
  3. {
  4. "rolls": 1,
  5. "entries": [
  6. {
  7. "type": "item",
  8. "weight": 1,
  9. "name": "minecraft:wooden_sword"
  10. },
  11. {
  12. "type": "item",
  13. "weight": 1,
  14. "name": "minecraft:stone_sword",
  15. "functions": [
  16. {
  17. "function": "set_count",
  18. "count": {
  19. "min": 1,
  20. "max": 10
  21. }
  22. }
  23. ]
  24. },
  25. {
  26. "type": "item",
  27. "weight": 1,
  28. "name": "minecraft:iron_sword",
  29. "functions": [
  30. {
  31. "function": "set_attributes",
  32. "modifiers": [
  33. {
  34. "name": "null",
  35. "attribute": "generic.maxHealth",
  36. "operation": "addition",
  37. "amount": {
  38. "min": 2,
  39. "max": 10
  40. },
  41. "slot": [
  42. "mainhand",
  43. "offhand"
  44. ]
  45. }
  46. ]
  47. }
  48. ]
  49. },
  50. {
  51. "type": "item",
  52. "weight": 1,
  53. "name": "minecraft:golden_sword",
  54. "functions": [
  55. {
  56. "function": "enchant_randomly",
  57. "enchantments": [
  58. "sharpness"
  59. ]
  60. }
  61. ]
  62. },
  63. {
  64. "type": "item",
  65. "weight": 1,
  66. "name": "minecraft:diamond_sword",
  67. "functions": [
  68. {
  69. "function": "set_nbt",
  70. "tag": "{display:{Name:\"Mighty Sword\",Lore:[...by Jragon's Might.]}}"
  71. }
  72. ]
  73. }
  74. ]
  75. }
  76. ]
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement