comparison gamelib/scenes/mess.py @ 392:c81a4faa748e

Flag puzzle end conditions
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 20:05:28 +0200
parents eef2fca1aa11
children 72baf5bfebc6
comparison
equal deleted inserted replaced
391:30a2366cc8e1 392:c81a4faa748e
201 return Result("There's quite enough tape on the ducting already.") 201 return Result("There's quite enough tape on the ducting already.")
202 else: 202 else:
203 self.set_data("fixed", True) 203 self.set_data("fixed", True)
204 self.set_data("status", "fixed") 204 self.set_data("status", "fixed")
205 self.set_interact("fixed") 205 self.set_interact("fixed")
206 self.scene.set_data('life support online', True)
206 # TODO: A less anticlimactic climax? 207 # TODO: A less anticlimactic climax?
207 return Result("It takes quite a lot of tape, but eventually everything is" 208 return Result("It takes quite a lot of tape, but eventually everything is"
208 " airtight and ready to hold pressure. Who'd've thought duct" 209 " airtight and ready to hold pressure. Who'd've thought duct"
209 " tape could actually be used to tape ducts?") 210 " tape could actually be used to tape ducts?")
210 211