all repos — Legends-RPG @ 2062b2c730563fe5071d7c08ae6a268b87242736

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'
10INN = 'Inn'
11POTION_SHOP = 'potion shop'
12ARMOR_SHOP = 'armor shop'
13WEAPON_SHOP = 'weapon shop'
14MAGIC_SHOP = 'magic shop'
15HOUSE = 'house'
16OVERWORLD = 'overworld'
17
18##Colors
19
20BLACK = (0, 0, 0)
21NEAR_BLACK = (1, 0, 0)
22WHITE = (255, 255, 255)
23BLACK_BLUE = (19, 15, 48)
24NEAR_BLACK_BLUE = (20, 15, 48)
25LIGHT_BLUE = (0, 153, 204)
26DARK_RED = (118, 27, 12)
27
28
29MAIN_FONT = 'DroidSans'
30
31
32
33