comparison gamelib/scenes/scene_widgets.py @ 435:19aff54b2e73

Many small fixes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 28 Aug 2010 23:48:50 +0200
parents 452230d78541
children 54853e61b149
comparison
equal deleted inserted replaced
434:9bcb6148fc6b 435:19aff54b2e73
169 169
170 def get_description(self): 170 def get_description(self):
171 return 'An open doorway leads to the rest of the ship.' 171 return 'An open doorway leads to the rest of the ship.'
172 172
173 def interact_default(self, item): 173 def interact_default(self, item):
174 return Result(random.choice([ 174 return self.interact_without()
175 "Sadly, this isn't that sort of game.",
176 "Your valiant efforts are foiled by the Evil Game Designer.",
177 "Waving that in the doorway does nothing. Try something else, perhaps?",
178 ]))
179 175
180 176
181 def make_jim_dialog(mesg, state): 177 def make_jim_dialog(mesg, state):
182 "Utility helper function" 178 "Utility helper function"
183 if state.scenes['bridge'].get_data('ai status') == 'online': 179 if state.scenes['bridge'].get_data('ai status') == 'online':