/ld26

To get this branch, use:
bzr branch /bzr/ld26

« back to all changes in this revision

Viewing changes to items.lua

  • Committer: Josh C
  • Date: 2013-04-28 23:19:25 UTC
  • Revision ID: josh@9ix.org-20130428231925-m2rgt3n1dg9gryz2
cat

Show diffs side-by-side

added added

removed removed

42
42
               end
43
43
}
44
44
 
 
45
Cat = Tile:extend{
 
46
   image = 'data/cat.png',
 
47
   name = 'cat',
 
48
   invTile = Tile:new{image = 'data/cat48.png'},
 
49
   onNew = function(self)
 
50
              --print(self.x, self.y, self.width, self.height)
 
51
           end,
 
52
   onCollide = function(self, other, xOl, yOl)
 
53
                  if other == the.player then
 
54
                     the.inventory:add(self)
 
55
                     the.app.view:remove(self)
 
56
                  end
 
57
               end
 
58
}