view gamelib/constants.py @ 77:65958516c7d9

Implement separate fence repair cost (currently 25 groats).
author Simon Cross <hodgestar@gmail.com>
date Tue, 01 Sep 2009 10:40:57 +0000
parents edc15ce8fa30
children ad9d1bc7ef0c
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
SELL_PRICE_FENCE = 25
REPAIR_PRICE_FENCE = 25

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