/ld26

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-27 19:55:06 UTC
  • Revision ID: josh@9ix.org-20130427195506-xd6p6y8druwyt2sz
area transitions

Show diffs side-by-side

added added

removed removed

7
7
require 'version'
8
8
 
9
9
require 'player'
 
10
require 'transition'
10
11
 
11
12
levels = {
12
13
   forest1 = {
24
25
                      Player:new{x = 145, y = 133,
25
26
                                 minY = 133, maxY = 133,
26
27
                                 image = 'data/shore-player.png'},
27
 
                      Tile:new{image = 'data/shore-fg.png'}
 
28
                      Tile:new{image = 'data/shore-fg.png'},
 
29
                      Transition:new{x = 10, y = 133, target = 'forest1'}
28
30
                   } end
29
31
   }
30
32
}
61
63
                 self.console:watch('VERSION', 'VERSION')
62
64
                 self.console:watch('updateTook', 'the.updateTook')
63
65
                 --self.console:watch('drawTook', 'the.drawTook')
 
66
 
 
67
                 -- back off that dark overlay a bit
 
68
                 self.console.fill.fill[4] = 75
64
69
              end
65
70
           end,
66
71
   onUpdate = function (self, dt)