Advertisement
Guest User

Item Tiers config

a guest
Feb 26th, 2020
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.92 KB | None | 0 0
  1. # 'name' is used to display the tier in the item lore.
  2. #
  3. # 'deconstruct-item' is the drop table for the item
  4. # that drops when deconstructing an item.
  5. #
  6. # Tier IDs (TRASH,COMMON...) are case sensitive.
  7.  
  8. TRASH:
  9.     name: '&8&lTRASH'
  10.     unidentification:
  11.         range: 6
  12.         name: 'Trash'
  13.         prefix: '&8'
  14.     deconstruct-item: {}
  15.  
  16. COMMON:
  17.     name: '&7&lCOMMON'
  18.     parent: TRASH
  19.     unidentification:
  20.         range: 6
  21.         name: 'Common'
  22.         prefix: '&7'
  23.     deconstruct-item: {}
  24. UNCOMMON:
  25.  
  26.     # Tier name displayed in the item lore.
  27.     name: '&8&lUNCOMMON'
  28.    
  29.     # Unidentified items display the item tier.
  30.     unidentification:
  31.        
  32.         # Only applies for items with a required
  33.         # levels. Corresponds to the range within
  34.         # which the required level is located.
  35.         range: 6
  36.        
  37.         # Tier name displayed in lore.
  38.         name: 'Uncommon'
  39.        
  40.         # unidentification item name prefix.
  41.         prefix: '&8'
  42.    
  43.     item-glow:
  44.        
  45.         # When enabled, dropped items display
  46.         # an item hint (looks like a hologram).
  47.         hint: true
  48.        
  49.         # Item glow color. List (line 400+):
  50.         # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Color.html
  51.         color: 'GRAY'
  52.    
  53.     deconstruct-item:
  54.         sucess:
  55.             coef: 1
  56.             items:
  57.                 MATERIAL:
  58.                     UNCOMMON_WEAPON_ESSENCE: 100,1-1,0
  59.         lose:
  60.             coef: 2
  61.             items:
  62.                 MATERIAL:
  63.                     WEAPON_POWDER: 100,1-1,0
  64. RARE:
  65.     name: '&6&lRARE'
  66.     unidentification:
  67.         name: 'Rare'
  68.         range: 6
  69.         prefix: '&6'
  70.     deconstruct-item:
  71.         sucess:
  72.             coef: 1
  73.             items:
  74.                 MATERIAL:
  75.                     RARE_WEAPON_ESSENCE: 100,1-1,0
  76.         lose:
  77.             coef: 3
  78.             items:
  79.                 MATERIAL:
  80.                     WEAPON_POWDER: 100,1-1,0
  81. VERY_RARE:
  82.     name: '&e&lVERY RARE'
  83.     unidentification:
  84.         name: 'Very Rare'
  85.         prefix: '&e'
  86.         range: 6
  87.     deconstruct-item:
  88.         sucess:
  89.             coef: 1
  90.             items:
  91.                 MATERIAL:
  92.                     VERY_RARE_WEAPON_ESSENCE: 100,1-1,0
  93.         lose:
  94.             coef: 3
  95.             items:
  96.                 MATERIAL:
  97.                     WEAPON_POWDER: 100,1-1,0
  98. LEGENDARY:
  99.     name: '&b&lLEGENDARY'
  100.     unidentification:
  101.         name: 'Legendary'
  102.         prefix: '&b'
  103.         range: 6
  104.     deconstruct-item:
  105.         sucess:
  106.             coef: 1
  107.             items:
  108.                 MATERIAL:
  109.                     LEGENDARY_WEAPON_ESSENCE: 100,1-1,0
  110.         lose:
  111.             coef: 4
  112.             items:
  113.                 MATERIAL:
  114.                     WEAPON_POWDER: 100,1-1,0
  115. MYTHICAL:
  116.     name: '&5&lMYTHICAL'
  117.     unidentification:
  118.         name: 'Mythical'
  119.         prefix: '&5'
  120.         range: 6
  121.     deconstruct-item:
  122.         sucess:
  123.             coef: 1
  124.             items:
  125.                 MATERIAL:
  126.                     MYTHICAL_WEAPON_ESSENCE: 100,1-1,0
  127.         lose:
  128.             coef: 5
  129.             items:
  130.                 MATERIAL:
  131.                     WEAPON_POWDER: 100,1-1,0
  132. EPIC:
  133.     name: '&4&lEPIC'
  134.     unidentification:
  135.         name: 'Epic'
  136.         prefix: '&4'
  137.         range: 6
  138.     deconstruct-item:
  139.         sucess:
  140.             coef: 1
  141.             items:
  142.                 MATERIAL:
  143.                     EPIC_WEAPON_ESSENCE: 100,1-1,0
  144.         lose:
  145.             coef: 6
  146.             items:
  147.                 MATERIAL:
  148.                     WEAPON_POWDER: 100,1-1,0
  149.  
  150. MAGICAL:
  151.     name: '&2&lMAGICAL'
  152.     unidentification:
  153.         name: 'Magical'
  154.         prefix: '&2'
  155.         range: 6
  156.     deconstruct-item:
  157.         sucess:
  158.             coef: 1
  159.             items:
  160.                 MATERIAL:
  161.                     MAGICAL_WEAPON_ESSENCE: 100,1-1,0
  162.         lose:
  163.             coef: 3
  164.             items:
  165.                 MATERIAL:
  166.                     WEAPON_POWDER: 100,1-1,0
  167. UNIQUE:
  168.     name: '&c&lUNIQUE'
  169.     unidentification:
  170.         name: 'Unique'
  171.         prefix: '&c'
  172.         range: 6
  173.     deconstruct-item:
  174.         sucess:
  175.             coef: 1
  176.             items:
  177.                 MATERIAL:
  178.                     UNIQUE_WEAPON_ESSENCE: 100,1-1,0
  179.         lose:
  180.             coef: 9
  181.             items:
  182.                 MATERIAL:
  183.                     WEAPON_POWDER: 100,1-1,0
  184.  
  185. 1:
  186.     name: '&6Rarity: &91'
  187.     unidentification:
  188.         name: '1'
  189.         prefix: '&c'
  190.         range: 6
  191.     item-glow:
  192.         hint: true
  193.         color: 'BLUE'
  194. 2:
  195.     name: '&6Rarity: &92'
  196.     unidentification:
  197.         name: '2'
  198.         prefix: '&c'
  199.         range: 6
  200.     item-glow:
  201.         hint: true
  202.         color: 'BLUE'
  203. 3:
  204.     name: '&6Rarity: &93'
  205.     unidentification:
  206.         name: '3'
  207.         prefix: '&c'
  208.         range: 6
  209.     item-glow:
  210.         hint: true
  211.         color: 'BLUE'
  212. 4:
  213.     name: '&6Rarity: &a4'
  214.     unidentification:
  215.         name: '4'
  216.         prefix: '&c'
  217.         range: 6
  218.     item-glow:
  219.         hint: true
  220.         color: 'GREEN'
  221. 5:
  222.     name: '&6Rarity: &a5'
  223.     unidentification:
  224.         name: '5'
  225.         prefix: '&c'
  226.         range: 6
  227.     item-glow:
  228.         hint: true
  229.         color: 'GREEN'
  230. 6:
  231.     name: '&6Rarity: &a6'
  232.     unidentification:
  233.         name: '6'
  234.         prefix: '&c'
  235.         range: 6
  236.     item-glow:
  237.         hint: true
  238.         color: 'GREEN'
  239. 7:
  240.     name: '&6Rarity: &c7'
  241.     unidentification:
  242.         name: '7'
  243.         prefix: '&c'
  244.         range: 6
  245.     item-glow:
  246.         hint: true
  247.         color: 'RED'
  248. 8:
  249.     name: '&6Rarity: &c8'
  250.     unidentification:
  251.         name: '8'
  252.         prefix: '&c'
  253.         range: 6
  254.     item-glow:
  255.         hint: true
  256.         color: 'RED'
  257. 9:
  258.     name: '&6Rarity: &c9'
  259.     unidentification:
  260.         name: '9'
  261.         prefix: '&c'
  262.         range: 6
  263.     item-glow:
  264.         hint: true
  265.         color: 'RED'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement