comparison gamelib/scenes/machine.py @ 226:a5325919342e

Tubes, pipes and ducts.
author Jeremy Thurgood <firxen@gmail.com>
date Thu, 26 Aug 2010 22:48:03 +0200
parents 326300c218a6
children ce1e85768f7b
comparison
equal deleted inserted replaced
225:c2660c045041 226:a5325919342e
93 elif self.get_data('cans_in_place') == 3: 93 elif self.get_data('cans_in_place') == 3:
94 msg += " It currently contains three empty cans." 94 msg += " It currently contains three empty cans."
95 return msg 95 return msg
96 96
97 97
98 class TinPipe(Item):
99 "A pipe made out of welded-together tins."
100
101 INVENTORY_IMAGE = "tube_fragments.png"
102 CURSOR = CursorSprite('tube_fragments_cursor.png', 36, 3)
103 TOOL_NAME = "pipe"
104
105
98 class Grinder(Thing): 106 class Grinder(Thing):
99 107
100 NAME = "machine.grinder" 108 NAME = "machine.grinder"
101 109
102 INTERACTS = { 110 INTERACTS = {