/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-29 01:54:19 UTC
  • Revision ID: josh@9ix.org-20130429015419-8ts0gwspqonsxkjb
Tags: compo
name the game

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'