all repos — Legends-RPG @ a3ef5e6b4ee7fab5e9532a97a89dcf999279f5df

A fantasy mini-RPG built with Python and Pygame.

data/constants.py (view raw)

 1"""Constants used throughout the game"""
 2
 3SCREEN_SIZE = (800, 608)
 4
 5##GAME STATES"""
 6
 7TOWN = 'town'
 8MAIN_MENU = 'main menu'
 9CASTLE = 'castle'
10SHOP = 'shop'
11
12##Colors
13
14BLACK = (0, 0, 0)
15NEAR_BLACK = (1, 0, 0)
16WHITE = (255, 255, 255)
17BLACK_BLUE = (19, 15, 48)
18
19
20
21