forked from Simnation/Main
ed
This commit is contained in:
parent
08a306e1ff
commit
fbf0b6b47f
23 changed files with 1547 additions and 10408 deletions
|
@ -1,3 +1,58 @@
|
|||
QBShared = QBShared or {}
|
||||
|
||||
QBShared.Gangs = {}
|
||||
QBShared.Gangs = {
|
||||
none = { label = 'No Gang', grades = { ['0'] = { name = 'Unaffiliated' } } },
|
||||
lostmc = {
|
||||
label = 'The Lost MC',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
},
|
||||
ballas = {
|
||||
label = 'Ballas',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
},
|
||||
vagos = {
|
||||
label = 'Vagos',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
},
|
||||
cartel = {
|
||||
label = 'Cartel',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
},
|
||||
families = {
|
||||
label = 'Families',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
},
|
||||
triads = {
|
||||
label = 'Triads',
|
||||
grades = {
|
||||
['0'] = { name = 'Recruit' },
|
||||
['1'] = { name = 'Enforcer' },
|
||||
['2'] = { name = 'Shot Caller' },
|
||||
['3'] = { name = 'Boss', isboss = true },
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue