EngiN33R

factions table

May 25th, 2011
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. factions = {
  2.     [0] = {
  3.         name = "Independent Pilots",
  4.         initrep = 0,
  5.         tag = "",
  6.     },
  7.     [1] = {
  8.         name = "Biolith Inc.",
  9.         initrep = 10,
  10.         tag = "[BIO]",
  11.         allies = {3,4},
  12.         enemies = {5},
  13.     },
  14.     [2] = {
  15.         name = "Minotaur Weapons Systems",
  16.         initrep = 10,
  17.         tag = "[MWS]",
  18.         allies = {3,4},
  19.         enemies = {5},
  20.     },
  21.     [3] = {
  22.         name = "Hannan Mining Facilities",
  23.         initrep = 10,
  24.         tag = "[HMF]",
  25.         allies = {1,2,4},
  26.         enemies = {5},
  27.     },
  28.     [4] = {
  29.         name = "TeleTec Inc.",
  30.         initrep = 10,
  31.         tag = "[TEL]",
  32.         allies = {1,2,3},
  33.         enemies = {5},
  34.     },
  35.     [5] = {
  36.         name = "Les Flibustieres",
  37.         initrep = -25,
  38.         tag = "[FBS]",
  39.         enemies = {1,2,3,4},
  40.     },
  41.     [6] = {
  42.         name = "The Independents",
  43.         initrep = 0,
  44.         tag = "[IND]",
  45.     },
  46. }
Advertisement
Add Comment
Please, Sign In to add comment