Advertisement
alestane

Lua data sample

Aug 29th, 2011
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. local levelpacks = {
  2.     language="EN",
  3.     color="orange",
  4.  
  5.     {
  6.         {
  7.             score=10000,
  8.             ammount=2,
  9.             shapes = {
  10.                 {type="rectangle", width=80, height=80},
  11.                 {type="rectangle", width=70, height=70},
  12.                 {type="rectangle", width=60, height=60},
  13.                 {type="rectangle", width=50, height=50},
  14.                 {type="rectangle", width=40, height=40},
  15.                 {type="rectangle", width=30, height=30},
  16.             },
  17.         },
  18.         {
  19.             score=10000,
  20.             ammount=2,
  21.             shapes = {
  22.                 {type="rectangle", width=80, height=80},
  23.                 {type="rectangle", width=40, height=40},
  24.                 {type="rectangle", width=80, height=80},
  25.                 {type="rectangle", width=40, height=40},
  26.             },
  27.         },
  28.     },
  29.     {
  30.         -- add later
  31.     },
  32.    
  33.     {
  34.         -- add later
  35.     },
  36. }
  37.  
  38. return levelpacks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement