/ld28

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-12-15 02:53:51 UTC
  • Revision ID: josh@9ix.org-20131215025351-g6jn442ybabnegsf
clones turning into fake goals

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
   image = 'data/player.png',
3
3
   queue = deque.new(),
4
4
   onNew = function(self)
5
 
              local delay = {0,1,2}
6
 
              for _ = 1, delay[the.view.level] do
 
5
              for _ = 1, math.random(1,3) do
7
6
                 self.queue:push_right(dirs[math.random(1,4)])
8
7
              end
9
8
           end,