Line | |
---|
1 | """Operation Fox Assault constants.""" |
---|
2 | |
---|
3 | # Project metadata |
---|
4 | |
---|
5 | NAME = "Operation Fox Assault" |
---|
6 | |
---|
7 | AUTHORS = [ |
---|
8 | ("Adrianna Pinska", "adrianna.pinska@gmail.com"), |
---|
9 | ("Jeremy Thurgood", "firxen+rinkhals@gmail.com"), |
---|
10 | ("Neil Muller", ""), |
---|
11 | ("Simon Cross", "hodgestar+rinkhals@gmail.com"), |
---|
12 | ] |
---|
13 | |
---|
14 | # GUI constants |
---|
15 | |
---|
16 | SCREEN = (800, 600) |
---|
17 | FG_COLOR = (255, 255, 255) |
---|
18 | BG_COLOR = (0, 0, 0) |
---|
19 | |
---|
20 | # Game constants |
---|
21 | |
---|
22 | STARTING_CASH = 1000 |
---|
23 | SELL_PRICE_CHICKEN = 10 |
---|
24 | BUY_PRICE_FENCE = 50 |
---|
25 | BUY_PRICE_HENHOUSE = 100 |
---|
26 | |
---|
27 | TOOL_SELL_CHICKEN = 1 |
---|
28 | TOOL_SELL_EGG = 2 |
---|
29 | TOOL_BUY_FENCE = 3 |
---|
30 | TOOL_BUY_HENHOUSE = 4 |
---|
Note: See
TracBrowser
for help on using the repository browser.