/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-29 00:08:20 UTC
  • Revision ID: josh@9ix.org-20130429000820-bth2m0z5q94drdxn
fairy

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
                      Player:new{x = 90, y = 388,
59
59
                                 minY = 388, maxY = 388,
60
60
                                 image = 'data/bridge-player.png'},
 
61
                      gateup,
 
62
                      gatedown
61
63
                   }
62
64
                end
63
65
   },
77
79
                                 image = 'data/sheep-player.png'},
78
80
                   }
79
81
                end
 
82
   },
 
83
   cave = {
 
84
      objects = function() return {
 
85
                      Tile:new{image = 'data/cave-bg.png'},
 
86
                      Player:new{x = 120, y = 450,
 
87
                                 minY = 450, maxY = 450,
 
88
                                 image = 'data/cave-player.png'},
 
89
                   }
 
90
                end
80
91
   }
 
92
 
81
93
}