changeset 340:eb24e74df4c3

Less violent werewolf health colour.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 06 Sep 2013 12:48:03 +0200
parents 9137e792307b
children 63d0c70a4e15
files nagslang/screens/area.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nagslang/screens/area.py	Fri Sep 06 12:44:01 2013 +0200
+++ b/nagslang/screens/area.py	Fri Sep 06 12:48:03 2013 +0200
@@ -251,6 +251,6 @@
         if self.protagonist.in_human_form():
             health_colour = pygame.color.THECOLORS['red']
         else:
-            health_colour = pygame.color.THECOLORS['purple']
+            health_colour = pygame.color.THECOLORS['violetred3']
         rect = pygame.Rect(55, 505, self.protagonist.get_health_level(), 40)
         pygame.draw.rect(surface, health_colour, rect, 0)