/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to items.lua

  • Committer: Josh C
  • Date: 2013-04-28 22:26:28 UTC
  • Revision ID: josh@9ix.org-20130428222628-iw5am8h8mrzedutb
really basic feedback that your inventory changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
}