home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Pushover / themes / aztec.lua next >
Text File  |  2011-05-11  |  2KB  |  156 lines

  1.  
  2. -- the 22 foreground tiles
  3.  
  4. foreground = {
  5.   1, 0,  -- FgElementPlatformStart
  6.   2, 0,  -- FgElementPlatformMiddle
  7.   3, 0,  -- FgElementPlatformEnd
  8.   4, 0,  -- FgElementPlatformLadderDown
  9.   5, 0,  -- FgElementLadder
  10.   6, 0,  -- FgElementPlatformLadderUp
  11.   7, 0,  -- FgElementPlatformStep1
  12.   8, 0,  -- FgElementPlatformStep2
  13.   9, 0,  -- FgElementPlatformStep3
  14.  10, 0,  -- FgElementPlatformStep4
  15.  11, 0,  -- FgElementPlatformStep5
  16.  12, 0,  -- FgElementPlatformStep6
  17.  13, 0,  -- FgElementPlatformStep7
  18.  14, 0,  -- FgElementPlatformStep8
  19.  17, 0,  -- FgElementLadderMiddle
  20.  18, 0,  -- FgElementPlatformStrip
  21.   5, 0,  -- FgElementLadder2 -- identical with FgElementLadder
  22.  20, 0,  -- FgElementDoor0
  23.  21, 0,  -- FgElementDoor1
  24.  22, 0,  -- FgElementDoor2
  25.  23, 0,  -- FgElementDoor3
  26. }
  27.  
  28. -- as many background tiles as you want.
  29.  
  30. background = {
  31.  24, 0,
  32.  25, 0,
  33.  26, 0,
  34.  27, 0,
  35.  28, 0,
  36.  29, 0,
  37.  30, 0,
  38.  31, 0,
  39.   0, 1,
  40.   1, 1,
  41.   2, 1,
  42.   3, 1,
  43.   4, 1,
  44.   5, 1,
  45.   6, 1,
  46.   7, 1,
  47.   8, 1,
  48.   9, 1,
  49.  10, 1,
  50.  11, 1,
  51.  12, 1,
  52.  13, 1,
  53.  14, 1,
  54.  15, 1,
  55.  16, 1,
  56.  17, 1,
  57.  18, 1,
  58.  19, 1,
  59.  20, 1,
  60.  21, 1,
  61.  22, 1,
  62.  23, 1,
  63.  24, 1,
  64.  25, 1,
  65.  26, 1,
  66.  27, 1,
  67.  28, 1,
  68.  29, 1,
  69.  30, 1,
  70.  31, 1,
  71.   0, 2,
  72.   1, 2,
  73.   2, 2,
  74.   3, 2,
  75.   4, 2,
  76.   5, 2,
  77.   6, 2,
  78.   7, 2,
  79.   8, 2,
  80.   9, 2,
  81.  10, 2,
  82.  11, 2,
  83.  12, 2,
  84.  13, 2,
  85.  14, 2,
  86.  15, 2,
  87.  16, 2,
  88.  17, 2,
  89.  18, 2,
  90.  19, 2,
  91.  20, 2,
  92.  21, 2,
  93.  22, 2,
  94.  23, 2,
  95.  24, 2,
  96.  25, 2,
  97.  26, 2,
  98.  27, 2,
  99.  28, 2,
  100.  31, 2,
  101.   0, 3,
  102.   1, 3,
  103.   2, 3,
  104.   3, 3,
  105.   4, 3,
  106.   5, 3,
  107.   6, 3,
  108.   7, 3,
  109.   8, 3,
  110.   9, 3,
  111.  10, 3,
  112.  11, 3,
  113.  12, 3,
  114.  13, 3,
  115.  14, 3,
  116.  15, 3,
  117.  16, 3,
  118.  17, 3,
  119.  18, 3,
  120.  19, 3,
  121.  20, 3,
  122.  21, 3,
  123.  22, 3,
  124.  23, 3,
  125.  24, 3,
  126.  25, 3,
  127.  26, 3,
  128.  27, 3,
  129.  28, 3,
  130.  29, 3,
  131.  30, 3,
  132.  31, 3,
  133.   0, 4,
  134.   1, 4,
  135.   2, 4,
  136.   3, 4,
  137.   4, 4,
  138.   5, 4,
  139.   6, 4,
  140.   7, 4,
  141.   8, 4,
  142.   9, 4,
  143.  16, 4,
  144.  17, 4,
  145.  18, 4,
  146.  19, 4,
  147.  20, 4,
  148.  21, 4,
  149.  22, 4,
  150.  23, 4,
  151.  24, 4,
  152.  25, 4,
  153.  26, 4,
  154.  27, 4,
  155. }
  156.