comparison gamelib/constants.py @ 55:3a409e058608

Up starting cash and add henhouse price.
author Simon Cross <hodgestar@gmail.com>
date Mon, 31 Aug 2009 18:30:02 +0000
parents 0d4799866bcf
children e2631c8e2cd6
comparison
equal deleted inserted replaced
54:b8f64db0d39e 55:3a409e058608
17 FG_COLOR = (255, 255, 255) 17 FG_COLOR = (255, 255, 255)
18 BG_COLOR = (0, 0, 0) 18 BG_COLOR = (0, 0, 0)
19 19
20 # Game constants 20 # Game constants
21 21
22 STARTING_CASH = 100 22 STARTING_CASH = 1000
23 SELL_PRICE_CHICKEN = 10 23 SELL_PRICE_CHICKEN = 10
24 BUY_PRICE_FENCE = 50 24 BUY_PRICE_FENCE = 50
25 BUY_PRICE_HENHOUSE = 100
25 26
26 TOOL_SELL_CHICKEN = 1 27 TOOL_SELL_CHICKEN = 1
27 TOOL_SELL_EGG = 2 28 TOOL_SELL_EGG = 2
28 TOOL_BUY_FENCE = 3 29 TOOL_BUY_FENCE = 3
29 TOOL_BUY_HENHOUSE = 4 30 TOOL_BUY_HENHOUSE = 4