comparison gamelib/gameover.py @ 295:d037e37c5240

Some endgame message changes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 05 Sep 2009 16:19:38 +0000
parents 592bfad67488
children 010ab166c582
comparison
equal deleted inserted replaced
294:29e9683055dc 295:d037e37c5240
10 import constants 10 import constants
11 import imagecache 11 import imagecache
12 12
13 WON, LOST, LEFT = range(3) 13 WON, LOST, LEFT = range(3)
14 14
15 LOST_MESSAGES = ["You lost", 'You failed to protect yur chickens'] 15 WON_MESSAGES = [
16 WON_MESSAGES = ["You survived"] 16 "You won.",
17 LEFT_MESSAGES = ["You sold your farm", "You gave up", 17 "You survived!",
18 "Real life got in the way"] 18 "Your chickens will one day rule the world.",
19 ]
20
21 LOST_MESSAGES = [
22 "You lost.",
23 "You failed to protect your chickens.",
24 "Unopposed, the foxes overrun the farm.",
25 ]
26
27 LEFT_MESSAGES = [
28 "You gave up.",
29 "You sold your farm.",
30 "Real life got in the way.",
31 "Are you siding with the foxes?",
32 "What will your chickens do now?",
33 ]
19 34
20 def ScoreTable(): 35 def ScoreTable():
21 """Create and initialise a score table""" 36 """Create and initialise a score table"""
22 # We need a true file, so load will work, but, as we never save, 37 # We need a true file, so load will work, but, as we never save,
23 # the deletion doesn't bother us. 38 # the deletion doesn't bother us.