view gamelib/scenes/bridge.py @ 136:d264850806dc

Better description handling in detail windows. (Sort of.)
author Jeremy Thurgood <firxen@gmail.com>
date Tue, 24 Aug 2010 20:35:31 +0200
parents 48d24a48d0ce
children 5e5d71e40e54
line wrap: on
line source

"""Bridge where the final showdown with the AI occurs."""

from gamelib.state import Scene, Item, Thing, Result


class Bridge(Scene):

    # FOLDER = "bridge"
    # BACKGROUND = None # TODO

    # TODO: This is for testing.
    FOLDER = "cryo"
    BACKGROUND = "cryo_room.png"
    NAME = "bridge"

    INITIAL_DATA = {
        'accessible': False,
        }

    def enter(self):
        return Result("The bridge is in a sorry, shabby state")



SCENES = [Bridge]