comparison gamelib/scenes/cryo.py @ 202:6c84eb5ff80a

Tweak intro text
author Neil Muller <neil@dip.sun.ac.za>
date Thu, 26 Aug 2010 10:54:43 +0200
parents c18ef647ffe6
children aeb96ca5f76c
comparison
equal deleted inserted replaced
201:9531a22721d1 202:6c84eb5ff80a
123 pieces = [get_music(x, prefix='sounds') for x in self.MUSIC] 123 pieces = [get_music(x, prefix='sounds') for x in self.MUSIC]
124 background_playlist = PlayList(pieces, random=True, repeat=True) 124 background_playlist = PlayList(pieces, random=True, repeat=True)
125 change_playlist(background_playlist) 125 change_playlist(background_playlist)
126 if self.get_data('greet'): 126 if self.get_data('greet'):
127 self.set_data('greet', False) 127 self.set_data('greet', False)
128 return Result("Greetings Prisoner 84c7-d10dcfda0878. You have woken early under" 128 return Result(
129 " the terms of the emergency conscription act to help with" 129 "You hear a voice: 'Greetings Prisoner 84c7-d10dcfda0878. "
130 " repairs to the ship. Your behaviour during this time will" 130 "This is the Judicial Incarceration Monitor. "
131 " be added to your record and will be relayed to " 131 "You have been woken early under the terms of the "
132 " prison officials when we reach the destination." 132 "emergency conscription act to help with repairs to "
133 " Please report to the bridge.") 133 "the ship. Your behaviour during this time will "
134 "be added to your record and will be relayed to "
135 "prison officials when we reach the destination. "
136 "Please report to the bridge.'")
134 137
135 def leave(self): 138 def leave(self):
136 # Stop music 139 # Stop music
137 change_playlist(None) 140 change_playlist(None)
138 141