· 8 years ago · Apr 15, 2018, 10:10 AM
1local meta = FindMetaTable( "Player" )
2
3TeamTable = {}
4RegTable = {}
5RegRanks = {}
6
7function CreateTeam( name, teamtbl )
8
9 if !istable( teamtbl ) then ErrorNoHalt( "Failed to create team, " .. ( name or "nil" ) ) return end
10
11 teamtbl.Description = teamtbl.Description or ""
12 teamtbl.Weapons = teamtbl.Weapons or {}
13 teamtbl.Colour = teamtbl.Colour or Color( 255, 255, 255 )
14 teamtbl.Side = teamtbl.Side or 0
15 teamtbl.Rank = teamtbl.Rank or 0
16 teamtbl.Model = teamtbl.Model or ""
17 teamtbl.Regiment = teamtbl.Regiment or ""
18 teamtbl.Bodygroups = teamtbl.Bodygroups or ""
19 teamtbl.Health = teamtbl.Health or 100
20 teamtbl.Name = name
21 teamtbl.Runspeed = teamtbl.Runspeed or 240
22 teamtbl.Walkspeed = teamtbl.Walkspeed or 160
23 teamtbl.Modelscale = teamtbl.Modelscale or 1
24
25 local count = table.Count( TeamTable )
26
27 teamtbl.Count = count
28
29 team.SetUp( count, name, teamtbl.Colour )
30 TeamTable[ count ] = teamtbl
31 local shouldteam = true
32 for k, v in pairs( RegTable ) do
33 if v.Regiment == teamtbl.Regiment then shouldteam = false break end
34 end
35 if shouldteam then
36 table.insert( RegTable, teamtbl )
37 end
38 RegRanks[ teamtbl.Regiment ] = RegRanks[ teamtbl.Regiment ] or {}
39 RegRanks[ teamtbl.Regiment ][ count ] = name
40
41 util.PrecacheModel( teamtbl.Model )
42
43 return count
44
45end
46
47local CustomPlayers = {
48 [ "STEAM_0:1:73713769" ] = { model = "models/gonzo/regimentalgeneral/regimentalgeneral.mdl", bodygroups = "0111111" },
49}
50
51if SERVER then
52
53 if ( !sql.TableExists( "jobdata" ) ) then
54
55 sql.Query( "CREATE TABLE IF NOT EXISTS jobdata ( steamid TEXT NOT NULL PRIMARY KEY, value TEXT );" )
56
57 end
58
59 function meta:GetJData( name, default )
60
61 name = string.format( "%s[%s]", self:SteamID64(), name )
62 local val = sql.QueryValue( "SELECT value FROM jobdata WHERE steamid = " .. sql.SQLStr( name ) .. " LIMIT 1" )
63 if ( val == nil ) then return default end
64
65 return val
66
67 end
68
69 function meta:SetJData( name, value )
70
71 name = string.format( "%s[%s]", self:SteamID64(), name )
72 sql.Query( "REPLACE INTO jobdata ( steamid, value ) VALUES ( " .. sql.SQLStr( name ) .. ", " .. sql.SQLStr( value ) .. " )" )
73
74 end
75
76 function GetJData( steamid, name, default )
77
78 name = string.format( "%s[%s]", steamid, name )
79 local val = sql.QueryValue( "SELECT value FROM jobdata WHERE steamid = " .. sql.SQLStr( name ) .. " LIMIT 1" )
80 if ( val == nil ) then return default end
81
82 return val
83
84 end
85
86 function SetJData( steamid, name, value )
87
88 name = string.format( "%s[%s]", steamid, name )
89 sql.Query( "REPLACE INTO jobdata ( steamid, value ) VALUES ( " .. sql.SQLStr( name ) .. ", " .. sql.SQLStr( value ) .. " )" )
90
91 end
92
93 function GM:PlayerInitialSpawn( ply )
94
95 if ply:GetJData( "job", nil ) ~= nil then
96
97 local job = ply:GetJData( "job", nil )
98 local tbl = TeamTable[ tonumber( job ) ]
99 ply:SetTeam( job )
100 ply:Spawn()
101 ply:SetModel( tbl.Model )
102
103 else
104
105 local tbl = TeamTable[ TEAM_TRAINEE ]
106
107 ply:SetJData( "job", TEAM_TRAINEE )
108 ply:SetTeam( TEAM_TRAINEE )
109 ply:SetModel( tbl.Model )
110
111 end
112
113 end
114
115 if !file.Exists( "spawns" .. game.GetMap() .. ".txt", "DATA" ) then file.Write( "spawns" .. game.GetMap() .. ".txt", util.TableToJSON( {} ) ) end
116
117 local spawnTable = util.JSONToTable( file.Read( "spawns" .. game.GetMap() .. ".txt", "DATA" ) )
118
119 hook.Add( "PlayerSay", "SetTetSpawn", function( ply, text )
120
121 text = string.Explode( " ", text )
122
123 if string.lower( text[ 1 ] ) == "!setspawn" or string.lower( text[ 1 ] ) == "/setspawn" then
124
125 if text[ 2 ] == nil then return "" end
126
127 local t = string.lower( table.concat( text, " ", 2 ) )
128
129 spawnTable[ t ] = ply:GetPos()
130 file.Write( "spawns" .. game.GetMap() .. ".txt", util.TableToJSON( spawnTable ) )
131
132 ply:PrintMessage( HUD_PRINTTALK, "Spawn set." )
133
134 return ""
135
136 end
137
138 end )
139
140 function GM:PlayerSpawn( ply )
141
142 ply:SetRunSpeed( 240 )
143 ply:SetWalkSpeed( 160 )
144
145 if TeamTable[ ply:Team() ] then
146
147 local tbl = TeamTable[ ply:Team() ]
148
149 if spawnTable[ tbl.Side == 1 and "republic" or "cis" ] then
150
151 ply:SetPos( spawnTable[ tbl.Side == 1 and "republic" or "cis" ] )
152
153 elseif spawnTable[ string.lower( tbl.Regiment ) ] then
154
155 ply:SetPos( spawnTable[ string.lower( tbl.Regiment ) ] )
156
157 end
158
159 end
160
161 if ply:GetJData( "job", nil ) ~= nil then
162
163 local job = ply:GetJData( "job", nil )
164 local tbl = TeamTable[ tonumber( job ) ]
165 if CustomPlayers[ ply:SteamID() ] then
166 ply:SetModel( CustomPlayers[ ply:SteamID() ].model )
167 ply:SetBodyGroups( CustomPlayers[ ply:SteamID() ].bodygroups )
168 else
169 ply:SetModel( tbl.Model )
170 ply:SetBodyGroups( tbl.Bodygroups )
171 end
172 ply:SetHealth( tbl.Health )
173 ply:SetMaxHealth( tbl.Health )
174 ply:SetRunSpeed( tbl.Runspeed )
175 ply:SetWalkSpeed( tbl.Walkspeed )
176 ply:SetModelScale( tbl.Modelscale )
177
178 local weps = tbl.Weapons
179
180 for i = 1, #weps do
181
182 ply:Give( weps[ i ] )
183
184 end
185
186 ply:Give( "none" )
187
188 weps = ply:GetWeapons()
189
190 for i = 1, #weps do
191
192 if weps[ i ]:GetClass() == "weapon_frag" then continue end
193 if weps[ i ]:GetClass() == "tfa_swch_clonelauncher" then continue end
194
195 ply:GiveAmmo( 256, weps[ i ]:GetPrimaryAmmoType(), true )
196
197 end
198
199 if TeamTable[ ply:Team() ].Rank >= 9 then
200
201 ply:Give( "tfa_sw_dc17dual" )
202 ply:Give( "weapon_rpw_binoculars_scout" )
203 ply:Give( "gmod_tool" )
204 ply:Give( "weapon_physgun" )
205 ply:Give( "weapon_frag" )
206 ply:Give( "arrest_batton" )
207 ply:Give( "climb_swep2" )
208 ply:Give( "repair_tool" )
209
210 end
211
212 end
213
214 end
215
216end
217TEAM_TRAINEE = CreateTeam( "Clone Trainee", {
218 Description = "Trainee of the Clone Army",
219 Weapons = {},
220 Colour = Color( 255, 255, 255 ),
221 Side = 1,
222 Rank = 0,
223 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
224 Regiment = "Trainee",
225 Bodygroups = "0000000",
226} )
227
228TEAM_CLONE_TROOPER = CreateTeam( "Clone Trooper", {
229 Description = "Trooper of the Clone Army",
230 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
231 Colour = Color( 255, 255, 255 ),
232 Side = 1,
233 Rank = 1,
234 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
235 Regiment = "Clone Army",
236 Health = 100,
237 Bodygroups = "0100000",
238} )
239
240TEAM_CLONE_LCP = CreateTeam( "Clone Lance-Corporal", {
241 Description = "Lance-Corporal of the Clone Army",
242 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
243 Colour = Color( 255, 255, 255 ),
244 Side = 1,
245 Rank = 2,
246 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
247 Regiment = "Clone Army",
248 Health = 100,
249 Bodygroups = "0100000",
250} )
251
252TEAM_CLONE_CPL = CreateTeam( "Clone Corporal", {
253 Description = "Corporal of the Clone Army",
254 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
255 Colour = Color( 255, 255, 255 ),
256 Side = 1,
257 Rank = 3,
258 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
259 Regiment = "Clone Army",
260 Health = 100,
261 Bodygroups = "0100000",
262} )
263
264TEAM_CLONE_SGT = CreateTeam( "Clone Sergeant", {
265 Description = "Sergeant of the Clone Army",
266 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", ""},
267 Colour = Color( 0, 255, 0 ),
268 Side = 1,
269 Rank = 4,
270 Model = "models/gonzo/swbf2arc/arcgreen/arcgreen.mdl",
271 Regiment = "Clone Army",
272 Health = 100,
273 Bodygroups = "010000000",
274} )
275
276TEAM_CLONE_SGTM = CreateTeam( "Clone Sergeant-Major", {
277 Description = "Sergeant-Major of the Clone Army",
278 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
279 Colour = Color( 0, 255, 0 ),
280 Side = 1,
281 Rank = 5,
282 Model = "models/gonzo/swbf2arc/arcgreen/arcgreen.mdl",
283 Regiment = "Clone Army",
284 Health = 100,
285 Bodygroups = "010000000",
286} )
287
288TEAM_CLONE_WO = CreateTeam( "Clone Warrant Officer", {
289 Description = "Warrant Officer of the Clone Army",
290 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
291 Colour = Color( 0, 255, 0 ),
292 Side = 1,
293 Rank = 6,
294 Model = "models/gonzo/swbf2arc/arcgreen/arcgreen.mdl",
295 Regiment = "Clone Army",
296 Health = 100,
297 Bodygroups = "010000000",
298} )
299
300TEAM_CLONE_2LT = CreateTeam( "Clone 2nd Lieutenant", {
301 Description = "2nd Lieutenant of the Clone Army",
302 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
303 Colour = Color( 51, 51, 255 ),
304 Side = 1,
305 Rank = 7,
306 Model = "models/gonzo/swbf2arc/arcblue/arcblue.mdl",
307 Regiment = "Clone Army",
308 Health = 100,
309 Bodygroups = "010000000",
310} )
311
312TEAM_CLONE_LT = CreateTeam( "Clone Lieutenant", {
313 Description = "Lieutenant of the Clone Army",
314 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
315 Colour = Color( 51, 51, 255 ),
316 Side = 1,
317 Rank = 8,
318 Model = "models/gonzo/swbf2arc/arcblue/arcblue.mdl",
319 Regiment = "Clone Army",
320 Health = 100,
321 Bodygroups = "010000000",
322} )
323
324TEAM_CLONE_CPT = CreateTeam( "Clone Captain", {
325 Description = "Captain of the Clone Army",
326 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
327 Colour = Color( 255, 0, 0 ),
328 Side = 1,
329 Rank = 9,
330 Model = "models/gonzo/swbf2arc/arcred/arcred.mdl",
331 Regiment = "Clone Army",
332 Health = 100,
333 Bodygroups = "010000000",
334} )
335
336TEAM_CLONE_MAJOR = CreateTeam( "Clone Major", {
337 Description = "Major of the Clone Army",
338 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
339 Colour = Color( 255, 0, 0 ),
340 Side = 1,
341 Rank = 10,
342 Model = "models/gonzo/swbf2arc/arcred/arcred.mdl",
343 Regiment = "Clone Army",
344 Health = 100,
345 Bodygroups = "010000000",
346} )
347
348TEAM_CLONE_CMDR = CreateTeam( "Clone Commander", {
349 Description = "Commander of the Clone Army",
350 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
351 Colour = Color( 255, 255, 0 ),
352 Side = 1,
353 Rank = 11,
354 Model = "models/gonzo/swbf2arc/arcyellow/arcyellow.mdl",
355 Regiment = "Clone Army",
356 Health = 100,
357 Bodygroups = "010000101",
358} )
359
360TEAM_501ST_TROOPER = CreateTeam( "501st Trooper", {
361 Description = "Trooper of the 501st",
362 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
363 Colour = Color( 0, 102, 255 ),
364 Side = 1,
365 Rank = 1,
366 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
367 Regiment = "501st Legion",
368 Health = 100,
369 Bodygroups = "0100000",
370} )
371
372TEAM_501ST_LCP = CreateTeam( "501st Lance-Corporal", {
373 Description = "Lance-Corporal of the 501st",
374 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
375 Colour = Color( 0, 102, 255 ),
376 Side = 1,
377 Rank = 2,
378 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
379 Regiment = "501st Legion",
380 Health = 100,
381 Bodygroups = "0100000",
382} )
383
384TEAM_501ST_CPL = CreateTeam( "501st Corporal", {
385 Description = "Corporal of the 501st",
386 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
387 Colour = Color( 0, 102, 255 ),
388 Side = 1,
389 Rank = 3,
390 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
391 Regiment = "501st Legion",
392 Health = 100,
393 Bodygroups = "0100000",
394} )
395
396TEAM_501ST_SGT = CreateTeam( "501st Sergeant", {
397 Description = "Sergeant of the 501st",
398 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
399 Colour = Color( 0, 102, 255 ),
400 Side = 1,
401 Rank = 4,
402 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
403 Regiment = "501st Legion",
404 Health = 100,
405 Bodygroups = "01000010",
406} )
407
408TEAM_501ST_SGTM = CreateTeam( "Sergeant-Major", {
409 Description = "Sergeant-Major of the 501st",
410 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
411 Colour = Color( 0, 102, 255 ),
412 Side = 1,
413 Rank = 5,
414 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
415 Regiment = "501st Legion",
416 Health = 100,
417 Bodygroups = "01000010",
418} )
419
420TEAM_501ST_WO = CreateTeam( "Warrant Officer", {
421 Description = "Warrant Officer of the 501st",
422 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
423 Colour = Color( 0, 102, 255 ),
424 Side = 1,
425 Rank = 6,
426 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
427 Regiment = "501st Legion",
428 Health = 100,
429 Bodygroups = "01000010",
430} )
431
432TEAM_501ST_2LT = CreateTeam( "2nd Lieutenant", {
433 Description = "2nd Lieutenant of the 501st",
434 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
435 Colour = Color( 0, 102, 255 ),
436 Side = 1,
437 Rank = 7,
438 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
439 Regiment = "501st Legion",
440 Health = 100,
441 Bodygroups = "0110001",
442} )
443
444TEAM_501ST_LT = CreateTeam( "Lieutenant", {
445 Description = "Lieutenant of the 501st",
446 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
447 Colour = Color( 0, 102, 255 ),
448 Side = 1,
449 Rank = 8,
450 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
451 Regiment = "501st Legion",
452 Health = 100,
453 Bodygroups = "0110001",
454} )
455
456TEAM_501ST_CPT = CreateTeam( "Captain", {
457 Description = "Captain Rex of the 501st",
458 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "gmod_tool", "arrest_batton"},
459 Colour = Color( 0, 102, 255 ),
460 Side = 1,
461 Rank = 11,
462 Model = "models/gonzo/mvgcommanders/rex/rex.mdl",
463 Regiment = "501st Legion",
464 Health = 100,
465 Bodygroups = "0000000",
466} )
467
468TEAM_501ST_CPT = CreateTeam( "Captain", {
469 Description = "Captain of the 501st",
470 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
471 Colour = Color( 0, 102, 255 ),
472 Side = 1,
473 Rank = 10,
474 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
475 Regiment = "501st Legion",
476 Health = 100,
477 Bodygroups = "01100011",
478} )
479
480TEAM_501ST_MAJ = CreateTeam( "Major", {
481 Description = "Major of the 501st",
482 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
483 Colour = Color( 0, 102, 255 ),
484 Side = 1,
485 Rank = 11,
486 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
487 Regiment = "501st Legion",
488 Health = 100,
489 Bodygroups = "01101011",
490} )
491
492TEAM_501ST_BCMDR = CreateTeam( "Battalion Commander", {
493 Description = "Battalion Commander of the 501st",
494 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
495 Colour = Color( 0, 102, 255 ),
496 Side = 1,
497 Rank = 12,
498 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
499 Regiment = "501st Legion",
500 Health = 100,
501 Bodygroups = "01101011",
502} )
503
504TEAM_501ST_CMDR = CreateTeam( "Commander", {
505 Description = "Commander of the 501st",
506 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
507 Colour = Color( 0, 102, 255 ),
508 Side = 1,
509 Rank = 13,
510 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
511 Regiment = "501st Legion",
512 Health = 100,
513 Bodygroups = "01101011",
514} )
515
516TEAM_501ST_SCMDR = CreateTeam( "Field Marshal", {
517 Description = "Senior Commander of the 501st",
518 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
519 Colour = Color( 0, 102, 255 ),
520 Side = 1,
521 Rank = 13,
522 Model = "models/gonzo/weathered501st/weathered501st.mdl",
523 Regiment = "501st Legion",
524 Health = 100,
525 Bodygroups = "011000100",
526} )
527
528TEAM_212TH_TROOPER = CreateTeam( "212th Trooper", {
529 Description = "Trooper of the 212th",
530 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
531 Colour = Color( 255, 153, 51 ),
532 Side = 1,
533 Rank = 1,
534 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
535 Regiment = "212th Attack Battalion",
536 Health = 100,
537 Bodygroups = "0100000",
538} )
539
540TEAM_212TH_LCP = CreateTeam( "212th Lance-Corporal", {
541 Description = "Lance-Corporal of the 212th",
542 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
543 Colour = Color( 255, 153, 51 ),
544 Side = 1,
545 Rank = 2,
546 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
547 Regiment = "212th Attack Battalion",
548 Health = 100,
549 Bodygroups = "0100000",
550} )
551
552TEAM_212TH_CPL = CreateTeam( "212th Corporal", {
553 Description = "Corporal of the 212th",
554 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
555 Colour = Color( 255, 153, 51 ),
556 Side = 1,
557 Rank = 3,
558 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
559 Regiment = "212th Attack Battalion",
560 Health = 100,
561 Bodygroups = "0100000",
562} )
563
564TEAM_212TH_SGT = CreateTeam( "212th Sergeant", {
565 Description = "Sergeant of the 212th",
566 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
567 Colour = Color( 255, 153, 51 ),
568 Side = 1,
569 Rank = 4,
570 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
571 Regiment = "212th Attack Battalion",
572 Health = 100,
573 Bodygroups = "01000010",
574} )
575
576TEAM_BRB_SGTM = CreateTeam( "212th Sergeant-Major", {
577 Description = "Sergeant-Major of the 212th",
578 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
579 Colour = Color( 255, 153, 51 ),
580 Side = 1,
581 Rank = 5,
582 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
583 Regiment = "212th Attack Battalion",
584 Health = 100,
585 Bodygroups = "01000010",
586} )
587
588TEAM_212TH_WO = CreateTeam( "Warrant Officer", {
589 Description = "Warrant Officer of the 212th",
590 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
591 Colour = Color( 255, 153, 51 ),
592 Side = 1,
593 Rank = 6,
594 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
595 Regiment = "212th Attack Battalion",
596 Health = 100,
597 Bodygroups = "01000010",
598} )
599
600TEAM_212TH_2LT = CreateTeam( "2nd Lieutenant", {
601 Description = "2nd Lieutenant of the 212th",
602 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
603 Colour = Color( 255, 153, 51 ),
604 Side = 1,
605 Rank = 7,
606 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
607 Regiment = "212th Attack Battalion",
608 Health = 100,
609 Bodygroups = "01100010",
610} )
611
612TEAM_212TH_LT = CreateTeam( "Lieutenant", {
613 Description = "Lieutenant of the 212th",
614 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
615 Colour = Color( 255, 153, 51 ),
616 Side = 1,
617 Rank = 8,
618 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
619 Regiment = "212th Attack Battalion",
620 Health = 100,
621 Bodygroups = "011000010",
622} )
623
624TEAM_212TH_CPT = CreateTeam( "Captain", {
625 Description = "Captain of the 212th",
626 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
627 Colour = Color( 255, 153, 51 ),
628 Side = 1,
629 Rank = 9,
630 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
631 Regiment = "212th Attack Battalion",
632 Health = 100,
633 Bodygroups = "011000110",
634} )
635
636TEAM_212TH_MAJ = CreateTeam( "Major", {
637 Description = "Major of the 212th",
638 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
639 Colour = Color( 255, 153, 51 ),
640 Side = 1,
641 Rank = 10,
642 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
643 Regiment = "212th Attack Battalion",
644 Health = 100,
645 Bodygroups = "01100011",
646} )
647
648TEAM_212TH_BCMDR = CreateTeam( "Battalion Commander", {
649 Description = "Battalion Commander of the 212th",
650 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
651 Colour = Color( 255, 153, 51 ),
652 Side = 1,
653 Rank = 11,
654 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
655 Regiment = "212th Attack Battalion",
656 Health = 100,
657 Bodygroups = "01100011",
658} )
659
660TEAM_212TH_CMDR = CreateTeam( "Commander", {
661 Description = "Regimental Commander of the 212th",
662 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
663 Colour = Color( 255, 153, 51 ),
664 Side = 1,
665 Rank = 12,
666 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
667 Regiment = "212th Attack Battalion",
668 Health = 100,
669 Bodygroups = "0110011",
670} )
671
672TEAM_212TH_SCMDR = CreateTeam( "Senior Commander", {
673 Description = "Senior Commander of the 212th",
674 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
675 Colour = Color( 255, 153, 51 ),
676 Side = 1,
677 Rank = 13,
678 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
679 Regiment = "212th Attack Battalion",
680 Health = 100,
681 Bodygroups = "0110011",
682} )
683
684TEAM_212TH_CODY = CreateTeam( "Marshal Commander", {
685 Description = "Marshal Commander of the 212th",
686 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
687 Colour = Color( 255, 153, 51 ),
688 Side = 1,
689 Rank = 14,
690 Model = "models/gonzo/regimentalclones2/cody/cody.mdl",
691 Regiment = "212th Attack Battalion",
692 Health = 100,
693 Bodygroups = "0000000",
694} )
695
696TEAM_327TH_TROOPER = CreateTeam( "Trauma Unit Trooper", {
697 Description = "Trooper of the 327th",
698 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
699 Colour = Color( 255, 255, 204 ),
700 Side = 1,
701 Rank = 1,
702 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
703 Regiment = "Trauma Unit",
704 Health = 100,
705 Bodygroups = "00000",
706} )
707
708TEAM_327TH_LCP = CreateTeam( "Trauma Unit Lance-Corporal", {
709 Description = "Lance-Corporal of the 327th",
710 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
711 Colour = Color( 255, 255, 204 ),
712 Side = 1,
713 Rank = 2,
714 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
715 Regiment = "Trauma Unit",
716 Health = 100,
717 Bodygroups = "00000",
718} )
719
720TEAM_327TH_CPL = CreateTeam( "Trauma Unit Corporal", {
721 Description = "Corporal of the 327th",
722 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
723 Colour = Color( 255, 255, 204 ),
724 Side = 1,
725 Rank = 3,
726 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
727 Regiment = "Trauma Unit",
728 Health = 100,
729 Bodygroups = "00000",
730} )
731
732TEAM_327TH_SGT = CreateTeam( "Trauma Unit Sergeant", {
733 Description = "Sergeant of the 327th",
734 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
735 Colour = Color( 255, 255, 204 ),
736 Side = 1,
737 Rank = 4,
738 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
739 Regiment = "Trauma Unit",
740 Health = 100,
741 Bodygroups = "00001",
742} )
743
744TEAM_327TH_SGTM = CreateTeam( "Trauma Unit Sergeant-Major", {
745 Description = "Sergeant-Major of the 327th",
746 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
747 Colour = Color( 255, 255, 204 ),
748 Side = 1,
749 Rank = 5,
750 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
751 Regiment = "Trauma Unit",
752 Health = 100,
753 Bodygroups = "00001",
754} )
755
756TEAM_327TH_WO = CreateTeam( "Warrant Officer", {
757 Description = "Warrant Officer of the 327th",
758 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout"},
759 Colour = Color( 255, 255, 204 ),
760 Side = 1,
761 Rank = 6,
762 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
763 Regiment = "Trauma Unit",
764 Health = 100,
765 Bodygroups = "00001",
766} )
767
768TEAM_327TH_2LT = CreateTeam( "2nd Lieutenant", {
769 Description = "2nd Lieutenant of the 327th",
770 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
771 Colour = Color( 255, 255, 204 ),
772 Side = 1,
773 Rank = 7,
774 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
775 Regiment = "Trauma Unit",
776 Health = 100,
777 Bodygroups = "01001",
778} )
779
780TEAM_327TH_LT = CreateTeam( "Lieutenant", {
781 Description = "Lieutenant of the 327th",
782 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
783 Colour = Color( 255, 255, 204 ),
784 Side = 1,
785 Rank = 8,
786 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
787 Regiment = "Trauma Unit",
788 Health = 100,
789 Bodygroups = "01001",
790} )
791
792TEAM_327TH_CPT = CreateTeam( "Captain", {
793 Description = "Captain of the 327th",
794 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
795 Colour = Color( 255, 255, 204 ),
796 Side = 1,
797 Rank = 9,
798 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
799 Regiment = "Trauma Unit",
800 Health = 100,
801 Bodygroups = "01001",
802} )
803
804TEAM_327TH_MAJ = CreateTeam( "Major", {
805 Description = "Major of the 327th",
806 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
807 Colour = Color( 255, 255, 204 ),
808 Side = 1,
809 Rank = 10,
810 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
811 Regiment = "Trauma Unit",
812 Health = 100,
813 Bodygroups = "011001",
814} )
815
816TEAM_327TH_BCMDR = CreateTeam( "Battalion Commander", {
817 Description = "Battalion Commander of the 327th",
818 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
819 Colour = Color( 255, 255, 204 ),
820 Side = 1,
821 Rank = 11,
822 Model = "models/gonzo/traumatrooper/traumatrooper.mdl",
823 Regiment = "Trauma Unit",
824 Health = 100,
825 Bodygroups = "01001",
826} )
827
828TEAM_327TH_CMDR = CreateTeam( "Commander", {
829 Description = "Regimental Commander of the 327th",
830 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars_scout", "weapon_camo"},
831 Colour = Color( 255, 255, 204 ),
832 Side = 1,
833 Rank = 12,
834 Model = "models/gonzo/trauma/trauma.mdl",
835 Regiment = "Trauma Unit",
836 Health = 100,
837 Bodygroups = "0",
838} )
839
840TEAM_327TH_SCMDR = CreateTeam( "Senior Commander", {
841 Description = "Senior Commander of the 327th",
842 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "climb_swep2", "climb_swep2", "arrest_batton"},
843 Colour = Color( 230, 236, 0 ),
844 Side = 1,
845 Rank = 13,
846 Model = "models/gonzo/327thand91st/327th/327th.mdl",
847 Regiment = "327th Star Corps",
848 Health = 100,
849 Bodygroups = "01100101000",
850} )
851
852TEAM_327TH_BLY = CreateTeam( "Marshal Commander", {
853 Description = "Marshal Commander of the 327th",
854 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "climb_swep2", "arrest_batton"},
855 Colour = Color( 230, 236, 0 ),
856 Side = 1,
857 Rank = 14,
858 Model = "models/gonzo/327thand91st/bly/bly.mdl",
859 Regiment = "327th Star Corps",
860 Health = 100,
861 Bodygroups = "0100000",
862} )
863
864TEAM_104TH_TROOPER = CreateTeam( "104th Trooper", {
865 Description = "Trooper of the 104th",
866 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
867 Colour = Color( 173, 173, 173 ),
868 Side = 1,
869 Rank = 1,
870 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
871 Regiment = "104th Wolfpack",
872 Health = 100,
873 Bodygroups = "0100000",
874} )
875
876TEAM_104TH_LCP = CreateTeam( "104th Lance-Corporal", {
877 Description = "Lance-Corporal of the 104th",
878 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
879 Colour = Color( 173, 173, 173 ),
880 Side = 1,
881 Rank = 2,
882 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
883 Regiment = "104th Wolfpack",
884 Health = 100,
885 Bodygroups = "0100000",
886} )
887
888TEAM_104TH_CPL = CreateTeam( "104th Corporal", {
889 Description = "Corporal of the 104th",
890 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
891 Colour = Color( 173, 173, 173 ),
892 Side = 1,
893 Rank = 3,
894 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
895 Regiment = "104th Wolfpack",
896 Health = 100,
897 Bodygroups = "0100000",
898} )
899
900TEAM_104TH_SGT = CreateTeam( "104th Sergeant", {
901 Description = "Sergeant of the 104th",
902 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
903 Colour = Color( 173, 173, 173 ),
904 Side = 1,
905 Rank = 4,
906 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
907 Regiment = "104th Wolfpack",
908 Health = 100,
909 Bodygroups = "0100001",
910} )
911
912TEAM_104TH_SGTM = CreateTeam( "104th Sergeant-Major", {
913 Description = "Sergeant-Major of the 104th",
914 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
915 Colour = Color( 173, 173, 173 ),
916 Side = 1,
917 Rank = 5,
918 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
919 Regiment = "104th Wolfpack",
920 Health = 100,
921 Bodygroups = "0100001",
922} )
923
924TEAM_104TH_WO = CreateTeam( "Warrant Officer", {
925 Description = "Warrant Officer of the 104th",
926 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
927 Colour = Color( 173, 173, 173 ),
928 Side = 1,
929 Rank = 6,
930 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
931 Regiment = "104th Wolfpack",
932 Health = 100,
933 Bodygroups = "0100001",
934} )
935
936TEAM_104TH_2LT = CreateTeam( "2nd Lieutenant", {
937 Description = "2nd Lieutenant of the 104th",
938 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
939 Colour = Color( 173, 173, 173 ),
940 Side = 1,
941 Rank = 7,
942 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
943 Regiment = "104th Wolfpack",
944 Health = 100,
945 Bodygroups = "0110001",
946} )
947
948TEAM_104TH_LT = CreateTeam( "Lieutenant", {
949 Description = "Lieutenant of the 104th",
950 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
951 Colour = Color( 173, 173, 173 ),
952 Side = 1,
953 Rank = 8,
954 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
955 Regiment = "104th Wolfpack",
956 Health = 100,
957 Bodygroups = "0110001",
958} )
959
960TEAM_104TH_CPT = CreateTeam( "Captain", {
961 Description = "Captain of the 104th",
962 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
963 Colour = Color( 173, 173, 173 ),
964 Side = 1,
965 Rank = 9,
966 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
967 Regiment = "104th Wolfpack",
968 Health = 100,
969 Bodygroups = "0110001",
970} )
971
972TEAM_104TH_MAJ = CreateTeam( "Major", {
973 Description = "Major of the 104th",
974 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
975 Colour = Color( 173, 173, 173 ),
976 Side = 1,
977 Rank = 10,
978 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
979 Regiment = "104th Wolfpack",
980 Health = 100,
981 Bodygroups = "0110001",
982} )
983
984TEAM_104TH_BCMDR = CreateTeam( "Battalion Commander", {
985 Description = "Battalion Commander of the 104th",
986 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
987 Colour = Color( 173, 173, 173 ),
988 Side = 1,
989 Rank = 11,
990 Model = "models/gonzo/wolfpack327thshock/wolfpack/wolfpack.mdl",
991 Regiment = "104th Wolfpack",
992 Health = 100,
993 Bodygroups = "0110011",
994} )
995
996TEAM_104TH_CMDR = CreateTeam( "Commander", {
997 Description = "Regimental Commander of the 104th",
998 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
999 Colour = Color( 173, 173, 173 ),
1000 Side = 1,
1001 Rank = 20,
1002 Model = "models/player/ven/bf2_reg/wolffe/bf2wolffe.mdl",
1003 Regiment = "104th Wolfpack",
1004 Health = 100,
1005 Bodygroups = "0000000",
1006} )
1007
1008TEAM_104TH_SCMDR = CreateTeam( "Senior Commander", {
1009 Description = "Senior Commander of the 104th",
1010 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
1011 Colour = Color( 173, 173, 173 ),
1012 Side = 1,
1013 Rank = 13,
1014 Model = "models/player/ven/bf2_reg/wolffe/bf2wolffe.mdl",
1015 Regiment = "104th Wolfpack",
1016 Health = 100,
1017 Bodygroups = "0000000",
1018} )
1019
1020TEAM_SHOCK = CreateTeam( "Shock ARF Trooper", {
1021 Description = "Trooper of the Shock Trooper",
1022 Weapons = {"climb_swep2", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1023 Colour = Color( 255, 0, 79 ),
1024 Side = 1,
1025 Rank = 1,
1026 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1027 Regiment = "Shock Trooper",
1028 Health = 100,
1029 Bodygroups = "0110000",
1030} )
1031
1032TEAM_SHOCK = CreateTeam( "Shock ARF Lance-Corporal", {
1033 Description = "Lance-Corporal of the Shock Trooper",
1034 Weapons = {"climb_swep2", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1035 Colour = Color( 255, 0, 79 ),
1036 Side = 1,
1037 Rank = 2,
1038 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1039 Regiment = "Shock Trooper",
1040 Health = 100,
1041 Bodygroups = "0110000",
1042} )
1043
1044TEAM_SHOCK = CreateTeam( "Shock ARF Corporal", {
1045 Description = "Corporal of the Shock Trooper",
1046 Weapons = {"climb_swep2", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1047 Colour = Color( 255, 0, 79 ),
1048 Side = 1,
1049 Rank = 3,
1050 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1051 Regiment = "Shock Trooper",
1052 Health = 100,
1053 Bodygroups = "0110000",
1054} )
1055
1056TEAM_SHOCK = CreateTeam( "Shock ARF Sergeant", {
1057 Description = "Sergeant of the Shock Trooper",
1058 Weapons = {"climb_swep2", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1059 Colour = Color( 255, 0, 79 ),
1060 Side = 1,
1061 Rank = 4,
1062 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1063 Regiment = "Shock Trooper",
1064 Health = 100,
1065 Bodygroups = "0100000",
1066} )
1067
1068TEAM_SHOCK = CreateTeam( "Shock ARF Sergeant-Major", {
1069 Description = "Sergeant-Major of the Shock Trooper",
1070 Weapons = {"climb_swep2", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1071 Colour = Color( 255, 0, 79 ),
1072 Side = 1,
1073 Rank = 5,
1074 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1075 Regiment = "Shock Trooper",
1076 Health = 100,
1077 Bodygroups = "0100000",
1078} )
1079
1080TEAM_SHOCK = CreateTeam( "ARF Warrant Officer", {
1081 Description = "Warrant Officer of the Shock Trooper",
1082 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1083 Colour = Color( 255, 0, 79 ),
1084 Side = 1,
1085 Rank = 6,
1086 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1087 Regiment = "Shock Trooper",
1088 Health = 100,
1089 Bodygroups = "0100000",
1090} )
1091
1092TEAM_SHOCK = CreateTeam( "ARF 2nd Lieutenant", {
1093 Description = "2nd Lieutenant of the Shock Trooper",
1094 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "climb_swep2", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1095 Colour = Color( 255, 0, 79 ),
1096 Side = 1,
1097 Rank = 7,
1098 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1099 Regiment = "Shock Trooper",
1100 Health = 100,
1101 Bodygroups = "0010000",
1102} )
1103
1104TEAM_SHOCK = CreateTeam( "ARF Lieutenant", {
1105 Description = "Lieutenant of the Shock Trooper",
1106 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1107 Colour = Color( 255, 0, 79 ),
1108 Side = 1,
1109 Rank = 8,
1110 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1111 Regiment = "Shock Trooper",
1112 Health = 100,
1113 Bodygroups = "0010000",
1114} )
1115
1116TEAM_SHOCK = CreateTeam( "ARF Captain", {
1117 Description = "Captain of the Shock Trooper",
1118 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "tfa_sw_repsnip"},
1119 Colour = Color( 255, 0, 79 ),
1120 Side = 1,
1121 Rank = 9,
1122 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1123 Regiment = "Shock Trooper",
1124 Health = 100,
1125 Bodygroups = "0000000",
1126} )
1127
1128TEAM_SHOCK = CreateTeam( "ARF Major", {
1129 Description = "Major of the Shock Trooper",
1130 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17"},
1131 Colour = Color( 255, 0, 79 ),
1132 Side = 1,
1133 Rank = 10,
1134 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1135 Regiment = "Shock Trooper",
1136 Health = 100,
1137 Bodygroups = "0010000",
1138} )
1139
1140TEAM_SHOCK = CreateTeam( "ARF Battalion Commander", {
1141 Description = "Battalion Commander of the Shock Trooper",
1142 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
1143 Colour = Color( 255, 0, 79 ),
1144 Side = 1,
1145 Rank = 11,
1146 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1147 Regiment = "Shock Trooper",
1148 Health = 100,
1149 Bodygroups = "0010000",
1150} )
1151
1152TEAM_SHOCK = CreateTeam( "ARF Commander", {
1153 Description = "Regimental Commander of the Shock Trooper",
1154 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
1155 Colour = Color( 255, 0, 79 ),
1156 Side = 1,
1157 Rank = 12,
1158 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1159 Regiment = "Shock Trooper",
1160 Health = 100,
1161} )
1162
1163TEAM_SHOCK = CreateTeam( "ARF Senior Commander", {
1164 Description = "Senior Commander of the Shock Trooper",
1165 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
1166 Colour = Color( 255, 0, 79 ),
1167 Side = 1,
1168 Rank = 13,
1169 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1170 Regiment = "Shock Trooper",
1171 Health = 100,
1172 Bodygroups = "0010000",
1173} )
1174
1175TEAM_SHOCK = CreateTeam( "Marshal Commander", {
1176 Description = "Marshal Commander of the Shock Trooper",
1177 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "arrest_batton"},
1178 Colour = Color( 255, 0, 79 ),
1179 Side = 1,
1180 Rank = 14,
1181 Model = "models/gonzo/wolfpack327thshock/shockarf/shockarf.mdl",
1182 Regiment = "Shock Trooper",
1183 Health = 100,
1184 Bodygroups = "0000000",
1185} )
1186
1187TEAM_SHOCK = CreateTeam( "Shock Trooper", {
1188 Description = "Trooper of the Shock Trooper",
1189 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_policeshield"},
1190 Colour = Color( 255, 0, 79 ),
1191 Side = 1,
1192 Rank = 1,
1193 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1194 Regiment = "Shock Trooper",
1195 Health = 100,
1196 Bodygroups = "0100000",
1197} )
1198
1199TEAM_SHOCK = CreateTeam( "Shock Lance-Corporal", {
1200 Description = "Lance-Corporal of the Shock Trooper",
1201 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_policeshield"},
1202 Colour = Color( 255, 0, 79 ),
1203 Side = 1,
1204 Rank = 2,
1205 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1206 Regiment = "Shock Trooper",
1207 Health = 100,
1208 Bodygroups = "0100000",
1209} )
1210
1211TEAM_SHOCK = CreateTeam( "Shock Corporal", {
1212 Description = "Corporal of the Shock Trooper",
1213 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_policeshield"},
1214 Colour = Color( 255, 0, 79 ),
1215 Side = 1,
1216 Rank = 3,
1217 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1218 Regiment = "Shock Trooper",
1219 Health = 100,
1220 Bodygroups = "0100000",
1221} )
1222
1223TEAM_SHOCK = CreateTeam( "Shock Sergeant", {
1224 Description = "Sergeant of the Shock Trooper",
1225 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1226 Colour = Color( 255, 0, 79 ),
1227 Side = 1,
1228 Rank = 4,
1229 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1230 Regiment = "Shock Trooper",
1231 Health = 100,
1232 Bodygroups = "010000100",
1233} )
1234
1235
1236TEAM_SHOCK = CreateTeam( "Shock Sergeant-Major", {
1237 Description = "Sergeant-Major of the Shock Trooper",
1238 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "arrest_batton", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1239 Colour = Color( 255, 0, 79 ),
1240 Side = 1,
1241 Rank = 5,
1242 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1243 Regiment = "Shock Trooper",
1244 Health = 100,
1245 Bodygroups = "0100001",
1246} )
1247
1248TEAM_SHOCK = CreateTeam( "Shock Warrant Officer", {
1249 Description = "Warrant Officer of the Shock Trooper",
1250 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "arrest_batton", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1251 Colour = Color( 255, 0, 79 ),
1252 Side = 1,
1253 Rank = 6,
1254 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1255 Regiment = "Shock Trooper",
1256 Health = 100,
1257 Bodygroups = "011000",
1258} )
1259
1260TEAM_SHOCK = CreateTeam( "2nd Lieutenant", {
1261 Description = "2nd Lieutenant of the Shock Trooper",
1262 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "arrest_batton", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1263 Colour = Color( 255, 0, 79 ),
1264 Side = 1,
1265 Rank = 7,
1266 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1267 Regiment = "Shock Trooper",
1268 Health = 100,
1269 Bodygroups = "0110001",
1270} )
1271
1272
1273TEAM_SHOCK = CreateTeam( "Lieutenant", {
1274 Description = "Lieutenant of the Shock Trooper",
1275 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1276 Colour = Color( 255, 0, 79 ),
1277 Side = 1,
1278 Rank = 8,
1279 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1280 Regiment = "Shock Trooper",
1281 Health = 100,
1282 Bodygroups = "0110001",
1283} )
1284
1285TEAM_SHOCK = CreateTeam( "Captain", {
1286 Description = "Captain of the Shock Trooper",
1287 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "arrest_batton", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1288 Colour = Color( 255, 0, 79 ),
1289 Side = 1,
1290 Rank = 9,
1291 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1292 Regiment = "Shock Trooper",
1293 Health = 100,
1294 Bodygroups = "0110001",
1295} )
1296
1297TEAM_SHOCK = CreateTeam( "Major", {
1298 Description = "Major of the Shock Trooper",
1299 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield"},
1300 Colour = Color( 255, 0, 79 ),
1301 Side = 1,
1302 Rank = 10,
1303 Model = "models/gonzo/wolfpack327thshock/shock/shock.mdl",
1304 Regiment = "Shock Trooper",
1305 Health = 100,
1306 Bodygroups = "0110001",
1307} )
1308
1309TEAM_SHOCK = CreateTeam( "Battalion Commander", {
1310 Description = "Battalion Commander of the Shock",
1311 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
1312 Colour = Color( 255, 0, 79 ),
1313 Side = 1,
1314 Rank = 11,
1315 Model = "models/gonzo/mvgcommanders/fox/fox.mdl",
1316 Regiment = "Shock Trooper",
1317 Health = 100,
1318} )
1319
1320
1321TEAM_SHOCK = CreateTeam( "Commander", {
1322 Description = "Regimental Commander of the Shock Trooper",
1323 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
1324 Colour = Color( 255, 0, 79 ),
1325 Side = 1,
1326 Rank = 12,
1327 Model = "models/gonzo/mvgcommanders/fox/fox.mdl",
1328 Regiment = "Shock Trooper",
1329 Health = 100,
1330} )
1331
1332TEAM_SHOCK = CreateTeam( "Senior Commander", {
1333 Description = "Senior Commander of the Shock Trooper",
1334 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "arrest_batton", "weapon_cuff_elastic", "weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
1335 Colour = Color( 255, 0, 79 ),
1336 Side = 1,
1337 Rank = 13,
1338 Model = "models/gonzo/mvgcommanders/fox/fox.mdl",
1339 Regiment = "Shock Trooper",
1340 Health = 100,
1341} )
1342
1343TEAM_91ST_TROOPER = CreateTeam( "RC -", {
1344 Description = "Republic Commando of Theta Squadron",
1345 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "climb_swep2"},
1346 Colour = Color( 147, 144, 143 ),
1347 Side = 1,
1348 Rank = 1,
1349 Model = "models/player/sgg/starwars/clone_commando.mdl",
1350 Regiment = "Theta Squadron",
1351 Health = 250,
1352 Bodygroups = "000000000000000",
1353} )
1354
1355TEAM_91ST_LCP = CreateTeam( "RC -", {
1356 Description = "Pilot of Theta Squadron",
1357 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "climb_swep2"},
1358 Colour = Color( 147, 144, 143 ),
1359 Side = 1,
1360 Rank = 2,
1361 Model = "models/player/sgg/starwars/clone_commando.mdl",
1362 Regiment = "Theta Squadron",
1363 Health = 250,
1364 Bodygroups = "000000010000000",
1365} )
1366
1367TEAM_91ST_CPL = CreateTeam( "RC -", {
1368 Description = "Sqaud Leader of Theta Squadron",
1369 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2"},
1370 Colour = Color( 147, 144, 143 ),
1371 Side = 1,
1372 Rank = 12,
1373 Model = "models/player/sgg/starwars/clone_commando.mdl",
1374 Regiment = "Theta Squadron",
1375 Health = 250,
1376 Bodygroups = "000000000000000",
1377} )
1378
1379TEAM_91ST_SGT = CreateTeam( "187th BARC", {
1380 Description = "BARC rider of the 187th legion",
1381 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "climb_swep2"},
1382 Colour = Color( 122, 66, 244 ),
1383 Side = 1,
1384 Rank = 4,
1385 Model = "models/gonzo/187thadditionalclasses/187thbarc/187thbarc.mdl",
1386 Regiment = "187th Legion",
1387 Health = 100,
1388 Bodygroups = "0100010",
1389} )
1390
1391TEAM_91ST_SGTM = CreateTeam( "187th Heavy", {
1392 Description = "Heavy of the 187th Legion",
1393 Weapons = {"tfa_swch_z6", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
1394 Colour = Color( 122, 66, 244 ),
1395 Side = 1,
1396 Rank = 4,
1397 Model = "models/gonzo/187thadditionalclasses/187thheavy/187thheavy.mdl",
1398 Regiment = "187th Legion",
1399 Health = 150,
1400 Bodygroups = "0110001001",
1401} )
1402
1403TEAM_91ST_WO = CreateTeam( "187th Pilot", {
1404 Description = "Pilot of the 187th Legion",
1405 Weapons = {"tfa_swch_dc17", "tfa_752_dc15s_expanded", "tfa_752_dc15s_expanded", "repair_tool"},
1406 Colour = Color( 122, 66, 244 ),
1407 Side = 1,
1408 Rank = 4,
1409 Model = "models/gonzo/187thadditionalclasses/187thpilot/187thpilot.mdl",
1410 Regiment = "187th Legion",
1411 Health = 100,
1412 Bodygroups = "01000",
1413} )
1414
1415TEAM_91ST_2LT = CreateTeam( "187th Airborne SpecOps", {
1416 Description = "Specialist of the 187th legion",
1417 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "climb_swep2", "weapon_camo", "tfa_swch_dc17", "weapon_jetpack"},
1418 Colour = Color( 122, 66, 244 ),
1419 Side = 1,
1420 Rank = 4,
1421 Model = "models/gonzo/187thadditionalclasses/187thspecops/187thspecops.mdl",
1422 Regiment = "187th Legion",
1423 Health = 100,
1424 Bodygroups = "00001010",
1425} )
1426
1427TEAM_91ST_LT = CreateTeam( "ARC 5555", {
1428 Description = "ARC 5555",
1429 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
1430 Colour = Color( 0, 102, 255 ),
1431 Side = 1,
1432 Rank = 4,
1433 Model = "models/gonzo/187thadditionalclasses/swbf2fives/swbf2fives.mdl",
1434 Regiment = "501st Legion",
1435 Health = 100,
1436 Bodygroups = "011000111",
1437} )
1438
1439TEAM_91ST_CPT = CreateTeam( "ARC 1409", {
1440 Description = "ARC 1409",
1441 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
1442 Colour = Color( 0, 102, 255 ),
1443 Side = 1,
1444 Rank = 4,
1445 Model = "models/gonzo/187thadditionalclasses/swbf2echo/swbf2echo.mdl",
1446 Regiment = "501st Legion",
1447 Health = 100,
1448 Bodygroups = "011000111",
1449} )
1450
1451TEAM_91ST_MAJ = CreateTeam( "Major", {
1452 Description = "Major of the 91st Reconnaissance Corps",
1453 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
1454 Colour = Color( 255, 10, 10 ),
1455 Side = 1,
1456 Rank = 10,
1457 Model = "models/player/ven/bf2_reg/neyo/bf2neyo.mdl",
1458 Regiment = "91st Reconnaissance Corps",
1459 Health = 100,
1460 Bodygroups = "01100011",
1461} )
1462
1463TEAM_91ST_BCMDR = CreateTeam( "Battalion Commander", {
1464 Description = "Battalion Commander of the 91st Reconnaissance Corps",
1465 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "arrest_batton"},
1466 Colour = Color( 255, 10, 10 ),
1467 Side = 1,
1468 Rank = 11,
1469 Model = "models/player/ven/bf2_reg/neyo/bf2neyo.mdl",
1470 Regiment = "91st Reconnaissance Corps",
1471 Health = 100,
1472 Bodygroups = "0100000",
1473} )
1474
1475TEAM_91ST_CMDR = CreateTeam( "Commander", {
1476 Description = "Regimental Commander of the 91st Reconnaissance Corps",
1477 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "arrest_batton"},
1478 Colour = Color( 255, 10, 10 ),
1479 Side = 1,
1480 Rank = 12,
1481 Model = "models/player/ven/bf2_reg/neyo/bf2neyo.mdl",
1482 Regiment = "91st Reconnaissance Corps",
1483 Health = 100,
1484 Bodygroups = "0100000",
1485} )
1486
1487TEAM_91ST_SCMDR = CreateTeam( "Senior Commander", {
1488 Description = "Senior Commander of the 91st Reconnaissance Corps",
1489 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "arrest_batton"},
1490 Colour = Color( 255, 10, 10 ),
1491 Side = 1,
1492 Rank = 13,
1493 Model = "models/player/ven/bf2_reg/neyo/bf2neyo.mdl",
1494 Regiment = "91st Reconnaissance Corps",
1495 Health = 100,
1496 Bodygroups = "0100000",
1497} )
1498
1499TEAM_91ST_NEYO = CreateTeam( "Marshal Commander", {
1500 Description = "Marshal Commander of the 91st Reconnaissance Corps",
1501 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
1502 Colour = Color( 255, 10, 10 ),
1503 Side = 1,
1504 Rank = 14,
1505 Model = "models/player/ven/bf2_reg/neyo/bf2neyo.mdl",
1506 Regiment = "91st Reconnaissance Corps",
1507 Health = 100,
1508} )
1509
1510TEAM_MEDIC_TROOPER = CreateTeam( "Medic 104th Trooper", {
1511 Description = "Trooper of the 104th Wolfpack",
1512 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1513 Colour = Color( 173, 173, 173 ),
1514 Side = 1,
1515 Rank = 1,
1516 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1517 Regiment = "104th Wolfpack",
1518 Health = 100,
1519 Bodygroups = "01000000",
1520} )
1521
1522TEAM_MEDIC_LCP = CreateTeam( "Medic 104th Lance-Corporal", {
1523 Description = "Lance-Corporal of the 104th Wolfpack",
1524 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1525 Colour = Color( 173, 173, 173 ),
1526 Side = 1,
1527 Rank = 1,
1528 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1529 Regiment = "104th Wolfpack",
1530 Health = 100,
1531 Bodygroups = "01000000",
1532} )
1533
1534TEAM_MEDIC_CPL = CreateTeam( "Medic 104th Corporal", {
1535 Description = "Corporal of the 104th Wolfpack",
1536 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1537 Colour = Color( 173, 173, 173 ),
1538 Side = 1,
1539 Rank = 3,
1540 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1541 Regiment = "104th Wolfpack",
1542 Health = 100,
1543 Bodygroups = "01000000",
1544} )
1545
1546TEAM_MEDIC_SGT = CreateTeam( "Medic 104th Sergeant", {
1547 Description = "Sergeant of the 104th Wolfpack",
1548 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1549 Colour = Color( 173, 173, 173 ),
1550 Side = 1,
1551 Rank = 4,
1552 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1553 Regiment = "104th Wolfpack",
1554 Health = 100,
1555 Bodygroups = "01010000",
1556} )
1557
1558TEAM_MEDIC_SGTM = CreateTeam( "Medic 104th Sergeant-Major", {
1559 Description = "Sergeant-Major of the 104th Wolfpack",
1560 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1561 Colour = Color( 173, 173, 173 ),
1562 Side = 1,
1563 Rank = 5,
1564 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1565 Regiment = "104th Wolfpack",
1566 Health = 100,
1567 Bodygroups = "01010000",
1568} )
1569
1570TEAM_MEDIC_WO = CreateTeam( "Medic Warrant Officer", {
1571 Description = "Warrant Officer of the 104th Wolfpack",
1572 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1573 Colour = Color( 173, 173, 173 ),
1574 Side = 1,
1575 Rank = 6,
1576 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1577 Regiment = "104th Wolfpack",
1578 Health = 100,
1579 Bodygroups = "01110000",
1580} )
1581
1582
1583TEAM_MEDIC_2LT = CreateTeam( "Medic 2nd Lieutenant", {
1584 Description = "2nd Lieutenant of the 104th Wolfpack",
1585 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1586 Colour = Color( 173, 173, 173 ),
1587 Side = 1,
1588 Rank = 7,
1589 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1590 Regiment = "104th Wolfpack",
1591 Health = 100,
1592 Bodygroups = "01110000",
1593} )
1594
1595TEAM_MEDIC_LT = CreateTeam( "Medic Lieutenant", {
1596 Description = "Lieutenant of the 104th Wolfpack",
1597 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1598 Colour = Color( 173, 173, 173 ),
1599 Side = 1,
1600 Rank = 8,
1601 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1602 Regiment = "104th Wolfpack",
1603 Health = 100,
1604 Bodygroups = "01110000",
1605} )
1606
1607TEAM_MEDIC_CPT = CreateTeam( "Medic Captain", {
1608 Description = "Captain of the 104th Wolfpack",
1609 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1610 Colour = Color( 173, 173, 173 ),
1611 Side = 1,
1612 Rank = 9,
1613 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1614 Regiment = "104th Wolfpack",
1615 Health = 100,
1616 Bodygroups = "01110000",
1617} )
1618
1619TEAM_MEDIC_MAJ = CreateTeam( "Major", {
1620 Description = "Major of the 104th Wolfpack",
1621 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
1622 Colour = Color( 173, 173, 173 ),
1623 Side = 1,
1624 Rank = 10,
1625 Model = "models/banks/wolfpackmedic/wolfpackmedic.mdl",
1626 Regiment = "104th Wolfpack",
1627 Health = 100,
1628 Bodygroups = "01110000",
1629} )
1630
1631TEAM_MEDIC_BCMDR = CreateTeam( "Battalion Commander", {
1632 Description = "Battalion Commander of the 104th Wolfpack",
1633 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2", "arrest_batton"},
1634 Colour = Color( 173, 173, 173 ),
1635 Side = 1,
1636 Rank = 11,
1637 Model = "models/player/smitty/bf2_reg/medic_commander/medic_commander.mdl",
1638 Regiment = "104th Wolfpack",
1639 Health = 100,
1640 Bodygroups = "01110000",
1641} )
1642
1643TEAM_MEDIC_CMDR = CreateTeam( "Commander", {
1644 Description = "Regimental Commander of the 104th Wolfpack",
1645 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "arrest_batton"},
1646 Colour = Color( 173, 173, 173 ),
1647 Side = 1,
1648 Rank = 12,
1649 Model = "models/player/smitty/bf2_reg/medic_commander/medic_commander.mdl",
1650 Regiment = "104th Wolfpack",
1651 Health = 100,
1652 Bodygroups = "01110000",
1653} )
1654
1655TEAM_MEDIC_SCMDR = CreateTeam( "Senior Commander", {
1656 Description = "Senior Commander of the 104th Wolfpack",
1657 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "arrest_batton"},
1658 Colour = Color( 173, 173, 173 ),
1659 Side = 1,
1660 Rank = 13,
1661 Model = "models/player/smitty/bf2_reg/medic_commander/medic_commander.mdl",
1662 Regiment = "104th Wolfpack",
1663 Health = 100,
1664 Bodygroups = "01110000",
1665} )
1666
1667TEAM_DOOM_TROOPER = CreateTeam( "Shadow Trooper", {
1668 Description = "Trooper of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1669 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
1670 Colour = Color( 34, 89, 114 ),
1671 Side = 1,
1672 Rank = 1,
1673 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1674 Regiment = "Shadow Company",
1675 Health = 100,
1676 Bodygroups = "0101000",
1677} )
1678
1679TEAM_DOOM_LCP = CreateTeam( "Shadow Lance-Corporal", {
1680 Description = "Lance-Corporal of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1681 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
1682 Colour = Color( 34, 89, 114 ),
1683 Side = 1,
1684 Rank = 2,
1685 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1686 Regiment = "Shadow Company",
1687 Health = 100,
1688 Bodygroups = "0101000",
1689} )
1690
1691TEAM_DOOM_CPL = CreateTeam( "Shadow Corporal", {
1692 Description = "Corporal of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1693 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
1694 Colour = Color( 34, 89, 114 ),
1695 Side = 1,
1696 Rank = 3,
1697 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1698 Regiment = "Shadow Company",
1699 Health = 100,
1700 Bodygroups = "0101000",
1701} )
1702
1703TEAM_DOOM_SGT = CreateTeam( "Shadow Sergeant", {
1704 Description = "Sergeant of the models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1705 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
1706 Colour = Color( 34, 89, 114 ),
1707 Side = 1,
1708 Rank = 4,
1709 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1710 Regiment = "Shadow Company",
1711 Health = 100,
1712 Bodygroups = "01010010",
1713} )
1714
1715TEAM_DOOM_SGTM = CreateTeam( "Shadow Sergeant-Major", {
1716 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1717 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
1718 Colour = Color( 34, 89, 114 ),
1719 Side = 1,
1720 Rank = 5,
1721 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1722 Regiment = "Shadow Company",
1723 Health = 100,
1724 Bodygroups = "01010010",
1725} )
1726
1727TEAM_DOOM_WO = CreateTeam( "Warrant Officer", {
1728 Description = "Warrant Officer of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1729 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
1730 Colour = Color( 34, 89, 114 ),
1731 Side = 1,
1732 Rank = 6,
1733 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1734 Regiment = "Shadow Company",
1735 Health = 100,
1736 Bodygroups = "01010010",
1737} )
1738
1739TEAM_DOOM_2LT = CreateTeam( "2nd Lieutenant", {
1740 Description = "2nd Lieutenant of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1741 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
1742 Colour = Color( 34, 89, 114 ),
1743 Side = 1,
1744 Rank = 7,
1745 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1746 Regiment = "Shadow Company",
1747 Health = 100,
1748 Bodygroups = "01110010",
1749 } )
1750
1751TEAM_DOOM_LT = CreateTeam( "Lieutenant", {
1752 Description = "Lieutenant of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1753 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo"},
1754 Colour = Color( 34, 89, 114 ),
1755 Side = 1,
1756 Rank = 8,
1757 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1758 Regiment = "Shadow Company",
1759 Health = 100,
1760 Bodygroups = "01110010",
1761} )
1762
1763TEAM_DOOM_CPT = CreateTeam( "Captain", {
1764 Description = "Captain of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1765 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo"},
1766 Colour = Color( 34, 89, 114 ),
1767 Side = 1,
1768 Rank = 9,
1769 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1770 Regiment = "Shadow Company",
1771 Health = 100,
1772 Bodygroups = "01110110",
1773} )
1774
1775TEAM_DOOM_MAJ = CreateTeam( "Major", {
1776 Description = "Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1777 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo"},
1778 Colour = Color( 34, 89, 114 ),
1779 Side = 1,
1780 Rank = 10,
1781 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1782 Regiment = "Shadow Company",
1783 Health = 100,
1784 Bodygroups = "01110110",
1785} )
1786
1787
1788TEAM_DOOM_BCMDR = CreateTeam( "Battalion Commander", {
1789 Description = "Battalion Commander of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1790 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo", "arrest_batton"},
1791 Colour = Color( 34, 89, 114 ),
1792 Side = 1,
1793 Rank = 11,
1794 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1795 Regiment = "Shadow Company",
1796 Health = 100,
1797 Bodygroups = "0111011010",
1798} )
1799
1800TEAM_DOOM_CMDR = CreateTeam( "Commander", {
1801 Description = "Regimental Commander of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1802 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo", "arrest_batton"},
1803 Colour = Color( 34, 89, 114 ),
1804 Side = 1,
1805 Rank = 12,
1806 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1807 Regiment = "Shadow Company",
1808 Health = 100,
1809 Bodygroups = "0111011100",
1810} )
1811
1812TEAM_DOOM_SCMDR = CreateTeam( "Senior Commander", {
1813 Description = "Senior Commander of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
1814 Weapons = {"tfa_swch_dc17m_br", "tfa_se14c", "climb_swep2", "weapon_frag", "weapon_camo", "arrest_batton"},
1815 Colour = Color( 34, 89, 114 ),
1816 Side = 1,
1817 Rank = 13,
1818 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
1819 Regiment = "Shadow Company",
1820 Health = 100,
1821 Bodygroups = "0110011010",
1822} )
1823
1824TEAM_NAVY_MEDBOY = CreateTeam( "Medical Recruit", {
1825 Description = "Petty Officer of the Republic Navy",
1826 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1827 Colour = Color( 162, 242, 0 ),
1828 Side = 1,
1829 Rank = 1,
1830 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1831 Regiment = "Medical Staff",
1832 Health = 100,
1833} )
1834
1835TEAM_NAVY_MEDBOY = CreateTeam( "Medical Apprentice", {
1836 Description = "Senior Officer of the Republic Navy",
1837 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1838 Colour = Color( 162, 242, 0 ),
1839 Side = 1,
1840 Rank = 2,
1841 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1842 Regiment = "Medical Staff",
1843 Health = 100,
1844} )
1845
1846TEAM_NAVY_MEDBOY = CreateTeam( "Medical Sergeant", {
1847 Description = "Master Chief of the Republic Navy",
1848 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1849 Colour = Color( 162, 242, 0 ),
1850 Side = 1,
1851 Rank = 3,
1852 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1853 Regiment = "Medical Staff",
1854 Health = 100,
1855} )
1856
1857TEAM_NAVY_MEDBOY = CreateTeam( "Senior Medical Specialist", {
1858 Description = "Ensign of the Republic Navy",
1859 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1860 Colour = Color( 162, 242, 0 ),
1861 Side = 1,
1862 Rank = 4,
1863 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1864 Regiment = "Medical Staff",
1865 Health = 100,
1866} )
1867
1868TEAM_NAVY_MEDBOY = CreateTeam( "Medical Officer", {
1869 Description = "Junior Lieutenant of the Republic Navy",
1870 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1871 Colour = Color( 162, 242, 0 ),
1872 Side = 1,
1873 Rank = 5,
1874 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1875 Regiment = "Medical Staff",
1876 Health = 100,
1877} )
1878
1879TEAM_NAVY_MEDBOY = CreateTeam( "Senior Medical Officer", {
1880 Description = "Senior Lieutenant of the Republic Navy",
1881 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1882 Colour = Color( 162, 242, 0 ),
1883 Side = 1,
1884 Rank = 6,
1885 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1886 Regiment = "Medical Staff",
1887 Health = 100,
1888} )
1889
1890TEAM_NAVY_MEDBOY = CreateTeam( "Chief Medical Officer", {
1891 Description = "Junior Commander of the Republic Navy",
1892 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton", "weapon_bactanade", "weapon_defibrillator"},
1893 Colour = Color( 162, 242, 0 ),
1894 Side = 1,
1895 Rank = 8,
1896 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1897 Regiment = "Medical Staff",
1898 Health = 100,
1899} )
1900
1901TEAM_NAVY_MEDBOY = CreateTeam( "Deputy Medical Director", {
1902 Description = "Commander of the Republic Navy",
1903 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton", "weapon_bactanade", "weapon_defibrillator"},
1904 Colour = Color( 162, 242, 0 ),
1905 Side = 1,
1906 Rank = 11,
1907 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1908 Regiment = "Medical Staff",
1909 Health = 100,
1910} )
1911
1912TEAM_NAVY_MEDBOY = CreateTeam( "Medical Director", {
1913 Description = "Captain of the Republic Navy",
1914 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1915 Colour = Color( 162, 242, 0 ),
1916 Side = 1,
1917 Rank = 12,
1918 Model = "models/smitty/bf2_reg/medic_officer/medic_officer.mdl",
1919 Regiment = "Medical Staff",
1920 Health = 100,
1921} )
1922
1923TEAM_41ST_MAJ = CreateTeam( "Major", {
1924 Description = "Major of the 41st Elite Corps",
1925 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
1926 Colour = Color( 35, 124, 32 ),
1927 Side = 1,
1928 Rank = 10,
1929 Model = "models/player/smitty/bf2_reg/41st_major/41st_major.mdl",
1930 Regiment = "41st Elite Corps",
1931 Health = 100,
1932} )
1933
1934TEAM_41ST_BCMDR = CreateTeam( "Battalion Commander", {
1935 Description = "Battalion Commander of the 41st Elite Corps",
1936 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
1937 Colour = Color( 35, 124, 32 ),
1938 Side = 1,
1939 Rank = 11,
1940 Model = "models/player/smitty/bf2_reg/41st_commander/41st_commander.mdl",
1941 Regiment = "41st Elite Corps",
1942 Health = 100,
1943} )
1944
1945TEAM_41ST_GREE = CreateTeam( "Rancor ARF Trooper", {
1946 Description = "Regimental Commander of the Cthulu Company Legion",
1947 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "tfa_sw_repsnip"},
1948 Colour = Color( 214, 65, 49 ),
1949 Side = 1,
1950 Rank = 1,
1951 Model = "models/gonzo/rancorarfand187th/rancorarf/rancorarf.mdl",
1952 Regiment = "Rancor Battalion",
1953 Health = 100,
1954 Bodygroups = "0000000000",
1955} )
1956
1957TEAM_41ST_SCMDR = CreateTeam( "Rancor ARF Sergeant", {
1958 Description = "Regimental Commander of the Cthulu Company Legion",
1959 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "tfa_sw_repsnip"},
1960 Colour = Color( 214, 65, 49 ),
1961 Side = 1,
1962 Rank = 6,
1963 Model = "models/gonzo/rancorarfand187th/rancorarf/rancorarf.mdl",
1964 Regiment = "Rancor Battalion",
1965 Health = 100,
1966 Bodygroups = "0000100",
1967} )
1968
1969TEAM_327thK_TROOPER = CreateTeam( "Rancor ARF Lieutenant", {
1970 Description = "Trooper of the Cthulu Company Legion",
1971 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "tfa_sw_repsnip"},
1972 Colour = Color( 214, 65, 49 ),
1973 Side = 1,
1974 Rank = 8,
1975 Model = "models/gonzo/rancorarfand187th/rancorarf/rancorarf.mdl",
1976 Regiment = "Rancor Battalion",
1977 Health = 100,
1978 Bodygroups = "0010100",
1979} )
1980
1981TEAM_327thK_LCP = CreateTeam( "Rancor ARF Captain", {
1982 Description = "Lance-Corporal of the Cthulu Company Legion",
1983 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "tfa_sw_repsnip"},
1984 Colour = Color( 214, 65, 49 ),
1985 Side = 1,
1986 Rank = 10,
1987 Model = "models/gonzo/rancorarfand187th/rancorarf/rancorarf.mdl",
1988 Regiment = "Rancor Battalion",
1989 Health = 100,
1990 Bodygroups = "0010101",
1991} )
1992
1993TEAM_327thK_CPL = CreateTeam( "Rancor Medic Trooper", {
1994 Description = "Corporal of the Cthulu Company Legion",
1995 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
1996 Colour = Color( 214, 65, 49 ),
1997 Side = 1,
1998 Rank = 1,
1999 Model = "models/gonzo/rancorarfand187th/rancormedic/rancormedic.mdl",
2000 Regiment = "Rancor Battalion",
2001 Health = 100,
2002 Bodygroups = "000000000",
2003} )
2004
2005TEAM_327thK_SGT = CreateTeam( "Rancor Medic Sergeant", {
2006 Description = "Sergeant of the Cthulu Company Legion",
2007 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
2008 Colour = Color( 214, 65, 49 ),
2009 Side = 1,
2010 Rank = 6,
2011 Model = "models/gonzo/rancorarfand187th/rancormedic/rancormedic.mdl",
2012 Regiment = "Rancor Battalion",
2013 Health = 100,
2014 Bodygroups = "0000100",
2015} )
2016
2017TEAM_327thK_SGTM = CreateTeam( "Rancor Medic Lieutenant", {
2018 Description = "Sergeant-Major of the Cthulu Company Legion",
2019 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
2020 Colour = Color( 214, 65, 49 ),
2021 Side = 1,
2022 Rank = 8,
2023 Model = "models/gonzo/rancorarfand187th/rancormedic/rancormedic.mdl",
2024 Regiment = "Rancor Battalion",
2025 Health = 100,
2026 Bodygroups = "0010100",
2027} )
2028
2029TEAM_327thK_WO = CreateTeam( "Rancor Medic Captain", {
2030 Description = "Warrant Officer of the Cthulu Company Legion",
2031 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator"},
2032 Colour = Color( 214, 65, 49 ),
2033 Side = 1,
2034 Rank = 10,
2035 Model = "models/gonzo/rancorarfand187th/rancormedic/rancormedic.mdl",
2036 Regiment = "Rancor Battalion",
2037 Health = 100,
2038 Bodygroups = "0010101",
2039} )
2040
2041TEAM_327thK_2LT = CreateTeam( "Rancor Jump", {
2042 Description = "2nd Lieutenant of the Cthulu Company Legion",
2043 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
2044 Colour = Color( 214, 65, 49 ),
2045 Side = 1,
2046 Rank = 7,
2047 Model = "models/gonzo/rancorarfand187th/rancorarf/rancorarf.mdl",
2048 Regiment = "Rancor Battalion",
2049 Health = 100,
2050 Bodygroups = "0000110",
2051} )
2052
2053TEAM_327thK_LT = CreateTeam( "501st Juggernaut", {
2054 Description = "Lieutenant of the Cthulu Company",
2055 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "climb_swep2", "weapon_jetpack", "tfa_sparks_wristblue"},
2056 Colour = Color( 0, 102, 255 ),
2057 Side = 1,
2058 Rank = 8,
2059 Model = "models/gonzo/wolfpackpilot501stjuggernaut/501stjuggernaut/501stjuggernaut.mdl",
2060 Regiment = "501st Legion",
2061 Health = 500,
2062 Bodygroups = "0",
2063} )
2064
2065TEAM_327thK_CPT = CreateTeam( "Blackout Demolitionist", {
2066 Description = "Blackout Demo",
2067 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_clonelauncher", "weapon_frag"},
2068 Colour = Color( 0, 6, 17 ),
2069 Side = 1,
2070 Rank = 4,
2071 Model = "models/gonzo/tigersquad/blackoutdemo/blackoutdemo.mdl",
2072 Regiment = "Blackout Battalion",
2073 Health = 100,
2074 Bodygroups = "0110000101",
2075 } )
2076
2077TEAM_327thK_MAJ = CreateTeam( "Blackout Juggernaut", {
2078 Description = "blackout juggernaut",
2079 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "climb_swep2", "weapon_jetpack", "tfa_sparks_wristblue", "tfa_swch_z6"},
2080 Colour = Color( 0, 6, 17 ),
2081 Side = 1,
2082 Rank = 4,
2083 Model = "models/gonzo/tigersquad/blackoutjuggernaut/blackoutjuggernaut.mdl",
2084 Regiment = "Blackout Battalion",
2085 Health = 500,
2086 Bodygroups = "",
2087} )
2088
2089TEAM_327thK_BCMDR = CreateTeam( "Cthulu Company Battalion Commander", {
2090 Description = "Battalion Commander of the Cthulu Company Legion",
2091 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_sw_dc17dual", "climb_swep2", "arrest_batton"},
2092 Colour = Color( 214, 65, 49 ),
2093 Side = 1,
2094 Rank = 11,
2095 Model = "models/gonzo/keelitroopers/keelicdr/keelicdr.mdl",
2096 Regiment = "Cthulu Company",
2097 Health = 100,
2098 Bodygroups = "011001110",
2099} )
2100
2101TEAM_Addasdwasor = CreateTeam( "Commander", {
2102 Description = "Regimental Commander of the Cthulu Company Legion",
2103 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17"},
2104 Colour = Color( 214, 65, 49 ),
2105 Side = 1,
2106 Rank = 11,
2107 Model = "models/gonzo/keelitroopers/keelicdr/keelicdr.mdl",
2108 Regiment = "Cthulu Company",
2109 Health = 100,
2110 Bodygroups = "011001110",
2111} )
2112
2113TEAM_CLONE_TROOPER = CreateTeam( "Clone Advisor", {
2114 Description = "Trooper of the Clone Army",
2115 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17"},
2116 Colour = Color( 255, 255, 255 ),
2117 Side = 1,
2118 Rank = 11,
2119 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
2120 Regiment = "Clone Advisor",
2121 Health = 100,
2122 Bodygroups = "011001110",
2123} )
2124
2125TEAM_ARC_TRAINEE = CreateTeam( "ARC Trainee", {
2126 Description = "Trainee of the Advanced Recon Commandos",
2127 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
2128 Colour = Color( 255, 255, 255 ),
2129 Side = 1,
2130 Rank = 1,
2131 Model = "models/gonzo/ct327thpilotgmmed/ct/ct.mdl",
2132 Regiment = "Advanced Recon Commandos",
2133 Bodygroups = "010000000",
2134} )
2135
2136TEAM_ARC_SGT = CreateTeam( "ARC Sergeant", {
2137 Description = "Sergeant of the Advanced Recon Commandos",
2138 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "realistic_hook" },
2139 Colour = Color( 0, 255, 0 ),
2140 Side = 1,
2141 Rank = 5,
2142 Model = "models/gonzo/modifiedarctrooperranks/greenarc/greenarc.mdl",
2143 Regiment = "Advanced Recon Commandos",
2144 Health = 100,
2145 Bodygroups = "01100011",
2146} )
2147
2148TEAM_ARC_LT = CreateTeam( "ARC Lieutenant", {
2149 Description = "Lieutenant of the Advanced Recon Commandos",
2150 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
2151 Colour = Color( 51, 51, 255 ),
2152 Side = 1,
2153 Rank = 8,
2154 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
2155 Regiment = "Advanced Recon Commandos",
2156 Health = 100,
2157 Bodygroups = "01100011",
2158} )
2159
2160TEAM_ARC_CPT = CreateTeam( "ARC Captain", {
2161 Description = "Captain of the Advanced Recon Commandos",
2162 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
2163 Colour = Color( 255, 0, 0 ),
2164 Side = 1,
2165 Rank = 12,
2166 Model = "models/gonzo/modifiedarctrooperranks/redarc/redarc.mdl",
2167 Regiment = "Advanced Recon Commandos",
2168 Health = 100,
2169 Bodygroups = "01100011",
2170} )
2171
2172TEAM_ARC_CMDR = CreateTeam( "ARC Commander", {
2173 Description = "Commander of the Advanced Recon Commandos",
2174 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
2175 Colour = Color( 255, 255, 0 ),
2176 Side = 1,
2177 Rank = 13,
2178 Model = "models/gonzo/modifiedarctrooperranks/yellowarc/yellowarc.mdl",
2179 Regiment = "Advanced Recon Commandos",
2180 Health = 100,
2181 Bodygroups = "01100011",
2182} )
2183
2184TEAM_DELTA_BOSS = CreateTeam( "RC-1138", {
2185 Description = "Squad Leader of Delta Squad",
2186 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2"},
2187 Colour = Color( 255, 102, 0 ),
2188 Side = 1,
2189 Rank = 10,
2190 Model = "models/player/sgg/starwars/clone_commando_38.mdl",
2191 Regiment = "Delta Squad",
2192 Health = 250,
2193} )
2194
2195TEAM_DELTA_FIXER = CreateTeam( "RC-1140", {
2196 Description = "Member of Delta Squad",
2197 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
2198 Colour = Color( 51, 153, 51 ),
2199 Side = 1,
2200 Rank = 4,
2201 Model = "models/player/sgg/starwars/clone_commando_40.mdl",
2202 Regiment = "Delta Squad",
2203 Health = 250,
2204} )
2205
2206TEAM_DELTA_SEV = CreateTeam( "RC-1207", {
2207 Description = "Member of Delta Squad",
2208 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2"},
2209 Colour = Color( 173, 173, 173 ),
2210 Side = 1,
2211 Rank = 4,
2212 Model = "models/player/sgg/starwars/clone_commando_07.mdl",
2213 Regiment = "Delta Squad",
2214 Health = 250,
2215} )
2216
2217TEAM_DELTA_SCORCH = CreateTeam( "RC-1262", {
2218 Description = "Member of Delta Squad",
2219 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_swrc_det", "weapon_frag", "climb_swep2", "tfa_swch_dc17m_at"},
2220 Colour = Color( 255, 238, 32 ),
2221 Side = 1,
2222 Rank = 4,
2223 Model = "models/player/sgg/starwars/clone_commando_62.mdl",
2224 Regiment = "Delta Squad",
2225 Health = 250,
2226} )
2227
2228TEAM_NAVY_PETTY = CreateTeam( "Navy Petty Officer", {
2229 Description = "Petty Officer of the Republic Navy",
2230 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2231 Colour = Color( 0, 61, 187 ),
2232 Side = 1,
2233 Rank = 1,
2234 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2235 Regiment = "Republic Navy",
2236 Health = 100,
2237} )
2238
2239TEAM_NAVY_SENIOR = CreateTeam( "Navy Senior Officer", {
2240 Description = "Senior Officer of the Republic Navy",
2241 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2242 Colour = Color( 0, 61, 187 ),
2243 Side = 1,
2244 Rank = 2,
2245 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2246 Regiment = "Republic Navy",
2247 Health = 100,
2248} )
2249
2250TEAM_NAVY_MASTER = CreateTeam( "Navy Master Chief", {
2251 Description = "Master Chief of the Republic Navy",
2252 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2253 Colour = Color( 0, 61, 187 ),
2254 Side = 1,
2255 Rank = 3,
2256 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2257 Regiment = "Republic Navy",
2258 Health = 100,
2259} )
2260
2261TEAM_NAVY_ENSIGN = CreateTeam( "Navy Ensign", {
2262 Description = "Ensign of the Republic Navy",
2263 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2264 Colour = Color( 0, 61, 187 ),
2265 Side = 1,
2266 Rank = 4,
2267 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2268 Regiment = "Republic Navy",
2269 Health = 100,
2270} )
2271
2272TEAM_NAVY_JUNIOR = CreateTeam( "Navy Junior Lieutenant", {
2273 Description = "Junior Lieutenant of the Republic Navy",
2274 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2275 Colour = Color( 0, 61, 187 ),
2276 Side = 1,
2277 Rank = 5,
2278 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2279 Regiment = "Republic Navy",
2280 Health = 100,
2281} )
2282
2283TEAM_NAVY_SENIOR = CreateTeam( "Navy Senior Lieutenant", {
2284 Description = "Senior Lieutenant of the Republic Navy",
2285 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2286 Colour = Color( 0, 61, 187 ),
2287 Side = 1,
2288 Rank = 6,
2289 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
2290 Regiment = "Republic Navy",
2291 Health = 100,
2292} )
2293
2294TEAM_NAVY_JCMDR = CreateTeam( "Navy Junior Commander", {
2295 Description = "Junior Commander of the Republic Navy",
2296 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton"},
2297 Colour = Color( 0, 61, 187 ),
2298 Side = 1,
2299 Rank = 11,
2300 Model = "models/smitty/bf2_reg/grey_officer/grey_officer.mdl",
2301 Regiment = "Republic Navy",
2302 Health = 100,
2303} )
2304
2305TEAM_NAVY_CMDR = CreateTeam( "Navy Commander", {
2306 Description = "Commander of the Republic Navy",
2307 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton"},
2308 Colour = Color( 0, 61, 187 ),
2309 Side = 1,
2310 Rank = 11,
2311 Model = "models/smitty/bf2_reg/grey_officer/grey_officer.mdl",
2312 Regiment = "Republic Navy",
2313 Health = 100,
2314} )
2315
2316TEAM_NAVY_CPT = CreateTeam( "Navy Captain", {
2317 Description = "Captain of the Republic Navy",
2318 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
2319 Colour = Color( 0, 61, 187 ),
2320 Side = 1,
2321 Rank = 11,
2322 Model = "models/smitty/bf2_reg/grey_officer/grey_officer.mdl",
2323 Regiment = "Republic Navy",
2324 Health = 100,
2325} )
2326
2327TEAM_NAVY_COMMODORE = CreateTeam( "Navy Commodore", {
2328 Description = "Commodore of the Republic Navy",
2329 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton"},
2330 Colour = Color( 0, 61, 187 ),
2331 Side = 1,
2332 Rank = 11,
2333 Model = "models/smitty/bf2_reg/brown_officer/brown_officer.mdl",
2334 Regiment = "Republic Navy",
2335 Health = 100,
2336} )
2337
2338TEAM_NAVY_VICE = CreateTeam( "Navy Vice Admiral", {
2339 Description = "Vice Admiral of the Republic Navy",
2340 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton"},
2341 Colour = Color( 0, 61, 187 ),
2342 Side = 1,
2343 Rank = 11,
2344 Model = "models/smitty/bf2_reg/olive_officer/olive_officer.mdl",
2345 Regiment = "Republic Navy",
2346 Health = 100,
2347} )
2348
2349TEAM_NAVY_TARKIN = CreateTeam( "Navy Admiral", {
2350 Description = "Admiral Tarkin of the Republic Navy",
2351 Weapons = {"tfa_swch_dc17", "weapon_bactainjector", "arrest_batton"},
2352 Colour = Color( 0, 61, 187 ),
2353 Side = 1,
2354 Rank = 12,
2355 Model = "models/smitty/bf2_reg/black_officer/black_officer.mdl",
2356 Regiment = "Republic Navy",
2357 Health = 100,
2358} )
2359
2360TEAM_GOLD_PETTY = CreateTeam( "Clone Pilot Cadet", {
2361 Description = "Trooper of the Clone Pilot",
2362 Weapons = {"tfa_swch_dc17", "tfa_752_dc15s_expanded", "tfa_752_dc15s_expanded", "repair_tool"},
2363 Colour = Color( 255, 255, 0 ),
2364 Side = 1,
2365 Rank = 1,
2366 Model = "models/banks/custompilot/pilotpvt/pilotpvt.mdl",
2367 Regiment = "Clone Pilot",
2368 Health = 100,
2369 Bodygroups = "0000000",
2370} )
2371
2372TEAM_GOLD_SERGEANT = CreateTeam( "Clone Pilot Chief", {
2373 Description = "Trooper of the Clone Pilot",
2374 Weapons = {"tfa_swch_dc17", "tfa_752_dc15s_expanded", "tfa_752_dc15s_expanded", "repair_tool"},
2375 Colour = Color( 255, 255, 0 ),
2376 Side = 1,
2377 Rank = 2,
2378 Model = "models/banks/custompilot/pilotpvt/pilotpvt.mdl",
2379 Regiment = "Clone Pilot",
2380 Health = 100,
2381 Bodygroups = "0010000",
2382} )
2383
2384TEAM_GOLD_LIEUTENANT = CreateTeam( "Clone Pilot Officer", {
2385 Description = "Lieutenant of the Clone Pilot",
2386 Weapons = {"tfa_swch_dc17", "tfa_752_dc15s_expanded", "tfa_752_dc15s_expanded", "repair_tool"},
2387 Colour = Color( 255, 255, 0 ),
2388 Side = 1,
2389 Rank = 9,
2390 Model = "models/banks/custompilot/pilotpvt/pilotpvt.mdl",
2391 Regiment = "Clone Pilot",
2392 Health = 100,
2393 Bodygroups = "0100000",
2394} )
2395
2396TEAM_GOLD_CAPTAIN = CreateTeam( "Clone Pilot Commander", {
2397 Description = "Captain of the Clone Pilot",
2398 Weapons = {"tfa_swch_dc17", "tfa_752_dc15s_expanded", "tfa_752_dc15s_expanded", "repair_tool"},
2399 Colour = Color( 255, 255, 0 ),
2400 Side = 1,
2401 Rank = 10,
2402 Model = "models/banks/custompilot/pilotpvt/pilotpvt.mdl",
2403 Regiment = "Clone Pilot",
2404 Health = 100,
2405 Bodygroups = "0111000",
2406} )
2407
2408TEAM_JEDI_YOUNGLING = CreateTeam( "Jedi Youngling", {
2409 Description = "Jedi Youngling of the Jedi Order",
2410 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
2411 Colour = Color( 255, 255, 204 ),
2412 Side = 1,
2413 Rank = 1,
2414 Model = "models/jazzmcfly/jka/younglings/jka_young_male.mdl",
2415 Regiment = "Jedi Order",
2416 Health = 250,
2417 Runspeed = 265,
2418 Walkspeed = 155,
2419} )
2420
2421TEAM_JEDI_PADAWAN = CreateTeam( "Jedi Padawan", {
2422 Description = "Jedi Padawan of the Jedi Order",
2423 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
2424 Colour = Color( 255, 255, 204 ),
2425 Side = 1,
2426 Rank = 2,
2427 Model = "models/grealms/characters/padawan/padawan_09.mdl",
2428 Regiment = "Jedi Order",
2429 Health = 1000,
2430 Runspeed = 280,
2431 Walkspeed = 170,
2432} )
2433
2434TEAM_JEDI_KNIGHT = CreateTeam( "Jedi Knight", {
2435 Description = "Jedi Knight of the Jedi Order",
2436 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
2437 Colour = Color( 255, 255, 204 ),
2438 Side = 1,
2439 Rank = 3,
2440 Model = "models/grealms/characters/jedibattlelord/jedibattlelord_09.mdl",
2441 Regiment = "Jedi Order",
2442 Health = 1000,
2443 Runspeed = 285,
2444 Walkspeed = 170,
2445} )
2446
2447TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2448 Description = "Jedi Master of the Jedi Order",
2449 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2450 Colour = Color( 255, 255, 204 ),
2451 Side = 1,
2452 Rank = 11,
2453 Model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
2454 Regiment = "Jedi Order",
2455 Health = 5000,
2456 Runspeed = 290,
2457 Walkspeed = 170,
2458} )
2459
2460TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2461 Description = "Jedi Master of the Jedi Order",
2462 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2463 Colour = Color( 255, 255, 204 ),
2464 Side = 1,
2465 Rank = 11,
2466 Model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
2467 Regiment = "Jedi Order",
2468 Health = 5000,
2469 Runspeed = 290,
2470 Walkspeed = 170,
2471} )
2472
2473TEAM_JEDI_MASTER = CreateTeam( "Jedi Knight", {
2474 Description = "Anakin Skywalker of the Jedi Order",
2475 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2476 Colour = Color( 255, 255, 204 ),
2477 Side = 1,
2478 Rank = 11,
2479 Model = "models/tfa/comm/gg/pm_sw_anakin_v2.mdl",
2480 Regiment = "Jedi Order",
2481 Health = 5000,
2482 Runspeed = 290,
2483 Walkspeed = 170,
2484} )
2485
2486TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2487 Description = "Obi-Wan Kenobi of the Jedi Order",
2488 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2489 Colour = Color( 255, 255, 204 ),
2490 Side = 1,
2491 Rank = 11,
2492 Model = "models/tfa/comm/gg/pm_sw_obiwan_alt.mdl",
2493 Regiment = "Jedi Order",
2494 Health = 5000,
2495 Runspeed = 290,
2496 Walkspeed = 170,
2497} )
2498
2499TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2500 Description = "Plo Koon of the Jedi Order",
2501 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2502 Colour = Color( 255, 255, 204 ),
2503 Side = 1,
2504 Rank = 11,
2505 Model = "models/kriegsyntax/sw_752/plokoon_est.mdl",
2506 Regiment = "Jedi Order",
2507 Health = 5000,
2508 Runspeed = 290,
2509 Walkspeed = 170,
2510} )
2511
2512TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2513 Description = "Kit Fisto of the Jedi Order",
2514 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2515 Colour = Color( 255, 255, 204 ),
2516 Side = 1,
2517 Rank = 8,
2518 Model = "models/tfa/comm/gg/pm_sw_fisto.mdl",
2519 Regiment = "Jedi Order",
2520 Health = 5000,
2521 Runspeed = 290,
2522 Walkspeed = 170,
2523} )
2524
2525TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2526 Description = "Rahm Kota of the Jedi Order",
2527 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2528 Colour = Color( 255, 255, 204 ),
2529 Side = 1,
2530 Rank = 11,
2531 Model = "models/tfa/comm/gg/pm_sw_quinlanvos.mdl",
2532 Regiment = "Jedi Order",
2533 Health = 5000,
2534 Runspeed = 290,
2535 Walkspeed = 170,
2536} )
2537
2538TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2539 Description = "Shaak Ti of the Jedi Order",
2540 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2541 Colour = Color( 255, 255, 204 ),
2542 Side = 1,
2543 Rank = 11,
2544 Model = "models/tfa/comm/gg/pm_sw_shaakti.mdl",
2545 Regiment = "Jedi Order",
2546 Health = 5000,
2547 Runspeed = 290,
2548 Walkspeed = 170,
2549} )
2550
2551TEAM_JEDI_MASTER = CreateTeam( "Jedi Padawan", {
2552 Description = "Tiplee of the Jedi Order",
2553 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2554 Colour = Color( 255, 255, 204 ),
2555 Side = 1,
2556 Rank = 11,
2557 Model = "models/tfa/comm/gg/pm_sw_barriss.mdl",
2558 Regiment = "Jedi Order",
2559 Health = 5000,
2560 Runspeed = 290,
2561 Walkspeed = 170,
2562} )
2563
2564TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2565 Description = "Ki-Adi Mundi of the Jedi Order",
2566 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2567 Colour = Color( 255, 255, 204 ),
2568 Side = 1,
2569 Rank = 11,
2570 Model = "models/tfa/comm/gg/pm_sw_luminara.mdl",
2571 Regiment = "Jedi Order",
2572 Health = 5000,
2573 Runspeed = 290,
2574 Walkspeed = 170,
2575} )
2576
2577TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
2578 Description = "Master of the Order",
2579 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2580 Colour = Color( 255, 255, 204 ),
2581 Side = 1,
2582 Rank = 12,
2583 Model = "models/ryan7259/mace_windu/mace_windu_player.mdl",
2584 Regiment = "Jedi Order",
2585 Health = 5000,
2586 Runspeed = 290,
2587 Walkspeed = 170,
2588} )
2589
2590TEAM_JEDI_MASTER = CreateTeam( "Grand Master", {
2591 Description = "Grand Master of the Order",
2592 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
2593 Colour = Color( 255, 255, 204 ),
2594 Side = 1,
2595 Rank = 13,
2596 Model = "models/tfa/comm/gg/pm_sw_yodanojig.mdl",
2597 Regiment = "Jedi Order",
2598 Health = 6000,
2599 Runspeed = 290,
2600 Walkspeed = 170,
2601 Modelscale = 0.6,
2602} )
2603
2604TEAM_EVENT_DOOKU = CreateTeam( "Count", {
2605 Description = "Count Dooku of the Confederacy of Independent Systems",
2606 Weapons = {"weapon_lightsaber", "meditation"},
2607 Colour = Color( 255, 10, 10 ),
2608 Side = -1,
2609 Rank = 1,
2610 Model = "models/kriegsyntax/sw_752/dooku_est.mdl",
2611 Regiment = "Event Characters",
2612 Health = 200000,
2613 Runspeed = 290,
2614 Walkspeed = 170,
2615} )
2616
2617TEAM_EVENT_GRIEV = CreateTeam( "General", {
2618 Description = "General Grievous of the Confederacy of Independent Systems",
2619 Weapons = {"weapon_lightsaber", "meditation"},
2620 Colour = Color( 255, 10, 10 ),
2621 Side = -1,
2622 Rank = 2,
2623 Model = "models/player/grievous.mdl",
2624 Regiment = "Event Characters",
2625 Health = 200000,
2626 Runspeed = 300,
2627 Walkspeed = 180,
2628} )
2629
2630TEAM_EVENT_MAUL = CreateTeam( "Darth", {
2631 Description = "Darth Maul",
2632 Weapons = {"weapon_lightsaber", "meditation"},
2633 Colour = Color( 255, 10, 10 ),
2634 Side = -1,
2635 Rank = 3,
2636 Model = "models/player/darth/maul.mdl",
2637 Regiment = "Event Characters",
2638 Health = 200000,
2639 Runspeed = 290,
2640 Walkspeed = 170,
2641} )
2642
2643TEAM_EVENT_RANC = CreateTeam( "Blackout Pilot", {
2644 Description = "Bith",
2645 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2646 Colour = Color( 0, 6, 17 ),
2647 Side = 1,
2648 Rank = 7,
2649 Model = "models/gonzo/cglotsofclones/blackoutpilot/blackoutpilot.mdl",
2650 Regiment = "Blackout Battalion",
2651 Health = 100,
2652 Bodygroup = "01111000000",
2653} )
2654
2655TEAM_EVENT_RANC = CreateTeam( "Blackout Heavy", {
2656 Description = "Bith",
2657 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2658 Colour = Color( 0, 6, 17 ),
2659 Side = 1,
2660 Rank = 7,
2661 Model = "models/gonzo/cglotsofclones/blackoutgunner/blackoutgunner.mdl",
2662 Regiment = "Blackout Battalion",
2663 Health = 100,
2664 Bodygroups = "0000000",
2665} )
2666
2667TEAM_9TH_CPL = CreateTeam( "Cthulu ARF Trooper", {
2668 Description = "Corporal of the 9th",
2669 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2670 Colour = Color( 214, 65, 49 ),
2671 Side = 1,
2672 Rank = 5,
2673 Model = "models/gonzo/skullclones/keeliarf/keeliarf.mdl",
2674 Regiment = "Cthulu Company",
2675 Health = 100,
2676 Bodygroups = "01100001",
2677} )
2678
2679TEAM_9TH_CPL = CreateTeam( "Cthulu ARF Sergeant", {
2680 Description = "Corporal of the 9th",
2681 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2682 Colour = Color( 214, 65, 49 ),
2683 Side = 1,
2684 Rank = 5,
2685 Model = "models/gonzo/skullclones/keeliarf/keeliarf.mdl",
2686 Regiment = "Cthulu Company",
2687 Health = 100,
2688 Bodygroups = "01100001",
2689} )
2690
2691TEAM_9TH_CPL = CreateTeam( "Cthulu ARF Lieutenant", {
2692 Description = "Corporal of the 9th",
2693 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2694 Colour = Color( 214, 65, 49 ),
2695 Side = 1,
2696 Rank = 5,
2697 Model = "models/gonzo/skullclones/keeliarf/keeliarf.mdl",
2698 Regiment = "Cthulu Company",
2699 Health = 100,
2700 Bodygroups = "01100001",
2701} )
2702
2703TEAM_9TH_CPL = CreateTeam( "Cthulu ARF Captain", {
2704 Description = "Corporal of the 9th",
2705 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
2706 Colour = Color( 214, 65, 49 ),
2707 Side = 1,
2708 Rank = 11,
2709 Model = "models/gonzo/skullclones/keeliarf/keeliarf.mdl",
2710 Regiment = "Cthulu Company",
2711 Health = 100,
2712 Bodygroups = "01100001",
2713} )
2714
2715TEAM_9TH_LCP = CreateTeam( "Cthulu Havoc Trooper", {
2716 Description = "Lance-Corporal of the 9th",
2717 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_frag", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
2718 Colour = Color( 214, 65, 49 ),
2719 Side = 1,
2720 Rank = 2,
2721 Model = "models/gonzo/skullclones/keeligunner/keeligunner.mdl",
2722 Regiment = "Cthulu Company",
2723 Health = 100,
2724 Bodygroups = "0000000",
2725} )
2726
2727TEAM_9TH_CPL = CreateTeam( "Cthulu Havoc Sergeant", {
2728 Description = "Corporal of the 9th",
2729 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_frag", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
2730 Colour = Color( 214, 65, 49 ),
2731 Side = 1,
2732 Rank = 5,
2733 Model = "models/gonzo/skullclones/keeligunner/keeligunner.mdl",
2734 Regiment = "Cthulu Company",
2735 Health = 100,
2736 Bodygroups = "01111001",
2737} )
2738
2739TEAM_9TH_CPL = CreateTeam( "Cthulu Havoc Lieutenant", {
2740 Description = "Corporal of the 9th",
2741 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_frag", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
2742 Colour = Color( 214, 65, 49 ),
2743 Side = 1,
2744 Rank = 5,
2745 Model = "models/gonzo/skullclones/keeligunner/keeligunner.mdl",
2746 Regiment = "Cthulu Company",
2747 Health = 100,
2748 Bodygroups = "01000001",
2749} )
2750
2751TEAM_9TH_CPL = CreateTeam( "Cthulu Havoc Captain", {
2752 Description = "Corporal of the 9th",
2753 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_frag", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
2754 Colour = Color( 214, 65, 49 ),
2755 Side = 1,
2756 Rank = 11,
2757 Model = "models/gonzo/skullclones/keeligunner/keeligunner.mdl",
2758 Regiment = "Cthulu Company",
2759 Health = 100,
2760 Bodygroups = "01000001",
2761} )
2762
2763TEAM_DOOM_SGTM = CreateTeam( "Death Company Medic Trooper", {
2764 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
2765 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo" ,"weapon_policeshield", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator"},
2766 Colour = Color( 5, 182, 81 ),
2767 Side = 1,
2768 Rank = 5,
2769 Model = "models/gonzo/skullclones/skullmedic/skullmedic.mdl",
2770 Regiment = "Death Company",
2771 Health = 100,
2772 Bodygroups = "01000000",
2773} )
2774
2775TEAM_DOOM_SGTM = CreateTeam( "Death Company Medic Sergeant", {
2776 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
2777 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo" ,"weapon_policeshield", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator"},
2778 Colour = Color( 5, 182, 81 ),
2779 Side = 1,
2780 Rank = 5,
2781 Model = "models/gonzo/skullclones/skullmedic/skullmedic.mdl",
2782 Regiment = "Death Company",
2783 Health = 100,
2784 Bodygroups = "010000010",
2785} )
2786
2787TEAM_DOOM_SGTM = CreateTeam( "Medic 2nd Lieutenant", {
2788 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
2789 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_camo" , "weapon_policeshield", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator"},
2790 Colour = Color( 5, 182, 81 ),
2791 Side = 1,
2792 Rank = 6,
2793 Model = "models/gonzo/skullclones/skullmedic/skullmedic.mdl",
2794 Regiment = "Death Company",
2795 Health = 100,
2796 Bodygroups = "01100010",
2797} )
2798
2799TEAM_DOOM_SGTM = CreateTeam( "Medic Captain", {
2800 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
2801 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "climb_swep2","weapon_policeshield", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator"},
2802 Colour = Color( 5, 182, 81 ),
2803 Side = 1,
2804 Rank = 11,
2805 Model = "models/gonzo/skullclones/skullmedic/skullmedic.mdl",
2806 Regiment = "Death Company",
2807 Health = 100,
2808 Bodygroups = "01100011",
2809} )
2810
2811TEAM_612TH_TROOPER = CreateTeam( "Death Company Trooper", {
2812 Description = "Trooper of the 612th Attack Battalion",
2813 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
2814 Colour = Color( 5, 182, 81 ),
2815 Side = 1,
2816 Rank = 1,
2817 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2818 Regiment = "Death Company",
2819 Health = 100,
2820 Bodygroups = "0100000000",
2821} )
2822
2823TEAM_612TH_LCP = CreateTeam( "Death Company Lance-Corporal", {
2824 Description = "Lance-Corporal of the 612th Attack Battalion",
2825 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
2826 Colour = Color( 5, 182, 81 ),
2827 Side = 1,
2828 Rank = 2,
2829 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2830 Regiment = "Death Company",
2831 Health = 100,
2832 Bodygroups = "0100000000",
2833} )
2834
2835TEAM_612TH_CPL = CreateTeam( "Death Company Corporal", {
2836 Description = "Corporal of the 612th Attack Battalion",
2837 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
2838 Colour = Color( 5, 182, 81 ),
2839 Side = 1,
2840 Rank = 3,
2841 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2842 Regiment = "Death Company",
2843 Health = 100,
2844 Bodygroups = "0100000000",
2845} )
2846
2847TEAM_612TH_SGT = CreateTeam( "Death Company Sergeant", {
2848 Description = "Sergeant of the 612th",
2849 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
2850 Colour = Color( 5, 182, 81 ),
2851 Side = 1,
2852 Rank = 4,
2853 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2854 Regiment = "Death Company",
2855 Health = 100,
2856 Bodygroups = "010000100",
2857} )
2858
2859TEAM_612TH_SGTM = CreateTeam( "Death Company Sergeant-Major", {
2860 Description = "Sergeant-Major of the 612th",
2861 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
2862 Colour = Color( 5, 182, 81 ),
2863 Side = 1,
2864 Rank = 5,
2865 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2866 Regiment = "Death Company",
2867 Health = 100,
2868 Bodygroups = "010000100",
2869} )
2870
2871TEAM_612TH_WO = CreateTeam( "Warrant Officer", {
2872 Description = "Warrant Officer of the 612th",
2873 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "weapon_camo"},
2874 Colour = Color( 5, 182, 81 ),
2875 Side = 1,
2876 Rank = 6,
2877 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2878 Regiment = "Death Company",
2879 Health = 100,
2880 Bodygroups = "010000100",
2881} )
2882
2883TEAM_612TH_2LT = CreateTeam( "2nd Lieutenant", {
2884 Description = "2nd Lieutenant of the 612th",
2885 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "weapon_camo"},
2886 Colour = Color( 5, 182, 81 ),
2887 Side = 1,
2888 Rank = 7,
2889 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2890 Regiment = "Death Company",
2891 Health = 100,
2892 Bodygroups = "011000100",
2893} )
2894
2895TEAM_612TH_LT = CreateTeam( "Lieutenant", {
2896 Description = "Lieutenant of the 612th",
2897 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "weapon_camo"},
2898 Colour = Color( 5, 182, 81 ),
2899 Side = 1,
2900 Rank = 8,
2901 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2902 Regiment = "Death Company",
2903 Health = 100,
2904 Bodygroups = "011000100",
2905} )
2906
2907TEAM_612TH_CPT = CreateTeam( "Captain", {
2908 Description = "Captain of the 612th",
2909 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "weapon_camo"},
2910 Colour = Color( 5, 182, 81 ),
2911 Side = 1,
2912 Rank = 11,
2913 Model = "models/gonzo/skullclones/skulltrooper/skulltrooper.mdl",
2914 Regiment = "Death Company",
2915 Health = 100,
2916 Bodygroups = "011000100",
2917} )
2918
2919TEAM_612TH_MAJ = CreateTeam( "Senior Commander", {
2920 Description = "Major of the 612th",
2921 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "weapon_camo"},
2922 Colour = Color( 5, 182, 81 ),
2923 Side = 1,
2924 Rank = 11,
2925 Model = "models/gonzo/deathcompanytroopers/dcbrute/dcbrute.mdl",
2926 Regiment = "Death Company",
2927 Health = 100,
2928 Bodygroups = "0110001101",
2929} )
2930
2931TEAM_RANCOR_HAMMER_LT = CreateTeam( "Rancor Lieutenant", {
2932 Description = "Lieutenant Of Rancor Battalion",
2933 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactanade", "climb_swep2", "weapon_jetpack"},
2934 Colour = Color( 115, 35, 28 ),
2935 Side = 1,
2936 Rank = 12,
2937 Model = "models/gonzo/rancorhammer/rancorhammer.mdl",
2938 Regiment = "Rancor Battalion",
2939 Health = 100,
2940 Bodygroups = "011000111",
2941} )
2942
2943TEAM_RANCOR_HAMMER_CPT = CreateTeam( "Rancor Captain", {
2944 Description = "Captain Of Rancor Battalion",
2945 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactanade", "climb_swep2", "weapon_jetpack"},
2946 Colour = Color( 115, 35, 28 ),
2947 Side = 1,
2948 Rank = 13,
2949 Model = "models/gonzo/rancorhammer/rancorhammer.mdl",
2950 Regiment = "Rancor Battalion",
2951 Health = 100,
2952 Bodygroups = "011000111",
2953} )
2954
2955 TEAM_RANCOR_HAMMER_CMDR = CreateTeam( "Rancor Commander", {
2956 Description = "Commander Of Rancor Battalion",
2957 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactanade", "climb_swep2", "weapon_jetpack", "arrest_batton"},
2958 Colour = Color( 115, 35, 28 ),
2959 Side = 1,
2960 Rank = 14,
2961 Model = "models/gonzo/rancorhammer/rancorhammer.mdl",
2962 Regiment = "Rancor Battalion",
2963 Health = 100,
2964 Bodygroups = "011000111",
2965} )
2966
2967TEAM_RANCOR_TROOPER = CreateTeam( "Rancor Trooper", {
2968 Description = "Lieutenant Of Rancor Battalion",
2969 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17"},
2970 Colour = Color( 190, 25, 28 ),
2971 Side = 1,
2972 Rank = 2,
2973 Model = "models/gonzo/swbf2arf/rancor/rancor.mdl",
2974 Regiment = "Rancor Battalion",
2975 Health = 100,
2976 Bodygroups = "011000110",
2977} )
2978
2979TEAM_RANCOR_COLT_LT = CreateTeam( "Rancor Lieutenant", {
2980 Description = "Lieutenant Of Rancor Battalion",
2981 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack"},
2982 Colour = Color( 155, 25, 28 ),
2983 Side = 1,
2984 Rank = 12,
2985 Model = "models/gonzo/rancorarcs/colt/colt.mdl",
2986 Regiment = "Rancor Battalion",
2987 Health = 100,
2988 Bodygroups = "011000111",
2989} )
2990
2991TEAM_RANCOR_COLT_CPT = CreateTeam( "Rancor Captain", {
2992 Description = "Captain Of Rancor Battalion",
2993 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack"},
2994 Colour = Color( 155, 25, 28 ),
2995 Side = 1,
2996 Rank = 13,
2997 Model = "models/gonzo/rancorarcs/colt/colt.mdl",
2998 Regiment = "Rancor Battalion",
2999 Health = 100,
3000 Bodygroups = "011000111",
3001} )
3002
3003 TEAM_RANCOR_COLT_CMDR = CreateTeam( "Rancor Commander", {
3004 Description = "Commander Of Rancor Battalion",
3005 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack", "arrest_batton"},
3006 Colour = Color( 155, 25, 28 ),
3007 Side = 1,
3008 Rank = 14,
3009 Model = "models/gonzo/rancorarcs/colt/colt.mdl",
3010 Regiment = "Rancor Battalion",
3011 Health = 100,
3012 Bodygroups = "011000111",
3013} )
3014
3015
3016 TEAM_RANCOR_HAVOC_LT = CreateTeam( "Rancor Lieutenant", {
3017 Description = "Lieutenant Of Rancor Battalion",
3018 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
3019 Colour = Color( 53, 99, 164 ),
3020 Side = 1,
3021 Rank = 12,
3022 Model = "models/gonzo/rancorarcs/havoc/havoc.mdl",
3023 Regiment = "Rancor Battalion",
3024 Health = 100,
3025 Bodygroups = "011000111",
3026} )
3027
3028
3029TEAM_RANCOR_HAVOC_CPT = CreateTeam( "Rancor Captain", {
3030 Description = "Captain Of Rancor Battalion",
3031 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack"},
3032 Colour = Color( 53, 99, 164 ),
3033 Side = 1,
3034 Rank = 13,
3035 Model = "models/gonzo/rancorarcs/havoc/havoc.mdl",
3036 Regiment = "Rancor Battalion",
3037 Health = 100,
3038 Bodygroups = "011000111",
3039} )
3040
3041
3042TEAM_RANCOR_HAVOC_CMDR = CreateTeam( "Rancor Commander", {
3043 Description = "Commander Of Rancor Battalion",
3044 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_clonelauncher", "climb_swep2", "weapon_jetpack", "arrest_batton"},
3045 Colour = Color( 53, 99, 164 ),
3046 Side = 1,
3047 Rank = 14,
3048 Model = "models/gonzo/rancorarcs/havoc/havoc.mdl",
3049 Regiment = "Rancor Battalion",
3050 Health = 100,
3051 Bodygroups = "011000111",
3052} )
3053
3054
3055TEAM_RANCOR_BLITZ_LT = CreateTeam( "Rancor Lieutenant", {
3056 Description = "Lieutenant Of Rancor Battalion",
3057 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_z6_yellow", "climb_swep2", "weapon_jetpack"},
3058 Colour = Color( 255, 218, 0 ),
3059 Side = 1,
3060 Rank = 12,
3061 Model = "models/gonzo/rancorarcs/blitz/blitz.mdl",
3062 Regiment = "Rancor Battalion",
3063 Health = 100,
3064 Bodygroups = "011000111",
3065} )
3066
3067
3068TEAM_RANCOR_BLITZ_CPT = CreateTeam( "Rancor Captain", {
3069 Description = "Captain Of Rancor Battalion",
3070 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_z6_yellow", "climb_swep2", "weapon_jetpack"},
3071 Colour = Color( 255, 218, 0 ),
3072 Side = 1,
3073 Rank = 13,
3074 Model = "models/gonzo/rancorarcs/blitz/blitz.mdl",
3075 Regiment = "Rancor Battalion",
3076 Health = 100,
3077 Bodygroups = "011000111"
3078} )
3079
3080
3081TEAM_RANCOR_BLITZ_CMDR = CreateTeam( "Rancor Commander", {
3082 Description = "Commander Of Rancor Battalion",
3083 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "tfa_swch_z6_yellow", "climb_swep2", "weapon_jetpack", "arrest_batton"},
3084 Colour = Color( 255, 218, 0 ),
3085 Side = 1,
3086 Rank = 14,
3087 Model = "models/gonzo/rancorarcs/blitz/blitz.mdl",
3088 Regiment = "Rancor Battalion",
3089 Health = 100,
3090 Bodygroups = "011000111",
3091} )
3092
3093TEAM_EVENT_GEONOSIAN = CreateTeam( "Geonosian", {
3094 Description = "Random",
3095 Weapons = {"tfa_umbaran_red", "tfa_umbaran_purple", "tfa_umbaran_blue", "gmod_tool"},
3096 Colour = Color( 255, 10, 10 ),
3097 Side = -1,
3098 Rank = 5,
3099 Model = "models/swrpm/geonosian/geonosian.mdl",
3100 Regiment = "Event Characters",
3101 Health = 1000,
3102} )
3103
3104TEAM_EVENT_UMBARAN = CreateTeam( "Umbaran", {
3105 Description = "The Umbarans, also known as the models/gonzo/swbf2arc/arcrg/arcrg.mdl People, were a near-human species.",
3106 Weapons = {"tfa_umbaran_red", "tfa_umbaran_purple", "tfa_umbaran_blue", "gmod_tool"},
3107 Colour = Color( 255, 10, 10 ),
3108 Side = -1,
3109 Rank = 6,
3110 Model = "models/playerm/valley/umbarang/umbaran_gen.mdl",
3111 Regiment = "Event Characters",
3112 Health = 1000,
3113} )
3114
3115TEAM_EVENT_Yeti = CreateTeam( "", {
3116 Description = "The Umbarans, also known as the models/gonzo/swbf2arc/arcrg/arcrg.mdl People, were a near-human species.",
3117 Weapons = {"climb_swep2", "weapon_fists", "gmod_tool"},
3118 Colour = Color( 255, 10, 10 ),
3119 Side = -1,
3120 Rank = 7,
3121 Model = "models/playerm/valley/talz/talz.mdl",
3122 Regiment = "Event Characters",
3123 Health = 1000,
3124} )
3125
3126TEAM_EVENT_CommandoDRoid = CreateTeam( "Commando Droid", {
3127 Description = "The Umbarans, also known as the models/gonzo/swbf2arc/arcrg/arcrg.mdl People, were a near-human species.",
3128 Weapons = {"tfa_swch_e5", "climb_swep2", "weapon_bactainjector", "tfa_sparks_wristred", "gmod_tool"},
3129 Colour = Color( 255, 10, 10 ),
3130 Side = -1,
3131 Rank = 8,
3132 Model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
3133 Regiment = "Event Characters",
3134 Health = 1000,
3135} )
3136
3137TEAM_EVENT_HUTT = CreateTeam( "B1 Battle Droid", {
3138 Description = "The Umbarans, also known as the models/gonzo/swbf2arc/arcrg/arcrg.mdl People, were a near-human species.",
3139 Weapons = {"tfa_swch_e5", "weapon_frag"},
3140 Colour = Color( 255, 10, 10 ),
3141 Side = -1,
3142 Rank = 9,
3143 Model = "models/tfa/comm/gg/pm_sw_droid_b1.mdl",
3144 Regiment = "Event Characters",
3145 Health = 100,
3146} )
3147
3148TEAM_EVENT_HUTT = CreateTeam( "Bith", {
3149 Description = "Bith",
3150 Weapons = {"weapon_bactainjector", "weapon_leash_elastic", "tfa_sw_dual_dl44", "gmod_tool"},
3151 Colour = Color( 255, 10, 10 ),
3152 Side = -1,
3153 Rank = 10,
3154 Model = "models/player/bith/bithjedi.mdl",
3155 Regiment = "Event Characters",
3156 Health = 1000,
3157} )
3158
3159 TEAM_EVENT_Pirate = CreateTeam( "Weequay ", {
3160 Description = "A group of Weequay pirates led by Hondo Ohnaka that was based on the Outer Rim planet Florrum.",
3161 Weapons = {"tfa_sw_dual_dl44", "tfa_kotor_repeaten_2", "gmod_tool"},
3162 Colour = Color( 255, 10, 10 ),
3163 Side = -1,
3164 Rank = 11,
3165 Model = "models/qyan7259m/geequay_player/geequay_regular_player.mdl",
3166 Regiment = "Event Characters",
3167 Health = 1000,
3168} )
3169
3170TEAM_ARC_LT_MEDIC = CreateTeam( "ARC Lieutenant Medic", {
3171 Description = "Lieutenant of the Advanced Recon Commandos",
3172 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "weapon_defibrillator", "weapon_bactanade", "weapon_bactainjector", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
3173 Colour = Color( 51, 51, 255 ),
3174 Side = 1,
3175 Rank = 8,
3176 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
3177 Regiment = "Advanced Recon Commandos",
3178 Health = 100,
3179 Bodygroups = "011000110",
3180} )
3181
3182TEAM_ARC_LT_HEAVY = CreateTeam( "ARC Lieutenant Heavy", {
3183 Description = "Lieutenant of the Advanced Recon Commandos",
3184 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_swch_z6", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
3185 Colour = Color( 51, 51, 255 ),
3186 Side = 1,
3187 Rank = 8,
3188 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
3189 Regiment = "Advanced Recon Commandos",
3190 Health = 100,
3191 Bodygroups = "011000110",
3192} )
3193
3194TEAM_ARC_LT_DEMO = CreateTeam( "ARC Lieutenant Demolition", {
3195 Description = "Lieutenant of the Advanced Recon Commandos",
3196 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_swch_clonelauncher", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
3197 Colour = Color( 51, 51, 255 ),
3198 Side = 1,
3199 Rank = 8,
3200 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
3201 Regiment = "Advanced Recon Commandos",
3202 Health = 100,
3203 Bodygroups = "011000110",
3204} )
3205
3206TEAM_ARC_LT_SNIPER = CreateTeam( "ARC Lieutenant Sniper", {
3207 Description = "Lieutenant of the Advanced Recon Commandos",
3208 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_sw_repsnip", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_camo"},
3209 Colour = Color( 51, 51, 255 ),
3210 Side = 1,
3211 Rank = 8,
3212 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
3213 Regiment = "Advanced Recon Commandos",
3214 Health = 100,
3215 Bodygroups = "011000110",
3216} )
3217
3218TEAM_ARC_GEN = CreateTeam( "ARC General", {
3219 Description = "Lieutenant of the Advanced Recon Commandos",
3220 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_swch_clonelauncher", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
3221 Colour = Color( 0, 0, 0 ),
3222 Side = 1,
3223 Rank = 17,
3224 Model = "models/gonzo/arcgeneral/arcgeneral.mdl",
3225 Regiment = "Advanced Recon Commandos",
3226 Health = 100,
3227 Bodygroups = "011000110",
3228} )
3229
3230TEAM_501ST_MEDIC_TROOPER = CreateTeam( "501st Medic Trooper", {
3231 Description = "Trooper of the 501st",
3232 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3233 Colour = Color( 0, 102, 255 ),
3234 Side = 1,
3235 Rank = 1,
3236 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3237 Regiment = "501st Legion",
3238 Health = 100,
3239 Bodygroups = "01000000",
3240} )
3241
3242TEAM_501ST_MEDIC_LCP = CreateTeam( "501st Medic Lance-Corporal", {
3243 Description = "Lance-Corporal of the 501st",
3244 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3245 Colour = Color( 0, 102, 255 ),
3246 Side = 1,
3247 Rank = 2,
3248 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3249 Regiment = "501st Legion",
3250 Health = 100,
3251 Bodygroups = "01000000",
3252} )
3253
3254TEAM_501ST_CPL = CreateTeam( "501st Medic Corporal", {
3255 Description = "Corporal of the 501st",
3256 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3257 Colour = Color( 0, 102, 255 ),
3258 Side = 1,
3259 Rank = 3,
3260 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3261 Regiment = "501st Legion",
3262 Health = 100,
3263 Bodygroups = "010000000",
3264} )
3265
3266TEAM_501ST_SGT = CreateTeam( "501st Medic Sergeant", {
3267 Description = "Sergeant of the 501st",
3268 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3269 Colour = Color( 0, 102, 255 ),
3270 Side = 1,
3271 Rank = 4,
3272 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3273 Regiment = "501st Legion",
3274 Health = 100,
3275 Bodygroups = "01000000",
3276} )
3277
3278TEAM_501ST_SGTM = CreateTeam( "Medic Sergeant-Major", {
3279 Description = "Sergeant-Major of the 501st",
3280 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3281 Colour = Color( 0, 102, 255 ),
3282 Side = 1,
3283 Rank = 5,
3284 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3285 Regiment = "501st Legion",
3286 Health = 100,
3287 Bodygroups = "010000100",
3288} )
3289
3290TEAM_501ST_WO = CreateTeam( "Medic Warrant Officer", {
3291 Description = "Warrant Officer of the 501st",
3292 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3293 Colour = Color( 0, 102, 255 ),
3294 Side = 1,
3295 Rank = 6,
3296 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3297 Regiment = "501st Legion",
3298 Health = 100,
3299 Bodygroups = "010000100",
3300} )
3301
3302TEAM_501ST_2LT = CreateTeam( "Medic 2nd Lieutenant", {
3303 Description = "2nd Lieutenant of the 501st",
3304 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3305 Colour = Color( 0, 102, 255 ),
3306 Side = 1,
3307 Rank = 7,
3308 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3309 Regiment = "501st Legion",
3310 Health = 100,
3311 Bodygroups = "011000100",
3312} )
3313
3314TEAM_501ST_LT = CreateTeam( "Medic Lieutenant", {
3315 Description = "Lieutenant of the 501st",
3316 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3317 Colour = Color( 0, 102, 255 ),
3318 Side = 1,
3319 Rank = 8,
3320 Model = "models/gonzo/regimentalarcsandmedics/medic501st/medic501st.mdl",
3321 Regiment = "501st Legion",
3322 Health = 100,
3323 Bodygroups = "011000100",
3324} )
3325
3326TEAM_212TH_MEDIC_TROOPER = CreateTeam( "212th Medic Trooper", {
3327 Description = "Trooper of the 212th",
3328 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3329 Colour = Color( 255, 153, 51 ),
3330 Side = 1,
3331 Rank = 1,
3332 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3333 Regiment = "212th Attack Battalion",
3334 Health = 100,
3335 Bodygroups = "01000000",
3336} )
3337
3338TEAM_212TH_MEDIC_LCP = CreateTeam( "212th Medic Lance-Corporal", {
3339 Description = "Lance-Corporal of the 212th",
3340 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3341 Colour = Color( 255, 153, 51 ),
3342 Side = 1,
3343 Rank = 2,
3344 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3345 Regiment = "212th Attack Battalion",
3346 Health = 100,
3347 Bodygroups = "01000000",
3348} )
3349
3350TEAM_212TH_MEDIC_CPL = CreateTeam( "212th Medic Corporal", {
3351 Description = "Corporal of the 212th",
3352 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3353 Colour = Color( 255, 153, 51 ),
3354 Side = 1,
3355 Rank = 3,
3356 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3357 Regiment = "212th Attack Battalion",
3358 Health = 100,
3359 Bodygroups = "010000000",
3360} )
3361
3362TEAM_212TH_MEDIC_SGT = CreateTeam( "212th Medic Sergeant", {
3363 Description = "Sergeant of the 212th",
3364 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3365 Colour = Color( 255, 153, 51 ),
3366 Side = 1,
3367 Rank = 4,
3368 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3369 Regiment = "212th Attack Battalion",
3370 Health = 100,
3371 Bodygroups = "0100001",
3372} )
3373
3374TEAM_212TH_MEDIC_SGTM = CreateTeam( "212th Medic Sergeant-Major", {
3375 Description = "Sergeant-Major of the 212th",
3376 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3377 Colour = Color( 255, 153, 51 ),
3378 Side = 1,
3379 Rank = 5,
3380 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3381 Regiment = "212th Attack Battalion",
3382 Health = 100,
3383 Bodygroups = "0100001",
3384} )
3385
3386TEAM_212TH_MEDIC_WO = CreateTeam( "Medic Warrant Officer", {
3387 Description = "Warrant Officer of the 212th",
3388 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3389 Colour = Color( 255, 153, 51 ),
3390 Side = 1,
3391 Rank = 6,
3392 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3393 Regiment = "212th Attack Battalion",
3394 Health = 100,
3395 Bodygroups = "01000010",
3396} )
3397
3398TEAM_212TH_MEDIC_2LT = CreateTeam( "Medic 2nd Lieutenant", {
3399 Description = "2nd Lieutenant of the 212th",
3400 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3401 Colour = Color( 255, 153, 51 ),
3402 Side = 1,
3403 Rank = 7,
3404 Model = "models/gonzo/regimentalarcsandmedics/medic212th/medic212th.mdl",
3405 Regiment = "212th Attack Battalion",
3406 Health = 100,
3407 Bodygroups = "0110001",
3408} )
3409
3410TEAM_212TH_ARC_SGT = CreateTeam( "212th ARC Sergeant", {
3411 Description = "Lieutenant of the 212th",
3412 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_jetpack", "climb_swep2"},
3413 Colour = Color( 255, 153, 51 ),
3414 Side = 1,
3415 Rank = 4,
3416 Model = "models/gonzo/regimentalarcsandmedics/arc212th/arc212th.mdl",
3417 Regiment = "212th Attack Battalion",
3418 Health = 100,
3419 Bodygroups = "011000111",
3420} )
3421
3422TEAM_212TH_ARC_SGT = CreateTeam( "212th ARC Sergeant", {
3423 Description = "Lieutenant of the 212th",
3424 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_jetpack", "climb_swep2"},
3425 Colour = Color( 255, 153, 51 ),
3426 Side = 1,
3427 Rank = 4,
3428 Model = "models/gonzo/regimentalarcsandmedics/arc212th/arc212th.mdl",
3429 Regiment = "212th Attack Battalion",
3430 Health = 100,
3431 Bodygroups = "011000111",
3432} )
3433
3434TEAM_212TH_ARC_LT = CreateTeam( "212th ARC Lieutenant", {
3435 Description = "Lieutenant of the 212th",
3436 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_jetpack", "climb_swep2"},
3437 Colour = Color( 255, 153, 51 ),
3438 Side = 1,
3439 Rank = 5,
3440 Model = "models/gonzo/regimentalarcsandmedics/arc212th/arc212th.mdl",
3441 Regiment = "212th Attack Battalion",
3442 Health = 100,
3443 Bodygroups = "011000111",
3444} )
3445
3446TEAM_212TH_ARC_CPT = CreateTeam( "212th ARC Captain", {
3447 Description = "Lieutenant of the 212th",
3448 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
3449 Colour = Color( 255, 153, 51 ),
3450 Side = 1,
3451 Rank = 12,
3452 Model = "models/gonzo/regimentalarcsandmedics/arc212th/arc212th.mdl",
3453 Regiment = "212th Attack Battalion",
3454 Health = 100,
3455 Bodygroups = "011000111",
3456} )
3457
3458TEAM_501st_ARC_SGT = CreateTeam( "501st ARC Sergeant", {
3459 Description = "Lieutenant of the 212th",
3460 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
3461 Colour = Color( 0, 102, 255 ),
3462 Side = 1,
3463 Rank = 4,
3464 Model = "models/gonzo/regimentalarcsandmedics/arc501st/arc501st.mdl",
3465 Regiment = "501st Legion",
3466 Health = 100,
3467 Bodygroups = "011000111",
3468} )
3469
3470TEAM_501st_ARC_LT = CreateTeam( "501st ARC Lieutenant", {
3471 Description = "Lieutenant of the 212th",
3472 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
3473 Colour = Color( 0, 102, 255 ),
3474 Side = 1,
3475 Rank = 5,
3476 Model = "models/gonzo/regimentalarcsandmedics/arc501st/arc501st.mdl",
3477 Regiment = "501st Legion",
3478 Health = 100,
3479 Bodygroups = "011000111",
3480} )
3481
3482TEAM_501st_ARC_CPT = CreateTeam( "501st ARC Captain", {
3483 Description = "Lieutenant of the 212th",
3484 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
3485 Colour = Color( 0, 102, 255 ),
3486 Side = 1,
3487 Rank = 5,
3488 Model = "models/gonzo/regimentalarcsandmedics/arc501st/arc501st.mdl",
3489 Regiment = "501st Legion",
3490 Health = 100,
3491 Bodygroups = "011000111",
3492} )
3493
3494TEAM_501st_Heavy = CreateTeam("501st Heavy", {
3495 Description = "Lieutenant of the 212th",
3496 Weapons = {"tfa_swch_z6", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
3497 Colour = Color( 0, 102, 255 ),
3498 Side = 1,
3499 Rank = 5,
3500 Model = "models/gonzo/swbf2heavygunner/501st/501st.mdl",
3501 Regiment = "501st Legion",
3502 Health = 100,
3503 Bodygroups = "011000110",
3504} )
3505
3506TEAM_212th_Heavy = CreateTeam("212th Heavy", {
3507 Description = "Lieutenant of the 212th",
3508 Weapons = {"climb_swep2", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "tfa_swch_z6"},
3509 Colour = Color( 255, 153, 51 ),
3510 Side = 1,
3511 Rank = 5,
3512 Model = "models/gonzo/swbf2heavygunner/212th/212th.mdl",
3513 Regiment = "212th Attack Battalion",
3514 Health = 100,
3515 Bodygroups = "011000110",
3516} )
3517
3518TEAM_ARCTICKER_LT = CreateTeam( "ARC Lieutenant", {
3519 Description = "Lieutenant of the Advanced Recon Commandos",
3520 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_slam", "tfa_swch_clonelauncher","weapon_frag", "climb_swep2"},
3521 Colour = Color( 51, 51, 255 ),
3522 Side = 1,
3523 Rank = 8,
3524 Model = "models/gonzo/arfofficerticker/arfofficerticker.mdl",
3525 Regiment = "Advanced Recon Commandos",
3526 Health = 100,
3527 Bodygroups = "011001100",
3528} )
3529
3530TEAM_ARCTICKER_CPT = CreateTeam( "ARC Captain", {
3531 Description = "Captain of the Advanced Recon Commandos",
3532 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_slam", "tfa_swch_clonelauncher","weapon_frag", "climb_swep2"},
3533 Colour = Color( 255, 0, 0 ),
3534 Side = 1,
3535 Rank = 9,
3536 Model = "models/gonzo/arfofficerticker2/arfofficerticker2.mdl",
3537 Regiment = "Advanced Recon Commandos",
3538 Health = 100,
3539 Bodygroups = "011001100",
3540} )
3541
3542TEAM_ARCTICKER_CMDR = CreateTeam( "ARC Commander", {
3543 Description = "Commander of the Advanced Recon Commandos",
3544 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_slam", "tfa_swch_clonelauncher","weapon_frag", "climb_swep2", "arrest_batton"},
3545 Colour = Color( 255, 255, 0 ),
3546 Side = 1,
3547 Rank = 11,
3548 Model = "models/gonzo/swbf2arc/arcyellow/arcyellow.mdl",
3549 Regiment = "Advanced Recon Commandos",
3550 Health = 100,
3551 Bodygroups = "011000110",
3552} )
3553
3554TEAM_M327TH_TROOPER = CreateTeam( "Medic 327th Trooper", {
3555 Description = "Trooper of the 327th",
3556 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3557 Colour = Color( 230, 236, 0 ),
3558 Side = 1,
3559 Rank = 1,
3560 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3561 Regiment = "327th Star Corps",
3562 Health = 100,
3563 Bodygroups = "0100000",
3564} )
3565
3566TEAM_M327TH_LCP = CreateTeam( "Medic 327th Lance-Corporal", {
3567 Description = "Lance-Corporal of the 327th",
3568 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3569 Colour = Color( 230, 236, 0 ),
3570 Side = 1,
3571 Rank = 2,
3572 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3573 Regiment = "327th Star Corps",
3574 Health = 100,
3575 Bodygroups = "0100000",
3576} )
3577
3578TEAM_M327TH_CPL = CreateTeam( "Medic 327th Corporal", {
3579 Description = "Corporal of the 327th",
3580 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3581 Colour = Color( 230, 236, 0 ),
3582 Side = 1,
3583 Rank = 3,
3584 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3585 Regiment = "327th Star Corps",
3586 Health = 100,
3587 Bodygroups = "01000001",
3588} )
3589
3590TEAM_M327TH_SGT = CreateTeam( "Medic 327th Sergeant", {
3591 Description = "Sergeant of the 327th",
3592 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3593 Colour = Color( 230, 236, 0 ),
3594 Side = 1,
3595 Rank = 4,
3596 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3597 Regiment = "327th Star Corps",
3598 Health = 100,
3599 Bodygroups = "01100000",
3600} )
3601
3602TEAM_M327TH_SGTM = CreateTeam( "Medic 327th Sergeant-Major", {
3603 Description = "Sergeant-Major of the 327th",
3604 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3605 Colour = Color( 230, 236, 0 ),
3606 Side = 1,
3607 Rank = 5,
3608 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3609 Regiment = "327th Star Corps",
3610 Health = 100,
3611 Bodygroups = "01100000",
3612} )
3613
3614TEAM_M327TH_WO = CreateTeam( "Medic Warrant Officer", {
3615 Description = "Warrant Officer of the 327th",
3616 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3617 Colour = Color( 230, 236, 0 ),
3618 Side = 1,
3619 Rank = 6,
3620 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3621 Regiment = "327th Star Corps",
3622 Health = 100,
3623 Bodygroups = "01100000",
3624} )
3625
3626TEAM_M327TH_2LT = CreateTeam( "Medic 2nd Lieutenant", {
3627 Description = "2nd Lieutenant of the 327th",
3628 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3629 Colour = Color( 230, 236, 0 ),
3630 Side = 1,
3631 Rank = 7,
3632 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3633 Regiment = "327th Star Corps",
3634 Health = 100,
3635 Bodygroups = "01100101",
3636} )
3637
3638TEAM_M327TH_LT = CreateTeam( "Medic Lieutenant", {
3639 Description = "Lieutenant of the 327th",
3640 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade"},
3641 Colour = Color( 230, 236, 0 ),
3642 Side = 1,
3643 Rank = 8,
3644 Model = "models/gonzo/327thand91st/327thmed/327thmed.mdl",
3645 Regiment = "327th Star Corps",
3646 Health = 100,
3647 Bodygroups = "01100101000",
3648} )
3649
3650TEAM_A91ST_TROOPER = CreateTeam( "91st ARF Trooper", {
3651 Description = "Trooper of the 91st Recon Reconnaissance Corps",
3652 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
3653 Colour = Color( 255, 10, 10 ),
3654 Side = 1,
3655 Rank = 1,
3656 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3657 Regiment = "91st Reconnaissance Corps",
3658 Health = 100,
3659 Bodygroups = "000000",
3660} )
3661
3662TEAM_A91ST_LCP = CreateTeam( "91st ARF Lance-Corporal", {
3663 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
3664 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
3665 Colour = Color( 255, 10, 10 ),
3666 Side = 1,
3667 Rank = 2,
3668 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3669 Regiment = "91st Reconnaissance Corps",
3670 Health = 100,
3671 Bodygroups = "000000",
3672} )
3673
3674TEAM_A91ST_CPL = CreateTeam( "91st ARF Corporal", {
3675 Description = "Corporal of the 91st Reconnaissance Corps",
3676 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
3677 Colour = Color( 255, 10, 10 ),
3678 Side = 1,
3679 Rank = 3,
3680 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3681 Regiment = "91st Reconnaissance Corps",
3682 Health = 100,
3683 Bodygroups = "00000001",
3684} )
3685
3686TEAM_A91ST_SGT = CreateTeam( "91st ARF Sergeant", {
3687 Description = "Sergeant of the 91st Reconnaissance Corps",
3688 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
3689 Colour = Color( 255, 10, 10 ),
3690 Side = 1,
3691 Rank = 4,
3692 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3693 Regiment = "91st Reconnaissance Corps",
3694 Health = 100,
3695 Bodygroups = "0000000",
3696} )
3697
3698
3699TEAM_A91ST_SGTM = CreateTeam( "91st ARF Sergeant-Major", {
3700 Description = "Sergeant-Major of the 91st Reconnaissance Corps",
3701 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
3702 Colour = Color( 255, 10, 10 ),
3703 Side = 1,
3704 Rank = 5,
3705 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3706 Regiment = "91st Reconnaissance Corps",
3707 Health = 100,
3708 Bodygroups = "0000000",
3709} )
3710
3711TEAM_A91ST_WO = CreateTeam( "ARF Warrant Officer", {
3712 Description = "Warrant Officer of the 91st Reconnaissance Corps",
3713 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
3714 Colour = Color( 255, 10, 10 ),
3715 Side = 1,
3716 Rank = 6,
3717 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3718 Regiment = "91st Reconnaissance Corps",
3719 Health = 100,
3720 Bodygroups = "0000000",
3721} )
3722
3723TEAM_A91ST_2LT = CreateTeam( "ARF 2nd Lieutenant", {
3724 Description = "2nd Lieutenant of the 91st Reconnaissance Corps",
3725 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
3726 Colour = Color( 255, 10, 10 ),
3727 Side = 1,
3728 Rank = 7,
3729 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3730 Regiment = "91st Reconnaissance Corps",
3731 Health = 100,
3732 Bodygroups = "0110000",
3733} )
3734
3735TEAM_A91ST_LT = CreateTeam( "ARF Lieutenant", {
3736 Description = "Lieutenant of the 91st Reconnaissance Corps",
3737 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
3738 Colour = Color( 255, 10, 10 ),
3739 Side = 1,
3740 Rank = 8,
3741 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3742 Regiment = "91st Reconnaissance Corps",
3743 Health = 100,
3744 Bodygroups = "0110000",
3745} )
3746
3747TEAM_A91ST_CPT = CreateTeam( "ARF Captain", {
3748 Description = "Captain of the 91st Reconnaissance Corps",
3749 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
3750 Colour = Color( 255, 10, 10 ),
3751 Side = 1,
3752 Rank = 9,
3753 Model = "models/gonzo/327thand91st/91starf/91starf.mdl",
3754 Regiment = "91st Reconnaissance Corps",
3755 Health = 100,
3756 Bodygroups = "0110000",
3757} )
3758
3759TEAM_BITHJEDI_PADAWAN = CreateTeam( "Jedi Bith Padawan", {
3760 Description = "Jedi Padawan of the Jedi Order",
3761 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3762 Colour = Color( 255, 255, 204 ),
3763 Side = 1,
3764 Rank = 2,
3765 Model = "models/player/jedi/bith.mdl",
3766 Regiment = "Jedi Order",
3767 Health = 500,
3768 Runspeed = 280,
3769 Walkspeed = 170,
3770
3771} )
3772
3773TEAM_GOTALJEDI_PADAWAN = CreateTeam( "Jedi Gotal Padawan", {
3774 Description = "Jedi Padawan of the Jedi Order",
3775 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3776 Colour = Color( 255, 255, 204 ),
3777 Side = 1,
3778 Rank = 2,
3779 Model = "models/player/jedi/gotal.mdl",
3780 Regiment = "Jedi Order",
3781 Health = 500,
3782 Runspeed = 280,
3783 Walkspeed = 170,
3784
3785} )
3786
3787TEAM_GUNGANJEDI_PADAWAN = CreateTeam( "Jedi Gungan Padawan", {
3788 Description = "Jedi Padawan of the Jedi Order",
3789 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3790 Colour = Color( 255, 255, 204 ),
3791 Side = 1,
3792 Rank = 2,
3793 Model = "models/player/jedi/gungan.mdl",
3794 Regiment = "Jedi Order",
3795 Health = 500,
3796 Runspeed = 280,
3797 Walkspeed = 170,
3798
3799} )
3800
3801TEAM_HUMANJEDI_PADAWAN = CreateTeam( "Jedi Human Padawan", {
3802 Description = "Jedi Padawan of the Jedi Order",
3803 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3804 Colour = Color( 255, 255, 204 ),
3805 Side = 1,
3806 Rank = 2,
3807 Model = "models/player/jedi/human.mdl",
3808 Regiment = "Jedi Order",
3809 Health = 500,
3810 Runspeed = 280,
3811 Walkspeed = 170,
3812
3813} )
3814
3815TEAM_NAUTOLANJEDI_PADAWAN = CreateTeam( "Jedi Nautolan Padawan", {
3816 Description = "Jedi Padawan of the Jedi Order",
3817 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3818 Colour = Color( 255, 255, 204 ),
3819 Side = 1,
3820 Rank = 2,
3821 Model = "models/player/jedi/nautolan.mdl",
3822 Regiment = "Jedi Order",
3823 Health = 500,
3824 Runspeed = 280,
3825 Walkspeed = 170,
3826
3827} )
3828
3829TEAM_PANTORANJEDI_PADAWAN = CreateTeam( "Jedi Pantoran Padawan", {
3830 Description = "Jedi Padawan of the Jedi Order",
3831 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3832 Colour = Color( 255, 255, 204 ),
3833 Side = 1,
3834 Rank = 2,
3835 Model = "models/player/jedi/pantoran.mdl",
3836 Regiment = "Jedi Order",
3837 Health = 500,
3838 Runspeed = 280,
3839 Walkspeed = 170,
3840
3841} )
3842
3843TEAM_QUARRENJEDI_PADAWAN = CreateTeam( "Jedi Quarren Padawan", {
3844 Description = "Jedi Padawan of the Jedi Order",
3845 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3846 Colour = Color( 255, 255, 204 ),
3847 Side = 1,
3848 Rank = 2,
3849 Model = "models/player/jedi/quarren.mdl",
3850 Regiment = "Jedi Order",
3851 Health = 500,
3852 Runspeed = 280,
3853 Walkspeed = 170,
3854
3855} )
3856
3857TEAM_RODIANJEDI_PADAWAN = CreateTeam( "Jedi Rodian Padawan", {
3858 Description = "Jedi Padawan of the Jedi Order",
3859 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3860 Colour = Color( 255, 255, 204 ),
3861 Side = 1,
3862 Rank = 2,
3863 Model = "models/player/jedi/rodian.mdl",
3864 Regiment = "Jedi Order",
3865 Health = 500,
3866 Runspeed = 280,
3867 Walkspeed = 170,
3868
3869} )
3870
3871TEAM_TOGRUTAJEDI_PADAWAN = CreateTeam( "Jedi Togruta Padawan", {
3872 Description = "Jedi Padawan of the Jedi Order",
3873 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3874 Colour = Color( 255, 255, 204 ),
3875 Side = 1,
3876 Rank = 2,
3877 Model = "models/player/jedi/togruta.mdl",
3878 Regiment = "Jedi Order",
3879 Health = 500,
3880 Runspeed = 280,
3881 Walkspeed = 170,
3882
3883} )
3884
3885TEAM_TRANDOSHANJEDI_PADAWAN = CreateTeam( "Jedi Trandoshan Padawan", {
3886 Description = "Jedi Padawan of the Jedi Order",
3887 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3888 Colour = Color( 255, 255, 202 ),
3889 Side = 1,
3890 Rank = 2,
3891 Model = "models/player/jedi/trandoshan.mdl",
3892 Regiment = "Jedi Order",
3893 Health = 500,
3894 Runspeed = 280,
3895 Walkspeed = 170,
3896
3897} )
3898
3899TEAM_TWILEKJEDI_PADAWAN = CreateTeam( "Jedi Twilek Padawan", {
3900 Description = "Jedi Padawan of the Jedi Order",
3901 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3902 Colour = Color( 255, 255, 204 ),
3903 Side = 1,
3904 Rank = 2,
3905 Model = "models/player/jedi/twilek.mdl",
3906 Regiment = "Jedi Order",
3907 Health = 500,
3908 Runspeed = 280,
3909 Walkspeed = 170,
3910
3911} )
3912
3913TEAM_UMBARANJEDI_PADAWAN = CreateTeam( "Jedi Umbaran Padawan", {
3914 Description = "Jedi Padawan of the Jedi Order",
3915 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3916 Colour = Color( 255, 255, 204 ),
3917 Side = 1,
3918 Rank = 2,
3919 Model = "models/player/jedi/umbaran.mdl",
3920 Regiment = "Jedi Order",
3921 Health = 500,
3922 Runspeed = 280,
3923 Walkspeed = 170,
3924
3925} )
3926
3927TEAM_ZABRAKJEDI_PADAWAN = CreateTeam( "Jedi Zabrak Padawan", {
3928 Description = "Jedi Padawan of the Jedi Order",
3929 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3930 Colour = Color( 255, 255, 204 ),
3931 Side = 1,
3932 Rank = 2,
3933 Model = "models/player/jedi/zabrak.mdl",
3934 Regiment = "Jedi Order",
3935 Health = 500,
3936 Runspeed = 280,
3937 Walkspeed = 170,
3938
3939} )
3940
3941TEAM_BITHJEDI_PADAWAN = CreateTeam( "Jedi Bith Knight", {
3942 Description = "Jedi Padawan of the Jedi Order",
3943 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3944 Colour = Color( 255, 255, 204 ),
3945 Side = 1,
3946 Rank = 2,
3947 Model = "models/player/jedi/bith.mdl",
3948 Regiment = "Jedi Order",
3949 Health = 1000,
3950 Runspeed = 285,
3951 Walkspeed = 170,
3952
3953} )
3954
3955TEAM_GOTALJEDI_PADAWAN = CreateTeam( "Jedi Gotal Knight", {
3956 Description = "Jedi Padawan of the Jedi Order",
3957 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3958 Colour = Color( 255, 255, 204 ),
3959 Side = 1,
3960 Rank = 2,
3961 Model = "models/player/jedi/gotal.mdl",
3962 Regiment = "Jedi Order",
3963 Health = 1000,
3964 Runspeed = 285,
3965 Walkspeed = 170,
3966
3967} )
3968
3969TEAM_GUNGANJEDI_PADAWAN = CreateTeam( "Jedi Gungan Knight", {
3970 Description = "Jedi Padawan of the Jedi Order",
3971 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3972 Colour = Color( 255, 255, 204 ),
3973 Side = 1,
3974 Rank = 2,
3975 Model = "models/player/jedi/gungan.mdl",
3976 Regiment = "Jedi Order",
3977 Health = 1000,
3978 Runspeed = 285,
3979 Walkspeed = 170,
3980
3981} )
3982
3983TEAM_HUMANJEDI_PADAWAN = CreateTeam( "Jedi Human Knight", {
3984 Description = "Jedi Padawan of the Jedi Order",
3985 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
3986 Colour = Color( 255, 255, 204 ),
3987 Side = 1,
3988 Rank = 2,
3989 Model = "models/player/jedi/human.mdl",
3990 Regiment = "Jedi Order",
3991 Health = 1000,
3992 Runspeed = 285,
3993 Walkspeed = 170,
3994
3995} )
3996
3997TEAM_NAUTOLANJEDI_PADAWAN = CreateTeam( "Jedi Nautolan Knight", {
3998 Description = "Jedi Padawan of the Jedi Order",
3999 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4000 Colour = Color( 255, 255, 204 ),
4001 Side = 1,
4002 Rank = 2,
4003 Model = "models/player/jedi/nautolan.mdl",
4004 Regiment = "Jedi Order",
4005 Health = 1000,
4006 Runspeed = 285,
4007 Walkspeed = 170,
4008
4009} )
4010
4011TEAM_PANTORANJEDI_PADAWAN = CreateTeam( "Jedi Pantoran Knight", {
4012 Description = "Jedi Padawan of the Jedi Order",
4013 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4014 Colour = Color( 255, 255, 204 ),
4015 Side = 1,
4016 Rank = 2,
4017 Model = "models/player/jedi/pantoran.mdl",
4018 Regiment = "Jedi Order",
4019 Health = 1000,
4020 Runspeed = 285,
4021 Walkspeed = 170,
4022
4023} )
4024
4025TEAM_QUARRENJEDI_PADAWAN = CreateTeam( "Jedi Quarren Knight", {
4026 Description = "Jedi Padawan of the Jedi Order",
4027 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4028 Colour = Color( 255, 255, 204 ),
4029 Side = 1,
4030 Rank = 2,
4031 Model = "models/player/jedi/quarren.mdl",
4032 Regiment = "Jedi Order",
4033 Health = 1000,
4034 Runspeed = 285,
4035 Walkspeed = 170,
4036
4037} )
4038
4039TEAM_RODIANJEDI_PADAWAN = CreateTeam( "Jedi Rodian Knight", {
4040 Description = "Jedi Padawan of the Jedi Order",
4041 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4042 Colour = Color( 255, 255, 204 ),
4043 Side = 1,
4044 Rank = 2,
4045 Model = "models/player/jedi/rodian.mdl",
4046 Regiment = "Jedi Order",
4047 Health = 1000,
4048 Runspeed = 285,
4049 Walkspeed = 170,
4050
4051} )
4052
4053TEAM_TOGRUTAJEDI_PADAWAN = CreateTeam( "Jedi Togruta Knight", {
4054 Description = "Jedi Padawan of the Jedi Order",
4055 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4056 Colour = Color( 255, 255, 204 ),
4057 Side = 1,
4058 Rank = 2,
4059 Model = "models/player/jedi/togruta.mdl",
4060 Regiment = "Jedi Order",
4061 Health = 1000,
4062 Runspeed = 285,
4063 Walkspeed = 170,
4064
4065} )
4066
4067TEAM_TRANDOSHANJEDI_PADAWAN = CreateTeam( "Jedi Trandoshan Knight", {
4068 Description = "Jedi Padawan of the Jedi Order",
4069 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4070 Colour = Color( 255, 255, 204 ),
4071 Side = 1,
4072 Rank = 2,
4073 Model = "models/player/jedi/trandoshan.mdl",
4074 Regiment = "Jedi Order",
4075 Health = 1000,
4076 Runspeed = 285,
4077 Walkspeed = 170,
4078
4079} )
4080
4081TEAM_TWILEKJEDI_PADAWAN = CreateTeam( "Jedi Twilek Knight", {
4082 Description = "Jedi Padawan of the Jedi Order",
4083 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4084 Colour = Color( 255, 255, 204 ),
4085 Side = 1,
4086 Rank = 2,
4087 Model = "models/player/jedi/twilek.mdl",
4088 Regiment = "Jedi Order",
4089 Health = 1000,
4090 Runspeed = 285,
4091 Walkspeed = 170,
4092
4093} )
4094
4095TEAM_UMBARANJEDI_PADAWAN = CreateTeam( "Jedi Umbaran Knight", {
4096 Description = "Jedi Padawan of the Jedi Order",
4097 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4098 Colour = Color( 255, 255, 204 ),
4099 Side = 1,
4100 Rank = 2,
4101 Model = "models/player/jedi/umbaran.mdl",
4102 Regiment = "Jedi Order",
4103 Health = 1000,
4104 Runspeed = 285,
4105 Walkspeed = 170,
4106
4107} )
4108
4109TEAM_ZABRAKJEDI_PADAWAN = CreateTeam( "Jedi Zabrak Knight", {
4110 Description = "Jedi Padawan of the Jedi Order",
4111 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation"},
4112 Colour = Color( 255, 255, 204 ),
4113 Side = 1,
4114 Rank = 2,
4115 Model = "models/player/jedi/zabrak.mdl",
4116 Regiment = "Jedi Order",
4117 Health = 1000,
4118 Runspeed = 285,
4119 Walkspeed = 170,
4120
4121} )
4122
4123TEAM_RC_PVT = CreateTeam( "187th Trooper", {
4124 Description = "Squad Leader of Delta Squad",
4125 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4126 Colour = Color( 122, 66, 244 ),
4127 Side = 1,
4128 Rank = 1,
4129 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4130 Regiment = "187th Legion",
4131 Health = 100,
4132 Bodygroups = "01000000"
4133} )
4134
4135TEAM_RC_LCP = CreateTeam( "187th Lance-Corporal", {
4136 Description = "Squad Leader of Delta Squad",
4137 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4138 Colour = Color( 122, 66, 244 ),
4139 Side = 1,
4140 Rank = 2,
4141 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4142 Regiment = "187th Legion",
4143 Health = 100,
4144 Bodygroups = "01000000"
4145} )
4146
4147TEAM_RC_CPL = CreateTeam( "187th Corporal", {
4148 Description = "Squad Leader of Delta Squad",
4149 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4150 Colour = Color( 122, 66, 244 ),
4151 Side = 1,
4152 Rank = 3,
4153 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4154 Regiment = "187th Legion",
4155 Health = 100,
4156 Bodygroups = "01000000"
4157} )
4158
4159TEAM_RC_SGT = CreateTeam( "187th Sergeant", {
4160 Description = "Squad Leader of Delta Squad",
4161 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4162 Colour = Color( 122, 66, 244 ),
4163 Side = 1,
4164 Rank = 4,
4165 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4166 Regiment = "187th Legion",
4167 Health = 100,
4168 Bodygroups = "010000100"
4169} )
4170
4171TEAM_RC_SGTM = CreateTeam( "187th Sergeant-Major", {
4172 Description = "Squad Leader of Delta Squad",
4173 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4174 Colour = Color( 122, 66, 244 ),
4175 Side = 1,
4176 Rank = 5,
4177 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4178 Regiment = "187th Legion",
4179 Health = 100,
4180 Bodygroups = "010000100"
4181} )
4182
4183TEAM_RC_SGTMJR = CreateTeam( "187th Warrant Officer", {
4184 Description = "Squad Leader of Delta Squad",
4185 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4186 Colour = Color( 122, 66, 244 ),
4187 Side = 1,
4188 Rank = 6,
4189 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4190 Regiment = "187th Legion",
4191 Health = 100,
4192 Bodygroups = "010000100"
4193} )
4194
4195TEAM_RC_SGTMJRM = CreateTeam( "187th 2nd Lieutenant", {
4196 Description = "Squad Leader of Delta Squad",
4197 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4198 Colour = Color( 122, 66, 244 ),
4199 Side = 1,
4200 Rank = 7,
4201 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4202 Regiment = "187th Legion",
4203 Health = 100,
4204 Bodygroups = "011000100"
4205} )
4206
4207TEAM_RC_SGTMJRM = CreateTeam( "187th Lieutenant", {
4208 Description = "Squad Leader of Delta Squad",
4209 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_frag"},
4210 Colour = Color( 122, 66, 244 ),
4211 Side = 1,
4212 Rank = 8,
4213 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
4214 Regiment = "187th Legion",
4215 Health = 100,
4216 Bodygroups = "011000100"
4217} )
4218
4219TEAM_RC_WOM = CreateTeam( "187th Airborne Trooper", {
4220 Description = "Squad Leader of Delta Squad",
4221 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_jetpack", "weapon_frag"},
4222 Colour = Color( 122, 66, 244 ),
4223 Side = 1,
4224 Rank = 1,
4225 Model = "models/gonzo/cglotsofclones/187thcommander/187thcommander.mdl",
4226 Regiment = "187th Legion",
4227 Health = 100,
4228 Bodygroups = "01011"
4229} )
4230
4231TEAM_RC_2ndL = CreateTeam( "187th Airborne Sergeant", {
4232 Description = "Squad Leader of Delta Squad",
4233 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_jetpack", "weapon_frag"},
4234 Colour = Color( 122, 66, 244 ),
4235 Side = 4,
4236 Rank = 10,
4237 Model = "models/gonzo/cglotsofclones/187thcommander/187thcommander.mdl",
4238 Regiment = "187th Legion",
4239 Health = 100,
4240 Bodygroups = "01001"
4241} )
4242
4243TEAM_RC_2ndLM = CreateTeam( "187th Airborne Lieutenant", {
4244 Description = "Squad Leader of Delta Squad",
4245 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_jetpack", "weapon_frag"},
4246 Colour = Color( 122, 66, 244 ),
4247 Side = 1,
4248 Rank = 8,
4249 Model = "models/gonzo/cglotsofclones/187thcommander/187thcommander.mdl",
4250 Regiment = "187th Legion",
4251 Health = 100,
4252 Bodygroups = "00001"
4253} )
4254
4255TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Trooper", {
4256 Description = "Squad Leader of Delta Squad",
4257 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4258 Colour = Color( 247, 59, 59 ),
4259 Side = 1,
4260 Rank = 1,
4261 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4262 Regiment = "784th Odahviing Platoon",
4263 Health = 100,
4264 Bodygroups = "0100000000"
4265} )
4266
4267TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Lance-Corporal", {
4268 Description = "Squad Leader of Delta Squad",
4269 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4270 Colour = Color( 247, 59, 59 ),
4271 Side = 1,
4272 Rank = 2,
4273 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4274 Regiment = "784th Odahviing Platoon",
4275 Health = 100,
4276 Bodygroups = "0100000000"
4277} )
4278
4279TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Corporal", {
4280 Description = "Squad Leader of Delta Squad",
4281 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4282 Colour = Color( 247, 59, 59 ),
4283 Side = 1,
4284 Rank = 3,
4285 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4286 Regiment = "784th Odahviing Platoon",
4287 Health = 100,
4288 Bodygroups = "0100000000"
4289} )
4290
4291TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Sergeant", {
4292 Description = "Squad Leader of Delta Squad",
4293 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4294 Colour = Color( 247, 59, 59 ),
4295 Side = 1,
4296 Rank = 4,
4297 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4298 Regiment = "784th Odahviing Platoon",
4299 Health = 100,
4300 Bodygroups = "0110000000"
4301} )
4302
4303TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Sergeant-Major", {
4304 Description = "Squad Leader of Delta Squad",
4305 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4306 Colour = Color( 247, 59, 59 ),
4307 Side = 1,
4308 Rank = 5,
4309 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4310 Regiment = "784th Odahviing Platoon",
4311 Health = 100,
4312 Bodygroups = "011000100"
4313} )
4314
4315TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Warrant Officer", {
4316 Description = "Squad Leader of Delta Squad",
4317 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip"},
4318 Colour = Color( 247, 59, 59 ),
4319 Side = 1,
4320 Rank = 6,
4321 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4322 Regiment = "784th Odahviing Platoon",
4323 Health = 100,
4324 Bodygroups = "011000100"
4325} )
4326
4327TEAM_RC_L = CreateTeam( "784th Odahviing Platoon 2nd Lieutenant", {
4328 Description = "Squad Leader of Delta Squad",
4329 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
4330 Colour = Color( 247, 59, 59 ),
4331 Side = 1,
4332 Rank = 7,
4333 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4334 Regiment = "784th Odahviing Platoon",
4335 Health = 100,
4336 Bodygroups = "0110001000"
4337} )
4338
4339TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Lieutenant", {
4340 Description = "Squad Leader of Delta Squad",
4341 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
4342 Colour = Color( 247, 59, 59 ),
4343 Side = 1,
4344 Rank = 8,
4345 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4346 Regiment = "784th Odahviing Platoon",
4347 Health = 100,
4348 Bodygroups = "0110001000"
4349} )
4350
4351TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Captain", {
4352 Description = "Squad Leader of Delta Squad",
4353 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
4354 Colour = Color( 247, 59, 59 ),
4355 Side = 1,
4356 Rank = 9,
4357 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4358 Regiment = "784th Odahviing Platoon",
4359 Health = 100,
4360 Bodygroups = "0110011000"
4361} )
4362
4363TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Major", {
4364 Description = "Squad Leader of Delta Squad",
4365 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
4366 Colour = Color( 247, 59, 59 ),
4367 Side = 1,
4368 Rank = 10,
4369 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
4370 Regiment = "784th Odahviing Platoon",
4371 Health = 100,
4372 Bodygroups = "0110011000"
4373} )
4374
4375TEAM_RC_L = CreateTeam( "784th Odahviing Platoon Battalion Commander", {
4376 Description = "Squad Leader of Delta Squad",
4377 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
4378 Colour = Color( 247, 59, 59 ),
4379 Side = 1,
4380 Rank = 11,
4381 Model = "models/gonzo/tigersquad/tscommander/tscommander.mdl",
4382 Regiment = "784th Odahviing Platoon",
4383 Health = 100,
4384 Bodygroups = "0110011100"
4385} )
4386
4387TEAM_104TH_ARC_SGT = CreateTeam( "104th ARC Sergeant", {
4388 Description = "Lieutenant of the 212th",
4389 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
4390 Colour = Color( 173, 173, 173 ),
4391 Side = 1,
4392 Rank = 4,
4393 Model = "models/gonzo/wolfpack327thshock/wolfpackarc/wolfpackarc.mdl",
4394 Regiment = "104th Wolfpack",
4395 Health = 100,
4396 Bodygroups = "011000111",
4397} )
4398
4399TEAM_104TH_ARC_LT = CreateTeam( "104th ARC Lieutenant", {
4400 Description = "Lieutenant of the 212th",
4401 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
4402 Colour = Color( 173, 173, 173 ),
4403 Side = 1,
4404 Rank = 5,
4405 Model = "models/gonzo/wolfpack327thshock/wolfpackarc/wolfpackarc.mdl",
4406 Regiment = "104th Wolfpack",
4407 Health = 100,
4408 Bodygroups = "011000111",
4409} )
4410
4411TEAM_104TH_ARC_CPT = CreateTeam( "104th ARC Captain", {
4412 Description = "Lieutenant of the 212th",
4413 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack", "realistic_hook"},
4414 Colour = Color( 173, 173, 173 ),
4415 Side = 1,
4416 Rank = 12,
4417 Model = "models/gonzo/wolfpack327thshock/wolfpackarc/wolfpackarc.mdl",
4418 Regiment = "104th Wolfpack",
4419 Health = 100,
4420 Bodygroups = "011000111",
4421} )
4422
4423TEAM_327TH_ARC_SGT = CreateTeam( "327th ARC Sergeant", {
4424 Description = "Lieutenant of the 212th",
4425 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
4426 Colour = Color( 230, 236, 0 ),
4427 Side = 1,
4428 Rank = 4,
4429 Model = "models/gonzo/wolfpack327thshock/327tharc/327tharc.mdl",
4430 Regiment = "327th Star Corps",
4431 Health = 100,
4432 Bodygroups = "011000111",
4433} )
4434
4435TEAM_327TH_ARC_LT = CreateTeam( "327th ARC Lieutenant", {
4436 Description = "Lieutenant of the 212th",
4437 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
4438 Colour = Color( 230, 236, 0 ),
4439 Side = 1,
4440 Rank = 5,
4441 Model = "models/gonzo/wolfpack327thshock/327tharc/327tharc.mdl",
4442 Regiment = "327th Star Corps",
4443 Health = 100,
4444 Bodygroups = "011000111",
4445} )
4446
4447TEAM_327TH_ARC_CPT = CreateTeam( "327th ARC Captain", {
4448 Description = "Lieutenant of the 212th",
4449 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
4450 Colour = Color( 230, 236, 0 ),
4451 Side = 1,
4452 Rank = 12,
4453 Model = "models/gonzo/wolfpack327thshock/327tharc/327tharc.mdl",
4454 Regiment = "327th Star Corps",
4455 Health = 100,
4456 Bodygroups = "011000111",
4457} )
4458
4459TEAM_EVENT_GUNG = CreateTeam( "Gungan", {
4460 Description = "Bith",
4461 Weapons = {"weapon_leash_elastic", "climb_swep2", "gmod_tool"},
4462 Colour = Color( 255, 10, 10 ),
4463 Side = -1,
4464 Rank = 10,
4465 Model = "models/player/starwars/jarjar.mdl",
4466 Regiment = "Event Characters",
4467 Health = 1000,
4468 Bodygroup = "0",
4469} )
4470
4471TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Trooper", {
4472 Description = "Bith",
4473 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4474 Colour = Color( 0, 6, 17 ),
4475 Side = 1,
4476 Rank = 1,
4477 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4478 Regiment = "Blackout Battalion",
4479 Health = 100,
4480 Bodygroups = "01000000",
4481} )
4482
4483TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Lance-Corporal", {
4484 Description = "Bith",
4485 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4486 Colour = Color( 0, 6, 17 ),
4487 Side = 1,
4488 Rank = 1,
4489 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4490 Regiment = "Blackout Battalion",
4491 Health = 100,
4492 Bodygroups = "01000000",
4493} )
4494
4495TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Corporal", {
4496 Description = "Bith",
4497 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4498 Colour = Color( 0, 6, 17 ),
4499 Side = 1,
4500 Rank = 2,
4501 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4502 Regiment = "Blackout Battalion",
4503 Health = 100,
4504 Bodygroups = "01000000",
4505} )
4506
4507TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Sergeant", {
4508 Description = "Bith",
4509 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4510 Colour = Color( 0, 6, 17 ),
4511 Side = 1,
4512 Rank = 4,
4513 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4514 Regiment = "Blackout Battalion",
4515 Health = 100,
4516 Bodygroups = "010000100",
4517} )
4518
4519TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Sergeant-Major", {
4520 Description = "Bith",
4521 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4522 Colour = Color( 0, 6, 17 ),
4523 Side = 1,
4524 Rank = 5,
4525 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4526 Regiment = "Blackout Battalion",
4527 Health = 100,
4528 Bodygroups = "010000100",
4529} )
4530
4531TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Warrant Officer", {
4532 Description = "Bith",
4533 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4534 Colour = Color( 0, 6, 17 ),
4535 Side = 1,
4536 Rank = 6,
4537 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4538 Regiment = "Blackout Battalion",
4539 Health = 100,
4540 Bodygroups = "010000100",
4541} )
4542
4543
4544TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion 2nd Lieutenant", {
4545 Description = "Bith",
4546 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4547 Colour = Color( 0, 6, 17 ),
4548 Side = 1,
4549 Rank = 8,
4550 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4551 Regiment = "Blackout Battalion",
4552 Health = 100,
4553 Bodygroups = "011000100",
4554} )
4555
4556TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Captain", {
4557 Description = "Bith",
4558 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4559 Colour = Color( 0, 6, 17 ),
4560 Side = 1,
4561 Rank = 9,
4562 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4563 Regiment = "Blackout Battalion",
4564 Health = 100,
4565 Bodygroups = "011000110",
4566} )
4567
4568TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Major", {
4569 Description = "Bith",
4570 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4571 Colour = Color( 0, 6, 17 ),
4572 Side = 1,
4573 Rank = 10,
4574 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4575 Regiment = "Blackout Battalion",
4576 Health = 100,
4577 Bodygroups = "011000110",
4578} )
4579
4580TEAM_EVENT_RANC = CreateTeam( "Commander", {
4581 Description = "Bith",
4582 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4583 Colour = Color( 0, 6, 17 ),
4584 Side = 1,
4585 Rank = 11,
4586 Model = "models/gonzo/cglotsofclones/commandervrook/commandervrook.mdl",
4587 Regiment = "Blackout Battalion",
4588 Health = 100,
4589 Bodygroups = "011001110",
4590} )
4591
4592TEAM_501ST_JTROOPER = CreateTeam( "501st Jump", {
4593 Description = "Trooper of the 501st",
4594 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_jetpack", "tfa_swch_dc15a"},
4595 Colour = Color( 0, 102, 255 ),
4596 Side = 1,
4597 Rank = 5,
4598 Model = "models/gonzo/regimentalclones2/501st/501st.mdl",
4599 Regiment = "501st Legion",
4600 Health = 100,
4601 Bodygroups = "010000101",
4602} )
4603
4604TEAM_212TH_JTROOPER = CreateTeam( "212th Jump", {
4605 Description = "Trooper of the 212th",
4606 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_jetpack", "tfa_swch_dc15a"},
4607 Colour = Color( 255, 153, 51 ),
4608 Side = 1,
4609 Rank = 1,
4610 Model = "models/gonzo/regimentalclones2/212th/212th.mdl",
4611 Regiment = "212th Attack Battalion",
4612 Health = 100,
4613 Bodygroups = "010000101",
4614} )
4615
4616TEAM_1GALACTIC_TROOPER = CreateTeam( "Galactic Marine Trooper", {
4617 Description = "Trooper of the Galactic Marines",
4618 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4619 Colour = Color( 153, 51, 153 ),
4620 Side = 1,
4621 Rank = 1,
4622 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4623 Regiment = "Galactic Marines",
4624 Health = 100,
4625 Bodygroups = "0000000",
4626} )
4627
4628TEAM_1GALACTIC_LCP = CreateTeam( "Galactic Marine Lance-Corporal", {
4629 Description = "Lance-Corporal of the Galactic Marines",
4630 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4631 Colour = Color( 153, 51, 153 ),
4632 Side = 1,
4633 Rank = 2,
4634 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4635 Regiment = "Galactic Marines",
4636 Health = 100,
4637 Bodygroups = "0000000",
4638} )
4639
4640TEAM_1GALACTIC_CPL = CreateTeam( "Galactic Marine Corporal", {
4641 Description = "Corporal of the Galactic Marines",
4642 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4643 Colour = Color( 153, 51, 153 ),
4644 Side = 1,
4645 Rank = 3,
4646 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4647 Regiment = "Galactic Marines",
4648 Health = 100,
4649 Bodygroups = "0000000",
4650} )
4651
4652TEAM_1GALACTIC_SGT = CreateTeam( "Galactic Marine Sergeant", {
4653 Description = "Sergeant of the Galactic Marines",
4654 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4655 Colour = Color( 153, 51, 153 ),
4656 Side = 1,
4657 Rank = 4,
4658 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4659 Regiment = "Galactic Marines",
4660 Health = 100,
4661} )
4662
4663TEAM_1GALACTIC_SGTM = CreateTeam( "Galactic Marine Sergeant-Major", {
4664 Description = "Sergeant-Major of the Galactic Marines",
4665 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4666 Colour = Color( 153, 51, 153 ),
4667 Side = 1,
4668 Rank = 5,
4669 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4670 Regiment = "Galactic Marines",
4671 Health = 100,
4672} )
4673
4674TEAM_1GALACTIC_WO = CreateTeam( "Warrant Officer", {
4675 Description = "Warrant Officer of the Galactic Marines",
4676 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4677 Colour = Color( 153, 51, 153 ),
4678 Side = 1,
4679 Rank = 6,
4680 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
4681 Regiment = "Galactic Marines",
4682 Health = 100,
4683} )
4684
4685TEAM_1GALACTIC_2LT = CreateTeam( "2nd Lieutenant", {
4686 Description = "2nd Lieutenant of the Galactic Marines",
4687 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4688 Colour = Color( 153, 51, 153 ),
4689 Side = 1,
4690 Rank = 7,
4691 Model = "models/gonzo/hdgalacticmarines/lt/lt.mdl",
4692 Regiment = "Galactic Marines",
4693 Health = 100,
4694} )
4695
4696TEAM_1GALACTIC_LT = CreateTeam( "Lieutenant", {
4697 Description = "Lieutenant of the Galactic Marines",
4698 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4699 Colour = Color( 153, 51, 153 ),
4700 Side = 1,
4701 Rank = 8,
4702 Model = "models/gonzo/hdgalacticmarines/lt/lt.mdl",
4703 Regiment = "Galactic Marines",
4704 Health = 100,
4705} )
4706
4707TEAM_1GALACTIC_CPT = CreateTeam( "Captain", {
4708 Description = "Captain of the Galactic Marines",
4709 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4710 Colour = Color( 153, 51, 153 ),
4711 Side = 1,
4712 Rank = 9,
4713 Model = "models/gonzo/hdgalacticmarines/lt/lt.mdl",
4714 Regiment = "Galactic Marines",
4715 Health = 100,
4716} )
4717
4718TEAM_1GALACTIC_MAJ = CreateTeam( "Major", {
4719 Description = "Major of the Galactic Marines",
4720 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4721 Colour = Color( 153, 51, 153 ),
4722 Side = 1,
4723 Rank = 10,
4724 Model = "models/gonzo/hdgalacticmarines/lt/lt.mdl",
4725 Regiment = "Galactic Marines",
4726 Health = 100,
4727} )
4728
4729TEAM_1GALACTIC_BCMDR = CreateTeam( "Battalion Commander", {
4730 Description = "Battalion Commander of the Galactic Marines",
4731 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17", "arrest_batton"},
4732 Colour = Color( 153, 51, 153 ),
4733 Side = 1,
4734 Rank = 11,
4735 Model = "models/gonzo/mvgcommanders/bacara/bacara.mdl",
4736 Regiment = "Galactic Marines",
4737 Health = 100,
4738} )
4739
4740TEAM_1GALACTIC_CMDR = CreateTeam( "Commander", {
4741 Description = "Regimental Commander of the Galactic Marines",
4742 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4743 Colour = Color( 153, 51, 153 ),
4744 Side = 1,
4745 Rank = 12,
4746 Model = "models/gonzo/mvgcommanders/bacara/bacara.mdl",
4747 Regiment = "Galactic Marines",
4748 Health = 100,
4749} )
4750
4751TEAM_1GALACTIC_SCMDR = CreateTeam( "Senior Commander", {
4752 Description = "Senior Commander of the Galactic Marines",
4753 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17", "arrest_batton"},
4754 Colour = Color( 153, 51, 153 ),
4755 Side = 1,
4756 Rank = 13,
4757 Model = "models/gonzo/mvgcommanders/bacara/bacara.mdl",
4758 Regiment = "Galactic Marines",
4759 Health = 100,
4760} )
4761
4762TEAM_1GALACTIC_BACARA = CreateTeam( "Marshal Commander", {
4763 Description = "Marshal Commander of the Galactic Marines",
4764 Weapons = {"tfa_sw_repshot", "tfa_752_dc15s_expanded", "climb_swep2","tfa_swch_dc17"},
4765 Colour = Color( 153, 51, 153 ),
4766 Side = 1,
4767 Rank = 14,
4768 Model = "models/gonzo/mvgcommanders/bacara/bacara.mdl",
4769 Regiment = "Galactic Marines",
4770 Health = 100,
4771 Bodygroups = "010011",
4772} )
4773
4774TEAM_AIR91ST_LCP = CreateTeam( "Doom Company Trooper", {
4775 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4776 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4777 Colour = Color( 0, 140, 39 ),
4778 Side = 1,
4779 Rank = 1,
4780 Model = "models/gonzo/cglotsofclones/doomtrooper/doomtrooper.mdl",
4781 Regiment = "Doom Company",
4782 Health = 150,
4783 Bodygroups = "01000000000000000",
4784} )
4785
4786TEAM_AIR91ST_LCP = CreateTeam( "Doom Company Sergeant", {
4787 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4788 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4789 Colour = Color( 0, 140, 39 ),
4790 Side = 1,
4791 Rank = 5,
4792 Model = "models/gonzo/cglotsofclones/doomtrooper/doomtrooper.mdl",
4793 Regiment = "Doom Company",
4794 Health = 150,
4795 Bodygroups = "01000000000000000",
4796} )
4797
4798TEAM_AIR91ST_LCP = CreateTeam( "Doom Company Sergeant Medic", {
4799 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4800 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4801 Colour = Color( 0, 140, 39 ),
4802 Side = 1,
4803 Rank = 5,
4804 Model = "models/gonzo/cglotsofclones/doommedic/doommedic.mdl",
4805 Regiment = "Doom Company",
4806 Health = 150,
4807 Bodygroups = "01000000000000000",
4808} )
4809
4810TEAM_AIR91ST_LCP = CreateTeam( "Doom Company Lieutenant", {
4811 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4812 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4813 Colour = Color( 0, 140, 39 ),
4814 Side = 1,
4815 Rank = 8,
4816 Model = "models/gonzo/cglotsofclones/doomtrooper/doomtrooper.mdl",
4817 Regiment = "Doom Company",
4818 Health = 150,
4819 Bodygroups = "01000000000000000",
4820} )
4821
4822
4823TEAM_AIR91ST_LCP = CreateTeam( "Doom Company Lieutenant Medic", {
4824 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4825 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4826 Colour = Color( 0, 140, 39 ),
4827 Side = 1,
4828 Rank = 8,
4829 Model = "models/gonzo/cglotsofclones/doommedic/doommedic.mdl",
4830 Regiment = "Doom Company",
4831 Health = 150,
4832 Bodygroups = "01000000000000000",
4833} )
4834
4835TEAM_AIR91ST_LCP = CreateTeam( "Commander", {
4836 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
4837 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_policeshield", "weapon_frag", "climb_swep2"},
4838 Colour = Color( 0, 140, 39 ),
4839 Side = 1,
4840 Rank = 11,
4841 Model = "models/gonzo/cglotsofclones/commanderdoom/commanderdoom.mdl",
4842 Regiment = "Doom Company",
4843 Health = 150,
4844 Bodygroups = "010000000000",
4845} )
4846
4847TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Captain", {
4848 Description = "Bith",
4849 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4850 Colour = Color( 0, 6, 17 ),
4851 Side = 1,
4852 Rank = 9,
4853 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
4854 Regiment = "Blackout Battalion",
4855 Health = 100,
4856 Bodygroups = "01000000000",
4857} )
4858
4859TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Commander", {
4860 Description = "Bith",
4861 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a"},
4862 Colour = Color( 0, 6, 17 ),
4863 Side = 1,
4864 Rank = 11,
4865 Model = "models/gonzo/cglotsofclones/commandervrook/commandervrook.mdl",
4866 Regiment = "Blackout Battalion",
4867 Health = 100,
4868 Bodygroups = "00000000000",
4869} )
4870
4871TEAM_EVENT_RANC = CreateTeam( "Blackout ARC Sergeant", {
4872 Description = "Bith",
4873Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack"},
4874 Colour = Color( 0, 6, 17 ),
4875 Side = 1,
4876 Rank = 3,
4877 Model = "models/gonzo/cglotsofclones/blackoutarc/blackoutarc.mdl",
4878 Regiment = "Blackout Battalion",
4879 Health = 100,
4880 Bodygroups = "011000111",
4881} )
4882
4883TEAM_EVENT_RANC = CreateTeam( "Blackout ARC Lieutenant", {
4884 Description = "Bith",
4885 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack"},
4886 Colour = Color( 0, 6, 17 ),
4887 Side = 1,
4888 Rank = 3,
4889 Model = "models/gonzo/cglotsofclones/blackoutarc/blackoutarc.mdl",
4890 Regiment = "Blackout Battalion",
4891 Health = 100,
4892 Bodygroups = "011000111",
4893} )
4894
4895TEAM_EVENT_RANC = CreateTeam( "Blackout ARC Captain", {
4896 Description = "Bith",
4897 Weapons = {"tfa_swch_alphablaster", "tfa_sw_westardual", "weapon_bactainjector", "weapon_defibrillator", "climb_swep2", "weapon_jetpack"},
4898 Colour = Color( 0, 6, 17 ),
4899 Side = 1,
4900 Rank = 3,
4901 Model = "models/gonzo/cglotsofclones/blackoutarc/blackoutarc.mdl",
4902 Regiment = "Blackout Battalion",
4903 Health = 100,
4904 Bodygroups = "011000111",
4905} )
4906
4907TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Medic Trooper", {
4908 Description = "Bith",
4909 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
4910 Colour = Color( 0, 6, 17 ),
4911 Side = 1,
4912 Rank = 3,
4913 Model = "models/gonzo/cglotsofclones/blackoutmedic/blackoutmedic.mdl",
4914 Regiment = "Blackout Battalion",
4915 Health = 100,
4916 Bodygroups = "01000000000",
4917} )
4918
4919TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Medic Sergeant", {
4920 Description = "Bith",
4921 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
4922 Colour = Color( 0, 6, 17 ),
4923 Side = 1,
4924 Rank = 3,
4925 Model = "models/gonzo/cglotsofclones/blackoutmedic/blackoutmedic.mdl",
4926 Regiment = "Blackout Battalion",
4927 Health = 100,
4928 Bodygroups = "010000100",
4929} )
4930
4931
4932TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Medic Lieutenant", {
4933 Description = "Bith",
4934 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a", "weapon_bactainjector", "weapon_bactanade"},
4935 Colour = Color( 0, 6, 17 ),
4936 Side = 1,
4937 Rank = 7,
4938 Model = "models/gonzo/cglotsofclones/blackoutmedic/blackoutmedic.mdl",
4939 Regiment = "Blackout Battalion",
4940 Health = 100,
4941 Bodygroups = "011000100",
4942} )
4943
4944TEAM_EVENT_RANC = CreateTeam( "Blackout Battalion Medic Captain", {
4945 Description = "Bith",
4946 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "tfa_swch_dc15a", "weapon_bactainjector", "weapon_bactanade"},
4947 Colour = Color( 0, 6, 17 ),
4948 Side = 1,
4949 Rank = 11,
4950 Model = "models/gonzo/cglotsofclones/blackoutmedic/blackoutmedic.mdl",
4951 Regiment = "Blackout Battalion",
4952 Health = 100,
4953 Bodygroups = "011001110",
4954} )
4955
4956TEAM_EVENT_RANC = CreateTeam( "Blackout ARF Trooper", {
4957 Description = "Bith",
4958 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
4959 Colour = Color( 0, 6, 17 ),
4960 Side = 1,
4961 Rank = 3,
4962 Model = "models/gonzo/cglotsofclones/blackoutarf/blackoutarf.mdl",
4963 Regiment = "Blackout Battalion",
4964 Health = 100,
4965 Bodygroups = "0100000000",
4966} )
4967
4968TEAM_EVENT_RANC = CreateTeam( "Blackout ARF Sergeant", {
4969 Description = "Bith",
4970 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
4971 Colour = Color( 0, 6, 17 ),
4972 Side = 1,
4973 Rank = 5,
4974 Model = "models/gonzo/cglotsofclones/blackoutarf/blackoutarf.mdl",
4975 Regiment = "Blackout Battalion",
4976 Health = 100,
4977 Bodygroups = "01001000000",
4978} )
4979
4980TEAM_EVENT_RANC = CreateTeam( "Blackout ARF Lieutenant", {
4981 Description = "Bith",
4982 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
4983 Colour = Color( 0, 6, 17 ),
4984 Side = 1,
4985 Rank = 7,
4986 Model = "models/gonzo/cglotsofclones/blackoutarf/blackoutarf.mdl",
4987 Regiment = "Blackout Battalion",
4988 Health = 100,
4989 Bodygroups = "01101000000",
4990} )
4991
4992TEAM_EVENT_131331HUTT = CreateTeam( "CIS", {
4993 Description = "Bith",
4994 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
4995 Colour = Color( 255, 10, 10 ),
4996 Side = -1,
4997 Rank = 11,
4998 Model = "models/tfa/comm/gg/pm_sw_droid_tactical.mdl",
4999 Regiment = "Event Characters",
5000 Health = 1000,
5001} )
5002
5003TEAM_EVENT_RANC = CreateTeam( "Blackout ARF Captain", {
5004 Description = "Bith",
5005 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5006 Colour = Color( 0, 6, 17 ),
5007 Side = 1,
5008 Rank = 11,
5009 Model = "models/gonzo/cglotsofclones/blackoutarf/blackoutarf.mdl",
5010 Regiment = "Blackout Battalion",
5011 Health = 100,
5012 Bodygroups = "01111000000",
5013} )
5014
5015TEAM_EVENT_2252524HUTT = CreateTeam( "Hostage", {
5016 Description = "Bith",
5017 Weapons = {"weapon_bactainjector", "weapon_leash_elastic", "tfa_sw_dual_dl44", "gmod_tool"},
5018 Colour = Color( 255, 10, 10 ),
5019 Side = -1,
5020 Rank = 10,
5021 Model = "models/player/hostage/hostage_04.mdl",
5022 Regiment = "Event Characters",
5023 Health = 1000,
5024} )
5025
5026TEAM_EVENT_2252242424524HUTT = CreateTeam( "Civilian", {
5027 Description = "Bith",
5028 Weapons = {"weapon_bactainjector", "weapon_leash_elastic", "tfa_sw_dual_dl44", "gmod_tool"},
5029 Colour = Color( 255, 10, 10 ),
5030 Side = -1,
5031 Rank = 10,
5032 Model = "models/player/group01/male_02.mdl",
5033 Regiment = "Event Characters",
5034 Health = 1000,
5035} )
5036
5037TEAM_GREEN_TROOPER = CreateTeam( "187th Medic Trooper", {
5038 Description = "Medic of the 187th Legion",
5039 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5040 Colour = Color( 122, 66, 244 ),
5041 Side = 1,
5042 Rank = 1,
5043 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
5044 Regiment = "187th Legion",
5045 Health = 100,
5046 Bodygroups = "0100000",
5047} )
5048
5049TEAM_GREEN_LCP = CreateTeam( "187th Medic Sergeant", {
5050 Description = "Medic of the 187th Legion",
5051 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5052 Colour = Color( 122, 66, 244 ),
5053 Side = 1,
5054 Rank = 5,
5055 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
5056 Regiment = "187th Legion",
5057 Health = 100,
5058 Bodygroups = "0100000",
5059} )
5060
5061TEAM_41ST_CPL = CreateTeam( "187th Medic Lieutenant", {
5062 Description = "Medic of the 187th Legion",
5063 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5064 Colour = Color( 122, 66, 244 ),
5065 Side = 1,
5066 Rank = 8,
5067 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
5068 Regiment = "187th Legion",
5069 Health = 100,
5070 Bodygroups = "0110001",
5071} )
5072
5073TEAM_41ST_SGT = CreateTeam( "187th Medic Captain", {
5074 Description = "Medic of the 187th Legion",
5075 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5076 Colour = Color( 122, 66, 244 ),
5077 Side = 1,
5078 Rank = 12,
5079 Model = "models/gonzo/cglotsofclones/187thtrooper/187thtrooper.mdl",
5080 Regiment = "187th Legion",
5081 Health = 100,
5082 Bodygroups = "0110001",
5083} )
5084
5085TEAM_41ST_SGTM = CreateTeam( "Green Company Sergeant-Major", {
5086 Description = "Sergeant-Major of the Green Company",
5087 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5088 Colour = Color( 35, 124, 32 ),
5089 Side = 1,
5090 Rank = 5,
5091 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5092 Regiment = "Green Company",
5093 Health = 100,
5094 Bodygroups = "01000010",
5095} )
5096
5097TEAM_41ST_WO = CreateTeam( "Warrant Officer", {
5098 Description = "Warrant Officer of the Green Company",
5099 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5100 Colour = Color( 35, 124, 32 ),
5101 Side = 1,
5102 Rank = 6,
5103 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5104 Regiment = "Green Company",
5105 Health = 100,
5106 Bodygroups = "01000010",
5107} )
5108
5109TEAM_41ST_2LT = CreateTeam( "2nd Lieutenant", {
5110 Description = "2nd Lieutenant of the Green Company",
5111 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5112 Colour = Color( 35, 124, 32 ),
5113 Side = 1,
5114 Rank = 7,
5115 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5116 Regiment = "Green Company",
5117 Health = 100,
5118 Bodygroups = "01100010",
5119} )
5120
5121TEAM_41ST_LT = CreateTeam( "Lieutenant", {
5122 Description = "Lieutenant of the Green Company",
5123 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5124 Colour = Color( 35, 124, 32 ),
5125 Side = 1,
5126 Rank = 8,
5127 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5128 Regiment = "Green Company",
5129 Health = 100,
5130 Bodygroups = "01100010",
5131} )
5132
5133TEAM_41ST_CPT = CreateTeam( "Captain", {
5134 Description = "Captain of the Green Company",
5135 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5136 Colour = Color( 35, 124, 32 ),
5137 Side = 1,
5138 Rank = 9,
5139 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5140 Regiment = "Green Company",
5141 Health = 100,
5142 Bodygroups = "01100011",
5143} )
5144
5145TEAM_41ST_MAJ = CreateTeam( "Major", {
5146 Description = "Major of the Green Company",
5147 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5148 Colour = Color( 35, 124, 32 ),
5149 Side = 1,
5150 Rank = 10,
5151 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5152 Regiment = "Green Company",
5153 Health = 100,
5154 Bodygroups = "01100011",
5155} )
5156
5157TEAM_41ST_BCMDR = CreateTeam( "Battalion Commander", {
5158 Description = "Battalion Commander of the Green Company",
5159 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "arrest_batton"},
5160 Colour = Color( 35, 124, 32 ),
5161 Side = 1,
5162 Rank = 11,
5163 Model = "models/gonzo/swbf2greencompany/gctrooper/gctrooper.mdl",
5164 Regiment = "Green Company",
5165 Health = 100,
5166 Bodygroups = "01100110",
5167} )
5168
5169TEAM_41ST_GREE = CreateTeam( "Commander", {
5170 Description = "Regimental Commander of the Green Company",
5171 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "tfa_sw_bowcaster", "arrest_batton"},
5172 Colour = Color( 51, 153, 51 ),
5173 Side = 1,
5174 Rank = 12,
5175 Model = "models/player/ven/bf2_reg/gree/bf2gree.mdl",
5176 Regiment = "Green Company",
5177 Health = 100,
5178} )
5179
5180TEAM_41ST_SCMDR = CreateTeam( "Green Company Heavy", {
5181 Description = "Senior Commander of the Green Company",
5182 Weapons = {"tfa_swch_z6", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5183 Colour = Color( 51, 153, 51 ),
5184 Side = 1,
5185 Rank = 5,
5186 Model = "models/gonzo/swbf2heavygunner/kashyyk/kashyyk.mdl",
5187 Regiment = "Green Company",
5188 Health = 100,
5189} )
5190
5191TEAM_A91ST_TROOPER = CreateTeam( "Green Company ARF Trooper", {
5192 Description = "Trooper of the 91st Recon Reconnaissance Corps",
5193 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5194 Colour = Color( 51, 153, 51 ),
5195 Side = 1,
5196 Rank = 1,
5197 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5198 Regiment = "Green Company",
5199 Health = 100,
5200 Bodygroups = "000000",
5201} )
5202
5203TEAM_A91ST_LCP = CreateTeam( "Green Company ARF Lance-Corporal", {
5204 Description = "Lance-Corporal of the 91st Reconnaissance Corps",
5205 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5206 Colour = Color( 51, 153, 51 ),
5207 Side = 1,
5208 Rank = 2,
5209 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5210 Regiment = "Green Company",
5211 Health = 100,
5212 Bodygroups = "000000",
5213} )
5214
5215TEAM_A91ST_CPL = CreateTeam( "Green Company ARF Corporal", {
5216 Description = "Corporal of the 91st Reconnaissance Corps",
5217 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5218 Colour = Color( 51, 153, 51 ),
5219 Side = 1,
5220 Rank = 3,
5221 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5222 Regiment = "Green Company",
5223 Health = 100,
5224 Bodygroups = "00000001",
5225} )
5226
5227TEAM_A91ST_SGT = CreateTeam( "Green Company ARF Sergeant", {
5228 Description = "Sergeant of the 91st Reconnaissance Corps",
5229 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5230 Colour = Color( 51, 153, 51 ),
5231 Side = 1,
5232 Rank = 4,
5233 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5234 Regiment = "Green Company",
5235 Health = 100,
5236 Bodygroups = "0000000",
5237} )
5238
5239
5240TEAM_A91ST_SGTM = CreateTeam( "Green Company ARF Sergeant-Major", {
5241 Description = "Sergeant-Major of the 91st Reconnaissance Corps",
5242 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2"},
5243 Colour = Color( 51, 153, 51 ),
5244 Side = 1,
5245 Rank = 5,
5246 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5247 Regiment = "Green Company",
5248 Health = 100,
5249 Bodygroups = "0000000",
5250} )
5251
5252TEAM_A91ST_WO = CreateTeam( "ARF Warrant Officer", {
5253 Description = "Warrant Officer of the 91st Reconnaissance Corps",
5254 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
5255 Colour = Color( 51, 153, 51 ),
5256 Side = 1,
5257 Rank = 6,
5258 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5259 Regiment = "Green Company",
5260 Health = 100,
5261 Bodygroups = "0000000",
5262} )
5263
5264TEAM_A91ST_2LT = CreateTeam( "ARF 2nd Lieutenant", {
5265 Description = "2nd Lieutenant of the 91st Reconnaissance Corps",
5266 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
5267 Colour = Color( 51, 153, 51 ),
5268 Side = 1,
5269 Rank = 7,
5270 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5271 Regiment = "Green Company",
5272 Health = 100,
5273 Bodygroups = "0110000",
5274} )
5275
5276TEAM_A91ST_LT = CreateTeam( "ARF Lieutenant", {
5277 Description = "Lieutenant of the 91st Reconnaissance Corps",
5278 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
5279 Colour = Color( 51, 153, 51 ),
5280 Side = 1,
5281 Rank = 8,
5282 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5283 Regiment = "Green Company",
5284 Health = 100,
5285 Bodygroups = "0110000",
5286} )
5287
5288TEAM_A91ST_CPT = CreateTeam( "ARF Captain", {
5289 Description = "Captain of the 91st Reconnaissance Corps",
5290 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "tfa_sw_repsnip", "weapon_rpw_binoculars", "weapon_frag", "climb_swep2", "weapon_camo"},
5291 Colour = Color( 51, 153, 51 ),
5292 Side = 1,
5293 Rank = 9,
5294 Model = "models/gonzo/swbf2greencompany/gcarf/gcarf.mdl",
5295 Regiment = "Green Company",
5296 Health = 100,
5297 Bodygroups = "01001",
5298} )
5299
5300TEAM_SHOCK = CreateTeam( "Shock Heavy", {
5301 Description = "Senior Commander of the 41st Elite Corps",
5302 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "tfa_swch_z6"},
5303 Colour = Color( 255, 0, 79 ),
5304 Side = 1,
5305 Rank = 5,
5306 Model = "models/gonzo/swbf2greencompany/shockheavy/shockheavy.mdl",
5307 Regiment = "Shock Trooper",
5308 Health = 100,
5309 Bodygroups = "0000000",
5310} )
5311
5312TEAM_501ST_MEDIC_TROOPER = CreateTeam( "Shock Medic Trooper", {
5313 Description = "Trooper of the 501st",
5314 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5315 Colour = Color( 255, 0, 79 ),
5316 Side = 1,
5317 Rank = 1,
5318 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5319 Regiment = "Shock Trooper",
5320 Health = 100,
5321 Bodygroups = "01000000",
5322} )
5323
5324TEAM_501ST_MEDIC_LCP = CreateTeam( "Shock Medic Lance-Corporal", {
5325 Description = "Lance-Corporal of the 501st",
5326 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5327 Colour = Color( 255, 0, 79 ),
5328 Side = 1,
5329 Rank = 2,
5330 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5331 Regiment = "Shock Trooper",
5332 Health = 100,
5333 Bodygroups = "01000000",
5334} )
5335
5336TEAM_501ST_CPL = CreateTeam( "Shock Medic Corporal", {
5337 Description = "Corporal of the 501st",
5338 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5339 Colour = Color( 255, 0, 79 ),
5340 Side = 1,
5341 Rank = 3,
5342 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5343 Regiment = "Shock Trooper",
5344 Health = 100,
5345 Bodygroups = "01010001",
5346} )
5347
5348TEAM_501ST_SGT = CreateTeam( "Shock Medic Sergeant", {
5349 Description = "Sergeant of the 501st",
5350 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5351 Colour = Color( 255, 0, 79 ),
5352 Side = 1,
5353 Rank = 4,
5354 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5355 Regiment = "Shock Trooper",
5356 Health = 100,
5357 Bodygroups = "01010000",
5358} )
5359
5360TEAM_501ST_SGTM = CreateTeam( "Medic Sergeant-Major", {
5361 Description = "Sergeant-Major of the 501st",
5362 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5363 Colour = Color( 255, 0, 79 ),
5364 Side = 1,
5365 Rank = 5,
5366 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5367 Regiment = "Shock Trooper",
5368 Health = 100,
5369 Bodygroups = "01010000",
5370} )
5371
5372TEAM_501ST_WO = CreateTeam( "Medic Warrant Officer", {
5373 Description = "Warrant Officer of the 501st",
5374 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5375 Colour = Color( 255, 0, 79 ),
5376 Side = 1,
5377 Rank = 6,
5378 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5379 Regiment = "Shock Trooper",
5380 Health = 100,
5381 Bodygroups = "01010000",
5382} )
5383
5384TEAM_501ST_2LT = CreateTeam( "Medic 2nd Lieutenant", {
5385 Description = "2nd Lieutenant of the 501st",
5386 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector"},
5387 Colour = Color( 255, 0, 79 ),
5388 Side = 1,
5389 Rank = 7,
5390 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5391 Regiment = "Shock Trooper",
5392 Health = 100,
5393 Bodygroups = "01110000",
5394} )
5395
5396TEAM_501ST_LT = CreateTeam( "Medic Lieutenant", {
5397 Description = "Lieutenant of the 501st",
5398 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_defibrillator", "weapon_bactainjector", "weapon_cuff_elastic", "weapon_leash_elastic", "arrest_batton", "weapon_bfg_csgo_zeusx27"},
5399 Colour = Color( 255, 0, 79 ),
5400 Side = 1,
5401 Rank = 8,
5402 Model = "models/gonzo/swbf2greencompany/shockmedic/shockmedic.mdl",
5403 Regiment = "Shock Trooper",
5404 Health = 100,
5405 Bodygroups = "01110000",
5406} )
5407
5408TEAM_DELTA_OSS = CreateTeam( "RC-1309", {
5409 Description = "Squad Leader of Delta Squad",
5410 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2", "weapon_camo"},
5411 Colour = Color( 79, 76, 71 ),
5412 Side = 1,
5413 Rank = 10,
5414 Model = "models/player/omega/starwars/1.mdl",
5415 Regiment = "Omega Squad",
5416 Health = 250,
5417} )
5418
5419TEAM_DELTA_IXER = CreateTeam( "RC-3222", {
5420 Description = "Member of Delta Squad",
5421 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2", "weapon_camo"},
5422 Colour = Color( 79, 76, 71 ),
5423 Side = 1,
5424 Rank = 4,
5425 Model = "models/player/omega/starwars/3.mdl",
5426 Regiment = "Omega Squad",
5427 Health = 250,
5428} )
5429
5430TEAM_DELTA_EV = CreateTeam( "RC-8015", {
5431 Description = "Member of Delta Squad",
5432 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_frag", "climb_swep2", "weapon_defibrillator", "weapon_bactainjector", "weapon_bactanade", "weapon_camo"},
5433 Colour = Color( 79, 76, 71 ),
5434 Side = 1,
5435 Rank = 4,
5436 Model = "models/player/omega/starwars/2.mdl",
5437 Regiment = "Omega Squad",
5438 Health = 250,
5439} )
5440
5441TEAM_DELTA_CORCH = CreateTeam( "RC-1136", {
5442 Description = "Member of Delta Squad",
5443 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "tfa_dc17m_shotgun", "tfa_752_dc15s_expanded", "weapon_swrc_det", "weapon_frag", "climb_swep2", "tfa_swch_dc17m_at", "weapon_camo"},
5444 Colour = Color( 79, 76, 71 ),
5445 Side = 1,
5446 Rank = 4,
5447 Model = "models/player/omega/starwars/4.mdl",
5448 Regiment = "Omega Squad",
5449 Health = 250,
5450} )
5451
5452TEAM_ARC_LT_JUMP = CreateTeam( "ARC Lieutenant Jump Trooper", {
5453 Description = "Lieutenant of the Advanced Recon Commandos",
5454 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "weapon_jetpack", "tfa_swch_dc17", "weapon_frag", "climb_swep2"},
5455 Colour = Color( 51, 51, 255 ),
5456 Side = 1,
5457 Rank = 8,
5458 Model = "models/gonzo/modifiedarctrooperranks/bluearc/bluearc.mdl",
5459 Regiment = "Advanced Recon Commandos",
5460 Health = 100,
5461 Bodygroups = "011000111",
5462} )
5463
5464TEAM_MEDIC_TROOPER = CreateTeam( "Medic Galactic Marine Trooper", {
5465 Description = "Trooper of the 104th Wolfpack",
5466 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5467 Colour = Color( 153, 51, 153 ),
5468 Side = 1,
5469 Rank = 1,
5470 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5471 Regiment = "Galactic Marines",
5472 Health = 100,
5473 Bodygroups = "01000000",
5474} )
5475
5476TEAM_MEDIC_LCP = CreateTeam( "Medic Galactic Marine Lance-Corporal", {
5477 Description = "Lance-Corporal of the 104th Wolfpack",
5478 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5479 Colour = Color( 153, 51, 153 ),
5480 Side = 1,
5481 Rank = 1,
5482 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5483 Regiment = "Galactic Marines",
5484 Health = 100,
5485 Bodygroups = "01000000",
5486} )
5487
5488TEAM_MEDIC_CPL = CreateTeam( "Medic Galactic Marine Corporal", {
5489 Description = "Corporal of the 104th Wolfpack",
5490 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5491 Colour = Color( 153, 51, 153 ),
5492 Side = 1,
5493 Rank = 3,
5494 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5495 Regiment = "Galactic Marines",
5496 Health = 100,
5497 Bodygroups = "01000000",
5498} )
5499
5500TEAM_MEDIC_SGT = CreateTeam( "Medic Galactic Marine Sergeant", {
5501 Description = "Sergeant of the 104th Wolfpack",
5502 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5503 Colour = Color( 153, 51, 153 ),
5504 Side = 1,
5505 Rank = 4,
5506 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5507 Regiment = "Galactic Marines",
5508 Health = 100,
5509 Bodygroups = "01010000",
5510} )
5511
5512TEAM_MEDIC_SGTM = CreateTeam( "Medic Galactic Marine Sergeant-Major", {
5513 Description = "Sergeant-Major of the 104th Wolfpack",
5514 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5515 Colour = Color( 153, 51, 153 ),
5516 Side = 1,
5517 Rank = 5,
5518 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5519 Regiment = "Galactic Marines",
5520 Health = 100,
5521 Bodygroups = "01010000",
5522} )
5523
5524TEAM_MEDIC_WO = CreateTeam( "Medic Warrant Officer", {
5525 Description = "Warrant Officer of the 104th Wolfpack",
5526 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5527 Colour = Color( 153, 51, 153 ),
5528 Side = 1,
5529 Rank = 6,
5530 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5531 Regiment = "Galactic Marines",
5532 Health = 100,
5533 Bodygroups = "01110000",
5534} )
5535
5536
5537TEAM_MEDIC_2LT = CreateTeam( "Medic 2nd Lieutenant", {
5538 Description = "2nd Lieutenant of the 104th Wolfpack",
5539 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5540 Colour = Color( 153, 51, 153 ),
5541 Side = 1,
5542 Rank = 7,
5543 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5544 Regiment = "Galactic Marines",
5545 Health = 100,
5546 Bodygroups = "01110000",
5547} )
5548
5549TEAM_MEDIC_LT = CreateTeam( "Medic Lieutenant", {
5550 Description = "Lieutenant of the 104th Wolfpack",
5551 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5552 Colour = Color( 153, 51, 153 ),
5553 Side = 1,
5554 Rank = 8,
5555 Model = "models/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5556 Regiment = "Galactic Marines",
5557 Health = 100,
5558 Bodygroups = "01110000",
5559} )
5560
5561TEAM_MEDIC_CPT = CreateTeam( "Medic Captain", {
5562 Description = "Captain of the 104th Wolfpack",
5563 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
5564 Colour = Color( 153, 51, 153 ),
5565 Side = 1,
5566 Rank = 9,
5567 Model = "mmodels/gonzo/ct327thpilotgmmed/gmmedic/gmmed.mdl",
5568 Regiment = "Galactic Marines",
5569 Health = 100,
5570 Bodygroups = "01110000",
5571} )
5572
5573TEAM_327TH_TROOPER = CreateTeam( "327th Pilot Trooper", {
5574 Description = "Trooper of the 327th",
5575 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5576 Colour = Color( 230, 236, 0 ),
5577 Side = 1,
5578 Rank = 1,
5579 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5580 Regiment = "327th Star Corps",
5581 Health = 100,
5582 Bodygroups = "010000000",
5583} )
5584
5585TEAM_327TH_LCP = CreateTeam( "327th Pilot Lance-Corporal", {
5586 Description = "Lance-Corporal of the 327th",
5587 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5588 Colour = Color( 230, 236, 0 ),
5589 Side = 1,
5590 Rank = 2,
5591 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5592 Regiment = "327th Star Corps",
5593 Health = 100,
5594 Bodygroups = "010000000",
5595} )
5596
5597TEAM_327TH_CPL = CreateTeam( "327th Pilot Corporal", {
5598 Description = "Corporal of the 327th",
5599 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5600 Colour = Color( 230, 236, 0 ),
5601 Side = 1,
5602 Rank = 3,
5603 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5604 Regiment = "327th Star Corps",
5605 Health = 100,
5606 Bodygroups = "010000000",
5607} )
5608
5609TEAM_327TH_SGT = CreateTeam( "327th Pilot Sergeant", {
5610 Description = "Sergeant of the 327th",
5611 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5612 Colour = Color( 230, 236, 0 ),
5613 Side = 1,
5614 Rank = 4,
5615 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5616 Regiment = "327th Star Corps",
5617 Health = 100,
5618 Bodygroups = "01100100000",
5619} )
5620
5621TEAM_327TH_SGTM = CreateTeam( "327th Pilot Sergeant-Major", {
5622 Description = "Sergeant-Major of the 327th",
5623 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5624 Colour = Color( 230, 236, 0 ),
5625 Side = 1,
5626 Rank = 5,
5627 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5628 Regiment = "327th Star Corps",
5629 Health = 100,
5630 Bodygroups = "01100100000",
5631} )
5632
5633TEAM_327TH_WO = CreateTeam( "Warrant Officer", {
5634 Description = "Warrant Officer of the 327th",
5635 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5636 Colour = Color( 230, 236, 0 ),
5637 Side = 1,
5638 Rank = 6,
5639 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5640 Regiment = "327th Star Corps",
5641 Health = 100,
5642 Bodygroups = "01100100000",
5643} )
5644
5645TEAM_327TH_2LT = CreateTeam( "2nd Lieutenant", {
5646 Description = "2nd Lieutenant of the 327th",
5647 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5648 Colour = Color( 230, 236, 0 ),
5649 Side = 1,
5650 Rank = 7,
5651 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5652 Regiment = "327th Star Corps",
5653 Health = 100,
5654 Bodygroups = "01100101000",
5655} )
5656
5657TEAM_327TH_LT = CreateTeam( "Lieutenant", {
5658 Description = "Lieutenant of the 327th",
5659 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2"},
5660 Colour = Color( 230, 236, 0 ),
5661 Side = 1,
5662 Rank = 8,
5663 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5664 Regiment = "327th Star Corps",
5665 Health = 100,
5666 Bodygroups = "01100101000",
5667} )
5668
5669TEAM_327TH_CPT = CreateTeam( "Captain", {
5670 Description = "Captain of the 327th",
5671 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
5672 Colour = Color( 230, 236, 0 ),
5673 Side = 1,
5674 Rank = 9,
5675 Model = "models/gonzo/ct327thpilotgmmed/327thpilot/327thpilot.mdl",
5676 Regiment = "327th Star Corps",
5677 Health = 100,
5678 Bodygroups = "01100101000",
5679} )
5680
5681TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
5682 Description = "Ki-Adi Mundi of the Jedi Order",
5683 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5684 Colour = Color( 255, 255, 204 ),
5685 Side = 1,
5686 Rank = 11,
5687 Model = "models/tfa/comm/gg/pm_sw_mundi.mdl",
5688 Regiment = "Jedi Order",
5689 Health = 5000,
5690 Runspeed = 290,
5691 Walkspeed = 170,
5692} )
5693
5694TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
5695 Description = "Ki-Adi Mundi of the Jedi Order",
5696 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5697 Colour = Color( 255, 255, 204 ),
5698 Side = 1,
5699 Rank = 11,
5700 Model = "models/tfa/comm/gg/pm_sw_imagundi.mdl",
5701 Regiment = "Jedi Order",
5702 Health = 5000,
5703 Runspeed = 290,
5704 Walkspeed = 170,
5705} )
5706
5707TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
5708 Description = "Ki-Adi Mundi of the Jedi Order",
5709 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5710 Colour = Color( 255, 255, 204 ),
5711 Side = 1,
5712 Rank = 11,
5713 Model = "models/tfa/comm/gg/pm_sw_eeth_koth.mdl",
5714 Regiment = "Jedi Order",
5715 Health = 5000,
5716 Runspeed = 290,
5717 Walkspeed = 170,
5718} )
5719
5720TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
5721 Description = "Ki-Adi Mundi of the Jedi Order",
5722 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5723 Colour = Color( 255, 255, 204 ),
5724 Side = 1,
5725 Rank = 11,
5726 Model = "models/tfa/comm/gg/pm_sw_quinlanvos.mdl",
5727 Regiment = "Jedi Order",
5728 Health = 5000,
5729 Runspeed = 290,
5730 Walkspeed = 170,
5731} )
5732
5733TEAM_JEDI_MASTER = CreateTeam( "Jedi Master", {
5734 Description = "Jedi Master of the Jedi Order",
5735 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5736 Colour = Color( 255, 255, 204 ),
5737 Side = 1,
5738 Rank = 11,
5739 Model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
5740 Regiment = "Jedi Order",
5741 Health = 5000,
5742 Runspeed = 290,
5743 Walkspeed = 170,
5744} )
5745
5746TEAM_JEDI_MASTER = CreateTeam( "Jedi Padawan", {
5747 Description = "Jedi Master of the Jedi Order",
5748 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "gmod_tool"},
5749 Colour = Color( 255, 255, 204 ),
5750 Side = 1,
5751 Rank = 11,
5752 Model = "models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl",
5753 Regiment = "Jedi Order",
5754 Health = 5000,
5755 Runspeed = 290,
5756 Walkspeed = 170,
5757} )
5758
5759TEAM_JEDI_YOUNGLING = CreateTeam( "Temple Guard Trainee", {
5760 Description = "Jedi Youngling of the Jedi Order",
5761 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "arrest_batton", "weapon_leash_elastic"},
5762 Colour = Color( 255, 255, 204 ),
5763 Side = 1,
5764 Rank = 5,
5765 Model = "models/player/swtor/arsenic/templeguard/templeguard.mdl",
5766 Regiment = "Jedi Order",
5767 Health = 250,
5768 Runspeed = 265,
5769 Walkspeed = 155,
5770 Bodygroups = "002",
5771} )
5772
5773TEAM_JEDI_PADAWAN = CreateTeam( "Temple Guard", {
5774 Description = "Jedi Padawan of the Jedi Order",
5775 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "arrest_batton", "weapon_leash_elastic"},
5776 Colour = Color( 255, 255, 204 ),
5777 Side = 1,
5778 Rank = 6,
5779 Model = "models/player/swtor/arsenic/templeguard/templeguard.mdl",
5780 Regiment = "Jedi Order",
5781 Health = 1000,
5782 Runspeed = 280,
5783 Walkspeed = 170,
5784 Bodygroups = "000"
5785} )
5786
5787TEAM_JEDI_KNIGHT = CreateTeam( "Grand Templar", {
5788 Description = "Jedi Knight of the Jedi Order",
5789 Weapons = {"weapon_lightsaber", "weapon_forceheal", "meditation", "arrest_batton", "weapon_leash_elastic"},
5790 Colour = Color( 255, 255, 204 ),
5791 Side = 1,
5792 Rank = 12,
5793 Model = "models/player/swtor/arsenic/templeguard/templeguard.mdl",
5794 Regiment = "Jedi Order",
5795 Health = 5000,
5796 Runspeed = 285,
5797 Walkspeed = 170,
5798 Bodygroups = "010",
5799} )
5800
5801TEAM_1GALACTDIC_TROOPER = CreateTeam( "Galactic Marine Elite", {
5802 Description = "Trooper of the Galactic Marines",
5803 Weapons = {"tfa_sw_repshot", "tfa_swch_alphablaster", "climb_swep2","tfa_swch_dc17"},
5804 Colour = Color( 153, 51, 153 ),
5805 Side = 1,
5806 Rank = 7,
5807 Model = "models/gonzo/hdgalacticmarines/xo/xo.mdl",
5808 Regiment = "Galactic Marines",
5809 Health = 150,
5810 Bodygroups = "0000000",
5811} )
5812
5813TEAM_1GALACTIC_TROOPER = CreateTeam( "Galactic Marine Heavy", {
5814 Description = "Trooper of the Galactic Marines",
5815 Weapons = {"tfa_sw_repshot", "tfa_swch_z6", "climb_swep2","tfa_swch_dc17"},
5816 Colour = Color( 153, 51, 153 ),
5817 Side = 1,
5818 Rank = 7,
5819 Model = "models/gonzo/hdgalacticmarines/sgt/sgt.mdl",
5820 Regiment = "Galactic Marines",
5821 Health = 100,
5822 Bodygroups = "0000000",
5823} )
5824
5825TEAM_DOOM_SGTM = CreateTeam( "Shadow Trooper Demolitionist", {
5826 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5827 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_clonelauncher", "tfa_swch_dc17", "climb_swep2"},
5828 Colour = Color( 34, 89, 114 ),
5829 Side = 1,
5830 Rank = 4,
5831 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5832 Regiment = "Shadow Company",
5833 Health = 100,
5834 Bodygroups = "0101000",
5835} )
5836
5837TEAM_DOOM_SGTM = CreateTeam( "Shadow Trooper Sergeant Demolitionist", {
5838 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5839 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_clonelauncher", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5840 Colour = Color( 34, 89, 114 ),
5841 Side = 1,
5842 Rank = 5,
5843 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5844 Regiment = "Shadow Company",
5845 Health = 100,
5846 Bodygroups = "0101001",
5847} )
5848
5849TEAM_DOOM_SGTM = CreateTeam( "Lieutenant Demolitionist", {
5850 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5851 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_clonelauncher", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5852 Colour = Color( 34, 89, 114 ),
5853 Side = 1,
5854 Rank = 6,
5855 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5856 Regiment = "Shadow Company",
5857 Health = 100,
5858 Bodygroups = "0111001",
5859} )
5860
5861TEAM_DOOM_SGTM = CreateTeam( "Captain Demolitionist", {
5862 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5863 Weapons = {"tfa_swch_dc17m_br", "tfa_swch_clonelauncher", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5864 Colour = Color( 34, 89, 114 ),
5865 Side = 1,
5866 Rank = 11,
5867 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5868 Regiment = "Shadow Company",
5869 Health = 100,
5870 Bodygroups = "0111011",
5871} )
5872
5873TEAM_DOOM_SGTM = CreateTeam( "Shadow Trooper Heavy", {
5874 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5875 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dlt19", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5876 Colour = Color( 34, 89, 114 ),
5877 Side = 1,
5878 Rank = 4,
5879 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5880 Regiment = "Shadow Company",
5881 Health = 100,
5882 Bodygroups = "0101000",
5883} )
5884
5885TEAM_DOOM_SGTM = CreateTeam( "Shadow Sergeant Heavy", {
5886 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5887 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dlt19", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5888 Colour = Color( 34, 89, 114 ),
5889 Side = 1,
5890 Rank = 5,
5891 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5892 Regiment = "Shadow Company",
5893 Health = 100,
5894 Bodygroups = "0111001",
5895} )
5896
5897TEAM_DOOM_SGTM = CreateTeam( "Lieutenant Heavy", {
5898 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5899 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dlt19", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5900 Colour = Color( 34, 89, 114 ),
5901 Side = 1,
5902 Rank = 6,
5903 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5904 Regiment = "Shadow Company",
5905 Health = 100,
5906 Bodygroups = "0111001",
5907} )
5908
5909TEAM_DOOM_SGTM = CreateTeam( "Captain Heavy", {
5910 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5911 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dlt19", "tfa_swch_dc17", "climb_swep2", "weapon_camo"},
5912 Colour = Color( 34, 89, 114 ),
5913 Side = 1,
5914 Rank = 11,
5915 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5916 Regiment = "Shadow Company",
5917 Health = 100,
5918 Bodygroups = "0111001",
5919} )
5920
5921TEAM_DOOM_SGTM = CreateTeam( "Shadow Medic Trooper", {
5922 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5923 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator"},
5924 Colour = Color( 34, 89, 114 ),
5925 Side = 1,
5926 Rank = 5,
5927 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5928 Regiment = "Shadow Company",
5929 Health = 100,
5930 Bodygroups = "0101001000",
5931} )
5932
5933TEAM_DOOM_SGTM = CreateTeam( "Shadow Medic Sergeant", {
5934 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5935 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator", "weapon_camo"},
5936 Colour = Color( 34, 89, 114 ),
5937 Side = 1,
5938 Rank = 5,
5939 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5940 Regiment = "Shadow Company",
5941 Health = 100,
5942 Bodygroups = "0101001000",
5943} )
5944
5945TEAM_DOOM_SGTM = CreateTeam( "Medic Lieutenant", {
5946 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5947 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator", "weapon_camo"},
5948 Colour = Color( 34, 89, 114 ),
5949 Side = 1,
5950 Rank = 6,
5951 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5952 Regiment = "Shadow Company",
5953 Health = 100,
5954 Bodygroups = "0111001000",
5955} )
5956
5957TEAM_DOOM_SGTM = CreateTeam( "Medic Captain", {
5958 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5959 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator", "weapon_camo"},
5960 Colour = Color( 34, 89, 114 ),
5961 Side = 1,
5962 Rank = 7,
5963 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5964 Regiment = "Shadow Company",
5965 Health = 100,
5966 Bodygroups = "0111001000",
5967} )
5968
5969TEAM_DOOM_SGTM = CreateTeam( "Medic Commander", {
5970 Description = "Sergeant-Major of the models/gonzo/swbf2arc/arcrg/arcrg.mdl Company",
5971 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "climb_swep2", "weapon_bactanade", "weapon_bactainjector", "weapon_defibrillator", "weapon_camo"},
5972 Colour = Color( 34, 89, 114 ),
5973 Side = 1,
5974 Rank = 8,
5975 Model = "models/gonzo/swbf2arc/arcrg/arcrg.mdl",
5976 Regiment = "Shadow Company",
5977 Health = 100,
5978 Bodygroups = "0110101000",
5979} )
5980
5981TEAM_DOOM_SGTM = CreateTeam( "Gonk Droid", {
5982 Description = "Jedi Youngling of the Jedi Order",
5983 Weapons = {"weapon_bfg_csgo_zeusx27"},
5984 Colour = Color( 218, 255, 188 ),
5985 Side = 1,
5986 Rank = 11,
5987 Model = "models/KingPommes/emperors_tower/ph_props/gnk_droid/gnk_droid.mdl",
5988 Regiment = "Droids",
5989 Health = 150,
5990 Runspeed = 230,
5991 Walkspeed = 55,
5992} )
5993
5994TEAM_DOOM_SGTM = CreateTeam( "Turbo Gonk Droid", {
5995 Description = "Jedi Youngling of the Jedi Order",
5996 Weapons = {"weapon_bfg_csgo_zeusx27"},
5997 Colour = Color( 218, 255, 188 ),
5998 Side = 1,
5999 Rank = 11,
6000 Model = "models/KingPommes/playermodels/gnk_550.mdl",
6001 Regiment = "Droids",
6002 Health = 230,
6003 Runspeed = 230,
6004 Walkspeed = 75,
6005} )
6006
6007TEAM_DOOM_SGTM = CreateTeam( "MSE-6 Mouse Droid", {
6008 Description = "Jedi Youngling of the Jedi Order",
6009 Weapons = {"weapon_bfg_csgo_zeusx27"},
6010 Colour = Color( 218, 255, 188 ),
6011 Side = 1,
6012 Rank = 11,
6013 Model = "models/KingPommes/emperors_tower/ph_props/mouse_droid/mouse_droid.mdl",
6014 Regiment = "Droids",
6015 Health = 80,
6016 Runspeed = 330,
6017 Walkspeed = 120,
6018} )
6019
6020TEAM_DOOM_SGTM = CreateTeam( "LIN-V8K", {
6021 Description = "Jedi Youngling of the Jedi Order",
6022 Weapons = {"weapon_bfg_csgo_zeusx27"},
6023 Colour = Color( 218, 255, 188 ),
6024 Side = 1,
6025 Rank = 11,
6026 Model = "models/KingPommes/emperors_tower/ph_props/Lin_droid/lin_droid.mdl",
6027 Regiment = "Droids",
6028 Health = 80,
6029 Runspeed = 120,
6030 Walkspeed = 100,
6031 Modelscale = 0.8,
6032} )
6033
6034TEAM_DOOM_SGTM = CreateTeam( "WED-15", {
6035 Description = "Jedi Youngling of the Jedi Order",
6036 Weapons = {"weapon_bfg_csgo_zeusx27"},
6037 Colour = Color( 218, 255, 188 ),
6038 Side = 1,
6039 Rank = 11,
6040 Model = "models/KingPommes/emperors_tower/ph_props/wed_15/wed_15.mdl",
6041 Regiment = "Droids",
6042 Health = 80,
6043 Runspeed = 120,
6044 Walkspeed = 100,
6045 Modelscale = 0.8,
6046} )
6047
6048TEAM_DOOM_SGTM = CreateTeam( "R5 Unit", {
6049 Description = "Jedi Youngling of the Jedi Order",
6050 Weapons = {"tfa_sparks_wristblue", "weapon_jetpack", "weapon_bfg_csgo_zeusx27"},
6051 Colour = Color( 218, 255, 188 ),
6052 Side = 1,
6053 Rank = 11,
6054 Model = "models/KingPommes/emperors_tower/ph_props/rx_unit/r5_j2.mdl",
6055 Regiment = "Droids",
6056 Health = 80,
6057 Runspeed = 240,
6058 Walkspeed = 100,
6059 Modelscale = 0.8,
6060 Bodygroups = "44444444444444"
6061} )
6062
6063TEAM_DOOM_SGTM = CreateTeam( "R4 Unit", {
6064 Description = "Jedi Youngling of the Jedi Order",
6065 Weapons = {"tfa_sparks_wristblue", "weapon_jetpack", "weapon_bfg_csgo_zeusx27"},
6066 Colour = Color( 218, 255, 188 ),
6067 Side = 1,
6068 Rank = 11,
6069 Model = "models/KingPommes/emperors_tower/ph_props/rx_unit/r4_i9.mdl",
6070 Regiment = "Droids",
6071 Health = 80,
6072 Runspeed = 240,
6073 Walkspeed = 100,
6074 Modelscale = 0.8,
6075 Bodygroups = "4444444444444444"
6076} )
6077
6078TEAM_DOOM_SGTM = CreateTeam( "R2 Unit", {
6079 Description = "Jedi Youngling of the Jedi Order",
6080 Weapons = {"tfa_sparks_wristblue", "weapon_jetpack", "weapon_bfg_csgo_zeusx27"},
6081 Colour = Color( 218, 255, 188 ),
6082 Side = 1,
6083 Rank = 11,
6084 Model = "models/KingPommes/emperors_tower/ph_props/rx_unit/r2_q5.mdl",
6085 Regiment = "Droids",
6086 Health = 80,
6087 Runspeed = 240,
6088 Walkspeed = 100,
6089 Modelscale = 0.8,
6090 Bodygroups = "44444444444"
6091} )
6092
6093TEAM_NAVY_PETTY = CreateTeam( "Janitor", {
6094 Description = "Petty Officer of the Republic Navy",
6095 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
6096 Colour = Color( 0, 61, 187 ),
6097 Side = 1,
6098 Rank = 11,
6099 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
6100 Regiment = "Republic Navy",
6101 Health = 100,
6102 Bodygroups = "0000"
6103} )
6104
6105TEAM_NAVY_PETTY = CreateTeam( "Janitor", {
6106 Description = "Petty Officer of the Republic Navy",
6107 Weapons = {"tfa_swch_dc17", "weapon_bactainjector"},
6108 Colour = Color( 0, 61, 187 ),
6109 Side = 1,
6110 Rank = 11,
6111 Model = "models/smitty/bf2_reg/blue_officer/blue_officer.mdl",
6112 Regiment = "Republic Navy",
6113 Health = 100,
6114 Bodygroups = "0000"
6115} )
6116
6117TEAM_MEDIC_TROOPER = CreateTeam( "Medic Green Company Trooper", {
6118 Description = "Trooper of the 104th Wolfpack",
6119 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6120 Colour = Color( 35, 124, 32 ),
6121 Side = 1,
6122 Rank = 1,
6123 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6124 Regiment = "Green Company",
6125 Health = 100,
6126 Bodygroups = "01000000",
6127} )
6128
6129TEAM_MEDIC_LCP = CreateTeam( "Medic Green Company Lance-Corporal", {
6130 Description = "Lance-Corporal of the 104th Wolfpack",
6131 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6132 Colour = Color( 35, 124, 32 ),
6133 Side = 1,
6134 Rank = 1,
6135 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6136 Regiment = "Green Company",
6137 Health = 100,
6138 Bodygroups = "01000000",
6139} )
6140
6141TEAM_MEDIC_CPL = CreateTeam( "Medic Green Company Corporal", {
6142 Description = "Corporal of the 104th Wolfpack",
6143 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6144 Colour = Color( 35, 124, 32 ),
6145 Side = 1,
6146 Rank = 3,
6147 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6148 Regiment = "Green Company",
6149 Health = 100,
6150 Bodygroups = "01000000",
6151} )
6152
6153TEAM_MEDIC_SGT = CreateTeam( "Medic Green Company Sergeant", {
6154 Description = "Sergeant of the 104th Wolfpack",
6155 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6156 Colour = Color( 35, 124, 32 ),
6157 Side = 1,
6158 Rank = 4,
6159 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6160 Regiment = "Green Company",
6161 Health = 100,
6162 Bodygroups = "01010000",
6163} )
6164
6165TEAM_MEDIC_SGTM = CreateTeam( "Medic Green Company Sergeant-Major", {
6166 Description = "Sergeant-Major of the 104th Wolfpack",
6167 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6168 Colour = Color( 35, 124, 32 ),
6169 Side = 1,
6170 Rank = 5,
6171 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6172 Regiment = "Green Company",
6173 Health = 100,
6174 Bodygroups = "01010000",
6175} )
6176
6177TEAM_MEDIC_WO = CreateTeam( "Medic Warrant Officer", {
6178 Description = "Warrant Officer of the 104th Wolfpack",
6179 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6180 Colour = Color( 35, 124, 32 ),
6181 Side = 1,
6182 Rank = 6,
6183 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6184 Regiment = "Green Company",
6185 Health = 100,
6186 Bodygroups = "01110000",
6187} )
6188
6189
6190TEAM_MEDIC_2LT = CreateTeam( "Medic 2nd Lieutenant", {
6191 Description = "2nd Lieutenant of the 104th Wolfpack",
6192 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6193 Colour = Color( 35, 124, 32 ),
6194 Side = 1,
6195 Rank = 7,
6196 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6197 Regiment = "Green Company",
6198 Health = 100,
6199 Bodygroups = "01110000",
6200} )
6201
6202TEAM_MEDIC_LT = CreateTeam( "Medic Lieutenant", {
6203 Description = "Lieutenant of the 104th Wolfpack",
6204 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2"},
6205 Colour = Color( 35, 124, 32 ),
6206 Side = 1,
6207 Rank = 8,
6208 Model = "models/gonzo/keeliarcmedgcmed/gcmed/gcmed.mdl",
6209 Regiment = "Green Company",
6210 Health = 100,
6211 Bodygroups = "01110000",
6212} )
6213
6214TEAM_MEDIC_CPT = CreateTeam( "4th Recon Scout", {
6215 Description = "Trooper of the 4th Recon Division",
6216 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars"},
6217 Colour = Color( 255, 204, 49 ),
6218 Side = 1,
6219 Rank = 1,
6220 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6221 Regiment = "4th Recon Division",
6222 Health = 100,
6223 Bodygroups = "010000001",
6224} )
6225
6226TEAM_327thK_TROOPER = CreateTeam( "187th Commander", {
6227 Description = "Trooper of the Cthulu Company Legion",
6228 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc15sa", "climb_swep2", "weapon_jetpack", "weapon_frag"},
6229 Colour = Color( 122, 66, 244 ),
6230 Side = 1,
6231 Rank = 12,
6232 Model = "models/gonzo/rancorarfand187th/187thbeowulf/187thbeowulf.mdl",
6233 Regiment = "187th Legion",
6234 Health = 100,
6235 Bodygroups = "011001111",
6236} )
6237
6238TEAM_327thK_LCP = CreateTeam( "Death Company ARF", {
6239 Description = "Trooper of the 612th Attack Battalion",
6240 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "tfa_sw_repsnip"},
6241 Colour = Color( 5, 182, 81 ),
6242 Side = 1,
6243 Rank = 1,
6244 Model = "models/gonzo/deathcompanytroopers/dcarf/dcarf.mdl",
6245 Regiment = "Death Company",
6246 Health = 100,
6247 Bodygroups = "0010001",
6248} )
6249
6250TEAM_327thK_CPL = CreateTeam( "Death Company Demolitionist", {
6251 Description = "Trooper of the 612th Attack Battalion",
6252 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "tfa_swch_clonelauncher"},
6253 Colour = Color( 5, 182, 81 ),
6254 Side = 1,
6255 Rank = 1,
6256 Model = "models/gonzo/deathcompanytroopers/dcdemolitionist/dcdemolitionist.mdl",
6257 Regiment = "Death Company",
6258 Health = 100,
6259 Bodygroups = "010000100",
6260} )
6261
6262TEAM_327thK_SGT = CreateTeam( "Death Company Juggernaut", {
6263 Description = "Trooper of the 612th Attack Battalion",
6264 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2", "tfa_sparks_wristblue"},
6265 Colour = Color( 5, 182, 81 ),
6266 Side = 1,
6267 Rank = 1,
6268 Model = "models/gonzo/deathcompanytroopers/dcjuggernaut/dcjuggernaut.mdl",
6269 Regiment = "Death Company",
6270 Health = 500,
6271 Bodygroups = "0",
6272} )
6273
6274TEAM_327thK_SGTM = CreateTeam( "Death Company Pilot", {
6275 Description = "Trooper of the 612th Attack Battalion",
6276 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_camo" , "weapon_cuff_elastic","weapon_leash_elastic", "weapon_bfg_csgo_zeusx27", "weapon_policeshield", "climb_swep2"},
6277 Colour = Color( 5, 182, 81 ),
6278 Side = 1,
6279 Rank = 1,
6280 Model = "models/gonzo/deathcompanytroopers/dcpilot/dcpilot.mdl",
6281 Regiment = "Death Company",
6282 Health = 100,
6283 Bodygroups = "000",
6284} )
6285
6286TEAM_327thK_WO = CreateTeam( "Blackout Battalion Jump", {
6287 Description = "Warrant Officer of the Cthulu Company Legion",
6288 Weapons = {"tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_jetpack"},
6289 Colour = Color( 0, 6, 17 ),
6290 Side = 1,
6291 Rank = 1,
6292 Model = "models/gonzo/cglotsofclones/blackouttrooper/blackouttrooper.mdl",
6293 Regiment = "Blackout Battalion",
6294 Health = 100,
6295 Bodygroups = "010000101",
6296} )
6297
6298TEAM_327thK_2LT = CreateTeam( "4th Recon Medic", {
6299 Description = "Medic of the 4th Recon Division",
6300 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_bactainjector", "weapon_bactanade", "weapon_defibrillator", "climb_swep2", "tfa_sw_repsnip", "weapon_rpw_binoculars"},
6301 Colour = Color( 255, 204, 49 ),
6302 Side = 1,
6303 Rank = 4,
6304 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6305 Regiment = "4th Recon Division",
6306 Health = 100,
6307 Bodygroups = "010000101",
6308} )
6309
6310TEAM_327thK_LT = CreateTeam( "104th Pilot Trooper", {
6311 Description = "Pilot of 104th Wolfpack",
6312 Weapons = {"tfa_swch_dc15a", "tfa_swch_dc17", "climb_swep2"},
6313 Colour = Color( 173, 173, 173 ),
6314 Side = 1,
6315 Rank = 1,
6316 Model = "models/gonzo/wolfpackpilot501stjuggernaut/wolfpackpilot/wolfpackpilot.mdl",
6317 Regiment = "104th Wolfpack",
6318 Health = 100,
6319 Bodygroups = "010000000",
6320} )
6321
6322 TEAM_ARC_SGT = CreateTeam( "187th ARC Sergeant", {
6323 Description = "Sergeant of the Advanced Recon Commandos",
6324 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
6325 Colour = Color( 122, 66, 244 ),
6326 Side = 1,
6327 Rank = 5,
6328 Model = "models/gonzo/rancorarfand187th/187tharc2/187tharc2.mdl",
6329 Regiment = "187th Legion",
6330 Health = 100,
6331 Bodygroups = "011000111",
6332} )
6333
6334TEAM_ARC_LT = CreateTeam( "187th ARC Lieutenant", {
6335 Description = "Lieutenant of the Advanced Recon Commandos",
6336 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
6337 Colour = Color( 122, 66, 244 ),
6338 Side = 1,
6339 Rank = 8,
6340 Model = "models/gonzo/rancorarfand187th/187tharc2/187tharc2.mdl",
6341 Regiment = "187th Legion",
6342 Health = 100,
6343 Bodygroups = "011000111",
6344} )
6345
6346TEAM_ARC_CPT = CreateTeam( "187th ARC Captain", {
6347 Description = "Captain of the Advanced Recon Commandos",
6348 Weapons = {"tfa_swch_alphablaster", "tfa_swch_dc15a", "tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag", "climb_swep2", "weapon_jetpack"},
6349 Colour = Color( 122, 66, 244 ),
6350 Side = 1,
6351 Rank = 12,
6352 Model = "models/gonzo/rancorarfand187th/187tharc2/187tharc2.mdl",
6353 Regiment = "187th Legion",
6354 Health = 100,
6355 Bodygroups = "011000111",
6356} )
6357
6358TEAM_ARC_CPT = CreateTeam( "4th Recon", {
6359 Description = "Leader of the 4th Recon Division",
6360 Weapons = {"tfa_swch_alphablaster", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "weapon_frag", "climb_swep2", "tfa_swch_dc17", "weapon_rpw_binoculars"},
6361 Colour = Color( 255, 204, 49 ),
6362 Side = 1,
6363 Rank = 12,
6364 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6365 Regiment = "4th Recon Division",
6366 Health = 100,
6367 Bodygroups = "010010101",
6368} )
6369
6370TEAM_ARC_CPT = CreateTeam( "4th Recon Specialist", {
6371 Description = "Specialist of the 4th Recon Division",
6372 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "weapon_camo", "tfa_swch_dc17", "weapon_rpw_binoculars"},
6373 Colour = Color( 255, 204, 49 ),
6374 Side = 1,
6375 Rank = 4,
6376 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6377 Regiment = "4th Recon Division",
6378 Health = 100,
6379 Bodygroups = "010010001",
6380} )
6381
6382TEAM_ARC_CPT = CreateTeam( "4th Recon Heavy", {
6383 Description = "Heavy of 4th Recon Division",
6384 Weapons = {"tfa_752_dc15s_expanded", "climb_swep2", "weapon_frag", "tfa_swch_z6", "tfa_swch_dc17", "weapon_rpw_binoculars"},
6385 Colour = Color( 255, 204, 49 ),
6386 Side = 1,
6387 Rank = 4,
6388 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6389 Regiment = "4th Recon Division",
6390 Health = 150,
6391 Bodygroups = "010001101",
6392} )
6393
6394TEAM_ARC_CPT = CreateTeam( "4th Recon Jump Trooper", {
6395 Description = "Jump Trooper of the 4th Recon Division",
6396 Weapons = {"tfa_swch_dc17m_br", "tfa_752_dc15s_expanded", "tfa_sw_repsnip", "climb_swep2", "weapon_jetpack", "tfa_swch_dc17", "weapon_rpw_binoculars"},
6397 Colour = Color( 255, 204, 49 ),
6398 Side = 1,
6399 Rank = 4,
6400 Model = "models/gonzo/wolfpackpilot501stjuggernaut/4thscout/4thscout.mdl",
6401 Regiment = "4th Recon Division",
6402 Health = 100,
6403 Bodygroups = "010010011",
6404} )
6405
6406TEAM_ARC_CPT = CreateTeam( "784th Odahviing Commander", {
6407 Description = "Trooper of TigerSquad",
6408 Weapons = {"tfa_swch_dc15sa", "climb_swep2", "tfa_752_dc15s_expanded", "weapon_rpw_binoculars_scout", "tfa_sw_repsnip", "weapon_camo"},
6409 Colour = Color( 247, 59, 59 ),
6410 Side = 1,
6411 Rank = 1,
6412 Model = "models/gonzo/tigersquad/tscommander/tscommander.mdl",
6413 Regiment = "784th Odahviing Platoon",
6414 Health = 100,
6415 Bodygroups = "0110011100",
6416} )
6417
6418TEAM_ARC_CPT = CreateTeam( "Lance-Corporal", {
6419 Description = "Trooper of TigerSquad",
6420 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
6421 Colour = Color( 247, 59, 59 ),
6422 Side = 1,
6423 Rank = 2,
6424 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6425 Regiment = "Broken",
6426 Health = 100,
6427 Bodygroups = "01",
6428} )
6429
6430TEAM_ARC_CPT = CreateTeam( "Corporal", {
6431 Description = "Trooper of TigerSquad",
6432 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17"},
6433 Colour = Color( 247, 59, 59 ),
6434 Side = 1,
6435 Rank = 3,
6436 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6437 Regiment = "Broken",
6438 Health = 100,
6439 Bodygroups = "01",
6440} )
6441
6442TEAM_ARC_CPT = CreateTeam( "Sergeant", {
6443 Description = "Trooper of TigerSquad",
6444 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6445 Colour = Color( 247, 59, 59 ),
6446 Side = 1,
6447 Rank = 4,
6448 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6449 Regiment = "Broken",
6450 Health = 100,
6451 Bodygroups = "0100001",
6452} )
6453
6454TEAM_ARC_CPT = CreateTeam( "Sergeant-Major", {
6455 Description = "Trooper of TigerSquad",
6456 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6457 Colour = Color( 247, 59, 59 ),
6458 Side = 1,
6459 Rank = 5,
6460 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6461 Regiment = "Broken",
6462 Health = 100,
6463 Bodygroups = "0100001",
6464} )
6465
6466TEAM_ARC_CPT = CreateTeam( "Warrant Officer", {
6467 Description = "Trooper of TigerSquad",
6468 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6469 Colour = Color( 247, 59, 59 ),
6470 Side = 1,
6471 Rank = 6,
6472 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6473 Regiment = "Broken",
6474 Health = 100,
6475 Bodygroups = "0100001",
6476} )
6477
6478TEAM_ARC_CPT = CreateTeam( "2nd Lieutenant", {
6479 Description = "Trooper of TigerSquad",
6480 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6481 Colour = Color( 247, 59, 59 ),
6482 Side = 1,
6483 Rank = 7,
6484 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6485 Regiment = "Broken",
6486 Health = 100,
6487 Bodygroups = "0110001",
6488} )
6489
6490TEAM_ARC_CPT = CreateTeam( "Lieutenant", {
6491 Description = "Trooper of TigerSquad",
6492 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6493 Colour = Color( 247, 59, 59 ),
6494 Side = 1,
6495 Rank = 8,
6496 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6497 Regiment = "Broken",
6498 Health = 100,
6499 Bodygroups = "0110001",
6500} )
6501
6502TEAM_ARC_CPT = CreateTeam( "Captain", {
6503 Description = "Trooper of TigerSquad",
6504 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6505 Colour = Color( 247, 59, 59 ),
6506 Side = 1,
6507 Rank = 9,
6508 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6509 Regiment = "Broken",
6510 Health = 100,
6511 Bodygroups = "01100011",
6512} )
6513
6514TEAM_ARC_CPT = CreateTeam( "Major", {
6515 Description = "Trooper of TigerSquad",
6516 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6517 Colour = Color( 247, 59, 59 ),
6518 Side = 1,
6519 Rank = 10,
6520 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6521 Regiment = "Broken",
6522 Health = 100,
6523 Bodygroups = "0110001101",
6524} )
6525
6526TEAM_ARC_CPT = CreateTeam( "Battalion Commander", {
6527 Description = "Trooper of TigerSquad",
6528 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6529 Colour = Color( 247, 59, 59 ),
6530 Side = 1,
6531 Rank = 11,
6532 Model = "models/gonzo/tigersquad/tstrooper/tstrooper.mdl",
6533 Regiment = "Broken",
6534 Health = 100,
6535 Bodygroups = "01100111",
6536} )
6537
6538TEAM_ARC_CPT = CreateTeam( "Commander", {
6539 Description = "Trooper of TigerSquad",
6540 Weapons = {"tfa_752_dc15s_expanded", "tfa_swch_dc17", "weapon_frag"},
6541 Colour = Color( 247, 59, 59 ),
6542 Side = 1,
6543 Rank = 12,
6544 Model = "models/gonzo/tigersquad/tscommander/tscommander.mdl",
6545 Regiment = "Broken",
6546 Health = 100,
6547 Bodygroups = "01100111",
6548} )