# HG changeset patch # User Jeremy Thurgood # Date 1283011535 -7200 # Node ID 41ee3fc714042af48fe3e6e1951e17ebab106fa2 # Parent c80a1bd291d19ab71ca38f44698f575765920399 Tweaks to text and JIM background. diff -r c80a1bd291d1 -r 41ee3fc71404 gamelib/scenes/cryo.py --- a/gamelib/scenes/cryo.py Sat Aug 28 18:02:49 2010 +0200 +++ b/gamelib/scenes/cryo.py Sat Aug 28 18:05:35 2010 +0200 @@ -136,14 +136,14 @@ if self.get_data('greet'): self.set_data('greet', False) return make_jim_dialog( - "Greetings, Prisoner %s. This is the Judicial " + "Greetings, Prisoner %s. I am the Judicial " "Incarceration Monitor. " "You have been woken early under the terms of the " - "emergency conscription act to help with repairs to " + "emergency conscription act to assist with repairs to " "the ship. Your behaviour during this time will " - "be added to your record and will be relayed to " + "be noted on your record and will be relayed to " "prison officials when we reach the destination. " - "Please report to the bridge.'" % PLAYER_ID, self.state) + "Please report to the bridge." % PLAYER_ID, self.state) def leave(self): # Stop music @@ -377,7 +377,8 @@ if self.get_data('door') == "open": return 'An open doorway leads to the rest of the ship.' elif self.get_data('door') == "ajar": - return "A rusty door. It can't open all the way because of a chain on the other side." + return ("A rusty door. It can't open all the way because of a " + "chain on the other side.") return 'A rusty door. It is currently closed.' @@ -441,7 +442,7 @@ return Result("The plaque is welded to the unit. You can't shift it") def get_description(self): - return "'Prisoner 98cc-764e646391ee. War crimes. 45 years." + return "'Prisoner 98CC-764E646391EE. War crimes. 45 years." class FullBottle(Item): diff -r c80a1bd291d1 -r 41ee3fc71404 gamelib/scenes/map.py --- a/gamelib/scenes/map.py Sat Aug 28 18:02:49 2010 +0200 +++ b/gamelib/scenes/map.py Sat Aug 28 18:05:35 2010 +0200 @@ -42,10 +42,10 @@ ai1 = make_jim_dialog( "Under the terms of the emergency conscription " "act, I have downloaded the ship's schematics to your " - "neural implant to help you navigate around the ship. " - "Please report to the bridge.", self.state) + "neural implant to help you navigate around the ship.", + self.state) if ai1: - return ai1, make_jim_dialog("Prisoner %s. You are classed " + return ai1, make_jim_dialog("Prisoner %s, you are classed " "as a class 1 felon. Obtaining access to the ship's schematics " "constitutes a level 2 offence and carries a minimal penalty " "of an additional 3 years on your sentence.'" % PLAYER_ID, self.state) diff -r c80a1bd291d1 -r 41ee3fc71404 gamelib/widgets.py --- a/gamelib/widgets.py Sat Aug 28 18:02:49 2010 +0200 +++ b/gamelib/widgets.py Sat Aug 28 18:05:35 2010 +0200 @@ -104,9 +104,9 @@ if style == "JIM": self.set(font=get_font(20, "Monospace.ttf")) self.trim_line_top = 10 - self.bg_color = Color(255, 127, 127, 207) + self.bg_color = Color(255, 175, 127, 207) self.fg_color = (0, 0, 0) - self.border_color = (127, 0, 0) + self.border_color = (127, 15, 0) def draw_all(self, surface): BoomLabel.draw_all(self, surface)