Advertisement
HowToRoblox

Stones

Nov 24th, 2022
1,404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. local stones = {}
  2.  
  3.  
  4. stones["Light Stone"] = {
  5.     cost = 0,
  6.     chance = 60,
  7.     health = 1,
  8.     minDepth = 0,
  9.     maxDepth = 30,
  10. }
  11.  
  12. stones["Medium Stone"] = {
  13.     cost = 0,
  14.     chance = 60,
  15.     health = 2,
  16.     minDepth = 17,
  17.     maxDepth = 60,
  18. }
  19.  
  20. stones["Strong Stone"] = {
  21.     cost = 0,
  22.     chance = 60,
  23.     health = 4,
  24.     minDepth = 45,
  25.     maxDepth = 100,
  26. }
  27.  
  28.  
  29. return stones
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement