Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.70 KB | None | 0 0
  1. {
  2.   "pools": [
  3.     {
  4.       "name": "tier",
  5.       "rolls": 1,
  6.       "entries": [
  7.         {
  8.           "type": "item",
  9.           "name": "minecraft:book",
  10.           "weight": 1,
  11.           "functions": [
  12.             {
  13.               "function": "enchant_with_levels",
  14.               "treasure": true,
  15.               "levels": {
  16.                 "min": 0,
  17.                 "max": 20
  18.               },
  19.               "conditions": [
  20.             {
  21.               "condition": "entity_properties",
  22.               "entity": "this",
  23.               "properties": {
  24.                 "champions:is_champion": {
  25.                   "min_tier": 1
  26.                 }
  27.               }
  28.             },
  29.                 {
  30.                   "condition": "killed_by_player"
  31.                 },
  32.                 {
  33.                   "condition": "random_chance",
  34.                   "chance": 0.7
  35.                 }
  36.               ]
  37.             }
  38.           ]
  39.         },
  40.         {
  41.           "type": "item",
  42.           "name": "minecraft:book",
  43.           "weight": 1,
  44.           "functions": [
  45.             {
  46.               "function": "enchant_with_levels",
  47.               "treasure": true,
  48.               "levels": {
  49.                 "min": 20,
  50.                 "max": 39
  51.               },
  52.               "conditions": [
  53.             {
  54.               "condition": "entity_properties",
  55.               "entity": "this",
  56.               "properties": {
  57.                 "champions:is_champion": {
  58.                   "min_tier": 2
  59.                 }
  60.               }
  61.             },
  62.                 {
  63.                   "condition": "killed_by_player"
  64.                 },
  65.                 {
  66.                   "condition": "random_chance",
  67.                   "chance": 0.5
  68.                 }
  69.               ]
  70.             }
  71.           ]
  72.         },
  73.         {
  74.           "type": "item",
  75.           "name": "minecraft:book",
  76.           "weight": 1,
  77.           "functions": [
  78.             {
  79.               "function": "enchant_with_levels",
  80.               "treasure": true,
  81.               "levels": {
  82.                 "min": 15,
  83.                 "max": 50
  84.               },
  85.               "conditions": [
  86.             {
  87.               "condition": "entity_properties",
  88.               "entity": "this",
  89.               "properties": {
  90.                 "champions:is_champion": {
  91.                   "min_tier": 3
  92.                 }
  93.               }
  94.             },
  95.                 {
  96.                   "condition": "killed_by_player"
  97.                 }
  98.               ]
  99.             }
  100.           ]
  101.         },
  102.         {
  103.           "type": "item",
  104.           "name": "minecraft:book",
  105.           "weight": 1,
  106.           "functions": [
  107.             {
  108.               "function": "enchant_with_levels",
  109.               "treasure": true,
  110.               "levels": {
  111.                 "min": 20,
  112.                 "max": 50
  113.               },
  114.               "conditions": [
  115.             {
  116.               "condition": "entity_properties",
  117.               "entity": "this",
  118.               "properties": {
  119.                 "champions:is_champion": {
  120.                   "min_tier": 4
  121.                 }
  122.               }
  123.             },
  124.                 {
  125.                   "condition": "killed_by_player"
  126.                 }
  127.               ]
  128.             }
  129.           ]
  130.         },
  131.         {
  132.           "type": "item",
  133.           "name": "minecraft:diamond",
  134.           "weight": 1,
  135.           "functions": [
  136.             {
  137.               "function": "set_count",
  138.               "count": {
  139.                 "min": 5,
  140.                 "max": 15
  141.               },
  142.               "conditions": [
  143.             {
  144.               "condition": "entity_properties",
  145.               "entity": "this",
  146.               "properties": {
  147.                 "champions:is_champion": {
  148.                   "min_tier": 2
  149.                 }
  150.               }
  151.             },
  152.                 {
  153.                   "condition": "killed_by_player"
  154.                 }
  155.               ]
  156.             }
  157.           ]
  158.         },
  159.         {
  160.           "type": "item",
  161.           "name": "minecraft:iron_ingot",
  162.           "weight": 1,
  163.           "functions": [
  164.             {
  165.               "function": "set_count",
  166.               "count": {
  167.                 "min": 10,
  168.                 "max": 32
  169.               },
  170.               "conditions": [
  171.             {
  172.               "condition": "entity_properties",
  173.               "entity": "this",
  174.               "properties": {
  175.                 "champions:is_champion": {
  176.                   "min_tier": 1
  177.                 }
  178.               }
  179.             },
  180.                 {
  181.                   "condition": "killed_by_player"
  182.                 }
  183.               ]
  184.             }
  185.           ]
  186.         }
  187.       ]
  188.     }
  189.   ]
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement