diff gamelib/scenes/cryo.py @ 329:0bb1ab329bee

Link up laser welder
author Simon Cross <hodgestar+bzr@gmail.com>
date Sat, 28 Aug 2010 14:00:38 +0200
parents 3cb48621759a
children c193cbff785d
line wrap: on
line diff
--- a/gamelib/scenes/cryo.py	Sat Aug 28 13:57:32 2010 +0200
+++ b/gamelib/scenes/cryo.py	Sat Aug 28 14:00:38 2010 +0200
@@ -166,7 +166,7 @@
     def interact_with_machete(self, item):
         if self.get_data('fixed'):
             self.set_data('fixed', False)
-            pipe = CryoPipe('cryo_pipe')
+            pipe = TubeFragment('tube_fragment')
             self.state.add_item(pipe)
             self.state.add_inventory_item(pipe.name)
             self.set_interact("chopped")
@@ -214,12 +214,12 @@
         return "These pipes carry cooling fluid to the working cryo units."
 
 
-class CryoPipe(CloneableItem):
-    "After emptying the full can."
+class TubeFragment(CloneableItem):
+    "Obtained after cutting down a cryo room pipe."
 
-    INVENTORY_IMAGE = "cryo_pipe.png"
-    CURSOR = CursorSprite('cryo_pipe_cursor.png')
-    TOOL_NAME = "pipe"
+    INVENTORY_IMAGE = "tube_fragment.png"
+    CURSOR = CursorSprite('tube_fragment_cursor.png')
+    TOOL_NAME = "tube_fragment"
 
 
 class CryoPipeLeft(CryoPipeBase):