view gamelib/constants.py @ 57:08665fa60345

Implement henhouses and henhouse adding.
author Simon Cross <hodgestar@gmail.com>
date Mon, 31 Aug 2009 18:34:10 +0000
parents 3a409e058608
children e2631c8e2cd6
line wrap: on
line source

"""Operation Fox Assault constants."""

# Project metadata

NAME = "Operation Fox Assault"

AUTHORS = [
    ("Adrianna Pinska", "adrianna.pinska@gmail.com"),
    ("Jeremy Thurgood", "firxen+rinkhals@gmail.com"),
    ("Neil Muller", ""),
    ("Simon Cross", "hodgestar+rinkhals@gmail.com"),
]

# GUI constants

SCREEN = (800, 600)
FG_COLOR = (255, 255, 255)
BG_COLOR = (0, 0, 0)

# Game constants

STARTING_CASH = 1000
SELL_PRICE_CHICKEN = 10
BUY_PRICE_FENCE = 50
BUY_PRICE_HENHOUSE = 100

TOOL_SELL_CHICKEN = 1
TOOL_SELL_EGG = 2
TOOL_BUY_FENCE = 3
TOOL_BUY_HENHOUSE = 4