diff skaapsteker/sprites/items.py @ 189:9d08f99b5ddf

Add npcs to gamestate. Update gamestate. Pass world around a bit. Some other stuff.
author Simon Cross <hodgestar@gmail.com>
date Wed, 06 Apr 2011 21:14:26 +0200
parents 663bdac80299
children 993f4f55eb93
line wrap: on
line diff
--- a/skaapsteker/sprites/items.py	Wed Apr 06 21:02:38 2011 +0200
+++ b/skaapsteker/sprites/items.py	Wed Apr 06 21:14:26 2011 +0200
@@ -1,8 +1,13 @@
 from base import Item
 
 
-class Dummy(Item):
+class TeaCup(Item):
+    image_file = 'teacup_empty.png'
+
+
+class TeaLeaf(Item):
     image_file = 'tealeaf.png'
 
-    def setup(self, missions):
-        self.missions = missions
+
+class TeaPot(Item):
+    image_file = 'teapot.png'