Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cells.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2013-04-13 08:30:58 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2013-04-13 08:30:58 (GMT)
commit3f81369e2f381dd4c929b75b366c5fdac817c81c (patch)
tree66817bf6f6483d0dfaca5cba56d445608cf58b11 /cells.py
parent7213db62450e3ec167f9dad328c5a26c9b80bab2 (diff)
sugarized icon
Diffstat (limited to 'cells.py')
-rwxr-xr-xcells.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/cells.py b/cells.py
index 0e731db..af6367f 100755
--- a/cells.py
+++ b/cells.py
@@ -239,22 +239,23 @@ class Game():
self.flashing_text = Group((prompt_text))
def help(self):
+ t = 40
a = Text(_("Try and get 1 of species in the yellow escape area."),
- size = int(50))
+ size = t)
b = Text(_("Click a cell to send the guard there."),
- size = int(50))
+ size = t)
b.rect.top = a.rect.bottom + 1
c = Text(_("Prisoners can escape iff the adjacent hiding space is"),
- size = int(50))
+ size = t)
c.rect.top = b.rect.bottom + 1
d = Text(' ' + _("red and empty or green and occupied."),
- size = int(50))
+ size = t)
d.rect.top = c.rect.bottom + 1
e = Text(_("Hit 'Esc' to return to the menu."),
- size = int(50))
+ size = t)
e.rect.top = d.rect.bottom + 1
f = Text(_("Press 'r' to reset the current game"),
- size = int(50))
+ size = t)
f.rect.top = e.rect.bottom + 1
text = Group((a, b, c, d, e, f))