Advertisement
skypop

CC maxDamage

Aug 9th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- maxDamage (non exhaustif)
  2. -- by SukaiPoppuGo
  3.  
  4. local data = {
  5.     ["minecraft:iron_pickaxe"] = 250,
  6.     ["minecraft:iron_sword"] = 250,
  7.     ["minecraft:iron_shovel"] = 250,
  8.     ["minecraft:iron_axe"] = 250,
  9.    
  10.     ["minecraft:bow"] = 384,
  11.    
  12.     ["minecraft:diamond_pickaxe"] = 1561,
  13.     ["minecraft:diamond_sword"] = 1561,
  14.     ["minecraft:diamond_shovel"] = 1561,
  15.     ["minecraft:diamond_axe"] = 1561,
  16.     ["minecraft:diamond_hoe"] = 1561,
  17.    
  18.     ["minecraft:diamond_helmet"] = 363,
  19.     ["minecraft:diamond_chestplate"] = 528,
  20.     ["minecraft:diamond_leggings"] = 495,
  21.     ["minecraft:diamond_boots"] = 429,
  22. }
  23.  
  24. function get(name)
  25.     return data[name]
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement