/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to levels.lua

  • Committer: Josh C
  • Date: 2013-04-28 20:26:21 UTC
  • Revision ID: josh@9ix.org-20130428202621-ey328vc42y1hkcv9
castle interior

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                      Tile:new{image = 'data/bridge-fg.png'}
52
52
                   }
53
53
                end
 
54
   },
 
55
   gate = {
 
56
      objects = function() return {
 
57
                      Tile:new{image = 'data/gate-bg.png'},
 
58
                      Player:new{x = 90, y = 388,
 
59
                                 minY = 388, maxY = 388,
 
60
                                 image = 'data/bridge-player.png'},
 
61
                   }
 
62
                end
 
63
   },
 
64
   castle = {
 
65
      objects = function() return {
 
66
                      Tile:new{image = 'data/castle-bg.png'},
 
67
                      Player:new{x = 120, y = 435,
 
68
                                 minY = 435, maxY = 435,
 
69
                                 image = 'data/castle-player.png'},
 
70
                   }
 
71
                end
54
72
   }
 
73
 
55
74
}