comparison gamelib/scenes/bridge.py @ 292:cfabc9daf76c

typo
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Sat, 28 Aug 2010 00:19:34 +0200
parents beb9d6935b33
children 4012d50a4674
comparison
equal deleted inserted replaced
291:beb9d6935b33 292:cfabc9daf76c
163 self.state.add_inventory_item('stethoscope') 163 self.state.add_inventory_item('stethoscope')
164 self.scene.remove_thing(self) 164 self.scene.remove_thing(self)
165 # Fill in the doctor's rect 165 # Fill in the doctor's rect
166 self.scene.doctor.rect.append(self.rect) 166 self.scene.doctor.rect.append(self.rect)
167 return Result("You pick up the stethoscope and verify that the doctor's " 167 return Result("You pick up the stethoscope and verify that the doctor's "
168 "heart has stoped. Probably a while ago.") 168 "heart has stopped. Probably a while ago.")
169 169
170 170
171 class Superconductor(Item): 171 class Superconductor(Item):
172 "Used for connecting high-powered parts of the ship up" 172 "Used for connecting high-powered parts of the ship up"
173 173
199 return False 199 return False
200 200
201 def get_description(self): 201 def get_description(self):
202 return random.choice([ 202 return random.choice([
203 "The lights flash in interesting patterns.", 203 "The lights flash in interesting patterns.",
204 "The flashing lights don't mean anything to you", 204 "The flashing lights don't mean anything to you.",
205 "The console lights flash and flicker", 205 "The console lights flash and flicker.",
206 ]) 206 ])
207 207
208 class LeftLights(BlinkingLights): 208 class LeftLights(BlinkingLights):
209 209
210 NAME ='bridge.lights.1' 210 NAME ='bridge.lights.1'