comparison gamelib/scenes/map.py @ 376:41ee3fc71404

Tweaks to text and JIM background.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 28 Aug 2010 18:05:35 +0200
parents 452230d78541
children 308a433c4713
comparison
equal deleted inserted replaced
375:c80a1bd291d1 376:41ee3fc71404
40 if self.get_data('implant'): 40 if self.get_data('implant'):
41 self.set_data('implant', False) 41 self.set_data('implant', False)
42 ai1 = make_jim_dialog( 42 ai1 = make_jim_dialog(
43 "Under the terms of the emergency conscription " 43 "Under the terms of the emergency conscription "
44 "act, I have downloaded the ship's schematics to your " 44 "act, I have downloaded the ship's schematics to your "
45 "neural implant to help you navigate around the ship. " 45 "neural implant to help you navigate around the ship.",
46 "Please report to the bridge.", self.state) 46 self.state)
47 if ai1: 47 if ai1:
48 return ai1, make_jim_dialog("Prisoner %s. You are classed " 48 return ai1, make_jim_dialog("Prisoner %s, you are classed "
49 "as a class 1 felon. Obtaining access to the ship's schematics " 49 "as a class 1 felon. Obtaining access to the ship's schematics "
50 "constitutes a level 2 offence and carries a minimal penalty " 50 "constitutes a level 2 offence and carries a minimal penalty "
51 "of an additional 3 years on your sentence.'" % PLAYER_ID, self.state) 51 "of an additional 3 years on your sentence.'" % PLAYER_ID, self.state)
52 52
53 53