changeset 397:00dbc053f9a0

Some item maintenance.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 09 Apr 2011 16:54:11 +0200
parents dc534c2c475c
children 6850a3ab3aac
files data/sprites/fan.png data/sprites/haiku-scroll.png data/sprites/teacup_empty.png data/sprites/teacup_full.png data/sprites/tealeaf.png data/sprites/teapot.png data/sprites/tofu.png skaapsteker/sprites/items.py
diffstat 8 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
Binary file data/sprites/fan.png has changed
Binary file data/sprites/haiku-scroll.png has changed
Binary file data/sprites/teacup_empty.png has changed
Binary file data/sprites/teacup_full.png has changed
Binary file data/sprites/tealeaf.png has changed
Binary file data/sprites/teapot.png has changed
Binary file data/sprites/tofu.png has changed
--- 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)