diff skaapsteker/sprites/items.py @ 397:00dbc053f9a0

Some item maintenance.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 09 Apr 2011 16:54:11 +0200
parents 135cbb99511f
children 2da0db41cdf0
line wrap: on
line diff
--- a/skaapsteker/sprites/items.py	Sat Apr 09 16:41:41 2011 +0200
+++ b/skaapsteker/sprites/items.py	Sat Apr 09 16:54:11 2011 +0200
@@ -31,7 +31,7 @@
 # Collectibles
 
 class Aburage(Item):
-    image_file = 'tofu.png'
+    image_file = 'props/tofu.png'
 
     def player_action(self, player):
         player.eat_aburage()
@@ -39,7 +39,7 @@
 
 
 class HaikuScroll(Item):
-    image_file = 'haiku-scroll.png'
+    image_file = 'props/haiku-scroll.png'
 
     def player_action(self, player):
         player.collect_scroll(self)
@@ -56,19 +56,19 @@
 # Monk tea mission
 
 class TeaCup(Item):
-    image_file = 'teacup_empty.png'
+    image_file = 'props/teacup_empty.png'
 
 
 class TeaLeaf(Item):
-    image_file = 'tealeaf.png'
+    image_file = 'props/tealeaf.png'
 
 
 class TeaCupFull(Item):
-    image_file = 'teacup_full.png'
+    image_file = 'props/teacup_full.png'
 
 
 class TeaPot(Item):
-    image_file = 'teapot.png'
+    image_file = 'props/teapot.png'
 
     def setup(self, brewed, **opts):
         super(TeaPot, self).setup(**opts)
@@ -98,8 +98,7 @@
 
 
 class Fan(Item):
-    image_file = 'fan.png'
-
+    image_file = 'props/fan.png'
 
     def player_action(self, player):
         player.get_fan(self)