diff --git a/credits.md b/credits.md index a35f53f..d99bbb0 100644 --- a/credits.md +++ b/credits.md @@ -17,3 +17,7 @@ All the textures are edited by myself to fit the [Famicube palette](https://losp ## Sky gradients [rh0 - OpenGameArt](https://opengameart.org/content/18-gradient-skies-640x480) + +## Font + +[Front End Dev - Grape Soda](https://fontenddev.com/fonts/grape-soda/) diff --git a/gamedata/font.ttf b/gamedata/font.ttf index dcca687..5b1deb3 100644 Binary files a/gamedata/font.ttf and b/gamedata/font.ttf differ diff --git a/gamedata/game.py b/gamedata/game.py index 5e910c7..2b1fbd7 100644 --- a/gamedata/game.py +++ b/gamedata/game.py @@ -15,9 +15,9 @@ class Game(): pygame.mixer.init() font = "gamedata/font.ttf" - self.fontfile = pygame.font.Font(font,25) - self.fontfilesmall = pygame.font.Font(font,18) - self.fontfilebig = pygame.font.Font(font,60) + self.fontfile = pygame.font.Font(font,32) + self.fontfilesmall = pygame.font.Font(font,16) + self.fontfilebig = pygame.font.Font(font,64) self.logs = []