/ld26

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

« back to all changes in this revision

Viewing changes to troll.lua

  • Committer: Josh C
  • Date: 2013-04-28 01:24:54 UTC
  • Revision ID: josh@9ix.org-20130428012454-b7kpooluezexnvde
fade out

Show diffs side-by-side

added added

removed removed

1
 
Troll = Tile:extend {
2
 
   image = 'data/troll.png',
3
 
   onCollide = function(self, other, xOl, yOl)
4
 
                  if the.inventory.items['fish'] then
5
 
                     self.y = self.y - self.height
6
 
                     the.inventory:remove('fish')
7
 
                  else
8
 
                     self:displace(other)
9
 
                  end
10
 
               end
11
 
}
 
 
'\\ No newline at end of file'