This commit is contained in:
makiki 2024-08-20 12:22:48 +02:00
parent 52a8b7c78e
commit dfdbe9e48e
1 changed files with 11 additions and 0 deletions

View File

@ -344,6 +344,17 @@ function Game:draw()
love.graphics.printf("You succeeded at scaling up the Tower of Scale, and displayed the mastery over the power scaling!", 8,80,232,"center")
love.graphics.printf("SCORE:"..player_power_to_string(self.player_power),0,128,248,"center")
if self.player_power >= 10000000000 then
love.graphics.printf("GRADE: S",0,144,248,"center")
elseif self.player_power >= 1000000000 then
love.graphics.printf("GRADE: A",0,144,248,"center")
elseif self.player_power >= 100000000 then
love.graphics.printf("GRADE: B",0,144,248,"center")
elseif self.player_power >= 10000000 then
love.graphics.printf("GRADE: C",0,144,248,"center")
else
love.graphics.printf("GRADE: D",0,144,248,"center")
end
love.graphics.printf("Want to do better?\nPress Z to undo!", 0,200,248,"center")
love.graphics.pop()
return