comparison gamelib/scenes/cryo.py @ 368:a95bfba3acd5

speling
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Sat, 28 Aug 2010 17:27:07 +0200
parents 2cadb47405a4
children c80a1bd291d1
comparison
equal deleted inserted replaced
367:23f38d018998 368:a95bfba3acd5
92 (235, 490, 50, 60), 92 (235, 490, 50, 60),
93 ))) 93 )))
94 94
95 self.add_thing(GenericCryoUnit(5, 95 self.add_thing(GenericCryoUnit(5,
96 "A working cryo chamber. The frosted glass obscures the details of the occupant.", 96 "A working cryo chamber. The frosted glass obscures the details of the occupant.",
97 "Prisoner B520-99495B8C41CE. Copyright infringment. 60 years.", 97 "Prisoner B520-99495B8C41CE. Copyright infringement. 60 years.",
98 ( 98 (
99 (340, 430, 50, 70), 99 (340, 430, 50, 70),
100 (330, 500, 60, 50), 100 (330, 500, 60, 50),
101 ))) 101 )))
102 102
197 } 197 }
198 198
199 INITIAL = "fixed" 199 INITIAL = "fixed"
200 200
201 def interact_with_machete(self, item): 201 def interact_with_machete(self, item):
202 return Result("These pipes carry fuild to the working cryo units." 202 return Result("These pipes carry fluid to the working cryo units."
203 " Chopping them down doesn't seem sensible.") 203 " Chopping them down doesn't seem sensible.")
204 204
205 def is_interactive(self): 205 def is_interactive(self):
206 return True 206 return True
207 207