Guest User

palate

a guest
Mar 26th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.01 KB | None | 0 0
  1. palate = {
  2.      {
  3.         desc = "sky",
  4.         char = " ",
  5.         txtcol = colors.black,
  6.         bgcol = colors.lightBlue,
  7.         solid = false,
  8.         isLiquid = false,
  9.         touchDamage = 0,
  10.    insideDamage = 0,
  11.         gravity = 1,
  12.      },
  13.      {
  14.         desc = "brick",
  15.         char = "L",
  16.         txtcol = colors.white,
  17.         bgcol = colors.orange,
  18.         solid = true,
  19.         isLiquid = false,
  20.         touchDamage = 0,
  21.         insideDamage = 0,
  22.         gravity = 1,
  23.     },
  24.     {
  25.         desc = "pipe",
  26.         char = "|",
  27.         txtcol = colors.lime,
  28.         bgcol = colors.green,
  29.         solid = true,
  30.         isLiquid = false,
  31.         touchDamage = 0,
  32.         insideDamage = 0,
  33.         gravity = 1,
  34.     },
  35.      {
  36.         desc = "bg-grass",
  37.         char = " ",
  38.         txtcol = colors.green,
  39.         bgcol = colors.green,
  40.         solid = false,
  41.         isLiquid = false,
  42.         touchDamage = 0,
  43.         insideDamage = 0,
  44.         gravity = 1,
  45.     },
  46.      {
  47.         desc = "questionblock",
  48.         char = "?",
  49.         txtcol = colors.black,
  50.         bgcol = colors.yellow,
  51.         solid = true,
  52.         isLiquid = false,
  53.         touchDamage = 0,
  54.         insideDamage = 0,
  55.         gravity = 1.0,
  56.     },
  57.      {
  58.         desc = "cornerblock",
  59.         char = "X",
  60.         txtcol = colors.black,
  61.         bgcol = colors.orange,
  62.         solid = true,
  63.         isLiquid = false,
  64.         touchDamage = 0,
  65.         insideDamage = 0,
  66.         gravity = 1,
  67.     },
  68.   {
  69.    desc = "flagpole",
  70.    char = "|",
  71.    txtcol = colors.lime,
  72.    bgcol = colors.lightBlue,
  73.    solid = false,
  74.    isLiquid = false,
  75.    touchDamage = 0,
  76.    insideDamage = 0,
  77.    gravity = 1,
  78.   },
  79.   {
  80.    desc = "flagtop",
  81.    char = "o",
  82.    txtcol = colors.green,
  83.    bgcol = colors.white,
  84.    solid = false,
  85.    isLiquid = false,
  86.    touchDamage = 0,
  87.    insideDamage = 0,
  88.    gravity = 1,
  89.   },
  90.   {
  91.    desc = "brick2",
  92.    char = "=",
  93.    txtcol = colors.black,
  94.    bgcol = colors.orange,
  95.    solid = false,
  96.    isLiquid = false,
  97.    touchDamage = 0,
  98.    insideDamage = 0,
  99.    gravity = 1,
  100.   },
  101.   {
  102.    desc = "blacksky",
  103.    char = " ",
  104.    txtcol = colors.black,
  105.    bgcol = colors.black,
  106.    solid = false,
  107.    isLiquid = false,
  108.    touchDamage = 0,
  109.    insideDamage = 0,
  110.    gravity = 1,
  111.   },
  112. }
Add Comment
Please, Sign In to add comment