diff 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
line wrap: on
line diff
--- a/gamelib/constants.py	Mon Aug 31 17:18:03 2009 +0000
+++ b/gamelib/constants.py	Mon Aug 31 17:37:20 2009 +0000
@@ -6,7 +6,7 @@
 
 AUTHORS = [
     ("Adrianna Pinska", "adrianna.pinska@gmail.com"),
-    ("Jeremy Thurgood", ""),
+    ("Jeremy Thurgood", "firxen+rinkhals@gmail.com"),
     ("Neil Muller", ""),
     ("Simon Cross", "hodgestar+rinkhals@gmail.com"),
 ]
@@ -15,3 +15,15 @@
 
 SCREEN = (800, 600)
 FG_COLOR = (255, 255, 255)
+BG_COLOR = (0, 0, 0)
+
+# Game constants
+
+STARTING_CASH = 100
+SELL_PRICE_CHICKEN = 10
+BUY_PRICE_FENCE = 50
+
+TOOL_SELL_CHICKEN = 1
+TOOL_SELL_EGG = 2
+TOOL_BUY_FENCE = 3
+TOOL_BUY_HENHOUSE = 4