-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcars.json
4303 lines (4303 loc) · 185 KB
/
cars.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
[
{
"name": "Futo",
"brand": "Karin",
"description": "The Futo is Karin's gift to a core demographic that needs nothing more than a lightweight chassis, rear wheel drive and dangerously poor traction to have some good wholesome fun.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/75/Karin-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/6/67/Futo-GTAV-front.PNG",
"price": "$17,500.00",
"category": "Coupe",
"spawncode": "futo",
"trunkspace": "100 KG",
"performance": {
"power": 45,
"acceleration": 63,
"handling": 62,
"topspeed": 65
}
},
{
"name": "Felon",
"brand": "Lampadati",
"description": "An Italian luxury car company founded in Bologna at the beginning of the 20th Century that focused on racing cars. Having failed to win many Grand Prix, they focused on making sports cars that impress vapid women. They've done this exceptionally well.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/6/69/Lampadati-GTAO-Logo2.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/de/Felon-GTAV-front.png",
"price": "$31,000.00",
"category": "Coupe",
"spawncode": "felon",
"trunkspace": "100 KG",
"performance": {
"power": 69,
"acceleration": 60,
"handling": 77,
"topspeed": 78
}
},
{
"name": "Windsor",
"brand": "Enus",
"description": "Blurring the lines between an automobile and an English aristocrat's mansion, this is a car that could even give a nu-metal fan an air of class and taste. The bumbling manufacturer made the aerodynamics so poor and the chassis so heavy that its dual-turbo engine can barely get it to a kerb-crawl, but that's part of (or all of) its British charm.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/2/26/Windsor-GTAV-front.png",
"price": "27,000.00",
"category": "Coupe",
"spawncode": "windsor",
"trunkspace": "100 KG",
"performance": {
"power": 55,
"acceleration": 65,
"handling": 64,
"topspeed": 78
}
},
{
"name": "Oracle XS",
"brand": "Übermacht",
"description": "The ultimate status symbol for the wannabe executive. Let the world know that you're not just a middle-manager anymore. You're a middle-manager who's financially crippled himself with a car he can't afford. Leverage the dream today.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/2/22/OracleXS-GTAV-front.png",
"price": "$28,000.00",
"category": "Coupe",
"spawncode": "oracle2",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 60,
"handling": 50,
"topspeed": 60
}
},
{
"name": "Felon GT",
"brand": "Lampadati",
"description": "The GT is a 2-door convertible variant of the standard Felon because nothing puts the damper on a midlife crisis quicker than a pair of screaming kids in the back seat.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/6/69/Lampadati-GTAO-Logo2.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/1/17/FelonGTUp-GTAV-front.png",
"price": "37,000.00",
"category": "Coupe",
"spawncode": "felon2",
"trunkspace": "100 KG",
"performance": {
"power": 69,
"acceleration": 60,
"handling": 76,
"topspeed": 78
}
},
{
"name": "Zion Cabrio",
"brand": "Übermacht",
"description": "German engineering and design taken very, very seriously. This convertible Zion model is guaranteed to put the wind in any senior executive combover.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/cb/ZionCabrioDown-GTAV-front.png",
"price": "$28,000.00",
"category": "Coupe",
"spawncode": "zion2",
"trunkspace": "100 KG",
"performance": {
"power": 67,
"acceleration": 55,
"handling": 79,
"topspeed": 78
}
},
{
"name": "F620",
"brand": "Ocelot",
"description": "If this car could talk, it would say 'I'm having a midlife crisis'. Just cheaper than the divorce that'll result from having an affair with your personal assistant, but the two are by no means mutually exclusive.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/76/Ocelot-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/f/f8/F620-GTAV-front.png",
"price": "32,500.00",
"category": "Coupe",
"spawncode": "f620",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Sentinel Classic",
"brand": "Übermacht",
"description": "There was a time when a road-legal coupe could moonlight as a performance rally car and no one batted an eye. Consumers didn't need the reassurance of a touch-screen interface and integrated GPS. People could get behind a no-frills, lightweight bucket of speed, and their relatives wouldn't sue the manufacturer when it burst into flames. Those were the days of the Sentinel Classic - and now they're back.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/dc/SentinelClassic-GTAO-front.png",
"price": "$70,000.00",
"category": "Coupe",
"spawncode": "sentinel3",
"trunkspace": "40 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Jackal",
"brand": "Ocelot",
"description": "Modern and forward-thinking on the outside, trapped in the 19th century on the inside, the Jackal is as British as they come. More leather and wood paneling than any other luxury car in its class. But don't mention 'class'...",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/76/Ocelot-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/4/48/Jackal-GTAV-front.png",
"price": "19,000.00",
"category": "Coupe",
"spawncode": "jackal",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Exemplar",
"brand": "Dewbauchee",
"description": "The British are well known for their superior auto manufacturing prowess. The company has provided cars for counts, Grand Prix, and doughy dignitaries across the UK.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/4/4d/Dewbauchee-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/de/Exemplar-GTAV-front.png",
"price": "$40,000.00",
"category": "Coupe",
"spawncode": "exemplar",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Cognoscenti Cabrio",
"brand": "Enus",
"description": "The Cog Cabrio is a top-end luxury car that combines elegance with performance. A car that says, 'I'm a man with money but also a modicum of taste'. A car that says, 'I'm not afraid to transfer $185,000 over an insecure internet connection to an unknown entity'. A car that says, 'You never accepted me, Dad, but look at me now'.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/2/28/CognoscentiCabrioUp-GTAV-front.png",
"price": "$30,000.00",
"category": "Coupe",
"spawncode": "cogcabrio",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Windsor Drop",
"brand": "Enus",
"description": "How do you improve on something as flawlessly pompous as the Enus Windsor? The answer is something you need to experience to believe: so hop inside, mash the touchscreen interface, feel the canvas roof glide away above you, and gaze in triumph at all the lowly pedestrians as your appalling toupee flutters away in the 30mph breeze.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/d3/WindsorDropDown-GTAO-front.png",
"price": "$34,000.00",
"category": "Coupe",
"spawncode": "windsor2",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Zion",
"brand": "Übermacht",
"description": "A German beauty of timeless passion and sleek design. When you're interested in class and an overpowered engine, there is no other choice.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Zion-GTAV-front.png",
"price": "$22,000.00",
"category": "Coupe",
"spawncode": "zion",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Sential XS",
"brand": "Übermacht",
"description": "When you're doing 90 in the fast lane, this is the car right on your ass flashing its high beams. If you're quite rich, and really an asshole, and you want everyone to know it, you can't do better.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/d0/SentinelXS-GTAV-front.png",
"price": "$33,000.00",
"category": "Coupe",
"spawncode": "sentinel2",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Schafter",
"brand": "Benefactor",
"description": "Good-looking yet utilitarian, sexy yet asexual, slender yet terrifyingly powerful, the Schafter is German engineering at its very finest.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1d/Benefactor-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/2/2a/Schafter-GTAV-FrontQuarter.png",
"price": "$16,000.00",
"category": "Sedan",
"spawncode": "schafter2",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Stratum",
"brand": "Zirconium",
"description": "Don't miss this opportunity to snap up a Classic Stratum station wagon at a bargain price. A short-lived Zirconium model that was plagued with bad reviews... Or as we like to call it, Limited Edition!",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/c2/Name-IV-Zirconium.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/3/38/Stratum-GTAV-front.png",
"price": "$15,000.00",
"category": "Sedan",
"spawncode": "stratum",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Fugitive",
"brand": "Cheval",
"description": "The Fugitive is the go-to cruiser for law enforcement and those that want to pretend they are law enforcement. The gas mileage isn't so great, but cops mostly sit with the car idling anyway.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/b/bc/Cheval-Logo-Badge-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/5/5c/Fugitive-GTAV-front.png",
"price": "$20,000.00",
"category": "Sedan",
"spawncode": "fugitive",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Premier",
"brand": "Declasse",
"description": "In production from 2004 to 2010, the Declasse Premier never gained traction in the US market but was insanely popular in Canada. Why? Nobody knows... It's a national psyche that defies analysis.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/ca/Premier-GTAV-front.png",
"price": "$12,000.00",
"category": "Sedan",
"spawncode": "premier",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Primo",
"brand": "Albany",
"description": "Nothing said 'buy American' when imports were sweeping the States in the 70s and 80s like the Albany Primo. A midsize luxury car that was built to last.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1a/Albany-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/1/10/Primo-GTAV-front.png",
"price": "$6,000.00",
"category": "Sedan",
"spawncode": "primo",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Super Diamond",
"brand": "Enus",
"description": "Synonymous with style and luxury, the interior of Super Diamond has so much leather and wood, it's like sitting in a library. The historic British car manufacturer was taken over by the Germans in the late 90s, with no hard feelings whatsoever.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/d8/SuperDiamond-GTAV-front.png",
"price": "$17,000.00",
"category": "Sedan",
"spawncode": "superd",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Ingot",
"brand": "Vulcar",
"description": "Reputed to be the safest car ever made, this classic Vulcar station wagon has been the vehicle of choice for really terrible drivers for 20 years. The closest thing you'll ever get to a tank for just over $10k.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/6/68/Vulcar-GTAV-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/6/62/Ingot-GTAV-front.png",
"price": "$4,999.00",
"category": "Sedan",
"spawncode": "ingot",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Stanier",
"brand": "Vapid",
"description": "If you took a cab or got arrested in the 1990s, there's a high chance you ended up in the back of a Vapid Stanier. Discontinued following widespread reports of fuel tanks exploding on impact in rear-end collisions. So try to avoid that.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/33/Vapid-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/7/7b/Stanier-GTAV-front.png",
"price": "$19,000.00",
"category": "Sedan",
"spawncode": "stanier",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Washington",
"brand": "Albany",
"description": "Is there a more iconic town car than the Washington? Own a piece of livery history! (Just don't loiter for too long at traffic lights or someone will get in the back and ask you to take them to the airport)",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1a/Albany-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/1/12/Washington-GTAV-front.png",
"price": "$7,000.00",
"category": "Sedan",
"spawncode": "washington",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Asea",
"brand": "Declasse",
"description": "An affordable, no frills, fuel-efficient compact sedan. When 'ample headroom' is central to the marketing campaign, what you see is what you get.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/5/58/Asea-GTAV-front.png",
"price": "$2,500.00",
"category": "Sedan",
"spawncode": "asea",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Surge",
"brand": "Cheval",
"description": "Take shit from your gas guzzling buddies, and spend hours at charging stations just to get mistaken for a rideshare driver. The Cheval Surge turns the zero emissions dream into a dull reality.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/b/bc/Cheval-Logo-Badge-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/c2/Surge-GTAV-front.png",
"price": "$20,000.00",
"category": "Sedan",
"spawncode": "surge",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Intruder",
"brand": "Karin",
"description": "The Japanese-made Intruder was launched by Karin to compete in the same market as German high-performance luxury cars (i.e. by copying them exactly using substandard parts and selling for half the price).",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/75/Karin-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/7/7c/Intruder-GTAV-front.png",
"price": "$11,250.00",
"category": "Sedan",
"spawncode": "intruder",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Glendale",
"brand": "Benefactor",
"description": "What's known in the trade as a 'drug dealers car'. 1990s luxury German four door sedan turned 2010s roving depot for stepped-on cocaine. Expect to get stopped by the cops and stuck up by junkies.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1d/Benefactor-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/4/47/Glendale-GTAV-front.png",
"price": "$3,400.00",
"category": "Sedan",
"spawncode": "glendale",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Primo Custom",
"brand": "Albany",
"description": "When cheap imports flooded the market through the 80s and 90s, the US car industry did what any proud free marketeer would do: grab a government subsidy, snort an exe bonus and crap out a four-door sedan every bit as drab and forgettable as its Japanese counterparts. It's not often you find a canvas this black, to go wild - it's not like 2 tons of street mods are going to ruin the performance. Eligible to customization at Benny's Original Motor Works.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1a/Albany-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/ca/PrimoCustom-GTAO-front.png",
"price": "$14,500.00",
"category": "Sedan",
"spawncode": "primo2",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Warrener",
"brand": "Vulcar",
"description": "The legendary Swedish four door sedan. All the boxy design of a 1980s Vulcar, with none of the reliability. For lovers of tight jeans, micro breweries, and 70s cop shows.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/6/68/Vulcar-GTAV-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/3/3c/Warrener-GTAV-front.png",
"price": "$4,000.00",
"category": "Sedan",
"spawncode": "warrener",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Emperor",
"brand": "Albany",
"description": "You get what you pay for...",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1a/Albany-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/4/4c/Emperor-GTAV-front.png",
"price": "$4,250.00",
"category": "Sedan",
"spawncode": "emperor",
"trunkspace": "100 KG",
"performance": {
"power": 35,
"acceleration": 30,
"handling": 30,
"topspeed": 40
}
},
{
"name": "Oracle",
"brand": "Übermacht",
"description": "A fantastic piece of German engineering. So much that an oil change will cost you $500 at the dealership.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Revolter-GTAV-detail.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/a/a4/Oracle-GTAV-front.png",
"price": "$22,000.00",
"category": "Sedan",
"spawncode": "oracle",
"trunkspace": "40 KG",
"performance": {
"power": 60,
"acceleration": 60,
"handling": 50,
"topspeed": 60
}
},
{
"name": "Stafford",
"brand": "Enus",
"description": "Stafford drivers have a reputation for plowing through more pedestrians than any other consumer demographic. But don't trust the statistics: if you look closely, you'll see that the poor and disadvantaged are throwing themselves into the path of its cast iron radiator grille, in healthy competition for the honor of being mown down by something this magnificent.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/3/38/Stafford-GTAO-front.png",
"price": "$30,000.00",
"category": "Sedan",
"spawncode": "stafford",
"trunkspace": "60 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Tailgater",
"brand": "Obey",
"description": "Luxury German Sedan. Better than a BF, but not quite a Benefactor. Fast and practical with a classy look, this is just the car to over-leverage on.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/38/Obey-Logo-Badge-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/e/e1/Tailgater-GTAV-front.png",
"price": "$22,000.00",
"category": "Sedan",
"spawncode": "tailgater",
"trunkspace": "100 KG",
"performance": {
"power": 64,
"acceleration": 50,
"handling": 42,
"topspeed": 68
}
},
{
"name": "Regina",
"brand": "Dundreary",
"description": "Signature Dundreary grille, opulent wood panelling, roomy luggage compartment, and a roof rack for the family dog - the ultimate vehicle to live the 1960s suburban dream today.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/9/9d/Dundreary-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/7/71/Regina-GTAV-front.png",
"price": "$7,000.00",
"category": "Sedan",
"spawncode": "regina",
"trunkspace": "100 KG",
"performance": {
"power": 35,
"acceleration": 30,
"handling": 27,
"topspeed": 35
}
},
{
"name": "Cognoscenti",
"brand": "Enus",
"description": "The original Cog Cabrio was a landmark in bringing luxury grand tourers to a wider market, which explains why every five-figure broker with a pinstripe suit and a history of sexual assault has one. Invest in this new four-door model, with more headroom and a plush interior, and you should stand out of the crowd for at least another couple of months. This model has an extended wheelbase. Armored edition available.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1f/Enus-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/f/ff/Cognoscenti-GTAO-front.png",
"price": "$22,500.00",
"category": "Sedan",
"spawncode": "cognoscenti",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 60,
"handling": 63,
"topspeed": 65
}
},
{
"name": "Prairie",
"brand": "Bollokan",
"description": "The Prairie is a good starter vehicle if you are wanting something the looks nice and performs relatively well. Being FWD the Prairie can take corners nicely. Not exactly your 'getaway' car but can be fun drifiting around the city.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/f/f4/BollokanLogoGTAV.png",
"image": "https://vignette2.wikia.nocookie.net/gtawiki/images/0/06/Prairie-GTAV-front.png",
"price": "$30,000.00",
"category": "Compacts",
"spawncode": "prairie",
"trunkspace": "200 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Issi Classic",
"brand": "Weeny",
"description": "Sure, you could afford the latest Ocelot, or a vintage Enus - but you're not a show-off. You're just a slightly quirky, totally down-to-earth person looking for a way to tell everyone how slightly quirky and totally down-to-earth you are. Well, look no further, because for the last half-century the Issi Classic has been the closest thing on four wheels to screaming 'I've got nothing to prove to anyone' in the face of every stranger you meet.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/3b/Weeny-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/9/9f/IssiClassic-GTAO-front.png",
"price": "$5,000.00",
"category": "Compacts",
"spawncode": "issi3",
"trunkspace": "100 KG",
"performance": {
"power": 45,
"acceleration": 50,
"handling": 50,
"topspeed": 60
}
},
{
"name": "Blista",
"brand": "Dinka",
"description": "Ballin on a budget",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/e5/Dinka-GTAO-Logo.svg",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/c0/Blista-GTAV-front.png",
"price": "$13,000.00",
"category": "Compacts",
"spawncode": "blista",
"trunkspace": "200 KG",
"performance": {
"power": 60,
"acceleration": 55,
"handling": 55,
"topspeed": 65
}
},
{
"name": "Issi",
"brand": "Weeny",
"description": "A favorite in Mirror Park, this sporty little guy is easy to park. Great handling, anti-lock brakes, and a stereo that only plays power pop hits. Ironically. Go team!",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/3b/Weeny-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/7/7d/IssiUp-GTAV-front.png",
"price": "$7,000.00",
"category": "Compacts",
"spawncode": "issi2",
"trunkspace": "100 KG",
"performance": {
"power": 69,
"acceleration": 58,
"handling": 62,
"topspeed": 69
}
},
{
"name": "Rhapsody",
"brand": "Declasse",
"description": "Nothing says post-irony like a retro futuristic American jelly bean car. Small with a wide glass ass to showcase your samurai bun and allow for 360 degree Snapmatic photography.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/cc/Rhapsody-GTAV-front.png",
"price": "$10,000.00",
"category": "Compacts",
"spawncode": "rhapsody",
"trunkspace": "100 KG",
"performance": {
"power": 35,
"acceleration": 30,
"handling": 37,
"topspeed": 37
}
},
{
"name": "Panto",
"brand": "Benefactor",
"description": "The giant German carmaker's leap into the micro market. Designed for the narrow, parking space deprived roads of Europe, this is sure to stick out on the eight lane freeways, and in the mile-wide parking lots of Los Santos, until you get crushed by an SUV driven by an over-medicated housewife.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1d/Benefactor-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/a/ad/Panto-GTAV-front.png",
"price": "$3,200.00",
"category": "Compacts",
"spawncode": "panto",
"trunkspace": "100 KG",
"performance": {
"power": 40,
"acceleration": 40,
"handling": 42,
"topspeed": 40
}
},
{
"name": "Blista Compact",
"brand": "Dinka",
"description": "Looks can deceive. The Blista's a small, ugly hatchback, but it's got something special under the hood - a V6 front wheel drive to be precise. Drive it round the city, try not to crash, and don't expect to meet the love of your life... unless they're really faded.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/e5/Dinka-GTAO-Logo.svg",
"image": "https://static.wikia.nocookie.net/gtawiki/images/0/06/BlistaCompact-GTAV-front.png",
"price": "$18,950.00",
"category": "Compacts",
"spawncode": "blista2",
"trunkspace": "100 KG",
"performance": {
"power": 40,
"acceleration": 40,
"handling": 42,
"topspeed": 40
}
},
{
"name": "Tropos",
"brand": "Lampadati",
"description": "Stunningly beautiful and astonishingly violent, the Lampadati Tropos may have a European name, but it's got an American heart. This is the car that defined a whole generation of rally design, so if your favorite pastime is calling other people's choices derivative then this is by far and away your best bet.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/6/69/Lampadati-GTAO-Logo2.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/df/TroposRallye-GTAO-front.png",
"price": "$65,000.00",
"category": "Compacts",
"spawncode": "tropos",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 55,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Dilettante",
"brand": "Karin",
"description": "The best hybrid in its class. Includes a nifty dashboard screen with animations showing you how much gas you are saving, while completely ignoring the thousand pounds of toxic batteries on board. Go green!",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/75/Karin-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/8/80/Dilettante-GTAV-front.png",
"price": "$9,000.00",
"category": "Compacts",
"spawncode": "dilettante",
"trunkspace": "100 KG",
"performance": {
"power": 42,
"acceleration": 40,
"handling": 42,
"topspeed": 47
}
},
{
"name": "Brioso R/A",
"brand": "Grotti",
"description": "You favor light, compact versatile car design. You believe a hot hatch can be just as macho as a lumbering supercar. You describe yourself has having a 'big personality'. You know who you are. Just buy the damn car and get it over with.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/35/Grotti-GTAV-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/8/80/BriosoRA-GTAO-front.png",
"price": "$20,000.00",
"category": "Compacts",
"spawncode": "brioso",
"trunkspace": "200 KG",
"performance": {
"power": 72,
"acceleration": 43,
"handling": 70,
"topspeed": 73
}
},
{
"name": "Dominator GTX",
"brand": "Vapid",
"description": "Step one: take the best-looking muscle car the 60's ever saw, and introduce it to the greatest American supercar of the modern era. Step two: leave them alone in a quiet garage with a few dozen shots of high octane gas, plenty of axel grease and nothing else to do. Step three: the Dominator GTX is born, and it's hungry. When your pedigree is this damn good, there's nothing wrong with keeping it in the family.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/33/Vapid-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/8/8b/DominatorGTX-GTAO-front.png",
"price": "$70,000.00",
"category": "Muscle",
"spawncode": "dominator3",
"trunkspace": "100 KG",
"performance": {
"power": 70,
"acceleration": 68,
"handling": 60,
"topspeed": 77
}
},
{
"name": "Deviant",
"brand": "Schyster",
"description": "It wasn't as beautifully proportioned as the Sabre, or as fast as the Dominator, but that didn't matter - in the 70's, the real connoisseurs of muscle were all about the Deviant. Well now the dark horse is all grown up, and thanks to Team Schyster's ground-breaking remodeling this tricked-out, wild-eyed stallion is all set to put a hoof through your skull at the first opportunity.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/c/c2/Logo-IV-Schyster.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/0/01/Deviant-GTAO-front.png",
"price": "$70,000.00",
"category": "Muscle",
"spawncode": "deviant",
"trunkspace": "300 KG",
"performance": {
"power": 60,
"acceleration": 60,
"handling": 42,
"topspeed": 65
}
},
{
"name": "Hustler",
"brand": "Vapid",
"description": "Don't worry, the confusion is natural. You see that running board swooping low over the front wheels, that high-set radiator grille, the holder for your cigarette holder, and you're safely back where you belong in the 1920s. But then you see the carbon steel reinforcements to the chassis, the turbo charger and the bullbar, and you're somewhere else altogether. Don't try to make sense of it. Just let it do what it needs to do.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/33/Vapid-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/f/f1/Hustler-GTAO-front.png",
"price": "$95,000.00",
"category": "Muscle",
"spawncode": "hustler",
"trunkspace": "100 KG",
"performance": {
"power": 55,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Tulip",
"brand": "Declasse",
"description": "Can you believe something this beautiful was once built and sold for nothing more than Joe Lunchbucket's paycheck? Sure, the Seventies were a crazy time, but what the hell was that about? Luckily for you, civilization is back on track, and these days Joe's food stamps don't count for much when you and the rest of the one percent are dropping last night's poker chips for a slice of his pawpaw's blue-collar chic.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/2/2b/Tulip-GTAO-front.png",
"price": "$80,000.00",
"category": "Muscle",
"spawncode": "tulip",
"trunkspace": "300 KG",
"performance": {
"power": 55,
"acceleration": 40,
"handling": 50,
"topspeed": 60
}
},
{
"name": "Hotknife",
"brand": "Vapid",
"description": "Calling all car nerds who love to spend lots of money building a vehicle that looks like it's from the 1930's, but also kind of looks like it's from the future. The almost-street-legal Hotknife is perfect for getting you from the steampunk social to the furrie convention.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/33/Vapid-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/0/07/Hotknife-GTAV-front.png",
"price": "$90,000.00",
"category": "Muscle",
"spawncode": "hotknife",
"trunkspace": "300 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Tampa",
"brand": "Declasse",
"description": "Winner of multiple industry awards including 'Most Powerful in Class', 'Worst Handling' and 'Biggest Fireball', the Declasse Tampa brings the effortless cool of the 60s to a generation born decades too late. Time to gun the engine, stare directly into a moody sunset and live forever under a roadside grave in the middle of nowhere.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/d/d8/Tampa-GTAO-front.png",
"price": "$24,500.00",
"category": "Muscle",
"spawncode": "tampa",
"trunkspace": "300 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 55,
"topspeed": 60
}
},
{
"name": "Phoenix",
"brand": "Imponte",
"description": "The Phoenix is distinctive by its angled front and flat rear end, sporting rectangular headlights, circular tail light and side trim detail. If you want a timeless car that will spin your tires and empty your bank account, you're looking in the right place.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/78/Imponte-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/a/af/Phoenix-GTAV-front.png",
"price": "$65,000.00",
"category": "Muscle",
"spawncode": "phoenix",
"trunkspace": "100 KG",
"performance": {
"power": 69,
"acceleration": 49,
"handling": 55,
"topspeed": 69
}
},
{
"name": "Virgo Classic",
"brand": "Albany",
"description": "After hours of crate digging, you know when they've found the perfect sample to butcher on your latest EDM track. This is that record. Remix culture meets auto culture with the Virgo, a car that's already lower and slower than any road-certified vehicle can afford to be - and trust us, you ain't seen nothing yet. Your old man thought this was stately and composed back when he was curb crawling his way through the 70s, so jack up, jerk it off, and show him how the young folks get down.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/9/9d/Dundreary-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/1/1b/VirgoClassic-GTAO-front.png",
"price": "$21,000.00",
"category": "Muscle",
"spawncode": "virgo2",
"trunkspace": "225 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Nightshade",
"brand": "Imponte",
"description": "Don't be fooled by the elegant lines and composed styling: like every great muscle car before it, the Nightshade puts out more power than it (or you) can possibly handle. Few cars present as big as a risk to oncoming traffic, or look this good on the back of a tow truck.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/7/78/Imponte-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/3/3e/Nightshade-GTAO-front.png",
"price": "$70,000.00",
"category": "Muscle",
"spawncode": "nightshade",
"trunkspace": "100 KG",
"performance": {
"power": 69,
"acceleration": 49,
"handling": 58,
"topspeed": 69
}
},
{
"name": "Slam Van",
"brand": "Vapid",
"description": "Favorite 50's pickup of San Andreas Lowriders and Liberty City bikers. Smooth lines, chrome details, and shiny paintwork have made the Vapid Slamvan the toy of choice for idiots who won't grow up everywhere.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/3/33/Vapid-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/c/cb/Slamvan-GTAV-front.png",
"price": "$17,000.00",
"category": "Muscle",
"spawncode": "slamvan3",
"trunkspace": "100 KG",
"performance": {
"power": 50,
"acceleration": 50,
"handling": 42,
"topspeed": 55
}
},
{
"name": "Voodoo",
"brand": "Delcasse",
"description": "From the bestseller list of the 60s to the driveway of every self-respecting pimp and gangbanger of the 80s, the Voodoo is your best shot at purchasing the grit and authenticity that died out a decade before you were born. This one may look like it's been left under a bypass and used as a makeshift latrine by a family of hobos, but don't worry - with enough money you can change everything but the stink. This is where a classic starts. Eligible for customization at Benny's Original Motor Works.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/a/aa/Voodoo-GTAIV-front.png",
"price": "$13,000.00",
"category": "Muscle",
"spawncode": "voodoo",
"trunkspace": "100 KG",
"performance": {
"power": 45,
"acceleration": 40,
"handling": 42,
"topspeed": 50
}
},
{
"name": "Picador",
"brand": "Cheval",
"description": "1960's entry in a long, esteemed line of Cheval coupé utility vehicles. Combining all the style of a two-door hardtop with the practicality of an integrated cargo tray, this most certainly isn't a jack of all trades and a master of none.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/b/bc/Cheval-Logo-Badge-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/5/5a/Picador-GTAV-front.png",
"price": "$20,000.00",
"category": "Muscle",
"spawncode": "picador",
"trunkspace": "300 KG",
"performance": {
"power": 40,
"acceleration": 35,
"handling": 35,
"topspeed": 40
}
},
{
"name": "Stalion",
"brand": "Declasse",
"description": "Get 'em while they're hot. The classic Stallion muscle car's been imported from Liberty City to Los Santos. You might find some baggies or baggy rubbers tucked into the back seat, but that's part of this lady's charm. She's a dime.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/e/ec/Declasse-Logo-GTAO.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/0/00/Stallion-GTAV-front.png",
"price": "$33,000.00",
"category": "Muscle",
"spawncode": "stalion",
"trunkspace": "100 KG",
"performance": {
"power": 60,
"acceleration": 40,
"handling": 42,
"topspeed": 60
}
},
{
"name": "Hermes",
"brand": "Albany",
"description": "The Hermes is more legend than automobile. When all those 1960s classic muscle cars were still in diapers, the Hermes was already crawling down Eclipse Boulevard leaving a trail of unfiltered cigarettes and misogyny in its wake. With that kind of canvas you can paint a seriously offensive painting - and trust us, that eye-watering paint job is just the start.",
"brandLogo": "https://static.wikia.nocookie.net/gtawiki/images/1/1a/Albany-GTAO-Logo.png",
"image": "https://static.wikia.nocookie.net/gtawiki/images/9/9b/Hermes-GTAO-front.png",
"price": "$53,500.00",
"category": "Muscle",
"spawncode": "hermes",
"trunkspace": "400 KG",
"performance": {
"power": 60,
"acceleration": 60,