uncletaco
Snail-
Posts
5 -
Joined
-
Last visited
About uncletaco

Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
uncletaco's Achievements
-
-
QBShared = QBShared or {} QBShared.Vehicles = QBShared.Vehicles or {} local Vehicles = { --- Compacts (0) { model = 'asbo', -- This has to match the spawn code of the vehicle name = 'Asbo', -- This is the display of the vehicle brand = 'Maxwell', -- This is the vehicle's brand price = 4000, -- The price that the vehicle sells for category = 'compacts', -- Catgegory of the vehilce, stick with GetVehicleClass() options https://docs.fivem.net/natives/?_0x29439776AAA00A62 type = 'automobile', -- Vehicle type, refer here https://docs.fivem.net/natives/?_0x6AE51D4B & here https://docs.fivem.net/natives/?_0xA273060E shop = 'pdm', -- Can be a single shop or multiple shops. For multiple shops for example {'shopname1','shopname2','shopname3'} }, { model = 'blista', name = 'Blista', brand = 'Dinka', price = 13000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'brioso', name = 'Brioso R/A', brand = 'Grotti', price = 20000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'club', name = 'Club', brand = 'BF', price = 8000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'dilettante', name = 'Dilettante', brand = 'Karin', price = 9000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'dilettante2', name = 'Dilettante Patrol', brand = 'Karin', price = 12000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'kanjo', name = 'Blista Kanjo', brand = 'Dinka', price = 12000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi2', name = 'Issi', brand = 'Weeny', price = 7000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi3', name = 'Issi Classic', brand = 'Weeny', price = 5000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi4', name = 'Issi Arena', brand = 'Weeny', price = 80000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi5', name = 'Issi Future Shock', brand = 'Weeny', price = 80000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi6', name = 'Issi Nightmare', brand = 'Weeny', price = 80000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'panto', name = 'Panto', brand = 'Benefactor', price = 3200, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'prairie', name = 'Prairie', brand = 'Bollokan', price = 30000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'rhapsody', name = 'Rhapsody', brand = 'Declasse', price = 10000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'brioso2', name = 'Brioso 300', brand = 'Grotti', price = 12000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'weevil', name = 'Weevil', brand = 'BF', price = 9000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'issi7', name = 'Issi Sport', brand = 'Weeny', price = 100000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'blista2', name = 'Blista Compact', brand = 'Dinka', price = 18950, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'blista3', name = 'Blista Go Go Monkey', brand = 'Dinka', price = 15000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'brioso3', name = 'Brioso 300 Widebody', brand = 'Grotti', price = 125000, category = 'compacts', type = 'automobile', shop = 'pdm' }, { model = 'boor', name = 'Boor', brand = 'Karin', price = 23000, category = 'compacts', type = 'automobile', shop = 'pdm' }, --- Sedans (1) { model = 'asea', name = 'Asea', brand = 'Declasse', price = 2500, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'asterope', name = 'Asterope', brand = 'Karin', price = 11000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'cog55', name = 'Cognoscenti 55', brand = 'Enus', price = 22000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'cognoscenti', name = 'Cognoscenti', brand = 'Enus', price = 22500, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'emperor', name = 'Emperor', brand = 'Albany', price = 4250, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'fugitive', name = 'Fugitive', brand = 'Cheval', price = 20000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'glendale', name = 'Glendale', brand = 'Benefactor', price = 3400, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'glendale2', name = 'Glendale Custom', brand = 'Benefactor', price = 12000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'ingot', name = 'Ingot', brand = 'Vulcar', price = 4999, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'intruder', name = 'Intruder', brand = 'Karin', price = 11250, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'premier', name = 'Premier', brand = 'Declasse', price = 12000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'primo', name = 'Primo', brand = 'Albany', price = 5000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'primo2', name = 'Primo Custom', brand = 'Albany', price = 14500, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'regina', name = 'Regina', brand = 'Dundreary', price = 7000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'stafford', name = 'Stafford', brand = 'Enus', price = 30000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'stanier', name = 'Stanier', brand = 'Vapid', price = 19000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'stratum', name = 'Stratum', brand = 'Zirconium', price = 15000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'stretch', name = 'Stretch', brand = 'Dundreary', price = 19000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'superd', name = 'Super Diamond', brand = 'Enus', price = 17000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'surge', name = 'Surge', brand = 'Cheval', price = 20000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'tailgater', name = 'Tailgater', brand = 'Obey', price = 22000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'warrener', name = 'Warrener', brand = 'Vulcar', price = 4000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'washington', name = 'Washington', brand = 'Albany', price = 7000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'tailgater2', name = 'Tailgater S', brand = 'Obey', price = 51000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'cinquemila', name = 'Lampadati', brand = 'Cinquemila', price = 125000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'iwagen', name = 'Obey', brand = 'I-Wagen', price = 225000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'astron', name = 'Astron', brand = 'Pfister', price = 150000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'baller7', name = 'Baller ST', brand = 'Gallivanter', price = 145000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'comet7', name = 'Comet', brand = 'S2 Cabrio', price = 25000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'deity', name = 'Deity', brand = 'Enus', price = 505000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'jubilee', name = 'Jubilee', brand = 'Enus', price = 485000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'oracle', name = 'Oracle', brand = 'Übermacht', price = 22000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'schafter2', name = 'Schafter', brand = 'Benefactor', price = 16000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'warrener2', name = 'Warrener HKR', brand = 'Vulcar', price = 30000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'rhinehart', name = 'Rhinehart', brand = 'Übermacht', price = 105000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'eudora', name = 'Eudora', brand = 'Willard', price = 17000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'asterope2', name = 'Asterope GZ', brand = 'Karin', price = 459000, category = 'sedans', type = 'automobile', shop = 'pdm' }, { model = 'impaler5', name = 'Impaler SZ', brand = 'Declasse', price = 768000, category = 'sedans', type = 'automobile', shop = 'pdm' }, --- SUV (2) { model = 'baller', name = 'Baller', brand = 'Gallivanter', price = 22000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller2', name = 'Baller II', brand = 'Gallivanter', price = 15000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller3', name = 'Baller LE', brand = 'Gallivanter', price = 15000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller4', name = 'Baller LE LWB', brand = 'Gallivanter', price = 29000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller5', name = 'Baller LE (Armored)', brand = 'Gallivanter', price = 78000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller6', name = 'Baller LE LWB (Armored)', brand = 'Gallivanter', price = 82000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'bjxl', name = 'BeeJay XL', brand = 'Karin', price = 19000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'cavalcade', name = 'Cavalcade', brand = 'Albany', price = 14000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'cavalcade2', name = 'Cavalcade II', brand = 'Albany', price = 16500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'contender', name = 'Contender', brand = 'Vapid', price = 35000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'dubsta', name = 'Dubsta', brand = 'Benefactor', price = 19000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'dubsta2', name = 'Dubsta Luxury', brand = 'Benefactor', price = 19500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'fq2', name = 'FQ2', brand = 'Fathom', price = 18500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'granger', name = 'Granger', brand = 'Declasse', price = 22000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'gresley', name = 'Gresley', brand = 'Bravado', price = 25000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'habanero', name = 'Habanero', brand = 'Emperor', price = 20000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'huntley', name = 'Huntley S', brand = 'Enus', price = 24500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'landstalker', name = 'Landstalker', brand = 'Dundreary', price = 12000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'landstalker2', name = 'Landstalker XL', brand = 'Dundreary', price = 26000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'novak', name = 'Novak', brand = 'Lampadati', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'patriot', name = 'Patriot', brand = 'Mammoth', price = 21000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'patriot2', name = 'Patriot Stretch', brand = 'Mammoth', price = 21000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'radi', name = 'Radius', brand = 'Vapid', price = 18000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'rebla', name = 'Rebla GTS', brand = 'Übermacht', price = 21000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'rocoto', name = 'Rocoto', brand = 'Obey', price = 13000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'seminole', name = 'Seminole', brand = 'Canis', price = 20000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'seminole2', name = 'Seminole Frontier', brand = 'Canis', price = 13000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'serrano', name = 'Serrano', brand = 'Benefactor', price = 48000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'toros', name = 'Toros', brand = 'Pegassi', price = 65000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'xls', name = 'XLS', brand = 'Benefactor', price = 17000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'granger2', name = 'Granger 3600LX', brand = 'Declasse', price = 221000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'patriot3', name = 'Patriot Military', brand = 'Mil-Spec', price = 270000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'aleutian', name = 'Aleutian', brand = 'Vapid', price = 183500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'baller8', name = 'Baller ST-D', brand = 'Gallivanter', price = 171500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'cavalcade3', name = 'Cavalcade XL', brand = 'Albany', price = 166500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'dorado', name = 'Dorado', brand = 'Bravado', price = 137500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'vivanite', name = 'Vivanite', brand = 'Karin', price = 160500, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'castigator', name = 'Castigator', brand = 'Canis', price = 160500, category = 'suvs', type = 'automobile', shop = 'pdm' }, --- Coupes (3) { model = 'cogcabrio', name = 'Cognoscenti Cabrio', brand = 'Enus', price = 30000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'exemplar', name = 'Exemplar', brand = 'Dewbauchee', price = 40000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'f620', name = 'F620', brand = 'Ocelot', price = 32500, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'felon', name = 'Felon', brand = 'Lampadati', price = 31000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'felon2', name = 'Felon GT', brand = 'Lampadati', price = 37000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'jackal', name = 'Jackal', brand = 'Ocelot', price = 19000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'oracle2', name = 'Oracle XS', brand = 'Übermacht', price = 28000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'sentinel', name = 'Sentinel', brand = 'Übermacht', price = 30000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'sentinel2', name = 'Sentinel XS', brand = 'Übermacht', price = 33000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'windsor', name = 'Windsor', brand = 'Enus', price = 27000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'windsor2', name = 'Windsor Drop', brand = 'Enus', price = 34000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'zion', name = 'Zion', brand = 'Übermacht', price = 22000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'zion2', name = 'Zion Cabrio', brand = 'Übermacht', price = 28000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'previon', name = 'Previon', brand = 'Karin', price = 149000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'champion', name = 'Champion', brand = 'Dewbauchee', price = 205000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'futo', name = 'Futo', brand = 'Karin', price = 17500, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'sentinel3', name = 'Sentinel Classic', brand = 'Übermacht', price = 70000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'kanjosj', name = 'Kanjo SJ', brand = 'Dinka', price = 143000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'postlude', name = 'Postlude', brand = 'Dinka', price = 90000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'tahoma', name = 'Tahoma Coupe', brand = 'Declasse', price = 12000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'broadway', name = 'Broadway', brand = 'Classique', price = 20000, category = 'coupes', type = 'automobile', shop = 'pdm' }, { model = 'fr36', name = 'FR36', brand = 'Fathom', price = 161000, category = 'coupes', type = 'automobile', shop = 'pdm' }, --- Muscle (4) { model = 'blade', name = 'Blade', brand = 'Vapid', price = 23500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'buccaneer', name = 'Buccaneer', brand = 'Albany', price = 22500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'buccaneer2', name = 'Buccaneer Rider', brand = 'Albany', price = 24500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'chino', name = 'Chino', brand = 'Vapid', price = 5000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'chino2', name = 'Chino Luxe', brand = 'Vapid', price = 8000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'clique', name = 'Clique', brand = 'Vapid', price = 20000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'coquette3', name = 'Coquette BlackFin', brand = 'Invetero', price = 180000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'deviant', name = 'Deviant', brand = 'Schyster', price = 70000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator', name = 'Dominator', brand = 'Vapid', price = 62500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator2', name = 'Pißwasser Dominator', brand = 'Vapid', price = 50000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator3', name = 'Dominator GTX', brand = 'Vapid', price = 70000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator4', name = 'Dominator Arena', brand = 'Vapid', price = 200000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator7', name = 'Dominator ASP', brand = 'Vapid', price = 110000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator8', name = 'Dominator GTT', brand = 'Vapid', price = 80000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dukes', name = 'Dukes', brand = 'Imponte', price = 23500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dukes2', name = 'Duke O\'Death', brand = 'Imponte', price = 60000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dukes3', name = 'Beater Dukes', brand = 'Imponte', price = 45000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'faction', name = 'Faction', brand = 'Willard', price = 17000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'faction2', name = 'Faction Rider', brand = 'Willard', price = 19000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'faction3', name = 'Faction Custom Donk', brand = 'Willard', price = 35000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'ellie', name = 'Ellie', brand = 'Vapid', price = 42250, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'gauntlet', name = 'Gauntlet', brand = 'Bravado', price = 28500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'gauntlet2', name = 'Redwood Gauntlet', brand = 'Bravado', price = 70000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'gauntlet3', name = 'Classic Gauntlet', brand = 'Bravado', price = 75000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'gauntlet4', name = 'Gauntlet Hellfire', brand = 'Bravado', price = 80000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'gauntlet5', name = 'Gauntlet Classic Custom', brand = 'Bravado', price = 120000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'hermes', name = 'Hermes', brand = 'Albany', price = 535000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'hotknife', name = 'Hotknife', brand = 'Vapid', price = 90000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'hustler', name = 'Hustler', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'impaler', name = 'Impaler', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'impaler2', name = 'Impaler Arena', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'impaler3', name = 'Impaler Future Shock', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'impaler4', name = 'Impaler Nightmare', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'imperator', name = 'Imperator Arena', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'imperator2', name = 'imperator Future Shock', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'imperator3', name = 'Imperator Nightmare', brand = 'Vapid', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'lurcher', name = 'Lurcher', brand = 'Bravado', price = 21000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'nightshade', name = 'Nightshade', brand = 'Imponte', price = 70000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'phoenix', name = 'Phoenix', brand = 'Imponte', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'picador', name = 'Picador', brand = 'Cheval', price = 20000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'ratloader2', name = 'Ratloader', brand = 'Ratloader2', price = 20000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'ruiner', name = 'Ruiner', brand = 'Imponte', price = 29000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'ruiner2', name = 'Ruiner 2000', brand = 'Imponte', price = 50000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'sabregt', name = 'Sabre GT Turbo', brand = 'Declasse', price = 23000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'sabregt2', name = 'Sabre GT Turbo Custom', brand = 'Declasse', price = 26500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'slamvan', name = 'Slam Van', brand = 'Vapid', price = 30000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'slamvan2', name = 'Lost Slam Van', brand = 'Vapid', price = 90000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'slamvan3', name = 'Slam Van Custom', brand = 'Vapid', price = 17000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'stalion', name = 'Stallion', brand = 'Declasse', price = 33000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'stalion2', name = 'Stallion Burgershot', brand = 'Declasse', price = 40000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'tampa', name = 'Tampa', brand = 'Declasse', price = 24500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'tulip', name = 'Tulip', brand = 'Declasse', price = 80000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'vamos', name = 'Vamos', brand = 'Declasse', price = 30000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'vigero', name = 'Vigero', brand = 'Declasse', price = 39500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'virgo', name = 'Virgo', brand = 'Albany', price = 22000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'virgo2', name = 'Virgo Custom Classic', brand = 'Dundreary', price = 21000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'virgo3', name = 'Virgo Classic', brand = 'Dundreary', price = 21000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'voodoo', name = 'Voodoo', brand = 'Declasse', price = 13000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'yosemite', name = 'Yosemite', brand = 'Declasse', price = 19500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'yosemite2', name = 'Yosemite Drift', brand = 'Declasse', price = 55000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'buffalo4', name = 'Buffalo STX', brand = 'Bravado', price = 345000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'manana', name = 'Manana', brand = 'Albany', price = 12800, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'manana2', name = 'Manana Custom', brand = 'Albany', price = 24000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'tampa2', name = 'Drift Tampa', brand = 'Declasse', price = 80000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'ruiner4', name = 'Ruiner ZZ-8', brand = 'Imponte', price = 85000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'vigero2', name = 'Vigero ZX', brand = 'Declasse', price = 105000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'weevil2', name = 'Weevil Custom', brand = 'BF', price = 95000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'buffalo5', name = 'Buffalo EVX', brand = 'Bravado', price = 214000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'tulip2', name = 'Tulip M-100', brand = 'Declasse', price = 80000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'clique2', name = 'Clique Wagon', brand = 'Vapid', price = 102500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'brigham', name = 'Brigham', brand = 'Albany', price = 149900, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'greenwood', name = 'Greenwood', brand = 'Bravado', price = 105000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dominator9', name = 'Dominator GT', brand = 'Vapid', price = 219500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'impaler6', name = 'Impaler LX', brand = 'Declasse', price = 146500, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'vigero3', name = 'Vigero ZX Convertible', brand = 'Declasse', price = 229500, category = 'muscle', type = 'automobile', shop = 'pdm' }, --- Sports Classic (5) { model = 'ardent', name = 'Ardent', brand = 'Ocelot', price = 30000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'btype', name = 'Roosevelt', brand = 'Albany', price = 75000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'btype2', name = 'Franken Stange', brand = 'Albany', price = 87000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'btype3', name = 'Roosevelt Valor', brand = 'Albany', price = 63000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'casco', name = 'Casco', brand = 'Lampadati', price = 100000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'deluxo', name = 'Deluxo', brand = 'Imponte', price = 55000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'dynasty', name = 'Dynasty', brand = 'Weeny', price = 25000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'fagaloa', name = 'Fagaloa', brand = 'Vulcar', price = 13000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'feltzer3', name = 'Stirling GT', brand = 'Benefactor', price = 115000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'gt500', name = 'GT500', brand = 'Grotti', price = 130000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'infernus2', name = 'Infernus Classic', brand = 'Pegassi', price = 245000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'jb700', name = 'JB 700', brand = 'Dewbauchee', price = 240000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'jb7002', name = 'JB 700W', brand = 'Dewbauchee', price = 40000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'mamba', name = 'Mamba', brand = 'Declasse', price = 140000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'michelli', name = 'Michelli GT', brand = 'Lampadati', price = 30000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'monroe', name = 'Monroe', brand = 'Pegassi', price = 115000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'nebula', name = 'Nebula', brand = 'Vulcar', price = 22000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'peyote', name = 'Peyote', brand = 'Vapid', price = 23500, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'peyote3', name = 'Peyote Custom', brand = 'Vapid', price = 48000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'pigalle', name = 'Pigalle', brand = 'Lampadati', price = 92000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'rapidgt3', name = 'Rapid GT Classic', brand = 'Dewbauchee', price = 90000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'retinue', name = 'Retinue', brand = 'Vapid', price = 32000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'retinue2', name = 'Retinue MKII', brand = 'Vapid', price = 38000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'savestra', name = 'Savestra', brand = 'Annis', price = 67000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'stinger', name = 'Stinger', brand = 'Grotti', price = 39500, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'stingergt', name = 'Stinger GT', brand = 'Grotti', price = 70000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'stromberg', name = 'Stromberg', brand = 'Ocelot', price = 80000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'swinger', name = 'Swinger', brand = 'Ocelot', price = 221000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'torero', name = 'Torero', brand = 'Pegassi', price = 84000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'tornado', name = 'Tornado', brand = 'Declasse', price = 21000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'tornado2', name = 'Tornado Convertible', brand = 'Declasse', price = 22000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'tornado5', name = 'Tornado Custom', brand = 'Declasse', price = 22000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'turismo2', name = 'Turismo Classic', brand = 'Grotti', price = 170000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'viseris', name = 'Viseris', brand = 'Lampadati', price = 210000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'z190', name = '190Z', brand = 'Karin', price = 78000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'ztype', name = 'Z-Type', brand = 'Truffade', price = 270000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'zion3', name = 'Zion Classic', brand = 'Übermacht', price = 45000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'cheburek', name = 'Cheburek', brand = 'Rune', price = 7000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'toreador', name = 'Toreador', brand = 'Pegassi', price = 50000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'peyote2', name = 'Peyote Gasser', brand = 'Vapid', price = 40000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'coquette2', name = 'Coquette Classic', brand = 'Invetero', price = 165000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'envisage', name = 'Envisage', brand = 'Bollokan', price = 190000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, { model = 'driftnebula', name = 'Nebula Turbo', brand = 'Vulcar', price = 100000, category = 'sportsclassics', type = 'automobile', shop = 'pdm' }, --- Sports (6) { model = 'alpha', name = 'Alpha', brand = 'Albany', price = 53000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'banshee', name = 'Banshee', brand = 'Bravado', price = 56000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'bestiagts', name = 'Bestia GTS', brand = 'Grotti', price = 37000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'buffalo', name = 'Buffalo', brand = 'Bravado', price = 18750, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'buffalo2', name = 'Buffalo S', brand = 'Bravado', price = 24500, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'carbonizzare', name = 'Carbonizzare', brand = 'Grotti', price = 155000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'comet2', name = 'Comet', brand = 'Pfister', price = 130000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'comet3', name = 'Comet Retro Custom', brand = 'Pfister', price = 175000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'comet4', name = 'Comet Safari', brand = 'Pfister', price = 110000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'comet5', name = 'Comet SR', brand = 'Pfister', price = 155000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'coquette', name = 'Coquette', brand = 'Invetero', price = 145000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'coquette4', name = 'Coquette D10', brand = 'Invetero', price = 220000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'drafter', name = '8F Drafter', brand = 'Obey', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'elegy', name = 'Elegy Retro Custom', brand = 'Annis', price = 145000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'elegy2', name = 'Elegy RH8', brand = 'Annis', price = 150000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'feltzer2', name = 'Feltzer', brand = 'Benefactor', price = 97000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'flashgt', name = 'Flash GT', brand = 'Vapid', price = 48000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'furoregt', name = 'Furore GT', brand = 'Lampadati', price = 78000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'gb200', name = 'GB 200', brand = 'Vapid', price = 140000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'komoda', name = 'Komoda', brand = 'Lampadati', price = 55000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'imorgon', name = 'Imorgon', brand = 'Överflöd', price = 120000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'italigto', name = 'Itali GTO', brand = 'Progen', price = 260000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'jugular', name = 'Jugular', brand = 'Ocelot', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'jester', name = 'Jester', brand = 'Dinka', price = 132250, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'jester2', name = 'Jester Racecar', brand = 'Dinka', price = 210000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'jester3', name = 'Jester Classic', brand = 'Dinka', price = 85000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'khamelion', name = 'Khamelion', brand = 'Hijak', price = 90000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'kuruma', name = 'Kuruma', brand = 'Karin', price = 72000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'kuruma2', name = 'kuruma2', brand = 'Karin2', price = 72000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'locust', name = 'Locust', brand = 'Ocelot', price = 200000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'lynx', name = 'Lynx', brand = 'Ocelot', price = 150000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'massacro', name = 'Massacro', brand = 'Dewbauchee', price = 110000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'massacro2', name = 'Massacro Racecar', brand = 'Dewbauchee', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'neo', name = 'Neo', brand = 'Vysser', price = 230000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'neon', name = 'Neon', brand = 'Pfister', price = 220000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'ninef', name = '9F', brand = 'Obey', price = 95000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'ninef2', name = '9F Cabrio', brand = 'Obey', price = 105000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'omnis', name = 'Omnis', brand = 'Wow', price = 90000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'paragon', name = 'Paragon', brand = 'Enus', price = 60000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'pariah', name = 'Pariah', brand = 'Ocelot', price = 90000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'penumbra', name = 'Penumbra', brand = 'Maibatsu', price = 22000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'penumbra2', name = 'Penumbra FF', brand = 'Maibatsu', price = 30000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'rapidgt', name = 'Rapid GT', brand = 'Dewbauchee', price = 86000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'rapidgt2', name = 'Rapid GT Convertible', brand = 'Dewbauchee', price = 92000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'raptor', name = 'Raptor', brand = 'BF', price = 90000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'revolter', name = 'Revolter', brand = 'Übermacht', price = 95000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'ruston', name = 'Ruston', brand = 'Hijak', price = 130000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'schafter3', name = 'Schafter V12', brand = 'Benefactor', price = 35000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'schafter4', name = 'Schafter LWB', brand = 'Benefactor', price = 21000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'schlagen', name = 'Schlagen GT', brand = 'Benefactor', price = 160000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'schwarzer', name = 'Schwartzer', brand = 'Benefactor', price = 47000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'seven70', name = 'Seven-70', brand = 'Dewbauchee', price = 140000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'specter', name = 'Specter', brand = 'Dewbauchee', price = 160000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'streiter', name = 'Streiter', brand = 'Benefactor', price = 40000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sugoi', name = 'Sugoi', brand = 'Dinka', price = 85000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sultan', name = 'Sultan', brand = 'Karin', price = 50000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sultan2', name = 'Sultan Custom', brand = 'Karin', price = 55000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'surano', name = 'Surano', brand = 'Benefactor', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'tropos', name = 'Tropos Rallye', brand = 'Lampadati', price = 65000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'verlierer2', name = 'Verlierer', brand = 'Bravado', price = 90500, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'vstr', name = 'V-STR', brand = 'Albany', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'italirsx', name = 'Itali RSX', brand = 'Progen', price = 260000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'zr350', name = 'ZR350', brand = 'Annis', price = 38000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'calico', name = 'Calico GTF', brand = 'Karin', price = 39000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'futo2', name = 'Futo GTX', brand = 'Karin', price = 39000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'euros', name = 'Euros', brand = 'Annis', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'jester4', name = 'Jester RR', brand = 'Dinka', price = 240000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'remus', name = 'Remus', brand = 'Annis', price = 48000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'comet6', name = 'Comet S2', brand = 'Pfister', price = 230000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'growler', name = 'Growler', brand = 'Pfister', price = 205000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'vectre', name = 'Vectre', brand = 'Emperor', price = 80000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'cypher', name = 'Cypher', brand = 'Übermacht', price = 155000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sultan3', name = 'Sultan Classic Custom', brand = 'Karin', price = 56000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'rt3000', name = 'RT3000', brand = 'Dinka', price = 65000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sultanrs', name = 'Sultan RS', brand = 'Karin', price = 76500, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'visione', name = 'Visione', brand = 'Grotti', price = 750000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'cheetah2', name = 'Cheetah Classic', brand = 'Grotti', price = 195000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'stingertt', name = 'Itali GTO Stinger TT', brand = 'Maibatsu', price = 238000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'omnisegt', name = 'Omnis e-GT', brand = 'Obey', price = 185000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sentinel4', name = 'Sentinel Classic Widebody', brand = 'Übermacht', price = 140000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'sm722', name = 'SM722', brand = 'Benefactor', price = 125000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'tenf', name = '10F', brand = 'Obey', price = 185000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'tenf2', name = '10F Widebody', brand = 'Obey', price = 215000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'everon2', name = 'Everon Hotring', brand = 'Karin', price = 80000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'issi8', name = 'Issi Rally', brand = 'Weeny', price = 10000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'corsita', name = 'Corsita', brand = 'Lampadati', price = 90000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'gauntlet6', name = 'Hotring Hellfire', brand = 'Bravado', price = 181000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'coureur', name = 'La Coureuse', brand = 'Penaud', price = 199000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r300', name = '300R', brand = 'Annis', price = 56000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'panthere', name = 'Panthere', brand = 'Toundra', price = 55000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'driftsentinel', name = 'Drift Sentinel Classic', brand = 'Ubermacht', price = 150000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'paragon3', name = 'Paragon S', brand = 'Enus', price = 220000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'eurosX32', name = 'Euros X32', brand = 'Annis', price = 180000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'vorschlaghammer', name = 'Vorschlaghammer', brand = 'Pfister', price = 250000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'driftcypher', name = 'Drift Cypher', brand = 'Ubermacht', price = 160000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'coquette5', name = 'Coquette D1', brand = 'Invetero', price = 220000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'pipistrello', name = 'Pipistrello', brand = 'Overflod', price = 240000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'niobe', name = 'Niobe', brand = 'Ubermacht', price = 180000, category = 'sports', type = 'automobile', shop = 'luxury' }, { model = 'driftvorschlag', name = 'Vorschlaghammer', brand = 'Pfister', price = 250000, category = 'sports', type = 'automobile', shop = 'luxury' }, --- Super (7) { model = 'adder', name = 'Adder', brand = 'Truffade', price = 280000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'autarch', name = 'Autarch', brand = 'Överflöd', price = 224000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'banshee2', name = 'Banshee 900R', brand = 'Bravado', price = 120000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'bullet', name = 'Bullet', brand = 'Vapid', price = 120000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'cheetah', name = 'Cheetah', brand = 'Grotti', price = 214000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'cyclone', name = 'Cyclone', brand = 'Coil', price = 300000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'entity2', name = 'Entity XXR', brand = 'Överflöd', price = 164000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'entityxf', name = 'Entity XF', brand = 'Överflöd', price = 180000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'emerus', name = 'Emerus', brand = 'Progen', price = 220000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'fmj', name = 'FMJ', brand = 'Vapid', price = 125000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'furia', name = 'Furia', brand = 'Grotti', price = 230000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gp1', name = 'GP1', brand = 'Progen', price = 110000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'infernus', name = 'Infernus', brand = 'Pegassi', price = 235000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'italigtb', name = 'Itali GTB', brand = 'Progen', price = 170000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'italigtb2', name = 'Itali GTB Custom', brand = 'Progen', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'krieger', name = 'Krieger', brand = 'Benefactor', price = 222000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'le7b', name = 'RE-7B', brand = 'Annis', price = 260000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'nero', name = 'Nero', brand = 'Truffade', price = 200000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'nero2', name = 'Nero Custom', brand = 'Truffade', price = 260000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'osiris', name = 'Osiris', brand = 'Pegassi', price = 220000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'penetrator', name = 'Penetrator', brand = 'Ocelot', price = 130000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'pfister811', name = '811', brand = 'Pfister', price = 220000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'prototipo', name = 'X80 Proto', brand = 'Grotti', price = 235000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'reaper', name = 'Reaper', brand = 'Pegassi', price = 100000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 's80', name = 'S80RR', brand = 'Annis', price = 205000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'sc1', name = 'SC1', brand = 'Übermacht', price = 90000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'sheava', name = 'ETR1', brand = 'Emperor', price = 220000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 't20', name = 'T20', brand = 'Progen', price = 1650000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'taipan', name = 'Taipan', brand = 'Cheval', price = 1850000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'tempesta', name = 'Tempesta', brand = 'Pegassi', price = 120000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'tezeract', name = 'Tezeract', brand = 'Pegassi', price = 220000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'thrax', name = 'Thrax', brand = 'Truffade', price = 180000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'tigon', name = 'Tigon', brand = 'Lampadati', price = 240000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'turismor', name = 'Turismo R', brand = 'Grotti', price = 140000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'tyrant', name = 'Tyrant', brand = 'Överflöd', price = 2100000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'tyrus', name = 'Tyrus', brand = 'Progen', price = 230000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'vacca', name = 'Vacca', brand = 'Pegassi', price = 105000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'vagner', name = 'Vagner', brand = 'Dewbauchee', price = 1660000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'voltic', name = 'Voltic', brand = 'Coil', price = 120000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'voltic2', name = 'Rocket Voltic', brand = 'Coil', price = 9830400, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'xa21', name = 'XA-21', brand = 'Ocelot', price = 180000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'zentorno', name = 'Zentorno', brand = 'Pegassi', price = 340000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'zorrusso', name = 'Zorrusso', brand = 'Pegassi', price = 277000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'ignus', name = 'Ignus', brand = 'Pegassi', price = 1120000, category = 'super', type = 'automobile', shop = 'pdm' }, { model = 'zeno', name = 'Zeno', brand = 'Överflöd', price = 1350000, category = 'super', type = 'automobile', shop = 'pdm' }, { model = 'deveste', name = 'Deveste', brand = 'Principe', price = 234000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'lm87', name = 'LM87', brand = 'Benefactor', price = 155000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'torero2', name = 'Torero XO', brand = 'Pegassi', price = 245000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'entity3', name = 'Entity MT', brand = 'Overflod', price = 200000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'virtue', name = 'Virtue', brand = 'Ocelot', price = 72000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'turismo3', name = 'Turismo Omaggio', brand = 'Grotti', price = 284500, category = 'super', type = 'automobile', shop = 'luxury' }, --- Motorcycles (8) { model = 'akuma', name = 'Akuma', brand = 'Dinka', price = 55000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'avarus', name = 'Avarus', brand = 'LCC', price = 20000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'bagger', name = 'Bagger', brand = 'WMC', price = 13500, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'bati', name = 'Bati 801', brand = 'Pegassi', price = 24000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'bati2', name = 'Bati 801RR', brand = 'Pegassi', price = 19000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'bf400', name = 'BF400', brand = 'Nagasaki', price = 22000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'carbonrs', name = 'Carbon RS', brand = 'Nagasaki', price = 22000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'chimera', name = 'Chimera', brand = 'Nagasaki', price = 21000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'cliffhanger', name = 'Cliffhanger', brand = 'Western', price = 28500, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'daemon', name = 'Daemon', brand = 'WMC', price = 14000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'daemon2', name = 'Daemon Custom', brand = 'Western', price = 23000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'defiler', name = 'Defiler', brand = 'Shitzu', price = 30000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'deathbike', name = 'Deathbike Apocalypse', brand = 'Deathbike', price = 30000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'deathbike2', name = 'Deathbike Future Shock', brand = 'Deathbike', price = 30000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'deathbike3', name = 'Deathbike Nightmare', brand = 'Deathbike', price = 30000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'diablous', name = 'Diablous', brand = 'Principe', price = 30000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'diablous2', name = 'Diablous Custom', brand = 'Principe', price = 38000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'double', name = 'Double-T', brand = 'Dinka', price = 28000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'enduro', name = 'Enduro', brand = 'Dinka', price = 5500, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'esskey', name = 'Esskey', brand = 'Pegassi', price = 12000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'faggio', name = 'Faggio Sport', brand = 'Pegassi', price = 2000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'faggio2', name = 'Faggio', brand = 'Pegassi', price = 1900, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'faggio3', name = 'Faggio Mod', brand = 'Pegassi', price = 2500, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'fcr', name = 'FCR 1000', brand = 'Pegassi', price = 5000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'fcr2', name = 'FCR 1000 Custom', brand = 'Pegassi', price = 19000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'gargoyle', name = 'Gargoyle', brand = 'Western', price = 32000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'hakuchou', name = 'Hakuchou', brand = 'Shitzu', price = 17000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'hakuchou2', name = 'Hakuchou Drag', brand = 'Shitzu', price = 45000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'hexer', name = 'Hexer', brand = 'LCC', price = 16000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'innovation', name = 'Innovation', brand = 'LLC', price = 33500, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'lectro', name = 'Lectro', brand = 'Principe', price = 28000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'manchez', name = 'Manchez', brand = 'Maibatsu', price = 8300, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'nemesis', name = 'Nemesis', brand = 'Principe', price = 20000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'nightblade', name = 'Nightblade', brand = 'WMC', price = 23000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'oppressor', name = 'Oppressor', brand = 'Pegassi', price = 9999999, category = 'motorcycles', type = 'bike', shop = 'luxury' }, { model = 'pcj', name = 'PCJ-600', brand = 'Shitzu', price = 15000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'ratbike', name = 'Rat Bike', brand = 'Western', price = 3000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'ruffian', name = 'Ruffian', brand = 'Pegassi', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'sanchez', name = 'Sanchez Livery', brand = 'Maibatsu', price = 5300, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'sanchez2', name = 'Sanchez', brand = 'Maibatsu', price = 5300, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'sanctus', name = 'Sanctus', brand = 'LCC', price = 35000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'shotaro', name = 'Shotaro', brand = 'Nagasaki', price = 320000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'sovereign', name = 'Sovereign', brand = 'WMC', price = 8000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'stryder', name = 'Stryder', brand = 'Nagasaki', price = 50000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'thrust', name = 'Thrust', brand = 'Dinka', price = 22000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'vader', name = 'Vader', brand = 'Shitzu', price = 7200, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'vindicator', name = 'Vindicator', brand = 'Dinka', price = 19000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'vortex', name = 'Vortex', brand = 'Pegassi', price = 31000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'wolfsbane', name = 'Wolfsbane', brand = 'Western', price = 14000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'zombiea', name = 'Zombie Bobber', brand = 'Western', price = 28000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'zombieb', name = 'Zombie Chopper', brand = 'Western', price = 27000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'manchez2', name = 'Manchez Scout', brand = 'Maibatsu', price = 14000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'shinobi', name = 'Shinobi', brand = 'Nagasaki', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'reever', name = 'Reever', brand = 'Western', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'manchez3', name = 'Manchez Scout Classic', brand = 'Maibatsu', price = 15000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'powersurge', name = 'Powersurge', brand = 'Western', price = 7000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'pizzaboy', name = 'Pizza Boy', brand = 'Pegassi', price = 50000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, --- Off-Road (9) { model = 'bfinjection', name = 'Bf Injection', brand = 'Annis', price = 9000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bifta', name = 'Bifta', brand = 'Annis', price = 15500, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'blazer', name = 'Blazer', brand = 'Annis', price = 7500, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'blazer2', name = 'Blazer Lifeguard', brand = 'Nagasaki', price = 7000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'blazer3', name = 'Blazer Hot Rod', brand = 'Nagasaki', price = 7000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'blazer4', name = 'Blazer Sport', brand = 'Annis', price = 9250, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'blazer5', name = 'Blazer Aqua', brand = 'Nagasaki', price = 40000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'brawler', name = 'Brawler', brand = 'Annis', price = 40000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'caracara', name = 'Caracara', brand = 'Vapid', price = 60000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'caracara2', name = 'Caracara 4x4', brand = 'Vapid', price = 80000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'dubsta3', name = 'Dubsta 6x6', brand = 'Annis', price = 34000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'dune', name = 'Dune Buggy', brand = 'Annis', price = 14000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'everon', name = 'Everon', brand = 'Karin', price = 60000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'freecrawler', name = 'Freecrawler', brand = 'Canis', price = 24000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'hellion', name = 'Hellion', brand = 'Annis', price = 38000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'kalahari', name = 'Kalahari', brand = 'Canis', price = 14000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'kamacho', name = 'Kamacho', brand = 'Canis', price = 50000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'mesa3', name = 'Mesa Merryweather', brand = 'Canis', price = 400000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'outlaw', name = 'Outlaw', brand = 'Nagasaki', price = 15000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'rancherxl', name = 'Rancher XL', brand = 'Declasse', price = 24000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'rebel2', name = 'Rebel', brand = 'Vapid', price = 20000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'riata', name = 'Riata', brand = 'Vapid', price = 380000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'sandking', name = 'Sandking XL', brand = 'Vapid', price = 25000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'sandking2', name = 'Sandking SWB', brand = 'Vapid', price = 38000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'trophytruck', name = 'Trophy Truck', brand = 'Vapid', price = 60000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'trophytruck2', name = 'Desert Raid', brand = 'Vapid', price = 80000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'vagrant', name = 'Vagrant', brand = 'Maxwell', price = 50000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'verus', name = 'Verus', brand = 'Dinka', price = 20000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'winky', name = 'Winky', brand = 'Vapid', price = 10000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'yosemite3', name = 'Yosemite Rancher', brand = 'Declasse', price = 425000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'mesa', name = 'Mesa', brand = 'Canis', price = 12000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ratel', name = 'Ratel', brand = 'Vapid', price = 199000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'l35', name = 'Walton L35', brand = 'Declasse', price = 167000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'monstrociti', name = 'MonstroCiti', brand = 'Maibatsu', price = 48000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'draugur', name = 'Draugur', brand = 'Declasse', price = 99000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'terminus', name = 'Terminus', brand = 'Canis', price = 187750, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'yosemite4', name = 'Yosemite 1500', brand = 'Declasse', price = 187750, category = 'offroad', type = 'automobile', shop = 'pdm' }, --- Industrial (10) { model = 'guardian', name = 'Guardian', brand = 'Vapid', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'mixer2', name = 'Mixer II', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'tiptruck2', name = 'Tipper II', brand = 'Brute', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'tiptruck', name = 'Tipper', brand = 'Brute', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'rubble', name = 'Rubble', brand = 'Jobuilt', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'mixer', name = 'Mixer', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'flatbed', name = 'Flatbed Truck', brand = 'MTL', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'dump', name = 'Dump Truck', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'bulldozer', name = 'Dozer', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'handler', name = 'Dock Handler', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, { model = 'cutter', name = 'Cutter', brand = 'HVY', price = 30000, category = 'industrial', type = 'automobile', shop = 'truck' }, --- Utility (11) { model = 'slamtruck', name = 'Slam Truck', brand = 'Vapid', price = 100000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'caddy3', name = 'Caddy (Bunker)', brand = 'Nagasaki', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'caddy2', name = 'Caddy (Civilian)', brand = 'Nagasaki', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'caddy3', name = 'Caddy (Golf)', brand = 'Nagasaki', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'utillitruck', name = 'Utility Truck (Cherry Picker)', brand = 'Brute', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'utillitruck2', name = 'Utility Truck (Van)', brand = 'Brute', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'utillitruck3', name = 'Utility Truck (Contender)', brand = 'Vapid', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'tractor', name = 'Tractor', brand = 'Stanley', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'tractor2', name = 'Fieldmaster', brand = 'Stanley', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'tractor3', name = 'Fieldmaster', brand = 'Stanley', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'towtruck', name = 'Tow Truck (Large)', brand = 'Vapid', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'towtruck2', name = 'Tow Truck (Small)', brand = 'Vapid', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'scrap', name = 'Scrap Truck', brand = 'Vapid', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'sadler', name = 'Sadler', brand = 'Vapid', price = 20000, category = 'utility', type = 'automobile', shop = 'pdm' }, { model = 'ripley', name = 'Ripley', brand = 'HVY', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'mower', name = 'Lawn Mower', brand = 'Jacksheepe', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'forklift', name = 'Forklift', brand = 'HVY', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'docktug', name = 'Docktug', brand = 'HVY', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'airtug', name = 'Airtug', brand = 'HVY', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'trailers5', name = 'Trailer (Christmas)', brand = 'Unknown', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, { model = 'tvtrailer2', name = 'Trailer (TV)', brand = 'Unknown', price = 30000, category = 'utility', type = 'automobile', shop = 'truck' }, --- Vans (12) { model = 'bison', name = 'Bison', brand = 'Bravado', price = 18000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'bobcatxl', name = 'Bobcat XL Open', brand = 'Vapid', price = 13500, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'burrito3', name = 'Burrito', brand = 'Declasse', price = 4000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'gburrito2', name = 'Burrito Custom', brand = 'Declasse', price = 11500, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'rumpo', name = 'Rumpo', brand = 'Bravado', price = 9000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'journey', name = 'Journey', brand = 'Zirconium', price = 6500, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'minivan', name = 'Minivan', brand = 'Vapid', price = 7000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'minivan2', name = 'Minivan Custom', brand = 'Vapid', price = 10000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'paradise', name = 'Paradise', brand = 'Bravado', price = 9000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'rumpo3', name = 'Rumpo Custom', brand = 'Bravado', price = 19500, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'speedo', name = 'Speedo', brand = 'Vapid', price = 10000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'speedo4', name = 'Speedo Custom', brand = 'Vapid', price = 15000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'surfer', name = 'Surfer', brand = 'BF', price = 9000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'youga3', name = 'Youga Classic 4x4', brand = 'Bravado', price = 15000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'youga', name = 'Youga', brand = 'Bravado', price = 8000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'youga2', name = 'Youga Classic', brand = 'Bravado', price = 14500, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'youga4', name = 'Youga Custom', brand = 'Bravado', price = 85000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'moonbeam', name = 'Moonbeam', brand = 'Declasse', price = 13000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'moonbeam2', name = 'Moonbeam Custom', brand = 'Declasse', price = 15000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'boxville', name = 'Boxville LSDWP', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'boxville2', name = 'Boxville Go Postal', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'boxville3', name = 'Boxville Humane Labs', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'boxville4', name = 'Boxville Post OP', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'boxville5', name = 'Armored Boxville', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'none' }, { model = 'pony', name = 'Pony', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'pony2', name = 'Pony (Smoke on the water)', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'truck' }, { model = 'journey2', name = 'Journey II', brand = 'Zirconium', price = 7000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'surfer3', name = 'Surfer Custom', brand = 'BF', price = 15000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'speedo5', name = 'Speedo Custom', brand = 'Vapid', price = 238000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'mule2', name = 'Mule', brand = 'Maibatsu', price = 40000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'mule3', name = 'Mule', brand = 'Maibatsu', price = 40000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'taco', name = 'Taco Truck', brand = 'Brute', price = 45000, category = 'vans', type = 'automobile', shop = 'pdm' }, { model = 'boxville6', name = 'Boxville (LSDS)', brand = 'Brute', price = 47500, category = 'vans', type = 'automobile', shop = 'pdm' }, --- Cycles (13) { model = 'bmx', name = 'BMX', brand = 'Bike', price = 160, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'cruiser', name = 'Cruiser', brand = 'Bike', price = 510, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'fixter', name = 'Fixter', brand = 'Bike', price = 225, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'scorcher', name = 'Scorcher', brand = 'Bike', price = 280, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'tribike', name = 'Whippet Race Bike', brand = 'Bike', price = 500, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'tribike2', name = 'Endurex Race Bike', brand = 'Bike', price = 700, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'tribike3', name = 'Tri-Cycles Race Bike', brand = 'Bike', price = 520, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'inductor', name = 'Inductor', brand = 'Coil', price = 5000, category = 'cycles', type = 'bike', shop = 'pdm' }, { model = 'inductor2', name = 'Junk Energy Inductor', brand = 'Coil', price = 5000, category = 'cycles', type = 'bike', shop = 'pdm' }, --- Boats (14) { model = 'avisa', name = 'Avisa', brand = 'Kraken Subs', price = 40000, category = 'boats', type = 'boat', shop = 'none' }, { model = 'patrolboat', name = 'Kurtz 31 Patrol Boat', brand = 'Unknown', price = 40000, category = 'boats', type = 'boat', shop = 'none' }, { model = 'longfin', name = 'Longfin', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'tug', name = 'Tug', brand = 'Buckingham', price = 40000, category = 'boats', type = 'boat', shop = 'none' }, { model = 'toro', name = 'Toro', brand = 'Lampadati', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'toro2', name = 'Toro Yacht', brand = 'Lampadati', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'submersible2', name = 'Kraken', brand = 'Kraken Subs', price = 40000, category = 'boats', type = 'boat', shop = 'none' }, { model = 'speeder', name = 'Speeder', brand = 'Pegassi', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'speeder2', name = 'Speeder Yacht', brand = 'Pegassi', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'tropic', name = 'Tropic', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'tropic2', name = 'Tropic Yacht', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'suntrap', name = 'Suntrap', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'submersible', name = 'Submersible', brand = 'Kraken Subs', price = 40000, category = 'boats', type = 'boat', shop = 'none' }, { model = 'squalo', name = 'Squalo', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'seashark', name = 'Seashark', brand = 'Speedophile', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'seashark3', name = 'Seashark Yacht', brand = 'Speedophile', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'marquis', name = 'Marquis', brand = 'Dinka', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'jetmax', name = 'Jetmax', brand = 'Shitzu', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'dinghy', name = 'Dinghy 2-Seater', brand = 'Nagasaki', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'dinghy2', name = 'Dinghy 4-Seater', brand = 'Nagasaki', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'dinghy3', name = 'Dinghy (Heist)', brand = 'Nagasaki', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, { model = 'dinghy4', name = 'Dinghy Yacht', brand = 'Nagasaki', price = 40000, category = 'boats', type = 'boat', shop = 'boats' }, --- Helicopters (15) { model = 'conada2', name = 'Weaponized Conada', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'conada', name = 'Conada', brand = 'Buckingham', price = 115000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'seasparrow2', name = 'Sparrow', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'annihilator2', name = 'Annihilator Stealth', brand = 'Western Company', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'seasparrow', name = 'Sea Sparrow', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'akula', name = 'Akula', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'hunter', name = 'FH-1 Hunter', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'havok', name = 'Havok', brand = 'Nagasaki', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'volatus', name = 'Volatus', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'supervolito2', name = 'SuperVolito Carbon', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'supervolito', name = 'SuperVolito', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'swift2', name = 'Swift Deluxe', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'valkyrie', name = 'Valkyrie', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'savage', name = 'Savage', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'swift', name = 'Swift', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'annihilator', name = 'Annihilator', brand = 'Western Company', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'cargobob2', name = 'Cargobob Jetsam', brand = 'Western Company', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'skylift', name = 'Skylift', brand = 'HVY', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'maverick', name = 'Maverick', brand = 'Buckingham', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'frogger', name = 'Frogger', brand = 'Maibatsu', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'frogger2', name = 'Frogger', brand = 'Maibatsu', price = 52000, category = 'helicopters', type = 'heli', shop = 'air' }, { model = 'cargobob', name = 'Cargobob', brand = 'Western Company', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'cargobob3', name = 'Cargobob', brand = 'Western Company', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'seasparrow3', name = 'Sparrow (Prop)', brand = 'Unknown', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'buzzard', name = 'Buzzard Attack Chopper', brand = 'Nagasaki', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, { model = 'buzzard2', name = 'Buzzard', brand = 'Nagasaki', price = 52000, category = 'helicopters', type = 'heli', shop = 'none' }, --- Planes (16) { model = 'streamer216', name = 'Streamer216', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'raiju', name = 'F-160 Raiju', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'alkonost', name = 'RO-86 Alkonost', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'strikeforce', name = 'B-11 Strikeforce', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'blimp3', name = 'Blimp', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'avenger', name = 'Avenger', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'avenger2', name = 'Avenger', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'volatol', name = 'Volatol', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'nokota', name = 'P-45 Nokota', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'seabreeze', name = 'Seabreeze', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'pyro', name = 'Pyro', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'mogul', name = 'Mogul', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'howard', name = 'Howard NX-25', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'bombushka', name = 'RM-10 Bombushka', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'molotok', name = 'V-65 Molotok', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'microlight', name = 'Ultralight', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'tula', name = 'Tula', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'rogue', name = 'Rogue', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'starling', name = 'LF-22 Starling', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'alphaz1', name = 'Alpha-Z1', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'nimbus', name = 'Nimbus', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'luxor2', name = 'Luxor Deluxe', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'velum2', name = 'Velum 5-seater', brand = 'JoBuilt', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'hydra', name = 'Hydra', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'blimp2', name = 'Xero Blimp', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'dodo', name = 'Dodo', brand = 'Mammoth', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'miljet', name = 'Miljet', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'besra', name = 'Besra', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'vestra', name = 'Vestra', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'cargoplane', name = 'Cargo Plane', brand = 'JoBuilt', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'velum', name = 'Velum', brand = 'JoBuilt', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'titan', name = 'Titan', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'shamal', name = 'Shamal', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'lazer', name = 'P-996 Lazer', brand = 'JoBuilt', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'mammatus', name = 'Mammatus', brand = 'JoBuilt', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'stunt', name = 'Mallard', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'luxor', name = 'Luxor', brand = 'Buckingham', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'jet', name = 'Jet', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, { model = 'duster', name = 'Duster', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'cuban800', name = 'Cuban 800', brand = 'Western Company', price = 45000, category = 'planes', type = 'plane', shop = 'air' }, { model = 'blimp', name = 'Atomic Blimp', brand = 'Unknown', price = 45000, category = 'planes', type = 'plane', shop = 'none' }, --- Service (17) { model = 'brickade', name = 'Brickade', brand = 'MTL', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'brickade2', name = 'Brickade 6x6', brand = 'MTL', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'pbus2', name = 'Festival Bus', brand = 'Unknown', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'wastelander', name = 'Wastelander', brand = 'MTL', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'rallytruck', name = 'Dune', brand = 'MTL', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'metrotrain', name = 'Metro Train', brand = 'Unknown', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'freight', name = 'Freight Train', brand = 'Unknown', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'cablecar', name = 'Cable Car', brand = 'Unknown', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'trash', name = 'Trashmaster', brand = 'JoBuilt', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'trash2', name = 'Trashmaster', brand = 'JoBuilt', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'tourbus', name = 'Tour Bus', brand = 'Brute', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'taxi', name = 'Taxi', brand = 'Vapid', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'rentalbus', name = 'Rental Shuttle Bus', brand = 'Brute', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'coach', name = 'Dashound', brand = 'Brute', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'bus', name = 'Bus', brand = 'Brute', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, { model = 'airbus', name = 'Airport Bus', brand = 'Brute', price = 100000, category = 'service', type = 'automobile', shop = 'none' }, --- Emergency (18) { model = 'riot', name = 'Police Riot', brand = 'Brute', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'riot2', name = 'RCV', brand = 'Unknown', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pbus', name = 'Police Prison Bus', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'police', name = 'Police Cruiser', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'police2', name = 'Police Buffalo', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'police3', name = 'Police Interceptor', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'police4', name = 'Unmarked Cruiser', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'sheriff', name = 'Sheriff SUV', brand = 'Declasse', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'sheriff2', name = 'Sheriff Cruiser', brand = 'Vapid', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'policeold1', name = 'Police Rancher', brand = 'Declasse', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'policeold2', name = 'Police Roadcruiser', brand = 'Albany', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'policet', name = 'Police Transporter', brand = 'Vapid', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'policeb', name = 'Police Bike', brand = 'Vapid', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polmav', name = 'Police Maverick', brand = 'Buckingham', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'ambulance', name = 'Ambulance', brand = 'Brute', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'firetruk', name = 'Fire Truck', brand = 'MTL', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'lguard', name = 'Lifeguard', brand = 'Declasse', price = 110000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'seashark2', name = 'Seashark Lifeguard', brand = 'Speedophile', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pranger', name = 'Park Ranger', brand = 'Declasse', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'fbi', name = 'FIB Buffalo', brand = 'Bravado', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'fbi2', name = 'FIB Granger', brand = 'Declasse', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'predator', name = 'Police Predator', brand = 'Unknown', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polgauntlet', name = 'Gauntlet Interceptor', brand = 'Bravado', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'police5', name = 'Stanier LE Cruiser', brand = 'Vapid', price = 40000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polimpaler5', name = 'Impaler SZ Cruiser', brand = 'Declasse', price = 80000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polimpaler6', name = 'Impaler LX Cruiser', brand = 'Declasse', price = 90000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'poldominator10', name = 'Dominator FX Interceptor', brand = 'Vapid', price = 230000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'policet3', name = 'Burrito (Bail Enforcement)', brand = 'Declasse', price = 60000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polgreenwood', name = 'Greenwood Cruiser', brand = 'Bravado', price = 80000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'poldorado', name = 'Dorado Cruiser', brand = 'Vapid', price = 80000, category = 'emergency', type = 'automobile', shop = 'none' }, --- Military (19) { model = 'vetir', name = 'Vetir', brand = 'Unknown', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'kosatka', name = 'Kosatka', brand = 'Rune', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'minitank', name = 'RC Tank', brand = 'Unknown', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'scarab', name = 'Scarab', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'terbyte', name = 'Terrorbyte', brand = 'Benefactor', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'thruster', name = 'Thruster', brand = 'Mammoth', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'khanjali', name = 'TM-02 Khanjali Tank', brand = 'Unknown', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'chernobog', name = 'Chernobog', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'barrage', name = 'Barrage', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'trailerlarge', name = 'Mobile Operations Center', brand = 'Unknown', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'halftrack', name = 'Half-track', brand = 'Bravado', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'apc', name = 'APC Tank', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'trailersmall2', name = 'Anti-Aircraft Trailer', brand = 'Vom Feuer', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'rhino', name = 'Rhino Tank', brand = 'Unknown', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'crusader', name = 'Crusader', brand = 'Canis', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'barracks', name = 'Barracks', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'barracks2', name = 'Barracks Semi', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, { model = 'barracks3', name = 'Barracks', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, --- Commercial (20) { model = 'cerberus', name = 'Apocalypse Cerberus', brand = 'MTL', price = 100000, category = 'commercial', type = 'automobile', shop = 'none' }, { model = 'pounder2', name = 'Pounder Custom', brand = 'MTL', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'mule4', name = 'Mule Custom', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom3', name = 'Phantom Custom', brand = 'Jobuilt', price = 110000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'hauler2', name = 'Hauler Custom', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom2', name = 'Phantom Wedge', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'none' }, { model = 'mule5', name = 'Mule (Heist)', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'stockade', name = 'Stockade', brand = 'Brute', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'pounder', name = 'Pounder', brand = 'MTL', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom', name = 'Phantom', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'packer', name = 'Packer', brand = 'MTL', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'mule', name = 'Mule', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'hauler', name = 'Hauler', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'biff', name = 'Biff', brand = 'Brute', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'benson', name = 'Benson', brand = 'Vapid', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'benson2', name = 'Benson (Cluckin Bell)', brand = 'Vapid', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom4', name = 'Phantom (Christmas)', brand = 'Vapid', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, --- Trains (21) --- Open Wheel (22) { model = 'openwheel2', name = 'DR1', brand = 'Declasse', price = 100000, category = 'openwheel', type = 'automobile', shop = 'none' }, { model = 'openwheel1', name = 'BR8', brand = 'Benefactor', price = 100000, category = 'openwheel', type = 'automobile', shop = 'none' }, { model = 'formula2', name = 'R88', brand = 'Ocelot', price = 100000, category = 'openwheel', type = 'automobile', shop = 'none' }, { model = 'formula', name = 'PR4', brand = 'Progen', price = 100000, category = 'openwheel', type = 'automobile', shop = 'none' }, -- Add-on vehicles (auto-added) { model = '00excursion', name = '00 Excursion', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '00f350', name = '00 F 350', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '00f350d', name = '00 F 350 D', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '00f350l', name = '00 F 350 L', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '01duramaxk', name = '01 Duramaxk', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '02rsx', name = '02 Rsx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '03expeditionr', name = '03 Expeditionr', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '08f250', name = '08 F 250', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '10ram', name = '10 Ram', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '11caprice', name = '11 Caprice', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '124spider', name = '124 Spider', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '12cls63', name = '12 Cls 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '12ratti', name = '12 Ratti', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '14charger', name = '14 Charger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '15r35', name = '15 R 35', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '16challenger', name = '16 Challenger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '16charger', name = '16 Charger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '16explorer', name = '16 Explorer', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '16m5', name = '16 M 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '16taurus', name = '16 Taurus', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17fontaine', name = '17 Fontaine', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17fontainev2', name = '17 Fontainev 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17fontainev3', name = '17 Fontainev 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17fontainev4', name = '17 Fontainev 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17m760i', name = '17 M 760 I', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '17turbo', name = '17 Turbo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '180sx', name = '180 Sx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '18charger', name = '18 Charger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '18f350ds', name = '18 F 350 Ds', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '18f350dsb', name = '18 F 350 Dsb', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '18lambo', name = '18 Lambo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '18performante', name = '18 Performante', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '18ram', name = '18 Ram', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '18tahoe', name = '18 Tahoe', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '18velar', name = '18 Velar', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '193500hd', name = '193500 Hd', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '193500hddonk', name = '193500 Hddonk', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '19890604', name = '19890604', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '19durango', name = '19 Durango', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '19gv80', name = '19 Gv 80', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '19raptor', name = '19 Raptor', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '19tundra', name = '19 Tundra', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '2012gtr', name = '2012 Gtr', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '2013rs7', name = '2013 Rs 7', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '2014rs5', name = '2014 Rs 5', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2016rs7', name = '2016 Rs 7', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '2020g900', name = '2020 G 900', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2020silv', name = '2020 Silv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2021m5', name = '2021 M 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '205', name = '205', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '206', name = '206', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '20denalihd', name = '20 Denalihd', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '20denalihdg', name = '20 Denalihdg', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '20trailboss', name = '20 Trailboss', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '20xmax', name = '20 Xmax', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = '211le', name = '211 Le', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '21camaro', name = '21 Camaro', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '21sierra', name = '21 Sierra', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '22a7', name = '22 A 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '22m135imperf', name = '22 M 135 Imperf', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '22m5', name = '22 M 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '22m5donk', name = '22 M 5 Donk', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '2f2fgtr34', name = '2 F 2 Fgtr 34', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '2f2fgts', name = '2 F 2 Fgts', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2f2fmk4', name = '2 F 2 Fmk 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2f2fmle7', name = '2 F 2 Fmle 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2f2frx7', name = '2 F 2 Frx 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '2f2fs2000', name = '2 F 2 Fs 2000', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '300srt8', name = '300 Srt 8', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '328nii', name = '328 Nii', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '3500flatbed', name = '3500 Flatbed', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '3500gn', name = '3500 Gn', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = '350zdk', name = '350 Zdk', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '350zm', name = '350 Zm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '370driftmachine', name = '370 Driftmachine', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '458it', name = '458 It', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '488', name = '488', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '488gt3', name = '488 Gt 3', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '488sp', name = '488 Sp', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '488sp2', name = '488 Sp 2', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '48is', name = '48 Is', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '4runner', name = '4 Runner', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = '500w124', name = '500 W 124', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '540l', name = '540 L', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '600lt', name = '600 Lt', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '600sel', name = '600 Sel', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '600sl', name = '600 Sl', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '610dtm', name = '610 Dtm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '63lb', name = '63 Lb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '65c10', name = '65 C 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '66fastback', name = '66 Fastback', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '675ltsp', name = '675 Ltsp', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '69charger', name = '69 Charger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '700g', name = '700 G', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '70coronet', name = '70 Coronet', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '720s', name = '720 S', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '720ss', name = '720 Ss', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '73srt', name = '73 Srt', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '745le', name = '745 Le', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '760li06', name = '760 Li 06', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '765lt', name = '765 Lt', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '765ltmso', name = '765 Ltmso', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '812mansory', name = '812 Mansory', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '85impala', name = '85 Impala', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '911gt3r', name = '911 Gt 3 R', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '911r', name = '911 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '911turboleo', name = '911 Turboleo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '918', name = '918', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '918lbwk', name = '918 Lbwk', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = '93mustang', name = '93 Mustang', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '95stang', name = '95 Stang', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '964cabrio', name = '964 Cabrio', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '964targa', name = '964 Targa', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '96blacksanta', name = '96 Blacksanta', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = '96impalass', name = '96 Impalass', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = '99viper', name = '99 Viper', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a45amg', name = 'A 45 Amg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a6', name = 'A 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a6avant', name = 'A 6 Avant', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a6avantblack', name = 'A 6 Avantblack', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a6donk', name = 'A 6 Donk', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a80', name = 'A 80', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a8audi', name = 'A 8 Audi', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a90sh', name = 'A 90 Sh', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'a90supra', name = 'A 90 Supra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'aaq4', name = 'Aaq 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'acr', name = 'Acr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'actros', name = 'Actros', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'acura2f2f', name = 'Acura 2 F 2 F', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ae350', name = 'Ae 350', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'aerondight', name = 'Aerondight', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'africat', name = 'Africat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'agtr35', name = 'Agtr 35', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'ah6', name = 'Ah 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'alf75', name = 'Alf 75', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'alpinab7', name = 'Alpinab 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amarok', name = 'Amarok', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amgbs', name = 'Amgbs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amgce', name = 'Amgce', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amgcew', name = 'Amgcew', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amggt63', name = 'Amggt 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amggt63s', name = 'Amggt 63 S', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amggtbs', name = 'Amggtbs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amggtc', name = 'Amggtc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'amggtr', name = 'Amggtr', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'amggtrleo', name = 'Amggtrleo', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'amr_explorer', name = 'Amr Explorer', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'amr_tahoe', name = 'Amr Tahoe', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'ap2', name = 'Ap 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'apache58', name = 'Apache 58', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'apache58v', name = 'Apache 58 V', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'aperta', name = 'Aperta', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'argiulia', name = 'Argiulia', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'as350', name = 'As 350', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ast', name = 'Ast', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'atv', name = 'Atv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'audirs4', name = 'Audirs 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'audirs6tk', name = 'Audirs 6 Tk', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'audis32', name = 'Audis 32', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'audquattros', name = 'Audquattros', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'audsq517', name = 'Audsq 517', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'avalanche', name = 'Avalanche', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'avalanche1', name = 'Avalanche 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'aventador', name = 'Aventador', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'avion1', name = 'Avion 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'b12l', name = 'B 12 L', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'b5s4', name = 'B 5 S 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'b63s', name = 'B 63 S', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'b800', name = 'B 800', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bad250', name = 'Bad 250', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bad2505', name = 'Bad 2505', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bbdawn', name = 'Bbdawn', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bc052500', name = 'Bc 052500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bc06silv', name = 'Bc 06 Silv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bc06work', name = 'Bc 06 Work', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bc203500hd', name = 'Bc 203500 Hd', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bc20hauler', name = 'Bc 20 Hauler', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bc21tahoes', name = 'Bc 21 Tahoes', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'bc99ram', name = 'Bc 99 Ram', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bcf650', name = 'Bcf 650', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bchauler', name = 'Bchauler', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'bcsm', name = 'Bcsm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bcss', name = 'Bcss', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bcss300', name = 'Bcss 300', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bdragonn', name = 'Bdragonn', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'beetle74', name = 'Beetle 74', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ben17', name = 'Ben 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'benson3', name = 'Benson 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bentayga17', name = 'Bentayga 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bentaygaplsd', name = 'Bentaygaplsd', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'benze55', name = 'Benze 55', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bgnx', name = 'Bgnx', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'bigboyelco', name = 'Bigboyelco', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bigtex20', name = 'Bigtex 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bigtex40', name = 'Bigtex 40', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'blue88', name = 'Blue 88', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmci', name = 'Bmci', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmdrift', name = 'Bmdrift', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bme6tun', name = 'Bme 6 Tun', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmeclipse95', name = 'Bmeclipse 95', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmm', name = 'Bmm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmw1', name = 'Bmw 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmw1er', name = 'Bmw 1 Er', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmw8mm', name = 'Bmw 8 Mm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwe70', name = 'Bmwe 70', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwg07', name = 'Bmwg 07', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwg20', name = 'Bmwg 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwhommage', name = 'Bmwhommage', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwm4', name = 'Bmwm 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwm5', name = 'Bmwm 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'bmwm5f90', name = 'Bmwm 5 F 90', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'bmwm5f902', name = 'Bmwm 5 F 902', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'bmwm5touring', name = 'Bmwm 5 Touring', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'bmwm8', name = 'Bmwm 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmws', name = 'Bmws', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwx7', name = 'Bmwx 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bmwx72', name = 'Bmwx 72', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bnr32', name = 'Bnr 32', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bnr34', name = 'Bnr 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'boonbox', name = 'Boonbox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brabus700', name = 'Brabus 700', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brabus800mj', name = 'Brabus 800 Mj', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brabus850', name = 'Brabus 850', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brabus8501', name = 'Brabus 8501', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brabusd30', name = 'Brabusd 30', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brush1', name = 'Brush 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brush2', name = 'Brush 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'brz13', name = 'Brz 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bs17', name = 'Bs 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bug300ss', name = 'Bug 300 Ss', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bug300ss2', name = 'Bug 300 Ss 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'bvit', name = 'Bvit', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c10', name = 'C 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c32', name = 'C 32', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c32ma', name = 'C 32 Ma', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c5rs6', name = 'C 5 Rs 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c5z06', name = 'C 5 Z 06', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c63', name = 'C 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c631', name = 'C 631', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c632', name = 'C 632', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c6320', name = 'C 6320', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c63a', name = 'C 63 A', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c63b', name = 'C 63 B', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c63w204', name = 'C 63 W 204', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c63w205', name = 'C 63 W 205', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c7', name = 'C 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c7r', name = 'C 7 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c8', name = 'C 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c8daytona', name = 'C 8 Daytona', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'c8p1', name = 'C 8 P 1', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'cadlegend', name = 'Cadlegend', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cam8tun', name = 'Cam 8 Tun', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'camaro70', name = 'Camaro 70', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'camrs17', name = 'Camrs 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'camry18', name = 'Camry 18', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'caprice13', name = 'Caprice 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'caprice89', name = 'Caprice 89', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cartrailer', name = 'Cartrailer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cats', name = 'Cats', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cb650r', name = 'Cb 650 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cbr1000rrr', name = 'Cbr 1000 Rrr', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'cbr650r', name = 'Cbr 650 R', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'cc1', name = 'Cc 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cd69', name = 'Cd 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'celisupra', name = 'Celisupra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cgt', name = 'Cgt', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'challenger', name = 'Challenger', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'chaserdrift', name = 'Chaserdrift', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'checol17', name = 'Checol 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'chevelless', name = 'Chevelless', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'chevy4d71', name = 'Chevy 4 D 71', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'chiron17', name = 'Chiron 17', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'chiron17donk', name = 'Chiron 17 Donk', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'chr20', name = 'Chr 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'chrxfire', name = 'Chrxfire', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'chry300', name = 'Chry 300', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'chrysler', name = 'Chrysler', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'civic', name = 'Civic', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cl65', name = 'Cl 65', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cla45sb', name = 'Cla 45 Sb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cla45sb2', name = 'Cla 45 Sb 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'classic21', name = 'Classic 21', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cliors', name = 'Cliors', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cls2015', name = 'Cls 2015', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cls63', name = 'Cls 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cm69', name = 'Cm 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cn69', name = 'Cn 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cobaltss', name = 'Cobaltss', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cobra', name = 'Cobra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'command1', name = 'Command 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'command2', name = 'Command 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cont88', name = 'Cont 88', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'contgt13', name = 'Contgt 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cook92', name = 'Cook 92', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cookie60', name = 'Cookie 60', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cookiehgks', name = 'Cookiehgks', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cookiehgks2', name = 'Cookiehgks 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cookieraptor', name = 'Cookieraptor', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'cookiesubaru', name = 'Cookiesubaru', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cooper15', name = 'Cooper 15', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'corvette63', name = 'Corvette 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cos', name = 'Cos', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cp9a', name = 'Cp 9 A', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'crownpl', name = 'Crownpl', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'csuburban', name = 'Csuburban', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'ctsv', name = 'Ctsv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ctsv16', name = 'Ctsv 16', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cullinan2', name = 'Cullinan 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cullinanvlone', name = 'Cullinanvlone', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cutdawg', name = 'Cutdawg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cutty280', name = 'Cutty 280', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cuttyc10', name = 'Cuttyc 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'cyrus', name = 'Cyrus', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'd99', name = 'D 99', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'daf', name = 'Daf', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dawnonyx', name = 'Dawnonyx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dcd', name = 'Dcd', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'demon', name = 'Demon', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'demonboi', name = 'Demonboi', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'demonruc', name = 'Demonruc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'denali18', name = 'Denali 18', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'denali18lift', name = 'Denali 18 Lift', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'devildemon', name = 'Devildemon', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'deville74', name = 'Deville 74', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'diavel', name = 'Diavel', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'diplomat83', name = 'Diplomat 83', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'divo', name = 'Divo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dk350z', name = 'Dk 350 Z', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dl765', name = 'Dl 765', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dlamg', name = 'Dlamg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dlbolide', name = 'Dlbolide', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dlcrownvic', name = 'Dlcrownvic', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dle46', name = 'Dle 46', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dlhuracan', name = 'Dlhuracan', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'dlm4', name = 'Dlm 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dlsupramk4', name = 'Dlsupramk 4', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'dmc12', name = 'Dmc 12', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dmc12wb', name = 'Dmc 12 Wb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dodgesrt', name = 'Dodgesrt', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dodgesrt2', name = 'Dodgesrt 2', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'dolphhawk', name = 'Dolphhawk', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'draftgpr', name = 'Draftgpr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dragchevy2', name = 'Dragchevy 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'dragnova', name = 'Dragnova', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'driftae86', name = 'Driftae 86', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'drippysenna', name = 'Drippysenna', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'dtdmansq60', name = 'Dtdmansq 60', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'duker', name = 'Duker', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'durango18', name = 'Durango 18', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'e15082', name = 'E 15082', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e34', name = 'E 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e34m5', name = 'E 34 M 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'e36prb', name = 'E 36 Prb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e500', name = 'E 500', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e60blood', name = 'E 60 Blood', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e63amg', name = 'E 63 Amg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e63amgw', name = 'E 63 Amgw', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e63b', name = 'E 63 B', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e63estate', name = 'E 63 Estate', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'e63sdono', name = 'E 63 Sdono', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e92', name = 'E 92', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'e92lb', name = 'E 92 Lb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'eager', name = 'Eager', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ec17silv', name = 'Ec 17 Silv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ec17silvf', name = 'Ec 17 Silvf', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'eclipsegt06', name = 'Eclipsegt 06', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'eclipsegt09', name = 'Eclipsegt 09', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ecto1', name = 'Ecto 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ek9', name = 'Ek 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'elva', name = 'Elva', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'engine1', name = 'Engine 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'engine2', name = 'Engine 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'er34', name = 'Er 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'escalade', name = 'Escalade', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'etrongt22priorat', name = 'Etrongt 22 Priorat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'eurofighter', name = 'Eurofighter', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evcs850', name = 'Evcs 850', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evo5drift', name = 'Evo 5 Drift', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evo9', name = 'Evo 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evoque', name = 'Evoque', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evovaris', name = 'Evovaris', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'evoz', name = 'Evoz', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'exige12', name = 'Exige 12', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'exor', name = 'Exor', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'explorer', name = 'Explorer', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'explorer20', name = 'Explorer 20', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'express3500', name = 'Express 3500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'f150', name = 'F 150', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f15078', name = 'F 15078', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f150army', name = 'F 150 Army', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f150lariat', name = 'F 150 Lariat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f35019', name = 'F 35019', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'f350offroadspec', name = 'F 350 Offroadspec', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'f458', name = 'F 458', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'f812', name = 'F 812', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'f82', name = 'F 82', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f824slw', name = 'F 824 Slw', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f82duke', name = 'F 82 Duke', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f82hs', name = 'F 82 Hs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f82lw', name = 'F 82 Lw', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'f82st', name = 'F 82 St', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'famebox', name = 'Famebox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fc15', name = 'Fc 15', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fcxl', name = 'Fcxl', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fd370z', name = 'Fd 370 Z', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'fds14', name = 'Fds 14', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'fdstang', name = 'Fdstang', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'ff4wrx', name = 'Ff 4 Wrx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fgbox', name = 'Fgbox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fgbox2', name = 'Fgbox 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'filthynsx', name = 'Filthynsx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fjcruiser', name = 'Fjcruiser', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fk8', name = 'Fk 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'flhxs_streetglide_special18', name = 'Flhxs Streetglide Special 18', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnf4r34', name = 'Fnf 4 R 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnfjetta', name = 'Fnfjetta', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnflan', name = 'Fnflan', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnfmits', name = 'Fnfmits', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnfmk4', name = 'Fnfmk 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnfrx7', name = 'Fnfrx 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fnfrx7dom', name = 'Fnfrx 7 Dom', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'focusrs', name = 'Focusrs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fordgtultimate', name = 'Fordgtultimate', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fordltl9000', name = 'Fordltl 9000', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'forgig65gold', name = 'Forgig 65 Gold', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'forgt50020', name = 'Forgt 50020', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'formulad', name = 'Formulad', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'foxc8wbs', name = 'Foxc 8 Wbs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'foxshelby', name = 'Foxshelby', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'foxsub1', name = 'Foxsub 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fpacehm', name = 'Fpacehm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fto', name = 'Fto', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fury69', name = 'Fury 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fxxk', name = 'Fxxk', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'fz50', name = 'Fz 50', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g20wide', name = 'G 20 Wide', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g5502019', name = 'G 5502019', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g632019', name = 'G 632019', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g632019x', name = 'G 632019 X', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g634x4', name = 'G 634 X 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g63amg6x6', name = 'G 63 Amg 6 X 6', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'g65', name = 'G 65', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'g65top', name = 'G 65 Top', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gallardo', name = 'Gallardo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gallardosuperlb', name = 'Gallardosuperlb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gcmimola', name = 'Gcmimola', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gcmlamboultimae', name = 'Gcmlamboultimae', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ghis2', name = 'Ghis 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ghostewb', name = 'Ghostewb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ghostswb', name = 'Ghostswb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'giulia', name = 'Giulia', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gl63', name = 'Gl 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gladiator', name = 'Gladiator', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gle450', name = 'Gle 450', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gle53', name = 'Gle 53', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gls63', name = 'Gls 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gmcat4', name = 'Gmcat 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gmcyd', name = 'Gmcyd', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'godzenclosed', name = 'Godzenclosed', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'goldwing', name = 'Goldwing', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golf4', name = 'Golf 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golf75r', name = 'Golf 75 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golf7r', name = 'Golf 7 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golfgti7', name = 'Golfgti 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golfmk6', name = 'Golfmk 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'golfold', name = 'Golfold', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gpz1100', name = 'Gpz 1100', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gs1200', name = 'Gs 1200', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gs350', name = 'Gs 350', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gsx', name = 'Gsx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gsxr', name = 'Gsxr', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'gsxr19', name = 'Gsxr 19', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'gt1000', name = 'Gt 1000', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gt17', name = 'Gt 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gt295', name = 'Gt 295', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gt2rwb', name = 'Gt 2 Rwb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gt86', name = 'Gt 86', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gt86drift', name = 'Gt 86 Drift', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gta5rp_veh_c63s', name = 'Gta 5 Rp Veh C 63 S', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gtam21', name = 'Gtam 21', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gtb488', name = 'Gtb 488', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gtorino76', name = 'Gtorino 76', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gtorture', name = 'Gtorture', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gtr', name = 'Gtr', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gtr1', name = 'Gtr 1', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'gtr50', name = 'Gtr 50', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gtr96', name = 'Gtr 96', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gtrlb2', name = 'Gtrlb 2', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gxa45', name = 'Gxa 45', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gxevox', name = 'Gxevox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gxm5', name = 'Gxm 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'gxone', name = 'Gxone', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gxr33', name = 'Gxr 33', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'gxs15', name = 'Gxs 15', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hatestang', name = 'Hatestang', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hauler9', name = 'Hauler 9', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'hayabusa', name = 'Hayabusa', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'hcej1', name = 'Hcej 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hdiron883', name = 'Hdiron 883', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hdwrecker', name = 'Hdwrecker', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'heli1', name = 'Heli 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hellaphant', name = 'Hellaphant', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hellcatlb', name = 'Hellcatlb', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'hgksupra', name = 'Hgksupra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'highcountry', name = 'Highcountry', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hillboaty', name = 'Hillboaty', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hilux1', name = 'Hilux 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hilux2', name = 'Hilux 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hilux3', name = 'Hilux 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hiluxarctic', name = 'Hiluxarctic', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'honcrx91', name = 'Honcrx 91', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hotwlambo', name = 'Hotwlambo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hover_bike', name = 'Hover Bike', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'hs2000', name = 'Hs 2000', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hummer', name = 'Hummer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hvrod', name = 'Hvrod', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hvrod1', name = 'Hvrod 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'hycadeevo', name = 'Hycadeevo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ie2', name = 'Ie 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'impala67', name = 'Impala 67', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'imports00', name = 'Imports 00', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'impreza2019', name = 'Impreza 2019', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'integrale', name = 'Integrale', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'is350mod', name = 'Is 350 Mod', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'it18yaya', name = 'It 18 Yaya', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'jeep2012', name = 'Jeep 2012', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'jeepg', name = 'Jeepg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'jes', name = 'Jes', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'jesko2020x', name = 'Jesko 2020 X', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'jp12', name = 'Jp 12', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'ka60', name = 'Ka 60', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'kangoo', name = 'Kangoo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'katana', name = 'Katana', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'katana2', name = 'Katana 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'kccx', name = 'Kccx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'killerhwak', name = 'Killerhwak', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'killerrs7', name = 'Killerrs 7', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'kountry84', name = 'Kountry 84', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'krazyesc21', name = 'Krazyesc 21', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ksd', name = 'Ksd', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'kswap180', name = 'Kswap 180', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'kurumar', name = 'Kurumar', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'kx450f', name = 'Kx 450 F', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'laferrari', name = 'Laferrari', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'landv6', name = 'Landv 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lanex400', name = 'Lanex 400', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lanos3', name = 'Lanos 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lanos4', name = 'Lanos 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lanos5', name = 'Lanos 5', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'largeboat', name = 'Largeboat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lc100', name = 'Lc 100', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lc500', name = 'Lc 500', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ldsv', name = 'Ldsv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lex570', name = 'Lex 570', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'lexgs350', name = 'Lexgs 350', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lexgs350f', name = 'Lexgs 350 F', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lexusdrift', name = 'Lexusdrift', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lexy', name = 'Lexy', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lfa', name = 'Lfa', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lfa10', name = 'Lfa 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lg2500', name = 'Lg 2500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'lget', name = 'Lget', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lgext97', name = 'Lgext 97', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lgf350', name = 'Lgf 350', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'lgtrd', name = 'Lgtrd', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'lhgt3', name = 'Lhgt 3', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'liberty10charg', name = 'Liberty 10 Charg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty13tahoe', name = 'Liberty 13 Tahoe', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'liberty14charg', name = 'Liberty 14 Charg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty16fpiu', name = 'Liberty 16 Fpiu', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty16fpiuk9', name = 'Liberty 16 Fpiuk 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty16impala', name = 'Liberty 16 Impala', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'liberty18charg', name = 'Liberty 18 Charg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty18chargk9', name = 'Liberty 18 Chargk 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty18tahoe', name = 'Liberty 18 Tahoe', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'liberty18tahoek9', name = 'Liberty 18 Tahoek 9', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'liberty19silv', name = 'Liberty 19 Silv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liberty20exp', name = 'Liberty 20 Exp', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertybmw', name = 'Libertybmw', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertyboat', name = 'Libertyboat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertycamero', name = 'Libertycamero', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertycap', name = 'Libertycap', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertycvpi', name = 'Libertycvpi', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertydurango', name = 'Libertydurango', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'libertyf150', name = 'Libertyf 150', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertyf250', name = 'Libertyf 250', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'libertyfpis', name = 'Libertyfpis', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertygator', name = 'Libertygator', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertyharley', name = 'Libertyharley', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'libertymustang', name = 'Libertymustang', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'libertyquad', name = 'Libertyquad', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertyram', name = 'Libertyram', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'libertysilverado', name = 'Libertysilverado', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'libertytahoe2', name = 'Libertytahoe 2', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'libertytrailer', name = 'Libertytrailer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'libertytrailer2', name = 'Libertytrailer 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'liquide1', name = 'Liquide 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lms', name = 'Lms', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lowboy', name = 'Lowboy', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lowboyjeep', name = 'Lowboyjeep', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lowboysti', name = 'Lowboysti', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lp570', name = 'Lp 570', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lp610', name = 'Lp 610', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lp670sv', name = 'Lp 670 Sv', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'lummax6', name = 'Lummax 6', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'lx2018', name = 'Lx 2018', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm135i', name = 'M 135 I', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm2', name = 'M 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm2f22', name = 'M 2 F 22', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm3e30', name = 'M 3 E 30', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm3e46', name = 'M 3 E 46', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm3e46i', name = 'M 3 E 46 I', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm3f80', name = 'M 3 F 80', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm4comp', name = 'M 4 Comp', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm4cs', name = 'M 4 Cs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm4f82', name = 'M 4 F 82', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm4hycade21', name = 'M 4 Hycade 21', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm4lb', name = 'M 4 Lb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm5', name = 'M 5', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm516', name = 'M 516', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm5csbyv', name = 'M 5 Csbyv', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm5e60', name = 'M 5 E 60', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm5f90', name = 'M 5 F 90', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm5perf16', name = 'M 5 Perf 16', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'm6f13', name = 'M 6 F 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm6gc', name = 'M 6 Gc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm6prior', name = 'M 6 Prior', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'm8f91', name = 'M 8 F 91', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mach1', name = 'Mach 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'magnum', name = 'Magnum', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'maj350z', name = 'Maj 350 Z', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'malibu', name = 'Malibu', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'maluch', name = 'Maluch', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'man', name = 'Man', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mans65', name = 'Mans 65', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'manscent', name = 'Manscent', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mansm8', name = 'Mansm 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mansrs6', name = 'Mansrs 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'matrixscat', name = 'Matrixscat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'maverick2', name = 'Maverick 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mbc63', name = 'Mbc 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mcfloat', name = 'Mcfloat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mclareng', name = 'Mclareng', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mctanker', name = 'Mctanker', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mctanker2', name = 'Mctanker 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mctanker3', name = 'Mctanker 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'medic1', name = 'Medic 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'megaramcustom', name = 'Megaramcustom', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'mercedesbenzgseries', name = 'Mercedesbenzgseries', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mercgls63', name = 'Mercgls 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mercw126', name = 'Mercw 126', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mercxclass', name = 'Mercxclass', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mers63c', name = 'Mers 63 C', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mgrantur', name = 'Mgrantur', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mgt', name = 'Mgt', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mh53camo', name = 'Mh 53 Camo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mh53desert', name = 'Mh 53 Desert', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mh6', name = 'Mh 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'miata3', name = 'Miata 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mig', name = 'Mig', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'militaire1', name = 'Militaire 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'missione', name = 'Missione', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mitstar88', name = 'Mitstar 88', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mitsugto', name = 'Mitsugto', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mk2100', name = 'Mk 2100', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mk3vr6', name = 'Mk 3 Vr 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mk4hycade', name = 'Mk 4 Hycade', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mk7', name = 'Mk 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mkvr32', name = 'Mkvr 32', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mkvr32ar', name = 'Mkvr 32 Ar', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mlbrabus', name = 'Mlbrabus', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mlnovitec', name = 'Mlnovitec', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mmach1', name = 'Mmach 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'models', name = 'Models', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'montecarlo', name = 'Montecarlo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mor', name = 'Mor', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mqgts', name = 'Mqgts', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mr2mk1', name = 'Mr 2 Mk 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mr2sw20', name = 'Mr 2 Sw 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mr2zzw30', name = 'Mr 2 Zzw 30', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mt25', name = 'Mt 25', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mteche39', name = 'Mteche 39', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mugencrx', name = 'Mugencrx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mustang', name = 'Mustang', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'mustang19', name = 'Mustang 19', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'mustang65', name = 'Mustang 65', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'mustang68', name = 'Mustang 68', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'mustangbkit', name = 'Mustangbkit', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'mv2019', name = 'Mv 2019', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mxpan', name = 'Mxpan', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'mz3', name = 'Mz 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'na6', name = 'Na 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nav9800', name = 'Nav 9800', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ncbox', name = 'Ncbox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ncvelle69', name = 'Ncvelle 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ncweed', name = 'Ncweed', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nerossc', name = 'Nerossc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'newvic', name = 'Newvic', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nh2r', name = 'Nh 2 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nimbul', name = 'Nimbul', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ninja250fi', name = 'Ninja 250 Fi', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'nisgtir', name = 'Nisgtir', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nisgtsrr31', name = 'Nisgtsrr 31', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nismo20', name = 'Nismo 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nissunny', name = 'Nissunny', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro10', name = 'Nitro 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro11', name = 'Nitro 11', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro4', name = 'Nitro 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro5', name = 'Nitro 5', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro7', name = 'Nitro 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro8', name = 'Nitro 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nitro9', name = 'Nitro 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nsexrb', name = 'Nsexrb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nsgr', name = 'Nsgr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'nzp', name = 'Nzp', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ocnetrongt', name = 'Ocnetrongt', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ody18', name = 'Ody 18', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'offroadwrang', name = 'Offroadwrang', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ogzz', name = 'Ogzz', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'olds442', name = 'Olds 442', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'overdose', name = 'Overdose', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'oyclc500', name = 'Oyclc 500', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'oycmr500', name = 'Oycmr 500', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'p911r', name = 'P 911 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'panamera17turbo', name = 'Panamera 17 Turbo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'passat', name = 'Passat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'patroly60', name = 'Patroly 60', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pavelow', name = 'Pavelow', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pcs18', name = 'Pcs 18', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pct13', name = 'Pct 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pd1', name = 'Pd 1', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd10', name = 'Pd 10', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd11', name = 'Pd 11', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd12', name = 'Pd 12', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd13', name = 'Pd 13', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd15', name = 'Pd 15', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd16', name = 'Pd 16', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd17', name = 'Pd 17', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd2', name = 'Pd 2', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd3', name = 'Pd 3', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd4', name = 'Pd 4', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd458wb', name = 'Pd 458 Wb', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd5', name = 'Pd 5', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd6', name = 'Pd 6', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd7', name = 'Pd 7', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd8', name = 'Pd 8', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pd9', name = 'Pd 9', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'peugeot107', name = 'Peugeot 107', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pgt3', name = 'Pgt 3', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'pistaspider19', name = 'Pistaspider 19', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'pjtrailer', name = 'Pjtrailer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pm19', name = 'Pm 19', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pol1', name = 'Pol 1', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol10', name = 'Pol 10', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol2', name = 'Pol 2', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol3', name = 'Pol 3', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol5', name = 'Pol 5', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol6', name = 'Pol 6', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol7', name = 'Pol 7', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol8', name = 'Pol 8', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pol9', name = 'Pol 9', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'pole1', name = 'Pole 1', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'polschafter3', name = 'Polschafter 3', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'por930', name = 'Por 930', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'porrs73', name = 'Porrs 73', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'powerwagon', name = 'Powerwagon', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'premierc', name = 'Premierc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'protoz', name = 'Protoz', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'psp_mbsprinter', name = 'Psp Mbsprinter', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pts21', name = 'Pts 21', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'punto', name = 'Punto', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'pv_booster_1', name = 'Pv Booster 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'q7', name = 'Q 7', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'q820', name = 'Q 820', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'q8prior', name = 'Q 8 Prior', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'qashqai16', name = 'Qashqai 16', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r11998', name = 'R 11998', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'r31', name = 'R 31', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r34', name = 'R 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r34speedhunter', name = 'R 34 Speedhunter', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r34vspec', name = 'R 34 Vspec', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r35', name = 'R 35', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r35lb', name = 'R 35 Lb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r35prior', name = 'R 35 Prior', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r36fp', name = 'R 36 Fp', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r50', name = 'R 50', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r6', name = 'R 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r820', name = 'R 820', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'r8lms', name = 'R 8 Lms', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ram1500', name = 'Ram 1500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ram2500', name = 'Ram 2500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ram3500', name = 'Ram 3500', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ram99sl', name = 'Ram 99 Sl', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ramhauler', name = 'Ramhauler', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ramlh20', name = 'Ramlh 20', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'ramtuning', name = 'Ramtuning', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'rapger19', name = 'Rapger 19', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'raptor1', name = 'Raptor 1', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'raptor150', name = 'Raptor 150', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'raptor17', name = 'Raptor 17', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'raptor2017', name = 'Raptor 2017', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'raptor6x6', name = 'Raptor 6 X 6', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'rav4', name = 'Rav 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rc', name = 'Rc', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'redpig72', name = 'Redpig 72', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rescue1', name = 'Rescue 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rescue2', name = 'Rescue 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodbacalar', name = 'Rmodbacalar', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodbentley1', name = 'Rmodbentley 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodbentleygt', name = 'Rmodbentleygt', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodbmwm8', name = 'Rmodbmwm 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodbolide', name = 'Rmodbolide', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodc63amg', name = 'Rmodc 63 Amg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodcamaro', name = 'Rmodcamaro', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'rmodchiron300', name = 'Rmodchiron 300', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rmode63s', name = 'Rmode 63 S', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodessenza', name = 'Rmodessenza', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodf12tdf', name = 'Rmodf 12 Tdf', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodf40', name = 'Rmodf 40', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodg65', name = 'Rmodg 65', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodgt63', name = 'Rmodgt 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodgtr50', name = 'Rmodgtr 50', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rmodi8ks', name = 'Rmodi 8 Ks', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodjeep', name = 'Rmodjeep', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodlp750', name = 'Rmodlp 750', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodm4', name = 'Rmodm 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodm4gts', name = 'Rmodm 4 Gts', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodm4gts2', name = 'Rmodm 4 Gts 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodm5e34', name = 'Rmodm 5 E 34', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rmodm8gte', name = 'Rmodm 8 Gte', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodmartin', name = 'Rmodmartin', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodmk7', name = 'Rmodmk 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodp1gtr2020', name = 'Rmodp 1 Gtr 2020', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rmodquadra', name = 'Rmodquadra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodrs6', name = 'Rmodrs 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodrs7', name = 'Rmodrs 7', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rmodsian', name = 'Rmodsian', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodsianr', name = 'Rmodsianr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodsianr1', name = 'Rmodsianr 1', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'rmodskyline34', name = 'Rmodskyline 34', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodsuprapandem', name = 'Rmodsuprapandem', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodveneno', name = 'Rmodveneno', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rmodx6', name = 'Rmodx 6', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'ro650', name = 'Ro 650', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ro7', name = 'Ro 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ro90', name = 'Ro 90', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'roexp10', name = 'Roexp 10', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'romay', name = 'Romay', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rotesla', name = 'Rotesla', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rovip', name = 'Rovip', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rox6', name = 'Rox 6', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'roxanne1', name = 'Roxanne 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rozoe', name = 'Rozoe', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rrab', name = 'Rrab', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rrckeyvany', name = 'Rrckeyvany', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rrphantom', name = 'Rrphantom', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rrs08', name = 'Rrs 08', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rrst', name = 'Rrst', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs3', name = 'Rs 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs318', name = 'Rs 318', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs3lms', name = 'Rs 3 Lms', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs4', name = 'Rs 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs5', name = 'Rs 5', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs520', name = 'Rs 520', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs5r', name = 'Rs 5 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6', name = 'Rs 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs620', name = 'Rs 620', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs62017', name = 'Rs 62017', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs666', name = 'Rs 666', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6avant20', name = 'Rs 6 Avant 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6c8', name = 'Rs 6 C 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6c8sed', name = 'Rs 6 C 8 Sed', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6pd600', name = 'Rs 6 Pd 600', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'rs6pd6002', name = 'Rs 6 Pd 6002', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'rs6rabt20', name = 'Rs 6 Rabt 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs6sedan', name = 'Rs 6 Sedan', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rs72021', name = 'Rs 72021', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rs7mans', name = 'Rs 7 Mans', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rs7r', name = 'Rs 7 R', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'rsq8m', name = 'Rsq 8 M', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'rsvr16', name = 'Rsvr 16', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'rt70', name = 'Rt 70', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rubberrufus', name = 'Rubberrufus', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rubi3d', name = 'Rubi 3 D', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ruck72', name = 'Ruck 72', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'runner', name = 'Runner', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'rx8street', name = 'Rx 8 Street', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's15mak', name = 'S 15 Mak', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's30', name = 'S 30', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's3sedan', name = 'S 3 Sedan', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's500w222', name = 'S 500 W 222', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's600', name = 'S 600', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's600w220', name = 'S 600 W 220', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's63amg', name = 'S 63 Amg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's63w222', name = 'S 63 W 222', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's65w222', name = 'S 65 W 222', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's8', name = 'S 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 's900cf', name = 'S 900 Cf', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sbban', name = 'Sbban', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'scaniar440', name = 'Scaniar 440', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sclgt63s', name = 'Sclgt 63 S', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sclkuz', name = 'Sclkuz', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'scubieblob', name = 'Scubieblob', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sentineldm', name = 'Sentineldm', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sentinelsg4', name = 'Sentinelsg 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'shelbygt', name = 'Shelbygt', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'shinobu', name = 'Shinobu', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'silv2500hd', name = 'Silv 2500 Hd', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'silverado', name = 'Silverado', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'silvia', name = 'Silvia', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'silvias15', name = 'Silvias 15', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'silvias151', name = 'Silvias 151', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'singer', name = 'Singer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sjamg', name = 'Sjamg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sjaudi', name = 'Sjaudi', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sjbbox', name = 'Sjbbox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sjdodge', name = 'Sjdodge', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'skyline', name = 'Skyline', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sl6509', name = 'Sl 6509', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'slsamg', name = 'Slsamg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'smallboat', name = 'Smallboat', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so1', name = 'So 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so10', name = 'So 10', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so11', name = 'So 11', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so12', name = 'So 12', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so13', name = 'So 13', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so15', name = 'So 15', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so2', name = 'So 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so3', name = 'So 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so4', name = 'So 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so5', name = 'So 5', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so6', name = 'So 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so7', name = 'So 7', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so8', name = 'So 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'so9', name = 'So 9', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'spider19', name = 'Spider 19', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'sportage', name = 'Sportage', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sq72016', name = 'Sq 72016', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'srt8', name = 'Srt 8', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'srt8b', name = 'Srt 8 B', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'srt8f', name = 'Srt 8 F', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'starhero', name = 'Starhero', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'stelvio', name = 'Stelvio', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'stelvio2', name = 'Stelvio 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'stingray', name = 'Stingray', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sto', name = 'Sto', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'streambox', name = 'Streambox', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'street15', name = 'Street 15', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'streetglide', name = 'Streetglide', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'streetproto', name = 'Streetproto', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'subarugtv2', name = 'Subarugtv 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'subisti08', name = 'Subisti 08', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'subn', name = 'Subn', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'suburban', name = 'Suburban', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'subwrx', name = 'Subwrx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sultanrsv8', name = 'Sultanrsv 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'sunrise1', name = 'Sunrise 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'superduty', name = 'Superduty', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'supra2', name = 'Supra 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'supratuning', name = 'Supratuning', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'svj63', name = 'Svj 63', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'svt00', name = 'Svt 00', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 't3', name = 'T 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 't680', name = 'T 680', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'tahoe', name = 'Tahoe', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'tahoe1', name = 'Tahoe 1', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'taki428', name = 'Taki 428', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'taxi2', name = 'Taxi 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'taxi3', name = 'Taxi 3', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'taycan', name = 'Taycan', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'templar', name = 'Templar', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'terror', name = 'Terror', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'teslapd', name = 'Teslapd', brand = 'Emergency', price = 100000, category = 'emergency', type = 'automobile', shop = 'none' }, { model = 'thauler', name = 'Thauler', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'tico', name = 'Tico', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'titan17', name = 'Titan 17', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'tofu', name = 'Tofu', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'toy86', name = 'Toy 86', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'toyhauler', name = 'Toyhauler', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'toyotaft', name = 'Toyotaft', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'toysupmk4', name = 'Toysupmk 4', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'trackmx5', name = 'Trackmx 5', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'tracksrt', name = 'Tracksrt', brand = 'Addon', price = 65000, category = 'muscle', type = 'automobile', shop = 'pdm' }, { model = 'tractors', name = 'Tractors', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'traktors', name = 'Traktors', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'trans_mbv250', name = 'Trans Mbv 250', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'transformer', name = 'Transformer', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'trdsupra', name = 'Trdsupra', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'trhawk1', name = 'Trhawk 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'trx', name = 'Trx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'tsgr20', name = 'Tsgr 20', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'tts', name = 'Tts', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'twin69', name = 'Twin 69', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'twinturbof40', name = 'Twinturbof 40', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'type263', name = 'Type 263', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'unimog', name = 'Unimog', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'unk75', name = 'Unk 75', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'urus', name = 'Urus', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'urus_stretch_6', name = 'Urus Stretch 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'utl1', name = 'Utl 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'utl2', name = 'Utl 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'v242', name = 'V 242', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'v250', name = 'V 250', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'v4sp', name = 'V 4 Sp', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vanquish01', name = 'Vanquish 01', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vanquishzs', name = 'Vanquishzs', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vanzava', name = 'Vanzava', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vanzf40', name = 'Vanzf 40', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vigout', name = 'Vigout', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vip8', name = 'Vip 8', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'viper', name = 'Viper', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'viperleo', name = 'Viperleo', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vmax', name = 'Vmax', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vmoda6', name = 'Vmoda 6', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vnl780', name = 'Vnl 780', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vogue', name = 'Vogue', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vogue14', name = 'Vogue 14', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'volvo850r', name = 'Volvo 850 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vsgran', name = 'Vsgran', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vwstance', name = 'Vwstance', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'vxr', name = 'Vxr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w140', name = 'W 140', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w140s600', name = 'W 140 S 600', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w202', name = 'W 202', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w210', name = 'W 210', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w210amg', name = 'W 210 Amg', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w222', name = 'W 222', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w463a', name = 'W 463 A', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w463a1', name = 'W 463 A 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w463as', name = 'W 463 As', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'w900', name = 'W 900', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'wald2018', name = 'Wald 2018', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'wdf350', name = 'Wdf 350', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'wdf350p', name = 'Wdf 350 P', brand = 'Addon', price = 75000, category = 'offroad', type = 'automobile', shop = 'pdm' }, { model = 'wide180sx', name = 'Wide 180 Sx', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'wildtrak', name = 'Wildtrak', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'wmfenyr', name = 'Wmfenyr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'wraith', name = 'Wraith', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'x5bmw', name = 'X 5 Bmw', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x5e53', name = 'X 5 E 53', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x5m', name = 'X 5 M', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x5m2016', name = 'X 5 M 2016', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x5om', name = 'X 5 Om', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x6m', name = 'X 6 M', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x6m1', name = 'X 6 M 1', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x6mf96lbwk', name = 'X 6 Mf 96 Lbwk', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x6mv1', name = 'X 6 Mv 1', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'x6mv2', name = 'X 6 Mv 2', brand = 'Addon', price = 70000, category = 'suvs', type = 'automobile', shop = 'pdm' }, { model = 'xc90', name = 'Xc 90', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'xg632019', name = 'Xg 632019', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'xlcr', name = 'Xlcr', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'y1700max', name = 'Y 1700 Max', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'ypg205t16a', name = 'Ypg 205 T 16 A', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'yrenault5ta', name = 'Yrenault 5 Ta', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'yrenault5tb', name = 'Yrenault 5 Tb', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'yukonxl', name = 'Yukonxl', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'yzfr1', name = 'Yzfr 1', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, { model = 'z1000', name = 'Z 1000', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'z1000a1', name = 'Z 1000 A 1', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'z15dragon', name = 'Z 15 Dragon', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'z4bmw', name = 'Z 4 Bmw', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'z8r', name = 'Z 8 R', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'zh2', name = 'Zh 2', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'zl12017', name = 'Zl 12017', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'zl400b', name = 'Zl 400 B', brand = 'Addon', price = 85000, category = 'sports', type = 'automobile', shop = 'pdm' }, { model = 'zondar', name = 'Zondar', brand = 'Addon', price = 250000, category = 'super', type = 'automobile', shop = 'luxury' }, { model = 'zx10', name = 'Zx 10', brand = 'Addon', price = 25000, category = 'motorcycles', type = 'bike', shop = 'pdm' }, } QBShared.VehicleHashes = QBShared.VehicleHashes or {} for i = 1, #Vehicles do local hash = joaat(Vehicles[i].model) QBShared.Vehicles[Vehicles[i].model] = { spawncode = Vehicles[i].model, name = Vehicles[i].name, brand = Vehicles[i].brand, model = Vehicles[i].model, price = Vehicles[i].price, category = Vehicles[i].category, hash = hash, type = Vehicles[i].type, shop = Vehicles[i].shop } QBShared.VehicleHashes[hash] = QBShared.Vehicles[Vehicles[i].model] end
-
-
Debadged Vehicle Pack | 450 CARS - DigitalLativa [9GB!]
uncletaco commented on TheCollector's file in Vehicles