comparison gamelib/constants.py @ 139:1d73de63bd71

Add basic game over screen
author Neil Muller <drnlmuller@gmail.com>
date Wed, 02 Sep 2009 22:48:39 +0000
parents 4527e09dc620
children baf857805867
comparison
equal deleted inserted replaced
138:7c88a12cb0b6 139:1d73de63bd71
26 26
27 # Game constants 27 # Game constants
28 28
29 STARTING_CASH = 1000 29 STARTING_CASH = 1000
30 SELL_PRICE_CHICKEN = 10 30 SELL_PRICE_CHICKEN = 10
31 SELL_PRICE_EGG = 5
31 SELL_PRICE_DEAD_FOX = 5 32 SELL_PRICE_DEAD_FOX = 5
32 LOGGING_PRICE = 50 33 LOGGING_PRICE = 50
33 BUY_PRICE_FENCE = 50 34 BUY_PRICE_FENCE = 50
34 SELL_PRICE_FENCE = 25 35 SELL_PRICE_FENCE = 25
35 REPAIR_PRICE_FENCE = 25 36 REPAIR_PRICE_FENCE = 25
38 TOOL_SELL_EGG = 2 39 TOOL_SELL_EGG = 2
39 TOOL_SELL_BUILDING = 3 40 TOOL_SELL_BUILDING = 3
40 TOOL_BUY_FENCE = 4 41 TOOL_BUY_FENCE = 4
41 TOOL_PLACE_ANIMALS = 5 42 TOOL_PLACE_ANIMALS = 5
42 TOOL_LOGGING = 6 43 TOOL_LOGGING = 6
44
45 NIGHT_LENGTH = 150
46 TURN_LIMIT = 14