comparison gamelib/icons.py @ 592:441077fab928

Easter egg.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 28 Nov 2009 23:37:10 +0000
parents e9393970b5f6
children
comparison
equal deleted inserted replaced
590:066b85a7f1cf 592:441077fab928
12 EMPTY_NEST_ICON = Image(imagecache.load_image('sprites/nest.png')) 12 EMPTY_NEST_ICON = Image(imagecache.load_image('sprites/nest.png'))
13 DAY_ICON = Image(imagecache.load_image('icons/sun.png')) 13 DAY_ICON = Image(imagecache.load_image('icons/sun.png'))
14 14
15 def animal_icon(animal): 15 def animal_icon(animal):
16 return Image(animal.image_left) 16 return Image(animal.image_left)
17
18 import eegg
19 if eegg.is_eggday():
20 EGG_ICON = Image(imagecache.load_image('icons/easter_egg.png'))