-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransport.json
1427 lines (1427 loc) · 36.7 KB
/
transport.json
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
[
{
"fields": {
"edited": "2014-12-20T21:23:49.867Z",
"consumables": "1 year",
"name": "CR90 corvette",
"created": "2014-12-10T14:20:33.369Z",
"cargo_capacity": "3000000",
"passengers": "600",
"max_atmosphering_speed": "950",
"crew": "30-165",
"length": "150",
"model": "CR90 corvette",
"cost_in_credits": "3500000",
"manufacturer": "Corellian Engineering Corporation",
"image": "cr90_corvette.jpg"
},
"model": "resources.transport",
"pk": 2
},
{
"fields": {
"edited": "2014-12-20T21:23:49.870Z",
"consumables": "2 years",
"name": "Star Destroyer",
"created": "2014-12-10T15:08:19.848Z",
"cargo_capacity": "36000000",
"passengers": "n/a",
"max_atmosphering_speed": "975",
"crew": "47,060",
"length": "1,600",
"model": "Imperial I-class Star Destroyer",
"cost_in_credits": "150000000",
"manufacturer": "Kuat Drive Yards",
"image": "star_destroyer.jpg"
},
"model": "resources.transport",
"pk": 3
},
{
"fields": {
"edited": "2014-12-20T21:30:21.661Z",
"consumables": "2 months",
"name": "Sand Crawler",
"created": "2014-12-10T15:36:25.724Z",
"cargo_capacity": "50000",
"passengers": "30",
"max_atmosphering_speed": "30",
"crew": "46",
"length": "36.8 ",
"model": "Digger Crawler",
"cost_in_credits": "150000",
"manufacturer": "Corellia Mining Corporation",
"image": "sand_crawler.jpg"
},
"model": "resources.transport",
"pk": 4
},
{
"fields": {
"edited": "2014-12-20T21:23:49.873Z",
"consumables": "1 month",
"name": "Sentinel-class landing craft",
"created": "2014-12-10T15:48:00.586Z",
"cargo_capacity": "180000",
"passengers": "75",
"max_atmosphering_speed": "1000",
"crew": "5",
"length": "38",
"model": "Sentinel-class landing craft",
"cost_in_credits": "240000",
"manufacturer": "Sienar Fleet Systems, Cyngus Spaceworks",
"image": "sentinel-class_landing_craft.jpg"
},
"model": "resources.transport",
"pk": 5
},
{
"fields": {
"edited": "2014-12-20T21:30:21.665Z",
"consumables": "0",
"name": "T-16 skyhopper",
"created": "2014-12-10T16:01:52.434Z",
"cargo_capacity": "50",
"passengers": "1",
"max_atmosphering_speed": "1200",
"crew": "1",
"length": "10.4 ",
"model": "T-16 skyhopper",
"cost_in_credits": "14500",
"manufacturer": "Incom Corporation",
"image": "t-16_skyhopper.jpg"
},
"model": "resources.transport",
"pk": 6
},
{
"fields": {
"edited": "2014-12-20T21:30:21.668Z",
"consumables": "unknown",
"name": "X-34 landspeeder",
"created": "2014-12-10T16:13:52.586Z",
"cargo_capacity": "5",
"passengers": "1",
"max_atmosphering_speed": "250",
"crew": "1",
"length": "3.4 ",
"model": "X-34 landspeeder",
"cost_in_credits": "10550",
"manufacturer": "SoroSuub Corporation",
"image": "x-34_landspeeder.jpg"
},
"model": "resources.transport",
"pk": 7
},
{
"fields": {
"edited": "2014-12-20T21:30:21.670Z",
"consumables": "2 days",
"name": "TIE/LN starfighter",
"created": "2014-12-10T16:33:52.860Z",
"cargo_capacity": "65",
"passengers": "0",
"max_atmosphering_speed": "1200",
"crew": "1",
"length": "6.4",
"model": "Twin Ion Engine/Ln Starfighter",
"cost_in_credits": "unknown",
"manufacturer": "Sienar Fleet Systems",
"image": "tie/ln_starfighter.jpg"
},
"model": "resources.transport",
"pk": 8
},
{
"fields": {
"edited": "2014-12-20T21:26:24.783Z",
"consumables": "3 years",
"name": "Death Star",
"created": "2014-12-10T16:36:50.509Z",
"cargo_capacity": "1000000000000",
"passengers": "843,342",
"max_atmosphering_speed": "n/a",
"crew": "342,953",
"length": "120000",
"model": "DS-1 Orbital Battle Station",
"cost_in_credits": "1000000000000",
"manufacturer": "Imperial Department of Military Research, Sienar Fleet Systems",
"image": "death_star.jpg"
},
"model": "resources.transport",
"pk": 9
},
{
"fields": {
"edited": "2014-12-20T21:23:49.880Z",
"consumables": "2 months",
"name": "Millennium Falcon",
"created": "2014-12-10T16:59:45.094Z",
"cargo_capacity": "100000",
"passengers": "6",
"max_atmosphering_speed": "1050",
"crew": "4",
"length": "34.37",
"model": "YT-1300 light freighter",
"cost_in_credits": "100000",
"manufacturer": "Corellian Engineering Corporation",
"image": "millennium_falcon.jpg"
},
"model": "resources.transport",
"pk": 10
},
{
"fields": {
"edited": "2014-12-20T21:23:49.883Z",
"consumables": "1 week",
"name": "Y-wing",
"created": "2014-12-12T11:00:39.817Z",
"cargo_capacity": "110",
"passengers": "0",
"max_atmosphering_speed": "1000km",
"crew": "2",
"length": "14",
"model": "BTL Y-wing",
"cost_in_credits": "134999",
"manufacturer": "Koensayr Manufacturing",
"image": "y-wing.jpg"
},
"model": "resources.transport",
"pk": 11
},
{
"fields": {
"edited": "2014-12-20T21:23:49.886Z",
"consumables": "1 week",
"name": "X-wing",
"created": "2014-12-12T11:19:05.340Z",
"cargo_capacity": "110",
"passengers": "0",
"max_atmosphering_speed": "1050",
"crew": "1",
"length": "12.5",
"model": "T-65 X-wing",
"cost_in_credits": "149999",
"manufacturer": "Incom Corporation",
"image": "x-wing.jpg"
},
"model": "resources.transport",
"pk": 12
},
{
"fields": {
"edited": "2014-12-20T21:23:49.889Z",
"consumables": "5 days",
"name": "TIE Advanced x1",
"created": "2014-12-12T11:21:32.991Z",
"cargo_capacity": "150",
"passengers": "0",
"max_atmosphering_speed": "1200",
"crew": "1",
"length": "9.2",
"model": "Twin Ion Engine Advanced x1",
"cost_in_credits": "unknown",
"manufacturer": "Sienar Fleet Systems",
"image": "tie_advanced_x1.jpg"
},
"model": "resources.transport",
"pk": 13
},
{
"fields": {
"edited": "2014-12-20T21:30:21.672Z",
"consumables": "none",
"name": "Snowspeeder",
"created": "2014-12-15T12:22:12Z",
"cargo_capacity": "10",
"passengers": "0",
"max_atmosphering_speed": "650",
"crew": "2",
"length": "4.5",
"model": "t-47 airspeeder",
"cost_in_credits": "unknown",
"manufacturer": "Incom corporation",
"image": "snowspeeder.jpg"
},
"model": "resources.transport",
"pk": 14
},
{
"fields": {
"edited": "2014-12-20T21:23:49.893Z",
"consumables": "6 years",
"name": "Executor",
"created": "2014-12-15T12:31:42.547Z",
"cargo_capacity": "250000000",
"passengers": "38,000",
"max_atmosphering_speed": "n/a",
"crew": "279,144",
"length": "19,000",
"model": "Executor-class star dreadnought",
"cost_in_credits": "1143350000",
"manufacturer": "Kuat Drive Yards, Fondor Shipyards",
"image": "executor.jpg"
},
"model": "resources.transport",
"pk": 15
},
{
"fields": {
"edited": "2014-12-20T21:30:21.675Z",
"consumables": "2 days",
"name": "TIE bomber",
"created": "2014-12-15T12:33:15.838Z",
"cargo_capacity": "none",
"passengers": "0",
"max_atmosphering_speed": "850",
"crew": "1",
"length": "7.8",
"model": "TIE/sa bomber",
"cost_in_credits": "unknown",
"manufacturer": "Sienar Fleet Systems",
"image": "tie_bomber.jpg"
},
"model": "resources.transport",
"pk": 16
},
{
"fields": {
"edited": "2014-12-20T21:23:49.895Z",
"consumables": "6 months",
"name": "Rebel transport",
"created": "2014-12-15T12:34:52.264Z",
"cargo_capacity": "19000000",
"passengers": "90",
"max_atmosphering_speed": "650",
"crew": "6",
"length": "90",
"model": "GR-75 medium transport",
"cost_in_credits": "unknown",
"manufacturer": "Gallofree Yards, Inc.",
"image": "rebel_transport.jpg"
},
"model": "resources.transport",
"pk": 17
},
{
"fields": {
"edited": "2014-12-20T21:30:21.677Z",
"consumables": "unknown",
"name": "AT-AT",
"created": "2014-12-15T12:38:25.937Z",
"cargo_capacity": "1000",
"passengers": "40",
"max_atmosphering_speed": "60",
"crew": "5",
"length": "20",
"model": "All Terrain Armored Transport",
"cost_in_credits": "unknown",
"manufacturer": "Kuat Drive Yards, Imperial Department of Military Research",
"image": "at-at.jpg"
},
"model": "resources.transport",
"pk": 18
},
{
"fields": {
"edited": "2014-12-20T21:30:21.679Z",
"consumables": "none",
"name": "AT-ST",
"created": "2014-12-15T12:46:42.384Z",
"cargo_capacity": "200",
"passengers": "0",
"max_atmosphering_speed": "90",
"crew": "2",
"length": "2",
"model": "All Terrain Scout Transport",
"cost_in_credits": "unknown",
"manufacturer": "Kuat Drive Yards, Imperial Department of Military Research",
"image": "at-st.jpg"
},
"model": "resources.transport",
"pk": 19
},
{
"fields": {
"edited": "2014-12-20T21:30:21.681Z",
"consumables": "1 day",
"name": "Storm IV Twin-Pod cloud car",
"created": "2014-12-15T12:58:50.530Z",
"cargo_capacity": "10",
"passengers": "0",
"max_atmosphering_speed": "1500",
"crew": "2",
"length": "7",
"model": "Storm IV Twin-Pod",
"cost_in_credits": "75000",
"manufacturer": "Bespin Motors",
"image": "storm_iv_twin-pod_cloud_car.jpg"
},
"model": "resources.transport",
"pk": 20
},
{
"fields": {
"edited": "2014-12-20T21:23:49.897Z",
"consumables": "1 month",
"name": "Slave 1",
"created": "2014-12-15T13:00:56.332Z",
"cargo_capacity": "70000",
"passengers": "6",
"max_atmosphering_speed": "1000",
"crew": "1",
"length": "21.5",
"model": "Firespray-31-class patrol and attack",
"cost_in_credits": "unknown",
"manufacturer": "Kuat Systems Engineering",
"image": "slave_1.jpg"
},
"model": "resources.transport",
"pk": 21
},
{
"fields": {
"edited": "2014-12-20T21:23:49.900Z",
"consumables": "2 months",
"name": "Imperial shuttle",
"created": "2014-12-15T13:04:47.235Z",
"cargo_capacity": "80000",
"passengers": "20",
"max_atmosphering_speed": "850",
"crew": "6",
"length": "20",
"model": "Lambda-class T-4a shuttle",
"cost_in_credits": "240000",
"manufacturer": "Sienar Fleet Systems",
"image": "imperial_shuttle.jpg"
},
"model": "resources.transport",
"pk": 22
},
{
"fields": {
"edited": "2014-12-20T21:23:49.902Z",
"consumables": "2 years",
"name": "EF76 Nebulon-B escort frigate",
"created": "2014-12-15T13:06:30.813Z",
"cargo_capacity": "6000000",
"passengers": "75",
"max_atmosphering_speed": "800",
"crew": "854",
"length": "300",
"model": "EF76 Nebulon-B escort frigate",
"cost_in_credits": "8500000",
"manufacturer": "Kuat Drive Yards",
"image": "ef76_nebulon-b_escort_frigate.jpg"
},
"model": "resources.transport",
"pk": 23
},
{
"fields": {
"edited": "2014-12-20T21:30:21.684Z",
"consumables": "Live food tanks",
"name": "Sail barge",
"created": "2014-12-18T10:44:14.217Z",
"cargo_capacity": "2000000",
"passengers": "500",
"max_atmosphering_speed": "100",
"crew": "26",
"length": "30",
"model": "Modified Luxury Sail Barge",
"cost_in_credits": "285000",
"manufacturer": "Ubrikkian Industries Custom Vehicle Division",
"image": "sail_barge.jpg"
},
"model": "resources.transport",
"pk": 24
},
{
"fields": {
"edited": "2014-12-20T21:30:21.688Z",
"consumables": "1 day",
"name": "Bantha-II cargo skiff",
"created": "2014-12-18T10:48:03.208Z",
"cargo_capacity": "135000",
"passengers": "16",
"max_atmosphering_speed": "250",
"crew": "5",
"length": "9.5",
"model": "Bantha-II",
"cost_in_credits": "8000",
"manufacturer": "Ubrikkian Industries",
"image": "bantha-ii_cargo_skiff.jpg"
},
"model": "resources.transport",
"pk": 25
},
{
"fields": {
"edited": "2014-12-20T21:30:21.691Z",
"consumables": "2 days",
"name": "TIE/IN interceptor",
"created": "2014-12-18T10:50:28.225Z",
"cargo_capacity": "75",
"passengers": "0",
"max_atmosphering_speed": "1250",
"crew": "1",
"length": "9.6",
"model": "Twin Ion Engine Interceptor",
"cost_in_credits": "unknown",
"manufacturer": "Sienar Fleet Systems",
"image": "tie/in_interceptor.jpg"
},
"model": "resources.transport",
"pk": 26
},
{
"fields": {
"edited": "2014-12-20T21:23:49.904Z",
"consumables": "2 years",
"name": "Calamari Cruiser",
"created": "2014-12-18T10:54:57.804Z",
"cargo_capacity": "unknown",
"passengers": "1200",
"max_atmosphering_speed": "n/a",
"crew": "5400",
"length": "1200",
"model": "MC80 Liberty type Star Cruiser",
"cost_in_credits": "104000000",
"manufacturer": "Mon Calamari shipyards",
"image": "calamari_cruiser.jpg"
},
"model": "resources.transport",
"pk": 27
},
{
"fields": {
"edited": "2014-12-20T21:23:49.907Z",
"consumables": "1 week",
"name": "A-wing",
"created": "2014-12-18T11:16:34.542Z",
"cargo_capacity": "40",
"passengers": "0",
"max_atmosphering_speed": "1300",
"crew": "1",
"length": "9.6",
"model": "RZ-1 A-wing Interceptor",
"cost_in_credits": "175000",
"manufacturer": "Alliance Underground Engineering, Incom Corporation",
"image": "a-wing.jpg"
},
"model": "resources.transport",
"pk": 28
},
{
"fields": {
"edited": "2014-12-20T21:23:49.909Z",
"consumables": "1 week",
"name": "B-wing",
"created": "2014-12-18T11:18:04.763Z",
"cargo_capacity": "45",
"passengers": "0",
"max_atmosphering_speed": "950",
"crew": "1",
"length": "16.9",
"model": "A/SF-01 B-wing starfighter",
"cost_in_credits": "220000",
"manufacturer": "Slayn & Korpil",
"image": "b-wing.jpg"
},
"model": "resources.transport",
"pk": 29
},
{
"fields": {
"edited": "2014-12-20T21:30:21.693Z",
"consumables": "1 day",
"name": "Imperial Speeder Bike",
"created": "2014-12-18T11:20:04.625Z",
"cargo_capacity": "4",
"passengers": "1",
"max_atmosphering_speed": "360",
"crew": "1",
"length": "3",
"model": "74-Z speeder bike",
"cost_in_credits": "8000",
"manufacturer": "Aratech Repulsor Company",
"image": "imperial_speeder_bike.jpg"
},
"model": "resources.transport",
"pk": 30
},
{
"fields": {
"edited": "2014-12-20T21:23:49.912Z",
"consumables": "unknown",
"name": "Republic Cruiser",
"created": "2014-12-19T17:01:31.488Z",
"cargo_capacity": "unknown",
"passengers": "16",
"max_atmosphering_speed": "900",
"crew": "9",
"length": "115",
"model": "Consular-class cruiser",
"cost_in_credits": "unknown",
"manufacturer": "Corellian Engineering Corporation",
"image": "republic_cruiser.jpg"
},
"model": "resources.transport",
"pk": 31
},
{
"fields": {
"edited": "2014-12-20T21:23:49.915Z",
"consumables": "500 days",
"name": "Droid control ship",
"created": "2014-12-19T17:04:06.323Z",
"cargo_capacity": "4000000000",
"passengers": "139000",
"max_atmosphering_speed": "n/a",
"crew": "175",
"length": "3170",
"model": "Lucrehulk-class Droid Control Ship",
"cost_in_credits": "unknown",
"manufacturer": "Hoersch-Kessel Drive, Inc.",
"image": "droid_control_ship.jpg"
},
"model": "resources.transport",
"pk": 32
},
{
"fields": {
"edited": "2014-12-20T21:30:21.697Z",
"consumables": "none",
"name": "Vulture Droid",
"created": "2014-12-19T17:09:53.584Z",
"cargo_capacity": "0",
"passengers": "0",
"max_atmosphering_speed": "1200",
"crew": "0",
"length": "3.5",
"model": "Vulture-class droid starfighter",
"cost_in_credits": "unknown",
"manufacturer": "Haor Chall Engineering, Baktoid Armor Workshop",
"image": "vulture_droid.jpg"
},
"model": "resources.transport",
"pk": 33
},
{
"fields": {
"edited": "2014-12-20T21:30:21.700Z",
"consumables": "unknown",
"name": "Multi-Troop Transport",
"created": "2014-12-19T17:12:04.400Z",
"cargo_capacity": "12000",
"passengers": "112",
"max_atmosphering_speed": "35",
"crew": "4",
"length": "31",
"model": "Multi-Troop Transport",
"cost_in_credits": "138000",
"manufacturer": "Baktoid Armor Workshop",
"image": "multi-troop_transport.jpg"
},
"model": "resources.transport",
"pk": 34
},
{
"fields": {
"edited": "2014-12-20T21:30:21.703Z",
"consumables": "unknown",
"name": "Armored Assault Tank",
"created": "2014-12-19T17:13:29.799Z",
"cargo_capacity": "unknown",
"passengers": "6",
"max_atmosphering_speed": "55",
"crew": "4",
"length": "9.75",
"model": "Armoured Assault Tank",
"cost_in_credits": "unknown",
"manufacturer": "Baktoid Armor Workshop",
"image": "armored_assault_tank.jpg"
},
"model": "resources.transport",
"pk": 35
},
{
"fields": {
"edited": "2014-12-20T21:30:21.705Z",
"consumables": "none",
"name": "Single Trooper Aerial Platform",
"created": "2014-12-19T17:15:09.511Z",
"cargo_capacity": "none",
"passengers": "0",
"max_atmosphering_speed": "400",
"crew": "1",
"length": "2",
"model": "Single Trooper Aerial Platform",
"cost_in_credits": "2500",
"manufacturer": "Baktoid Armor Workshop",
"image": "single_trooper_aerial_platform.jpg"
},
"model": "resources.transport",
"pk": 36
},
{
"fields": {
"edited": "2014-12-20T21:30:21.707Z",
"consumables": "1 day",
"name": "C-9979 landing craft",
"created": "2014-12-19T17:20:36.373Z",
"cargo_capacity": "1800000",
"passengers": "284",
"max_atmosphering_speed": "587",
"crew": "140",
"length": "210",
"model": "C-9979 landing craft",
"cost_in_credits": "200000",
"manufacturer": "Haor Chall Engineering",
"image": "c-9979_landing_craft.jpg"
},
"model": "resources.transport",
"pk": 37
},
{
"fields": {
"edited": "2014-12-20T21:30:21.710Z",
"consumables": "unknown",
"name": "Tribubble bongo",
"created": "2014-12-19T17:37:37.924Z",
"cargo_capacity": "1600",
"passengers": "2",
"max_atmosphering_speed": "85",
"crew": "1",
"length": "15",
"model": "Tribubble bongo",
"cost_in_credits": "unknown",
"manufacturer": "Otoh Gunga Bongameken Cooperative",
"image": "tribubble_bongo.jpg"
},
"model": "resources.transport",
"pk": 38
},
{
"fields": {
"edited": "2014-12-20T21:23:49.917Z",
"consumables": "7 days",
"name": "Naboo fighter",
"created": "2014-12-19T17:39:17.582Z",
"cargo_capacity": "65",
"passengers": "0",
"max_atmosphering_speed": "1100",
"crew": "1",
"length": "11",
"model": "N-1 starfighter",
"cost_in_credits": "200000",
"manufacturer": "Theed Palace Space Vessel Engineering Corps",
"image": "naboo_fighter.jpg"
},
"model": "resources.transport",
"pk": 39
},
{
"fields": {
"edited": "2014-12-20T21:23:49.919Z",
"consumables": "unknown",
"name": "Naboo Royal Starship",
"created": "2014-12-19T17:45:03.506Z",
"cargo_capacity": "unknown",
"passengers": "unknown",
"max_atmosphering_speed": "920",
"crew": "8",
"length": "76",
"model": "J-type 327 Nubian royal starship",
"cost_in_credits": "unknown",
"manufacturer": "Theed Palace Space Vessel Engineering Corps, Nubia Star Drives",
"image": "naboo_royal_starship.jpg"
},
"model": "resources.transport",
"pk": 40
},
{
"fields": {
"edited": "2014-12-20T21:23:49.922Z",
"consumables": "30 days",
"name": "Scimitar",
"created": "2014-12-20T09:39:56.116Z",
"cargo_capacity": "2500000",
"passengers": "6",
"max_atmosphering_speed": "1180",
"crew": "1",
"length": "26.5",
"model": "Star Courier",
"cost_in_credits": "55000000",
"manufacturer": "Republic Sienar Systems",
"image": "scimitar.jpg"
},
"model": "resources.transport",
"pk": 41
},
{
"fields": {
"edited": "2014-12-20T21:30:21.712Z",
"consumables": "unknown",
"name": "Sith speeder",
"created": "2014-12-20T10:09:56.095Z",
"cargo_capacity": "2",
"passengers": "0",
"max_atmosphering_speed": "180",
"crew": "1",
"length": "1.5",
"model": "FC-20 speeder bike",
"cost_in_credits": "4000",
"manufacturer": "Razalon",
"image": "sith_speeder.jpg"
},
"model": "resources.transport",
"pk": 42
},
{
"fields": {
"edited": "2014-12-20T21:23:49.925Z",
"consumables": "1 year",
"name": "J-type diplomatic barge",
"created": "2014-12-20T11:05:51.237Z",
"cargo_capacity": "unknown",
"passengers": "10",
"max_atmosphering_speed": "2000",
"crew": "5",
"length": "39",
"model": "J-type diplomatic barge",
"cost_in_credits": "2000000",
"manufacturer": "Theed Palace Space Vessel Engineering Corps, Nubia Star Drives",
"image": "j-type_diplomatic_barge.jpg"
},
"model": "resources.transport",
"pk": 43
},
{
"fields": {
"edited": "2014-12-20T21:30:21.714Z",
"consumables": "none",
"name": "Zephyr-G swoop bike",
"created": "2014-12-20T16:24:16.026Z",
"cargo_capacity": "200",
"passengers": "1",
"max_atmosphering_speed": "350",
"crew": "1",
"length": "3.68",
"model": "Zephyr-G swoop bike",
"cost_in_credits": "5750",
"manufacturer": "Mobquet Swoops and Speeders",
"image": "zephyr-g_swoop_bike.jpg"
},
"model": "resources.transport",
"pk": 44
},
{
"fields": {
"edited": "2014-12-20T21:30:21.716Z",
"consumables": "unknown",
"name": "Koro-2 Exodrive airspeeder",
"created": "2014-12-20T17:17:33.526Z",
"cargo_capacity": "80",
"passengers": "1",
"max_atmosphering_speed": "800",
"crew": "1",
"length": "6.6",
"model": "Koro-2 Exodrive airspeeder",
"cost_in_credits": "unknown",
"manufacturer": "Desler Gizh Outworld Mobility Corporation",
"image": "koro-2_exodrive_airspeeder.jpg"
},
"model": "resources.transport",
"pk": 45
},
{
"fields": {
"edited": "2014-12-20T21:30:21.719Z",
"consumables": "unknown",
"name": "XJ-6 airspeeder",
"created": "2014-12-20T17:19:19.991Z",
"cargo_capacity": "unknown",
"passengers": "1",
"max_atmosphering_speed": "720",
"crew": "1",
"length": "6.23",
"model": "XJ-6 airspeeder",
"cost_in_credits": "unknown",
"manufacturer": "Narglatch AirTech prefabricated kit",
"image": "xj-6_airspeeder.jpg"
},
"model": "resources.transport",
"pk": 46
},
{
"fields": {
"edited": "2014-12-20T21:23:49.928Z",
"consumables": "unknown",
"name": "AA-9 Coruscant freighter",
"created": "2014-12-20T17:24:23.509Z",
"cargo_capacity": "unknown",
"passengers": "30000",
"max_atmosphering_speed": "unknown",
"crew": "unknown",
"length": "390",
"model": "Botajef AA-9 Freighter-Liner",
"cost_in_credits": "unknown",
"manufacturer": "Botajef Shipyards",
"image": "aa-9_coruscant_freighter.jpg"
},
"model": "resources.transport",
"pk": 47
},
{
"fields": {
"edited": "2014-12-20T21:23:49.930Z",
"consumables": "7 days",
"name": "Jedi starfighter",
"created": "2014-12-20T17:35:23.906Z",
"cargo_capacity": "60",
"passengers": "0",
"max_atmosphering_speed": "1150",
"crew": "1",
"length": "8",
"model": "Delta-7 Aethersprite-class interceptor",
"cost_in_credits": "180000",
"manufacturer": "Kuat Systems Engineering",
"image": "jedi_starfighter.jpg"
},
"model": "resources.transport",
"pk": 48
},
{
"fields": {
"edited": "2014-12-20T21:23:49.932Z",
"consumables": "unknown",
"name": "H-type Nubian yacht",
"created": "2014-12-20T17:46:46.847Z",
"cargo_capacity": "unknown",
"passengers": "unknown",
"max_atmosphering_speed": "8000",
"crew": "4",
"length": "47.9",
"model": "H-type Nubian yacht",
"cost_in_credits": "unknown",
"manufacturer": "Theed Palace Space Vessel Engineering Corps",
"image": "h-type_nubian_yacht.jpg"
},
"model": "resources.transport",
"pk": 49
},
{
"fields": {
"edited": "2014-12-20T21:30:21.723Z",
"consumables": "unknown",
"name": "LAAT/i",
"created": "2014-12-20T18:01:21.014Z",
"cargo_capacity": "170",
"passengers": "30",
"max_atmosphering_speed": "620",
"crew": "6",
"length": "17.4",
"model": "Low Altitude Assault Transport/infrantry",
"cost_in_credits": "unknown",
"manufacturer": "Rothana Heavy Engineering",
"image": "laat/i.jpg"
},
"model": "resources.transport",
"pk": 50
},
{
"fields": {
"edited": "2014-12-20T21:30:21.725Z",
"consumables": "unknown",
"name": "LAAT/c",
"created": "2014-12-20T18:02:46.802Z",
"cargo_capacity": "40000",
"passengers": "0",
"max_atmosphering_speed": "620",
"crew": "1",
"length": "28.82",
"model": "Low Altitude Assault Transport/carrier",
"cost_in_credits": "unknown",
"manufacturer": "Rothana Heavy Engineering",
"image": "laat/c.jpg"
},
"model": "resources.transport",
"pk": 51
},
{
"fields": {
"edited": "2014-12-20T21:23:49.935Z",
"consumables": "2 years",
"name": "Republic Assault ship",
"created": "2014-12-20T18:08:42.926Z",
"cargo_capacity": "11250000",
"passengers": "16000",
"max_atmosphering_speed": "unknown",
"crew": "700",
"length": "752",
"model": "Acclamator I-class assault ship",
"cost_in_credits": "unknown",
"manufacturer": "Rothana Heavy Engineering",
"image": "republic_assault_ship.jpg"
},
"model": "resources.transport",
"pk": 52
},
{
"fields": {
"edited": "2014-12-20T21:30:21.728Z",
"consumables": "21 days",
"name": "AT-TE",
"created": "2014-12-20T18:10:07.560Z",
"cargo_capacity": "10000",
"passengers": "36",
"max_atmosphering_speed": "60",
"crew": "6",
"length": "13.2",
"model": "All Terrain Tactical Enforcer",
"cost_in_credits": "unknown",
"manufacturer": "Rothana Heavy Engineering, Kuat Drive Yards",
"image": "at-te.jpg"
},
"model": "resources.transport",
"pk": 53
},
{
"fields": {
"edited": "2014-12-20T21:30:21.731Z",
"consumables": "7 days",
"name": "SPHA",
"created": "2014-12-20T18:12:32.315Z",
"cargo_capacity": "500",
"passengers": "30",
"max_atmosphering_speed": "35",
"crew": "25",
"length": "140",