/traderous

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-06-30 22:36:26 UTC
  • Revision ID: josh@9ix.org-20130630223626-pgya1z6raymhzj2v
5-7 planets, tweak some goods

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
   goods = {},
31
31
   cargoSpace = 20,
32
32
   onPlanet = false,
33
 
   kills = 0,
34
33
   onNew = function(self)
35
34
              self.thrust = Tile:new{image = 'data/thrust.png'}
36
35
              self.shield = Shield:new{ship = self}
132
131
                       end
133
132
 
134
133
                       return self.cargoSpace - cargo
135
 
                    end,
136
 
   save = function(self)
137
 
             -- save player data
138
 
             the.storage.data.player = {x = self.x,
139
 
                                        y = self.y,
140
 
                                        money = self.money,
141
 
                                        goods = self.goods,
142
 
                                        cargoSpace = self.cargoSpace
143
 
                                     }
144
 
             the.storage:save()
145
 
          end
 
134
                    end
146
135
}
 
 
b'\\ No newline at end of file'