comparison gamelib/scenes/scene_widgets.py @ 350:125cb389ab90

Hook up poster. Add cameras to crew_quarters and bridge
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 15:31:45 +0200
parents 86e3d5dd7fa6
children 88c1a59b0544
comparison
equal deleted inserted replaced
349:0cc6ee8f2827 350:125cb389ab90
175 "Sadly, this isn't that sort of game.", 175 "Sadly, this isn't that sort of game.",
176 "Your valiant efforts are foiled by the Evil Game Designer.", 176 "Your valiant efforts are foiled by the Evil Game Designer.",
177 "Waving that in the doorway does nothing. Try something else, perhaps?", 177 "Waving that in the doorway does nothing. Try something else, perhaps?",
178 ])) 178 ]))
179 179
180 class BaseCamera(Thing):
181 "Base class for the camera puzzles"
182
183 INITIAL = 'camera'
184
185 def get_description(self):
186 return "A security camera watches over the room"
187
188 def interact_with_escher_poster(self, item):
189 # TODO
190 return Result("A very bad idea")
191