JustDoesGames

Seraph's Last Stand Tomb Calculator

Apr 24th, 2022
1,012
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.61 KB | None | 0 0
  1. -- Seraph's Last Stand Tomb Calculator --
  2.  
  3. print("Tomb Card Calculator")
  4.  
  5. while true do
  6.     write("Tomb Cards: ") inp = tonumber(read())
  7.     if inp then
  8.         p = ((inp*35)/100)
  9.         print("=== Real Value === AIM "..(inp >= 4 and "WHITE" or "GREEN"))
  10.         print("Speed (12 Max .1) = "..(p*12).."%")
  11.         print("Defense (4 Max 90) = "..math.min(90, p*4).."%")
  12.         print("Crit. (5) = "..(p*5).."%")
  13.         print("Jump (30) = "..(p*30).."%")
  14.         print("Move (20) = "..(p*20).."%")
  15.         print("Health (10) = "..(p*10).."%")
  16.         print("Stability (1) = "..(p).."%")
  17.     else break end
  18. end
  19.  
Advertisement
Add Comment
Please, Sign In to add comment