Guest User

maxDuration.lua

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