forked from JohnnyCheese/TTS_X-Wing2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataPad.a4dbbf.ttslua
More file actions
6655 lines (6162 loc) · 334 KB
/
DataPad.a4dbbf.ttslua
File metadata and controls
6655 lines (6162 loc) · 334 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- List Builder for X-Wing 2.0
-- ~~~~~~
-- Script by Johnny Cheese
--
-- This module creates a set of buttons and text input on an object.
-- Script has 3 main modules: FFG spawner, TTS spawner and Squad Builder.
-- FFG spawner receives the link for a saved FFG web site squad and spawns said squad.
-- TTS spawner receives a string containingthe name of all pilots and upgrades and set up a table wich will be passed to the global newSpawner function.
-- Squad Builder offers options to build a squad, but does not apply any restrictions other than faction specific cards.
-- The cards with the same name are diferentiated by faction when possible, and will if needed, the script inquires the player wich version is being summoned.
-- The inquire happens in cases of pilots on the same faction using different ships (Sabine, Ezra, "Zeb") and in cases of upgrades with the same name (R2-D2 crew and astromech)
-- ~~~~~~
self.interactable = false
--[[
tintColors = {}
tintColors[0] = color(0,0,0,0.0)
tintColors[1] = color(255/255, 230/255, 137/255, 0.8)
tintColors[2] = color(243/255, 99/255, 28/255, 0.8)
tintColors[3] = color(230/255, 40/255, 56/255, 0.8)
tintColors[4] = color(173/255, 250/255, 190/255, 0.8)
tintColors[5] = color( 21/255, 21/255, 168/255, 0.8)
tintColors[6] = color(238/255, 120/255, 234/255 ,0.8)
tintColors[7] = color(255/255, 255/255, 255/255, 0.8)
tintColors[8] = color(168/255, 241/255, 249/255, 0.8)]]
tintColors = {}
tintColors[0] = color(0,0,0,0.0)
tintColors[1] = color(1,0,0,1.0)
tintColors[2] = color(1,1,0,1.0)
tintColors[3] = color(0,0.5,0,2.0)
tintColors[4] = color(0.5,0.25,0.1,1.0)
tintColors[5] = color(0,0,1,1.0)
tintColors[6] = color(1,0,0.8,1.0)
tintColors[7] = color(1,1,1,1.0)
tintColors[8] = color(0.5,0.5,0.5,1.0)
-- List and cost of variable cost upgrades based on base sizea
varCostS={}
varCostS[296] = {small = 2, medium = 4, large = 7, huge = 0} --Engine Upgrade
varCostS[234] = {small = 2, medium = 3, large = 4, huge = 0} --Expert Handling
varCostS[489] = {small = 3, medium = 6, large = 9, huge = 0} --Hate
varCostS[612] = {small = 7, medium = 8, large = 9, huge = 12} --Snap Shot
varCostS[281] = {small = 12, medium = 9, large = 7, huge = 7} --Veteran turret gunner
varCostS[388] = {small = 7, medium = 6, large = 5, huge = 4} -- Agile gunner
-- List and cost of variable cost upgrades based on agility value
varCostA={}
varCostA[282] = {[0] = 3,[1] = 5,[2] = 7,[3] = 9} --R2 Astromech
varCostA[297] = {[0] = 2,[1] = 3,[2] = 5,[3] = 7} --Hull Upgrade
varCostA[299] = {[0] = 3,[1] = 4,[2] = 6,[3] = 8} --Shield Upgrade
varCostA[301] = {[0] = 3,[1] = 4,[2] = 6,[3] = 8} --Stealth Device
varCostA[315] = {[0] = 4,[1] = 6,[2] = 8,[3] = 10} --R2-D2 (Astromech)
varCostI={}
varCostI[245]={[0]=2,[1]=4,[2]=6,[3]=8,[4]=10,[5]=12,[6]=14} --Squad Leader
varCostI[246]={[0]=3,[1]=3,[2]=3,[3]=3,[4]=3,[5]=4,[6]=5} --Swarm Tactics
varCostI[276]={[0]=2,[1]=3,[2]=4,[3]=5,[4]=6,[5]=7,[6]=8} --Seasoned Navigator
varCostI[290]={[0]=0,[1]=1,[2]=2,[3]=3,[4]=4,[5]=5,[6]=6} --Inertial Dampeners
varCostI[463]={[0]=4,[1]=5,[2]=6,[3]=7,[4]=8,[5]=9,[6]=10} -- Primed Thrusters
varCostI[251]={[0]=4,[1]=4,[2]=4,[3]=8,[4]=16,[5]=24,[6]=32} --Supernatural Reflexes
varCostI[479]={[0]=2,[1]=3,[2]=4,[3]=5,[4]=6,[5]=7,[6]=8} -- BB8
varCostI[480]={[0]=0,[1]=1,[2]=2,[3]=3,[4]=4,[5]=5,[6]=6} -- bb astromech
varCostI[545]={[0]=0,[1]=2,[2]=4,[3]=4,[4]=6,[5]=8,[6]=10} -- Battle Meditation
varCostI[548]={[0]=14,[1]=15,[2]=16,[3]=15,[4]=18,[5]=21,[6]=24} -- Delta-7B
varCostI[549]={[0]=0,[1]=0,[2]=1,[3]=2,[4]=3,[5]=4,[6]=5} -- Calibrated laser Targeting
varCostI[614]={[0]=3,[1]=3,[2]=3,[3]=4,[4]=7,[5]=10,[6]=13} -- Precognitive Reflexes
varCostI[610]={[0]=21,[1]=21,[2]=21,[3]=21,[4]=21,[5]=24,[6]=28} -- Ensnare
varCostI[577]={[0]=2,[1]=2,[2]=2,[3]=2,[4]=2,[5]=4,[6]=6} -- Passive Sensors
--tables referenced by upgrades that adds actions to ships
addAction={}
addAction[294]={[1]='B'} --Afterbuners
addAction[231]={[1]='Dare'} --Daredevil
addAction[232]={[1]='E'} --Debris Gambit
addAction[304]={[1]='C'} --C3PO Reb
addAction[311]={[1]='F',[2]='E'} --Lando Calrissian Reb
addAction[313]={[1]='TL'} --Magva Yarro
addAction[474]={[1]='E'} --Han Solo Res
addAction[327]={[1]='E'}--Millenium Falcon Reb (E)
addAction[472]={[1]='C'}--C-3PO Res (C)
addAction[616]={[1]='C'}--C-3PO Rep (C)
addAction[475]={[1]='TL'}--Rose Tico (TL)
addAction[331]={[1]='Piv'}--Pivot Wing (Pivot)
addAction[332]={[1]='Piv'}--Pivot Wing (Pivot)
addAction[333]={[1]='B'}--Servomotor (B)
addAction[334]={[1]='B'}--Servomotor (B)
addAction[251]={[1]='B',[2]='BR'}--Supernatural Reflexes (B,BR)
addAction[479]={[1]='BR'}--BB-8 (B,BR)
addAction[480]={[1]='BR'}--BB Astro (BR)
addAction[340]={[1]='TL'}--Krennic (TL)
addAction[486]={[1]='BR'}--Integrated S-Foils (BR)
addAction[487]={[1]='BR'}--Integrated S-Foils (BR)
addAction[345]={[1]='R'}--Minister Tua (Reinforce)
addAction[531]={[1]='C'}--Kraken(C)
addAction[352]={[1]='C'}-- 0-0-0 (C)
addAction[535]={[1]='Piv'}--Grappling Struts (Pivot)
addAction[555]={[1]='Piv'}--Grappling Struts (Pivot)
addAction[594]={[1]='Piv'}--Landing Struts(Pivot)
addAction[595]={[1]='Piv'}--Landing Struts(Pivot)
addAction[355]={[1]='B'}--Cad Bane (B)
addAction[357]={[1]='C'}--IG-88D (C)
addAction[542]={[1]='CL'}--Scimitar (CL)
addAction[286]={[1]='CL'}--Cloaking Device (CL)
addAction[551]={[1]='C'}--R4-P44 (C)
addAction[577]={[1]='C',[2]='TL'}--Passive Sensors(C,TL)
addAction[376]={[1]='BR'}--Mist Hunter(BR)
addAction[582]={[1]='C'}--GA-97(C)
addAction[381]={[1]='F'}--Composure(F)
addAction[587]={[1]='C'}--PZ-4CO (C)
addAction[593]={[1]='R'}--Angled Deflectors (Reinforce)
addAction[704]={[1]='C'}--K-2SO (C)
addAction[391]={[1]='TL'}--ST-321 (TL)
addAction[619]={[1]='TL'}--Targeting computer (TL)
addAction[1007]={'E'} --Carlist Rieekan (E)
addAction[1016]={'TL'} --Toryn Farr (TL)
addAction[1017]={'TL', 'C'} --Bombardment Specialists (TL, C)
addAction[1018]={'C'} --Comm Teams (C)
addAction[1019]={'R','C'} --Damage Control Team (R, C)
addAction[1020]={'C'} -- GunnerySpecialists (C)
addAction[1021]={'C'} -- IG-RM Droids (C)
addAction[1022]={'C'} -- Ordinance Team (C)
addAction[1023]={'TL','C'} -- SensorExperts (TL, C)
addAction[1031]={'E','F'} -- DodonnasPride (E,F)
addAction[1040]={'C'} -- Corvus (C)
addAction[1048]={'E'} -- Merchant One (E)
--table referenced by upgrades that adds actions to all ships in a squad.
addSqdAction={}
addSqdAction[309]={[1]='E'} --Jyn Erso
addSqdAction[337]={[1]='Piv'}--Ciena Ree (Pivot)
addSqdAction[346]={[1]='B'}--Moff Jerjerrod (B)
addSqdAction[538]={[1]='F'}--Darth Sidious (F)
addSqdAction[554]={[1]='TL'}--Synchronized Console (TL)
addSqdAction[1046]={'E','B'}--Vector (E, B)
-- FFG uses full name on factions, so a conversion is needed
ffgFaction = {}
ffgFaction[0] = 'Dum'
ffgFaction[1] = 'Reb'
ffgFaction[2] = 'Imp'
ffgFaction[3] = 'Scu'
ffgFaction[4] = 'Res'
ffgFaction[5] = 'For'
ffgFaction[6] = 'Rep'
ffgFaction[7] = 'Cis'
cardBackDB = {}
cardBackDB['Dum'] = ''
cardBackDB['Reb'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Rebelback.png'
cardBackDB['Imp'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Empireback.png'
cardBackDB['Scu'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Scumback.png'
cardBackDB['Res'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Resback.jpg'
cardBackDB['For'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/FOback.png'
cardBackDB['Rep'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/REPback.jpg'
cardBackDB['Cis'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/CISback.jpg'
cardBackDB['1'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Eptupgrade.png' -- EPT
cardBackDB['2'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/systemupg.png' -- Sensor
cardBackDB['3'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Cannonup.png' -- Cannon
cardBackDB['4'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/turrups.png' -- Turret
cardBackDB['5'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/torpups.png' -- Torpedo
cardBackDB['6'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/missileupg.png' -- Missile
cardBackDB['6b'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/DualMissile.png' -- Dual Missile
cardBackDB['7'] = '' --
cardBackDB['8'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Crew.png' -- Crew
cardBackDB['8b'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/DualCrew.png' -- Dual Crew
cardBackDB['9'] = ''
cardBackDB['10'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Astro.png' --Astromech
cardBackDB['11'] = ''
cardBackDB['12'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Device.png' -- Device
cardBackDB['12b'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/DualDevice.png' -- DualDevice
cardBackDB['13'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Illicit.png' -- Ilicit
cardBackDB['14'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Modification.png' -- Modification
cardBackDB['15'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Title.png' -- Title
cardBackDB['16'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Gunner.png' -- Gunner
cardBackDB['17'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Force.png' -- Force Power
cardBackDB['18'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Config.png' -- Configuration
cardBackDB['19'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Tech.jpg' -- Tech
cardBackDB['20'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Relay.jpg' -- Droid (PLACEHOLDER - TO DO)
cardBackDB['21'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Back_Epic.png' -- Command
cardBackDB['22'] = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Back_Cargo.png' -- Cargo
cardBackDB['23'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/Back_Staff.png' -- Team
cardBackDB['mc'] = 'http://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/textures/cardback/ModConfig.jpg' -- mod and config
-- Attempt on Unified Data Base, based on XWS (dropped after w1, too much hassle) and FFG conversion table
masterShipDB={}
masterShipDB[0]={['name']='',['Hull']=0,['Shield']=0,['size']='small',['agi']=1,['XWS']='',['Fac']={[0]=true},['arcs']={'front'}}
masterShipDB[1]={
name = 'Modified YT-1300',
Hull = 8,
Shield = 5,
dTurret = 1,
size = 'large',
agi = 1,
XWS = 'modifiedyt1300lightfreighter',
Fac = {[1]=true},
arcs = {'doubleturret'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Large/rebel_falcon/rebel_falcon.obj',
moveSet = {'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','rbl3s','wtl3','wbl3','bs3','wbr3','wtr3','rbr3s','ws4','rk4'}
}
masterShipDB[3]={
name = 'StarViper',
Hull = 4,
Shield = 1,
size = 'small',
agi = 3,
XWS = 'starviperclassattackplatform',
Fac = {[3]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/S%26V_starviper/starviper.obj',
moveSet = {'wtl1','bbl1','bs1','bbr1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','rbl3s','wbl3','bs3','wbr3','rbr3s','ws4' }
}
masterShipDB[4]={
name = 'Scurrg H6 Bomber',
Hull = 6,
Shield = 4,
size = 'medium',
agi = 1,
XWS = 'scurrgh6bomber',
Fac = {[3]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/S%26V_scurrg/scurrg.obj',
moveSet = {'bbl1','bs1','bbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3t','rtl3','wbl3','ws3','wbr3','rtr3','rtr3t','rs4'}
}
masterShipDB[5]={
name = 'YT-2400',
Hull = 6,
Shield = 4,
dTurret = 1,
size = 'large',
agi = 2,
XWS = 'yt2400lightfreighter',
Fac = {[1]=true},
arcs = {'doubleturret'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Large/yt2400/yt2400.obj',
moveSet = {'wtl1','bbl1','bs1','bbr1','wtr1','wtl2','wbl2','bs2','wbr2','wtr2','wtl3','wbl3','ws3','wbr3','wtr3','ws4','rk4'}
}
masterShipDB[6]={
name = 'Auzituk Gunship',
Hull = 6,
Shield = 2,
size = 'small',
agi = 1,
XWS = 'auzituckgunship',
Fac = {[1]=true},
arcs = {'fullfront'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/REB_auzituk/auzituk.obj',
moveSet = {'bbl1', 'bs1', 'bbr1','wtl2','wbl2','bs2','wbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rs0'}
}
masterShipDB[7]={
name = 'Khiraxz Fighter',
Hull = 5,
Shield = 1,
size = 'small',
agi = 2,
XWS = 'kihraxzfighter',
Fac = {[3]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/S%26V_khiraxz/khiraxz.obj',
moveSet = {'wtl1','bbl1','bbr1','wtr1','rtl2t','wtl2','bbl2','bs2','bbr2','wtr2','rtr2t','wbl3','bs3','wbr3','ws4','rk4'}
}
masterShipDB[8]={
name = 'Sheathipede Shuttle',
Hull = 3,
Shield = 1,
size = 'small',
agi = 2,
XWS = 'sheathipedeclassshuttle',
Fac = {[1]=true},
arcs = {'front', 'back'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/REB_sheathipede/sheathipede.obj',
moveSet = {'rs1r','wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3','wbl3','bs3','wbr3','rtr3','rk3','rs4'}
}
masterShipDB[9]={
name = 'Quad Jumper',
Hull = 6,
Shield = 0,
size = 'small',
agi = 2,
XWS = 'quadrijettransferspacetug',
Fac = {[3]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/S%26V_quadjumper/quadjumper.obj',
moveSet = {'rbl1r','rbr1r','wtl1','wbl1','ws1','wbr1','wtr1','rs2r','rbl2s','wtl2','bbl2','bs2','bbr2','wtr2','rbr2s','wbl3','bs3','wbr3'}
}
masterShipDB[10]={
name = 'FireSpray',
Hull = 6,
Shield = 4,
size = 'medium',
agi = 2,
XWS = 'firesprayclasspatrolcraft',
Fac = {[3]=true},
arcs = {'front', 'back'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Medium/firespray/firespray.obj',
moveSet = {'wtl1','bbl1','bs1','bbr1','wtr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3t','wbl3','bs3','wbr3','rtr3t','ws4','rk4'}
}
masterShipDB[11]={
name = 'TIE/ln Fighter',
Hull = 6,
Shield = 0,
size = 'small',
agi = 3,
XWS = 'tielnfighter',
Fac = {[1]=true,[2]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/tie_ln/tie_ln.obj',
moveSet = {'wtl1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk3','ws4','rk4','ws5'}
}
masterShipDB[12]={
name = 'Y-Wing',
Hull = 6,
Shield = 2,
size = 'small',
agi = 1,
XWS = 'btla4ywing',
Fac = {[1]=true,[3]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/btla4_ywing/btla4_ywing.obj',
moveSet = {'bbl1', 'bs1', 'bbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rs4','rk4'}
}
masterShipDB[13]={
name = 'TIE Advanced x1',
Hull = 3,
Shield = 2,
size = 'small',
agi = 3,
XWS = 'tieadvancedx1',
Fac = {[2]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/EMP_tieadvx1/tieadvx1.obj',
moveSet = {'bbl1','ws1','bbr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3t','wtl3','wbl3','bs3','wbr3','wtr3','rtr3t','ws4','rk4','ws5'}
}
masterShipDB[14]={
name = 'Alpha Class StarWing',
Hull = 4,
Shield = 3,
size = 'small',
agi = 2,
XWS ='alphaclassstarwing',
Fac = {[2]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/EMP_starwing/starwing.obj',
moveSet = {'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','ws3','wbr3','wtr3','rs4'}
}
masterShipDB[15]={
name = 'U-Wing',
Hull = 5,
Shield = 3,
size = 'medium',
agi = 2,
XWS = 'ut60duwing',
Fac = {[1]=true},
arcs = {'front'},
moveSet = {'bbl1', 'bs1', 'bbr1', 'wtl2', 'bbl2', 'bs2', 'bbr2', 'wtr2','wbl3','ws3','wbr3','ws4','rs0'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/UTD60DUWing/UWing.obj',
config = {
'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/UTD60DUWing/UWing_Open.obj',
'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/UTD60DUWing/UWing_Close.obj'
}
}
masterShipDB[16]={['name']='TIE/sk Striker',['Hull']=4,['Shield']=0,['size']='small',['agi']=2,['XWS']='tieskstriker', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','bbl1','bs1','bbr1','wtr1','rk1','rbl2s','wtl2','bbl2','bs2','bbr2','wtr2','rbr2s','wbl3','bs3','wbr3'}}
masterShipDB[17]={['name']='B-Wing',['Hull']=4,['Shield']=4,['size']='small',['agi']=1,['XWS']='asf01bwing', ['Fac']={[1]=true}, ['arcs']={'front'},
['moveSet']={'rtl1t','rtl1','bbl1','bs1','bbr1','rtr1','rtr1t','wtl2','wbl2','bs2','wbr2','wtr2','rk2','rbl3','bs3','rbr3','rs4'}}
masterShipDB[18]={['name']='TIE/de Defender',['Hull']=3,['Shield']=4,['size']='small',['agi']=3,['XWS']='tieddefender', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','bbl1','bbr1','rtr1','rtl2','wbl2','bs2','wbr2','rtr2','rk2','wtl3','wbl3','bs3','wbr3','wtr3','bs4','wk4','bs5'}}
masterShipDB[19]={['name']='TIE/sa Bomber',['Hull']=6,['Shield']=0,['size']='small',['agi']=2,['XWS']='tiesabomber', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk3','ws4','rk5'}}
masterShipDB[20]={['name']='TIE/ca Punisher',['Hull']=6,['Shield']=3,['size']='medium',['agi']=1,['XWS']='tiecapunisher', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'bbl1','bs1','bbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rk4','rs0'}}
masterShipDB[21]={['name']='Aggressor',['Hull']=5,['Shield']=3,['size']='medium',['agi']=3,['XWS']='aggressorassaultfighter', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','bbl1','bs1','bbr1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','rbl3s','bbl3','bs3','bbr3','rbr3s','ws4','rk4'}}
masterShipDB[22]={['name']='G-1A StarFighter',['Hull']=5,['Shield']=4,['size']='medium',['agi']=1,['XWS']='g1astarfighter', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rk2','rbl3','ws3','rbr3','rs4','rk4','rs0'}}
masterShipDB[23]={['name']='VCX-100',['Hull']=10,['Shield']=4,['size']='large',['agi']=0,['XWS']='vcx100lightfreighter', ['Fac']={[1]=true}, ['arcs']={'front'},['Docking']=true,
['moveSet']={'rtl1','wbl1','bs1','wbr1','rtr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','ws4','rk4'}}
masterShipDB[24]={['name']='YV-666',['Hull']=9,['Shield']=3,['size']='large',['agi']=1,['XWS']='yv666lightfreighter', ['Fac']={[3]=true}, ['arcs']={'fullfront'},
['moveSet']={'bbl1','bs1','bbr1','rtl2','wbl2','bs2','wbr2','rtr2','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rs0'}}
masterShipDB[25]={['name']='TIE Advanced v1',['Hull']=2,['Shield']=2,['size']='small',['agi']=1,['XWS']='tieadvancedv1', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'btl1','bbl1','bbr1','btr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl2t','rtr2t','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rk4','ws5'}}
masterShipDB[26]={['name']='Lambda Class Shuttle',['Hull']=6,['Shield']=4,['size']='large',['agi']=1,['XWS']='lambdaclasst4ashuttle', ['Fac']={[2]=true}, ['arcs']={'front', 'back'},
['moveSet']={'bbl1','bs1','bbr1','rtl2','wbl2','bs2','wbr2','rtr2','rbl3','ws3','rbr3','rs0'}}
masterShipDB[27]={['name']='TIE/ph Phantom',['Hull']=3,['Shield']=2,['size']='small',['agi']=2,['XWS']='tiephphantom', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wbl1','wbr1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk3','ws4','rk4'}}
masterShipDB[28]={['name']='VT-49 Decimator',['Hull']=12,['Shield']=4,['dTurret']=1,['size']='large',['agi']=0,['XWS']='vt49decimator', ['Fac']={[2]=true}, ['arcs']={'doubleturret'},
['moveSet']={'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','wtl3','wbl3','ws3','wbr3','wtr3','ws4'}}
masterShipDB[29]={['name']='TIE/ag Aggressor',['Hull']=4,['Shield']=1,['size']='small',['agi']=2,['XWS']='tieagaggressor', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rk4'}}
masterShipDB[30]={['name']='K-Wing',['Hull']=6,['Shield']=3,['dTurret']=1,['size']='medium',['agi']=1,['XWS']='btls8kwing', ['Fac']={[1]=true}, ['arcs']={'singleturret'},
['moveSet']={'bbl1','bs1','bbr1','wtl2','wbl2','bs2','wbr2','wtr2','wbl3','ws3','wbr3'}}
masterShipDB[31]={['name']='ARC-170',['Hull']=6, ['Shield']=3,['size']='medium',['agi']=1,['XWS']='arc170starfighter', ['Fac']={[1]=true,[6]=true}, ['arcs']={'front', 'back'},
['moveSet']={'bbl1','bs1','bbr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rs4','rk4'}}
masterShipDB[32]={['name']='Attack Shuttle',['Hull']=3,['Shield']=1,['size']='small',['agi']=2,['XWS']='attackshuttle', ['Fac']={[1]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','ws4','rk4'}}
masterShipDB[33]={['name']='X-Wing',['Hull']=4,['Shield']=2,['size']='small',['agi']=2,['XWS']='t65xwing', ['Fac']={[1]=true}, ['arcs']={'front'},
['moveSet']={'bbl1', 'bs1', 'bbr1', 'wtl2', 'bbl2', 'bs2', 'bbr2', 'wtr2', 'wtl3', 'wbl3', 'ws3', 'wbr3', 'wtr3', 'ws4', 'rtl3t', 'rtr3t', 'rk4' }}
masterShipDB[34]={['name']='HWK-290',['Hull']=3,['Shield']=2,['sTurret']=1,['size']='small',['agi']=2,['XWS']='hwk290lightfreighter', ['Fac']={[1]=true,[3]=true}, ['arcs']={'singleturret'},
['moveSet']={'bbl1','bs1','bbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','bs3','wbr3','rtr3','ws4','rs0'}}
masterShipDB[35]={['name']='A-Wing',['Hull']=2,['Shield']=2,['size']='small',['agi']=3,['XWS']='rz1awing', ['Fac']={[1]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wtr1','btl2','bbl2','bs2','bbr2','btr2','rbl3s','wtl3','wbl3','bs3','wbr3','wtr3','rbr3s','bs4','bs5','rk5'}}
masterShipDB[36]={['name']='Fang Fighter',['Hull']=4,['Shield']=0,['size']='small',['agi']=3,['XWS']='fangfighter', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wtr1','rtl2t','btl2','bbl2','bs2','bbr2','btr2','rtr2t','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rk4','ws5'}}
--masterShipDB[37]={['name']='',['Shield']=3,['size']='small',['agi']=1,['XWS']='', ['Fac']={[1]=true}}
masterShipDB[38]={['name']='Z-95 Headhunter',['Hull']=2,['Shield']=2,['size']='small',['agi']=2,['XWS']='z95af4headhunter', ['Fac']={[1]=true,[3]=true}, ['arcs']={'front'},
['moveSet']={'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk3','ws4','rk4'}}
masterShipDB[39]={['name']='M12-L Kimogila',['Hull']=7,['Shield']=2,['size']='medium',['agi']=2,['XWS']='m12lkimogilafighter', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','wbl1','bs1','wbr1','rtr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk4'}}
masterShipDB[40]={['name']='E-Wing',['Hull']=3,['Shield']=3,['size']='small',['agi']=3,['XWS']='ewing', ['Fac']={[1]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rbl3s','wtl3','wbl3','bs3','wbr3','wtr3','rbr3s','bs4','rk4','ws5'}}
masterShipDB[41]={['name']='TIE/in Interceptor',['Hull']=3,['Shield']=0,['size']='small',['agi']=3,['XWS']='tieininterceptor', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wtr1','btl2','bbl2','bs2','bbr2','btr2','rbl3s','wtl3','wbl3','bs3','wbr3','wtr3','rbr3s','bs4','rk4','ws5'}}
masterShipDB[42]={['name']='Lancer Pursuit Craft',['Hull']=8,['Shield']=2,['sTurret']=1,['size']='large',['agi']=2,['XWS']='lancerclasspursuitcraft', ['Fac']={[3]=true}, ['arcs']={'front','singleturret'},
['moveSet']={'wbl1','ws1','wbr1','wtl2','wbl2','bs2','wbr2','wtr2','btl3','bbl3','bs3','bbr3','btr3','bs4','ws5','rk5'}}
masterShipDB[43]={['name']='TIE/re Reaper',['Hull']=6,['Shield']=2,['size']='medium',['agi']=1,['XWS']='tiereaper', ['Fac']={[2]=true}, ['arcs']={'front'},
['moveSet']={'rbl1s','rtl1','bbl1','bs1','bbr1','rtr1','rbr1s','rtl2','wbl2','bs2','wbr2','rtr2','wbl3','bs3','wbr3','rs0'}}
masterShipDB[44]={['name']='M3-A Interceptor',['Hull']=3,['Shield']=1,['size']='small',['agi']=3,['XWS']='m3ainterceptor', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','bbl1','bbr1','wtr1','wtl2','wbl2','bs2','wbr2','wtr2','wbl3','bs3','wbr3','rk3','ws4','ws5','rk5'}}
masterShipDB[45]={['name']='JumpMaster 5000',['Hull']=6,['Shield']=3,['sTurret']=1,['size']='large',['agi']=1,['XWS']='jumpmaster5000', ['Fac']={[3]=true}, ['arcs']={'singleturret'},
['moveSet']={'wtl1','bbl1','bs1','wbr1','rtr1','wtl2','bbl2','bs2','wbr2','rtr2','rbl3s','bbl3','bs3','wbr3','ws4','rk4'}}
--masterShipDB[46]={['name']='',['Shield']=3,['size']='small',['agi']=1,['XWS']='', ['Fac']={[1]=true}}
masterShipDB[47]={['name']='Customized YT-1300',['Hull']=8,['Shield']=3,['dTurret']=1,['size']='large',['agi']=1,['XWS']='customizedyt1300lightfreighter', ['Fac']={[3]=true}, ['arcs']={'doubleturret'},
['Docking']=true,['moveSet']={'bbl1','bs1','bbr1','wtl2','wbl2','bs2','wbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rbl3s','rbr3s','ws4','rk4'}}
masterShipDB[48]={['name']='Escape Craft',['Hull']=2,['Shield']=2,['size']='small',['agi']=2,['XWS']='escapecraft', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'bbl1','bs1','bbr1','rtl2','wbl2','bs2','wbr2','rtr2','wbl3','ws3','wbr3','rk3','rs0'}}
masterShipDB[49]={
name = 'TIE/fo FO',
Hull = 3,
Shield = 1,
size = 'small',
agi = 3,
XWS = 'tiefofighter',
Fac = {[5]=true},
arcs = {'front'},
moveSet = {'wtl1','wtr1','rbl2s','btl2','bbl2','bs2','bbr2','btr2','rbr2s','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rk4','ws5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/FO_Tie_FO/Tie_FO.obj'
}
masterShipDB[50]={
name = 'TIE/sf SF',
Hull = 3,
Shield = 3,
Turret = 1,
size = 'small',
agi = 2,
XWS = 'tiesffighter',
Fac = {[5]=true},
sTurret = 1,
arcs = {'front', 'back'},
moveSet = {'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','bbl2','bs2','bbr2','wtr2','rbl3s','wtl3','wbl3','bs3','wbr3','wtr3','rbr3s','ws4','ws5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/FO_Tie_SF/Tie_SF.obj'
}
masterShipDB[51]={
name = 'Upsilon Class Shuttle',
Hull = 6,
Shield = 6,
size = 'large',
agi = 1,
XWS = 'upsilonclasscommandshuttle',
Fac = {[5]=true},
arcs = {'front'},
moveSet = {'rtl1','wbl1','bs1','wbr1','rtr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rs0'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Large/FO_Upsilon_Shuttle/Upsilon_Shuttle.obj'
}
masterShipDB[52]={
name = 'TIE Silencer',
Hull = 4,
Shield = 2,
size = 'small',
agi = 3,
XWS = 'tievnsilencer',
Fac = {[5]=true},
arcs = {'front'},
moveSet={'wtl1','wtr1','btl2','bbl2','bs2','bbr2','btr2','rtl3t','wtl3','wbl3','bs3','wbr3','wtr3','rtr3t','bs4','rk4','bs5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/FO_Tie_VN/Tie_VN.obj'
}
masterShipDB[53]={['name']='T-70 X-Wing',['Hull']=4,['Shield']=3,['size']='small',['agi']=2,['XWS']='', ['Fac']={[4]=true}, ['arcs']={'front'},
['moveSet']={'bbl1','bs1','bbr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3t','wtl3','wbl3','bs3','wbr3','wtr3','rtr3t','ws4','rk4'}}
masterShipDB[54]={
name = 'A-Wing RZ-2',
Hull = 2,
Shield = 2,
sTurret = 1,
size = 'small',
agi = 3,
Fac = {[4]=true},
arcs = {'front', 'back'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/RIS_awing/res_awing.obj',
moveSet = {'wtl1','wtr1','btl2','bbl2','bs2','bbr2','btr2','rbl3s','wtl3','bbl3','bs3','bbr3','wtr3','rbr3s','bs4','bs5','rk5'}}
masterShipDB[55]={['name']='MG-100 StarFortress',['Hull']=9, ['Shield']=3,['dTurret']=1,['size']='large',['agi']=1,['XWS']='', ['Fac']={[4]=true}, ['arcs']={'front','doubleturret'},
['moveSet']={'rs0','rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rbl3','ws3','rbr3'}}
masterShipDB[56]={['name']='Mining Guild TIE',['Hull']=3,['Shield']=0,['size']='small',['agi']=3,['XWS']='', ['Fac']={[3]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rk3','ws4','rs5'}}
masterShipDB[57]={['name']='Scavenged YT-1300',['Hull']=8,['Shield']=3,['dTurret']=1,['size']='large',['agi']=1,['XWS']='', ['Fac']={[4]=true}, ['arcs']={'doubleturret'},
['moveSet']={'wbl1','bs1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','ws3','wbr3','wtr3','rbl3s','rbr3s','rs4'}}
--w3ship
masterShipDB[61]={
name = 'Delta-7',
Hull = 3,
Shield = 1,
size = 'small',
agi = 3,
XWS = '',
Fac = {[6]=true},
arcs = {'front'},
moveSet={'wtl1','bbl1','bbr1','wtr1','rbl2s','wtl2','bbl2','bs2','bbr2','wtr2','rbr2s','wbl3','bs3','wbr3','ws4','rk4','ws5','rk5'},
--mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/GRP_Delta7/Jedi_Delta7.obj'
}
masterShipDB[62]={
name = 'V-19',
Hull = 5,
Shield = 0,
size = 'small',
agi = 2,
XWS = '',
Fac = {[6]=true},
arcs = {'front'},
moveSet ={'rtl1','bbl1','bs1','bbr1','rtr1','rtl2t','wtl2','wbl2','bs2','wbr2','wtr2','rtr2t','rbl3','bs3','rbr3','rk3','ws4'},
--mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/GRP_V-19_Torrent/V-19_Torrent.obj'
}
masterShipDB[59]={['name']='Vulture-Class Droid',['Hull']=3,['Shield']=0,['size']='small',['agi']=2,['XWS']='', ['Fac']={[7]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wtr1','rk1','rtl2t','btl2','wbl2','bs2','wbr2','btr2','rtr2t','wtl3','rbl3','bs3','rbr3','wtr3','bs4','ws5'}}
masterShipDB[58]={['name']='Belbullab-22',['Hull']=4,['Shield']=2,['size']='small',['agi']=2,['XWS']='', ['Fac']={[7]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','wbl1','wbr1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','rbl3s','rtl3','wbl3','bs3','wbr3','rtr3','rbr3s','ws4','ws5'}}
masterShipDB[60]={['name']='Sith Infiltrator',['Hull']=6,['Shield']=4,['size']='large',['agi']=1,['XWS']='', ['Fac']={[7]=true}, ['arcs']={'front'},
['moveSet']={'rtl1','bbl1','bs1','bbr1','rtr1','rbl2s','wtl2','bbl2','bs2','bbr2','wtr2','rbr2s','wtl3','wbl3','bs3','wbr3','wtr3','ws4','rk5'}}
--w4ship
masterShipDB[64]={
name = 'Resistance Transport',
Hull = 5,
Shield = 3,
size = 'small',
agi = 1,
Fac = {[4]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/RIS_transport/transport.obj',
moveSet = {'rbl1r','rbr1r','rs0','rbl1r','rbr1r','rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rbl3','ws3','rbr3','rs4'}
}
masterShipDB[65]={
name = 'Resistance Transport Pod',
Shield = 1,
Hull = 3,
size = 'small',
agi = 2,
Fac = {[4]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/RIS_transport_pod/transport_pod.obj',
moveSet = {'rtl1','bbl1','bs1','bbr1','rtr1','wtl2','wbl2','bs2','wbr2','wtr2','rbl3','ws3','rbr3','rk3','rs4'}
}
masterShipDB[63]={
name ='N-1 StarFighter',
Hull = 3,
Shield = 2,
size = 'small',
agi = 2,
XWS = '',
Fac = {[6]=true},
arcs = {'front'},
moveSet = {'wbl1','ws1','wbr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','bbl3','bs3','bbr3','wtr3','rtl3t','rtr3t','ws4','ws5'},
--mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/GRP_N1/Naboo_Royal_N1.obj'
}
masterShipDB[66]={['name']='Hyena-Class Droid Bomber',['Hull']=5,['Shield']=0,['size']='small',['agi']=2,['XWS']='', ['Fac']={[7]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','rbl1','ws1','rbr1','wtr1','btl2','wbl2','bs2','wbr2','btr2','rk2','rtl2t','rtr2t','wtl3','bs3','wtr3','ws4','rs5'}}
masterShipDB[68]={
name = 'BTL-B Y-Wing',
Hull = 5,
Shield = 3,
size = 'small',
agi = 1,
XWS = '',
Fac = {[6]=true},
arcs = {'front'},
moveSet = {'wbl1','bs1','wbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rs4','rk4'},
}
masterShipDB[67]={['name']='Nantex-Class StarFighter',['Hull']=4,['Shield']=0,['sTurret']=1,['size']='small',['agi']=3,['XWS']='', ['Fac']={[7]=true}, ['arcs']={'left', 'front', 'right', 'bullseye'},
['moveSet']={'wtl1','bbl1','bbr1','wtr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','bbl3','bs3','bbr3','wtr3','rbl3s','rbr3s','ws4','ws5','rk5'}}
--w6ship
masterShipDB[70]={['name']='FireBall',['Hull']=6,['Shield']=0,['size']='small',['agi']=2,['XWS']='', ['Fac']={[4]=true}, ['arcs']={'front'},
['moveSet']={'wtl1','bbl1','bs1','bbr1','wtr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rtl3t','rtr3t','rs4'}}
masterShipDB[71]={
name = 'TIE/ba Interceptor',
Hull = 2,
Shield = 2,
size = 'small',
agi = 3,
XWS = '',
Fac = {[5]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/FO_Tie_Ba/TieBa.obj',
moveSet = {'btl1','bbl1','bbr1','btr1','wtl2','bbl2','bs2','bbr2','wtr2','wtl3','wbl3','bs3','wbr3','wtr3','rbl2s','rbr2s','bs4','ws5','rk5'}
}
--w7ship
--[[masterShipDB[80]={
name = 'LAAT/i Gunship',
Hull = 8,
Shield = 2,
dTurret = 1,
size = 'medium',
agi = 1,
XWS = '',
Fac = {[6]=true},
arcs = {'doubleturret'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Small/FO_Tie_Ba/TieBa.obj',
moveSet = {'rs0','wbl1','bs1','wbr1','wtl2','wbl2','bs2','wbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','rs4'}
}]]
masterShipDB[81]={
name = 'Xi-class Light Shuttle',
Hull = 5,
Shield = 2,
size = 'medium',
agi = 2,
XWS = '',
Fac = {[5]=true},
arcs = {'front'},
mesh = 'https://raw.githubusercontent.com/JohnnyCheese/TTS_X-Wing2.0/master/assets/ships/Medium/Xi_Shuttle/XiClassLightShuttle.obj',
moveSet = {'rs0','bbl1','bs1','bbr1','wtl2','bbl2','bs2','bbr2','wtr2','rtl3','wbl3','ws3','wbr3','rtr3','ws4'}
}
masterShipDB[82]={
name = 'HMP Droid Gunship',
Hull = 5,
Shield = 3,
size = 'small',
agi = 1,
XWS = '',
Fac = {[7]=true},
arcs = {'fullfront'},
mesh = 'https://raw.githubusercontent.com/JohnnyCheese/TTS_X-Wing2.0/master/assets/ships/Small/CIS_HMP_Gunship/HMP_Gunship.obj',
moveSet = {'rs0','rbl1','bs1','rbr1','btl2','wbl2','bs2','wbr2','btr2','wtl3','rbl3','ws3','rbr3','wtr3','rs4','rs5'},
}
-- Huge ships
masterShipDB[90]={
name = 'CR-90 Corvette',
Hull = 18,
Shield = 7,
Energy = 7,
size = 'huge',
agi = 0,
Fac = {[1]=true, [6]=true},
arcs = {'left','right'},
moveSet = {'rbl0','rs0','rbr0','wbl1','ws1','wbr1','bbl2','bs2','bbr2','rbl3','bs3','rbr3','rs4','rs5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Huge/CR90%20Corvette/CR90%20Corvette.obj'
}
masterShipDB[91]={
name = 'C-ROC Cruiser',
Hull = 12,
Shield = 4,
Energy = 4,
size = 'huge',
agi = 0,
Fac = {[3]=true, [7]=true},
arcs = {'front'},
moveSet = {'rbl0','rs0','rbr0','wbl1','bs1','wbr1','wbl2','bs2','wbr2','rbl3','ws3','rbr3','rs4','rs5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Huge/CR0C/CR0C%20Cruiser.obj'
}
masterShipDB[92]={
name = 'Gozanti-class Cruiser',
Hull = 11,
Shield = 5,
Energy = 3,
size = 'huge',
agi = 0,
Fac = {[2]=true, [5]=true},
arcs = {'front'},
moveSet = {'rbl0','rs0','rbr0','wbl1','bs1','wbr1','rbl2','bs2','rbr2','bs3','rs4'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Huge/Gozanti-Class%20Cruiser/Gozanti-Class%20Cruiser.obj'
}
masterShipDB[93]={
name = 'GR-75 Medium Transport',
Hull = 12,
Shield = 3,
Energy = 4,
size = 'huge',
agi = 0,
Fac = {[1]=true, [4]=true},
arcs = {'front'},
moveSet = {'rbl0','rs0','rbr0','bbl1','bs1','bbr1','wbl2','ws2','wbr2','rs3','rs4'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Huge/GR-75%20Transport/GR-75%20Transport.obj'
}
masterShipDB[94]={
name = 'Raider-class Corvette',
Hull = 20,
Shield = 8,
Energy = 6,
size = 'huge',
agi = 0,
Fac = {[2]=true, [5]=true},
arcs = {'fullfront'},
moveSet = {'rbl0','rs0','rbr0','bbl1','ws1','bbr1','wbl2','bs2','wbr2','rbl3','bs3','rbr3','ws4','rs5'},
mesh = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Huge/Raider%20Class%20Corvette/Raider%20Class%20Corvette.obj'
}
masterPilotDB={}
masterPilotDB[0]={['name']='',['Faction']= 0,['ship_type']=0,['cost']=0,['slot']={},['Shield']=0,['card']='',['cardB']='',['init']=0,['actSet']={}}
masterPilotDB[1]={['name']='Wedge Antilles',['Faction']= 1,['ship_type']=33,['cost']=55,['slot']={21, 1, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_1.png',['init']=6,['actSet']={'F','TL', 'BR'}}
masterPilotDB[2]={['name']='Luke Skywalker',['Faction']= 1,['ship_type']=33,['cost']=62,['slot']={21, 17, 5, 10, 14, 18},['Shield']=2,['Force']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_2.png',['init']=5,['actSet']={'F','TL', 'BR'}}
masterPilotDB[3]={['name']='Thane Kyrell',['Faction']= 1,['ship_type']=33,['cost']=48,['slot']={21, 1, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_3.png',['init']=5,['actSet']={'F','TL', 'BR'}}
masterPilotDB[4]={['name']='Garven Dreis',['Faction']= 1,['ship_type']=33,['cost']=47,['slot']={21, 1, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_4.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[5]={['name']='Jek Porkins',['Faction']= 1,['ship_type']=33,['cost']=45,['slot']={21, 1, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_5.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[6]={['name']='Kullbee Sperado',['Faction']= 1,['ship_type']=33,['cost']=46,['slot']={21, 1, 5, 10, 13, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_6.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[7]={['name']='Biggs Darklighter',['Faction']= 1,['ship_type']=33,['cost']=48,['slot']={21, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_7.png',['init']=3,['actSet']={'F','TL', 'BR'}}
masterPilotDB[8]={['name']='Leevan Tenza',['Faction']= 1,['ship_type']=33,['cost']=44,['slot']={21, 1, 5, 10, 13, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_8.png',['init']=3,['actSet']={'F','TL', 'BR'}}
masterPilotDB[9]={['name']='Edrio Two Tubes',['Faction']= 1,['ship_type']=33,['cost']=43,['slot']={21, 5, 10, 13, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_9.png',['init']=2,['actSet']={'F','TL', 'BR'}}
masterPilotDB[10]={['name']='Red Squadron Veteran',['Faction']= 1,['ship_type']=33,['cost']=41,['slot']={21, 1, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_10.png',['init']=3,['actSet']={'F','TL', 'BR'}}
masterPilotDB[11]={['name']='Blue Squadron Escort',['Faction']= 1,['ship_type']=33,['cost']=40,['slot']={21, 5, 10, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_11.png',['init']=2,['actSet']={'F','TL', 'BR'}}
masterPilotDB[12]={['name']='Cavern Angels Zealot',['Faction']= 1,['ship_type']=33,['cost']=39,['slot']={21, 5, 10, 13, 14, 18},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_12.png',['init']=1,['actSet']={'F','TL', 'BR'}}
masterPilotDB[13]={
name = 'Norra Wexley',
Faction = 1,
ship_type = 12,
cost = 41,
slot = {21, 1, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_13.png',
init = 5,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/norrawexley.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[14]={
name = '"Dutch" Vander',
Faction = 1,
ship_type = 12,
cost = 40,
slot = {21, 1, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_14.png',
init = 4,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/dutchvander.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[15]={
name = 'Horton Salm',
Faction = 1,
ship_type = 12,
cost = 37,
slot = {21, 1, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_15.png',
init = 4,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/hortonsalm.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[16]={
name = 'Evaan Verlaine',
Faction = 1,
ship_type = 12,
cost = 35,
slot = {21, 1, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_16.png',
init = 3,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/evaanverlaine.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[17]={
name = 'Gold Squadron Veteran',
Faction = 1,
ship_type = 12,
cost = 32,
slot = {21, 1, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_17.png',
init = 3,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/goldsquadronveteran.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[18]={
name = 'Gray Squadron Bomber',
Faction = 1,
ship_type = 12,
cost = 30,
slot = {21, 4, 5, 16, 10, 12, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_18.png',
init = 2,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/BTLA4YWing/graysquadronbomber.png',
actSet = {'F','TL', 'BR'}
}
masterPilotDB[19]={['name']='Jake Farrell',['Faction']= 1,['ship_type']=35,['cost']=36,['slot']={21, 1,1, 6},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_19.png',['init']=4,['actSet']={'F','TL','E','BR','B'}}
masterPilotDB[20]={['name']='Arvel Crynyd',['Faction']= 1,['ship_type']=35,['cost']=34,['slot']={21, 1,1, 6},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_20.png',['init']=3,['actSet']={'F','TL','E','Ail','BR'}}
masterPilotDB[21]={['name']='Green Squadron Pilot',['Faction']= 1,['ship_type']=35,['cost']=32,['slot']={21, 1,1, 6},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_21.png',['init']=3,['actSet']={'F','TL','E','B','BR'}}
masterPilotDB[22]={['name']='Phoenix Squadron Pilot',['Faction']= 1,['ship_type']=35,['cost']=29,['slot']={21, 1,6},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_22.png',['init']=1,['actSet']={'F','TL','E','B','BR'}}
masterPilotDB[23]={['name']='Braylen Stramm',['Faction']= 1,['ship_type']=17,['cost']=52,['slot']={21, 1, 2, 3, 3, 5, 14, 18},['Shield']=4,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_23.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[24]={['name']='Ten Numb',['Faction']= 1,['ship_type']=17,['cost']=48,['slot']={21, 1, 2, 3, 3, 5, 14, 18},['Shield']=4,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_24.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[25]={['name']='Blade Squadron Veteran',['Faction']= 1,['ship_type']=17,['cost']=42,['slot']={21, 1, 2, 3, 3, 5, 14, 18},['Shield']=4,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_25.png',['init']=3,['actSet']={'F','TL', 'BR'}}
masterPilotDB[26]={['name']='Blue Squadron Pilot',['Faction']= 1,['ship_type']=17,['cost']=41,['slot']={21, 2, 3, 3, 5, 14, 18},['Shield']=4,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_26.png',['init']=2,['actSet']={'F','TL', 'BR'}}
masterPilotDB[27]={['name']='Airen Cracken',['Faction']= 1,['ship_type']=38,['cost']=36,['slot']={21, 1, 6, 14},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_27.png',['init']=5,['actSet']={'F','TL', 'BR'}}
masterPilotDB[28]={['name']='Lieutenant Blount',['Faction']= 1,['ship_type']=38,['cost']=30,['slot']={21, 1, 6, 14},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_28.png',['init']=4,['actSet']={'F','TL', 'BR'}}
masterPilotDB[29]={['name']='Tala Squadron Pilot',['Faction']= 1,['ship_type']=38,['cost']=24,['slot']={21, 1, 6, 14},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_29.png',['init']=2,['actSet']={'F','TL', 'BR'}}
masterPilotDB[30]={['name']='Bandit Squadron Pilot',['Faction']= 1,['ship_type']=38,['cost']=22,['slot']={21, 6, 14},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_30.png',['init']=1,['actSet']={'F','TL', 'BR'}}
masterPilotDB[31]={
name = 'Wullffwarro',
Faction = 1,
ship_type = 6,
cost = 54,
slot = {21, 1, 8, 8, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_31.png',
init = 4,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Auzituck/wullffwarro.png',
actSet = {'F','R', 'BR'}
}
masterPilotDB[32]={
name = 'Lowhhrick',
Faction = 1,
ship_type = 6,
cost = 51,
slot = {21, 1, 8, 8, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_32.png',
init = 3,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Auzituck/lowhhrick.png',
actSet = {'F','R', 'BR'}
}
masterPilotDB[33]={
name = 'Kashyyyk Defender',
Faction = 1,
ship_type = 6,
cost = 42,
slot = {21, 8, 8, 14},
Shield = 2,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_33.png',
init = 1,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Auzituck/kashyyykdefender.png',
actSet = {'F','R', 'BR'}
}
masterPilotDB[34]={['name']='Hera Syndulla',['Faction']= 1,['ship_type']=32,['cost']=38,['slot']={21, 1, 4, 8, 14, 15},
executeOptions = {
rtl1 = {[1]='rtl1', [2]='rtr1', [3]='rtl3', [4]='rtr3', [5]='rk4'},
rtr1 = {[1]='rtl1', [2]='rtr1', [3]='rtl3', [4]='rtr3', [5]='rk4'},
rtl3 = {[1]='rtl1', [2]='rtr1', [3]='rtl3', [4]='rtr3', [5]='rk4'},
rtr3 = {[1]='rtl1', [2]='rtr1', [3]='rtl3', [4]='rtr3', [5]='rk4'},
rk4 = {[1]='rtl1', [2]='rtr1', [3]='rtl3', [4]='rtr3', [5]='rk4'},
bs1 = {[1]='bs1', [2]='bbl1', [3]='bbr1', [4]='bs2'},
bbl1 = {[1]='bs1', [2]='bbl1', [3]='bbr1', [4]='bs2'},
bbr1 = {[1]='bs1', [2]='bbl1', [3]='bbr1', [4]='bs2'},
bs2 = {[1]='bs1', [2]='bbl1', [3]='bbr1', [4]='bs2'}
},
['Shield']=1,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_34.png',['init']=5,['actSet']={'F','E','BR'}}
masterPilotDB[35]={['name']='Sabine Wren',['Faction']= 1,['ship_type']=32,['cost']=41,['slot']={21, 1, 4, 8, 14, 15},['Shield']=1,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_35.png',['init']=3,['actSet']={'F','E','B', 'BR'}}
masterPilotDB[36]={['name']='Ezra Bridger',['Faction']= 1,['ship_type']=32,['cost']=40,['slot']={21, 17, 4, 8, 14, 15},['Shield']=1,['Force']=1,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_36.png',['init']=3,['actSet']={'F','E','BR'}}
masterPilotDB[37]={['name']='"Zeb" Orrelios',['Faction']= 1,['ship_type']=32,['cost']=32,['slot']={21, 4, 8, 14, 15},['Shield']=1,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_37.png',['init']=2,['actSet']={'F','E','BR'}}
masterPilotDB[38]={
name = 'Fenn Rau',
Faction = 1,
ship_type = 8,
cost = 50,
slot = {21, 1, 8, 10, 14, 15},
Shield = 1,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_38.png',
init = 6,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Sheathipede/fennrau.png',
actSet = {'F'}
}
masterPilotDB[39]={
name = 'Ezra Bridger',
Faction = 1,
ship_type = 8,
cost = 40,
slot = {21, 17, 8, 10, 14, 15},
Shield = 1,
Force=1,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_39.png',
init = 3,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Sheathipede/ezrabridger.png',
actSet = {'F'}
}
masterPilotDB[40]={
name = '"Zeb" Orrelios',
Faction = 1,
ship_type = 8,
cost = 33,
slot = {21, 1, 8, 10, 14, 15},
Shield = 1,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_40.png',
init = 2,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Sheathipede/zeborrelios.png',
actSet = {'F'}
}
masterPilotDB[41]={
name = 'AP-5',
Faction = 1,
ship_type = 8,
cost = 32,
slot = {21, 1, 8, 10, 14, 15},
Shield = 1,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_41.png',
init = 1,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/Sheathipede/ap5.png',
actSet = {'C'}
}
masterPilotDB[42]={['name']='Jan Ors',['Faction']= 1,['ship_type']=34,['cost']=41,['slot']={21, 1, 8, 12, 14, 14, 15},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_42.png',['init']=5,['actSet']={'F','TL','B','Rot','BR'}}
masterPilotDB[43]={['name']='Kyle Katarn',['Faction']= 1,['ship_type']=34,['cost']=33,['slot']={21, 1, 8, 12, 14, 14, 15},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_43.png',['init']=3,['actSet']={'F','TL','B','Rot','BR'}}
masterPilotDB[44]={['name']='Roark Garnet',['Faction']= 1,['ship_type']=34,['cost']=38,['slot']={21, 1, 8, 12, 14, 14, 15},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_44.png',['init']=4,['actSet']={'F','TL','B','Rot','BR'}}
masterPilotDB[45]={['name']='Rebel Scout',['Faction']= 1,['ship_type']=34,['cost']=29,['slot']={21, 8, 12, 14, 14, 15},['Shield']=2,
['card']='http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_45.png',['init']=2,['actSet']={'F','TL','B','Rot','BR'}}
masterPilotDB[46]={
name = 'Ezra Bridger',
Faction = 1,
ship_type = 11,
cost = 30,
slot = {21, 17, 14},
Shield = 0,
Force = 1,
card = 'http://sb-cdn.fantasyflightgames.com/card_images/Card_Pilot_46.png',
init = 3,
texture = 'https://raw.githubusercontent.com/eirikmun/TTS_X-Wing2.0/master/assets/ships/Rebel/TIEln/ezrabridger.png',
actSet = {'F','E','BR'}
}
masterPilotDB[47]={