changeset 363:2cadb47405a4

Use bottle image. The boomslang is now triangle-free
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 28 Aug 2010 17:08:10 +0200
parents 4e939b3c73f8
children 0fed76188796
files Resources/images/bridge/triangle.png Resources/images/cryo/triangle.png Resources/images/items/triangle.png gamelib/scenes/cryo.py gamelib/scenes/mess.py
diffstat 5 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
Binary file Resources/images/bridge/triangle.png has changed
Binary file Resources/images/cryo/triangle.png has changed
Binary file Resources/images/items/triangle.png has changed
--- a/gamelib/scenes/cryo.py	Sat Aug 28 17:07:24 2010 +0200
+++ b/gamelib/scenes/cryo.py	Sat Aug 28 17:08:10 2010 +0200
@@ -440,8 +440,8 @@
 
 
 class FullBottle(Item):
-    INVENTORY_IMAGE = 'triangle.png'
-    CURSOR = CursorSprite('triangle.png')
+    INVENTORY_IMAGE = 'bottle_full.png'
+    CURSOR = CursorSprite('bottle_full_cursor.png', 27, 7)
 
 
 class CryoPools(Thing):
--- a/gamelib/scenes/mess.py	Sat Aug 28 17:07:24 2010 +0200
+++ b/gamelib/scenes/mess.py	Sat Aug 28 17:08:10 2010 +0200
@@ -234,9 +234,10 @@
     def get_description(self):
         return "Empty plastic containers. They used to hold dishwasher soap."
 
+
 class DetergentBottle(Item):
-    INVENTORY_IMAGE = 'triangle.png'
-    CURSOR = CursorSprite('triangle.png')
+    INVENTORY_IMAGE = 'bottle_empty.png'
+    CURSOR = CursorSprite('bottle_empty_cursor.png', 27, 7)
 
 
 class ToMap(Door):