all repos — Legends-RPG @ f2dca0d393a15a440a0a97993509345ca515d575

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'
17BROTHER_HOUSE = 'brother_house'
18BATTLE = 'battle'
19
20##Colors
21
22BLACK = (0, 0, 0)
23NEAR_BLACK = (1, 0, 0)
24WHITE = (255, 255, 255)
25BLACK_BLUE = (19, 15, 48)
26NEAR_BLACK_BLUE = (20, 15, 48)
27LIGHT_BLUE = (0, 153, 204)
28DARK_RED = (118, 27, 12)
29
30
31MAIN_FONT = 'DroidSans'
32
33
34
35