diff gamelib/scenes/map.py @ 47:8f1fccb8cadf

Skeletons for scenes in plot outline.
author Simon Cross <simon@simonx>
date Mon, 23 Aug 2010 11:47:03 +0200
parents
children 3417cf0e8795
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gamelib/scenes/map.py	Mon Aug 23 11:47:03 2010 +0200
@@ -0,0 +1,21 @@
+"""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.
+   """
+
+from gamelib.state import Scene, Item, Thing
+
+
+class Map(Scene):
+
+    FOLDER = "map"
+    BACKGROUND = None # TODO
+
+    INITIAL_DATA = {
+        'accessible': True,
+        }
+
+
+SCENES = [Map]