comparison gamelib/constants.py @ 52:0d4799866bcf

Sell chickens and buy fences.
author Jeremy Thurgood <firxen@gmail.com>
date Mon, 31 Aug 2009 17:37:20 +0000
parents c0abad23a055
children 3a409e058608
comparison
equal deleted inserted replaced
51:32fb395cf71c 52:0d4799866bcf
4 4
5 NAME = "Operation Fox Assault" 5 NAME = "Operation Fox Assault"
6 6
7 AUTHORS = [ 7 AUTHORS = [
8 ("Adrianna Pinska", "adrianna.pinska@gmail.com"), 8 ("Adrianna Pinska", "adrianna.pinska@gmail.com"),
9 ("Jeremy Thurgood", ""), 9 ("Jeremy Thurgood", "firxen+rinkhals@gmail.com"),
10 ("Neil Muller", ""), 10 ("Neil Muller", ""),
11 ("Simon Cross", "hodgestar+rinkhals@gmail.com"), 11 ("Simon Cross", "hodgestar+rinkhals@gmail.com"),
12 ] 12 ]
13 13
14 # GUI constants 14 # GUI constants
15 15
16 SCREEN = (800, 600) 16 SCREEN = (800, 600)
17 FG_COLOR = (255, 255, 255) 17 FG_COLOR = (255, 255, 255)
18 BG_COLOR = (0, 0, 0)
19
20 # Game constants
21
22 STARTING_CASH = 100
23 SELL_PRICE_CHICKEN = 10
24 BUY_PRICE_FENCE = 50
25
26 TOOL_SELL_CHICKEN = 1
27 TOOL_SELL_EGG = 2
28 TOOL_BUY_FENCE = 3
29 TOOL_BUY_HENHOUSE = 4