changeset 382:70f6917cad07

Some notes.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 06 Sep 2013 23:37:55 +0200
parents c22784701143
children e0d27a11f49a
files data/levels/start nagslang/game_object.py
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/data/levels/start	Fri Sep 06 23:22:44 2013 +0200
+++ b/data/levels/start	Fri Sep 06 23:37:55 2013 +0200
@@ -7,6 +7,14 @@
   - [300, 300]
   - 180
   classname: Door
+- args:
+  - [300, 125]
+  - '"Assessment authorisation for Pandora Station, pursuant to the ongoing claims investigation" -- just another day at the office.'
+  classname: Note
+- args:
+  - [300, 425]
+  - 'Note to self: Practice using tools and weapons during "that time of the month". We don''t want a repeat of last time. Or the time before.'
+  classname: Note
 lines: []
 polygons:
   1:
--- a/nagslang/game_object.py	Fri Sep 06 23:22:44 2013 +0200
+++ b/nagslang/game_object.py	Fri Sep 06 23:37:55 2013 +0200
@@ -228,6 +228,7 @@
     zorder = ZORDER_FLOOR
 
     def __init__(self, space, position, message):
+        print repr(message)
         body = make_body(None, None, position)
         self.shape = pymunk.Circle(body, 30)
         self.shape.sensor = True