/traderous

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

« back to all changes in this revision

Viewing changes to planet.lua

  • Committer: Josh C
  • Date: 2013-06-26 00:45:08 UTC
  • Revision ID: josh@9ix.org-20130626004508-6in13i6vjpu77els
give planets names

Show diffs side-by-side

added added

removed removed

11
11
       low = 5000, med = 6000, high = 8000,
12
12
       chance = 0.1}
13
13
   },
 
14
   potentialNames = {
 
15
      'Planet A',
 
16
      'Planet B',
 
17
      'Planet C',
 
18
      'Planet D',
 
19
      'Planet E',
 
20
      'Planet F',
 
21
   },
14
22
   goods = {},
15
23
   onNew = function (self)
16
24
              self.indicator = Tile:new{ image = 'data/planet1ind.png' }
17
25
              the.indicators:add(self.indicator)
18
26
 
 
27
              while not self.name do
 
28
                 local name = self.potentialNames[math.random(#self.potentialNames)]
 
29
                 local inUse = false
 
30
                 for _, planet in ipairs(the.planets.sprites) do
 
31
                    if name == planet.name then inUse = true end
 
32
                 end
 
33
 
 
34
                 if not inUse then
 
35
                    self.name = name
 
36
                 end
 
37
              end
 
38
 
19
39
              while #self.goods == 0 do
20
40
                 for _, good in ipairs(self.potentialGoods) do
21
41
                    if math.random() < good.chance then