view gamelib/scenes/map.py @ 95:7590586180f5

door goes from shut to ajar to open
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Tue, 24 Aug 2010 01:00:10 +0200
parents 3417cf0e8795
children 11afefc4aeaf
line wrap: on
line source

"""Neurally implanted schematic for moving around on the ship.

   It is illegal for prisoners in transit to activate such an
   implant. Failure to comply carries a minimum sentence of
   six months.

   Many parts of the ship are derelict and inaccessible.
   """

from gamelib.state import Scene, Item, Thing


class Map(Scene):

    FOLDER = "map"
    BACKGROUND = None # TODO

    INITIAL_DATA = {
        'accessible': True,
        }


SCENES = [Map]