/ld26

To get this branch, use:
bzr branch /bzr/ld26
34 by Josh C
GET FISH
1
Flower = Tile:extend{
2
   image = 'data/flower32.png',
3
   name = 'flower',
4
   invTile = Tile:new{image = 'data/flower.png'},
5
   onNew = function(self)
6
              --print(self.x, self.y, self.width, self.height)
7
           end,
8
   onCollide = function(self, other, xOl, yOl)
9
                  if other == the.player then
10
                     the.inventory:add(self)
11
                     the.app.view:remove(self)
12
                  end
13
               end
14
}
15
16
Fish = Sprite:extend{
17
   name = 'fish',
18
   invTile = Tile:new{image = 'data/fish.png'},
19
   onNew = function(self)
20
              --print(self.x, self.y, self.width, self.height)
21
           end,
22
   onCollide = function(self, other, xOl, yOl)
23
                  if other == the.player then
24
                     the.inventory:add(self)
25
                     the.app.view:remove(self)
26
                  end
27
               end
36 by Josh C
flag
28
}
29
30
Flag = Sprite:extend{
31
   name = 'flag',
32
   invTile = Tile:new{image = 'data/flag.png'},
33
   onCollide = function(self, other, xOl, yOl)
34
                  if the.inventory.items['flower'] then
35
                     the.inventory:add(self)
36
                     --the.app.view:remove(self)
37
38
                     the.inventory:remove('flower')
39
                  end
40
41
                  self:displace(other)
42
               end
43
}
44