/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 22:13:30 UTC
  • Revision ID: josh@9ix.org-20130428221330-duv67kmceabcitda
troll

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:die()
 
6
                     the.inventory:remove('fish')
 
7
                  else
 
8
                     self:displace(other)
 
9
                  end
 
10
               end
 
11
}
 
 
'\\ No newline at end of file'