Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Seraph's Last Stand Tomb Calculator --
- print("Tomb Card Calculator")
- while true do
- write("Tomb Cards: ") inp = tonumber(read())
- if inp then
- p = ((inp*35)/100)
- print("=== Real Value === AIM "..(inp >= 4 and "WHITE" or "GREEN"))
- print("Speed (12 Max .1) = "..(p*12).."%")
- print("Defense (4 Max 90) = "..math.min(90, p*4).."%")
- print("Crit. (5) = "..(p*5).."%")
- print("Jump (30) = "..(p*30).."%")
- print("Move (20) = "..(p*20).."%")
- print("Health (10) = "..(p*10).."%")
- print("Stability (1) = "..(p).."%")
- else break end
- end
Advertisement
Add Comment
Please, Sign In to add comment