all repos — Legends-RPG @ 43c7782a1a3a9749ebf07c8e1897407f742bc3d2

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