Last active
November 30, 2025 10:38
-
-
Save srlemke/fd6370d0e57456e42af1cbdfcd2f67f6 to your computer and use it in GitHub Desktop.
Raceroom Cars info extract - To use in simhub dash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Updated: 30.11.2025 | |
| //This was extracted from the raceroom website: | |
| //It's simhub ready, I have a dash and works fine | |
| //but I did not test all cars, the ones I did | |
| //returned the info fine. | |
| car = lcase($prop('CarModel')) | |
| carclass = $prop('CarClass') | |
| horse_power = '' | |
| drive_type = '' | |
| aspiration = '' | |
| engine_type = '' | |
| weight = '' | |
| production_year = '' | |
| origin = '' | |
| if (carclass == "Hypercars"){ | |
| if (car == 'bmw m hybrid v8') { | |
| origin = 'Germany' | |
| production_year = '2023' | |
| weight = '1030' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '640 hp' | |
| } | |
| if (car == 'lamborghini sc63') { | |
| origin = 'Italy' | |
| production_year = '2023' | |
| weight = '1305 kg' | |
| engine_type = 'V8 3.8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '680 hp' | |
| } | |
| if (car == 'porsche 963') { | |
| origin = 'Germany' | |
| production_year = '2023' | |
| weight = '1305 kg' | |
| engine_type = 'V8 4.6' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '680 hp' | |
| } | |
| } | |
| if (carclass == "GTR 4"){ | |
| if (car == 'lotus evora gt4') { | |
| origin = 'UK' | |
| production_year = '2010' | |
| weight = '1300kg' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '355bhp' | |
| } | |
| if (car == 'mclaren 570s gt4') { | |
| origin = 'UK' | |
| production_year = '2017' | |
| weight = '1540' | |
| engine_type = 'V8 3.8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '425bhp' | |
| } | |
| if (car == 'audi r8 lms gt4 2020') { | |
| origin = 'Germany' | |
| production_year = '2020' | |
| weight = '1605' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '450bhp' | |
| } | |
| if (car == 'ktm x-bow gt4') { | |
| origin = 'Austria' | |
| production_year = '2015' | |
| weight = '1300kg' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '353BHP' | |
| } | |
| if (car == 'mercedes amg gt4 2020') { | |
| origin = 'Germany' | |
| production_year = '2020' | |
| weight = '1545kg' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '415bhp' | |
| } | |
| if (car == 'porsche 718 cayman gt4 clubsport') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1435' | |
| engine_type = 'Flat-6 3.8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '420bhp' | |
| } | |
| if (car == 'porsche cayman gt4 cs mr') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1300 Kg' | |
| engine_type = 'Flat-6 3.8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '385 BHP @ 7500 RPM' | |
| } | |
| if (car == 'bmw m4 gt4 (g82)') { | |
| origin = 'Germany' | |
| production_year = '2023' | |
| weight = '1585' | |
| engine_type = 'Inline-6 3.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '550' | |
| } | |
| if (car == 'bmw m4 gt4 (f82)') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1570' | |
| engine_type = 'Inline-6 3.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '430' | |
| } | |
| } | |
| if (carclass.includes('GTR 3') || carclass.includes('ADAC') || carclass.includes('DTM')) { | |
| if (car == 'audi r8 lms gt3 evo ii') { | |
| origin = 'Germany' | |
| production_year = '2022' | |
| weight = '1390' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'audi r8 lms gt3 evo') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1390' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'audi r8 lms') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1390' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'bentley continental gt3 evo') { | |
| origin = 'UK' | |
| production_year = '2019' | |
| weight = '1410' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = 'TBD' | |
| } | |
| if (car == 'bentley continental gt3') { | |
| origin = 'UK' | |
| production_year = '2014' | |
| weight = '1360' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575bhp' | |
| } | |
| if (car == 'bmw alpina b6 gt3') { | |
| origin = 'Germany' | |
| production_year = '2009' | |
| weight = '1325 ' | |
| engine_type = 'V8 4.4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '580 bhp' | |
| } | |
| if (car == 'bmw m6 gt3') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1395' | |
| engine_type = 'V8 4.4' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '590bhp' | |
| } | |
| if (car == 'bmw z4 gt3') { | |
| origin = 'Germany' | |
| production_year = '2012' | |
| weight = '1330' | |
| engine_type = 'V8 4.4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575bhp' | |
| } | |
| if (car == 'callaway corvette c7 gt3-r') { | |
| origin = 'USA' | |
| production_year = '2016' | |
| weight = '1375' | |
| engine_type = 'V8 6.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '585bhp' | |
| } | |
| if (car == 'chevrolet corvette z06.r gt3 gtm15') { | |
| origin = 'USA' | |
| production_year = '2013' | |
| weight = '1355' | |
| engine_type = 'V8 6.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '590bhp' | |
| } | |
| if (car == 'chevrolet corvette z06.r gt3') { | |
| origin = 'USA' | |
| production_year = '2013' | |
| weight = '1355' | |
| engine_type = 'V8 6.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '590bhp' | |
| } | |
| if (car == 'chevrolet camaro gt3') { | |
| origin = 'USA' | |
| production_year = '2012' | |
| weight = '1395 kg (with driver)' | |
| engine_type = 'V8 7.9' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '620 bhp' | |
| } | |
| if (car == 'mclaren 720s gt3') { | |
| origin = 'UK' | |
| production_year = '2021' | |
| weight = '1390' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575bhp' | |
| } | |
| if (car == 'ferrari 488 gt3 evo 2020') { | |
| origin = 'Italy' | |
| production_year = '2021' | |
| weight = '1370' | |
| engine_type = 'V8 3.9' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '560bhp' | |
| } | |
| if (car == 'ferrari 296 gt3') { | |
| origin = 'Italy' | |
| production_year = '2022' | |
| weight = '1390' | |
| engine_type = 'V6 2.9' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Italy' | |
| horse_power = '545bhp' | |
| } | |
| if (car == 'ford gt gt3') { | |
| origin = 'USA' | |
| production_year = '2013' | |
| weight = '1325' | |
| engine_type = 'V8 5.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575' | |
| } | |
| if (car == 'ford mustang gt3') { | |
| origin = 'USA' | |
| production_year = '2007' | |
| weight = '1435' | |
| engine_type = 'V8 5.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '630bhp' | |
| } | |
| if (car == 'mclaren 650s gt3') { | |
| origin = 'UK' | |
| production_year = '2015' | |
| weight = '1350' | |
| engine_type = 'V8 3.8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'mclaren mp4-12c gt3') { | |
| origin = 'UK' | |
| production_year = '2013' | |
| weight = '1340' | |
| engine_type = 'V8 3.8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575bhp' | |
| } | |
| if (car == 'mercedes-amg gt3 2020') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1390' | |
| engine_type = 'V8 6.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '585bhp' | |
| } | |
| if (car == 'mercedes amg gt3') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1390' | |
| engine_type = 'V8 6.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '590bhp' | |
| } | |
| if (car == 'mercedes-benz sls amg gt3') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '1405' | |
| engine_type = 'V8 6.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '600bhp' | |
| } | |
| if (car == 'nissan gt-r gt3') { | |
| origin = 'Japan' | |
| production_year = '2011' | |
| weight = '1370' | |
| engine_type = 'V6 3.8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '600bhp' | |
| } | |
| if (car == 'p4-5 competizione gt3') { | |
| origin = 'Italy' | |
| production_year = '2011' | |
| weight = '1305' | |
| engine_type = 'V8 4.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '560bhp' | |
| } | |
| if (car == 'porsche 911 gt3 r (992)') { | |
| origin = 'Germany' | |
| production_year = '2022' | |
| weight = '1385' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575 hp' | |
| } | |
| if (car == 'porsche 911 gt3 r (2019)') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1345' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'bmw m4 gt3') { | |
| origin = 'Germany' | |
| production_year = '2021' | |
| weight = '1385' | |
| engine_type = 'Inline-6 3.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '545' | |
| } | |
| if (car == 'lamborghini huracán gt3 evo ii') { | |
| origin = 'Italy' | |
| production_year = '2023' | |
| weight = '1380' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570' | |
| } | |
| if (car == 'bmw m3 dtm') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| } | |
| if (carclass.includes('Touring') || carclass.includes('WTC')) { | |
| if (car == 'honda accord super touring') { | |
| origin = 'Japan' | |
| production_year = '1997' | |
| weight = '1055' | |
| engine_type = 'Inline-4 2.4' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '310' | |
| } | |
| if (car == 'volvo s40 super touring') { | |
| origin = 'Sweden' | |
| production_year = '1999' | |
| weight = '1055' | |
| engine_type = 'Inline-5 2.0' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '302' | |
| } | |
| if (car == 'volvo 850 super touring') { | |
| origin = 'Sweden' | |
| production_year = '1996' | |
| weight = '1055' | |
| engine_type = 'Inline-5 2.0' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '300' | |
| } | |
| if (car == 'bmw 320i e36 super touring') { | |
| origin = 'Germany' | |
| production_year = '1996' | |
| weight = '1080' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '300' | |
| } | |
| if (car == 'opel vectra super touring') { | |
| origin = 'Germany' | |
| production_year = '1998' | |
| weight = '1055' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '300' | |
| } | |
| if (car == 'alfa romeo 156 super touring') { | |
| origin = 'Italy' | |
| production_year = '1998' | |
| weight = '1055' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '300' | |
| } | |
| if (car == 'renault laguna super touring') { | |
| origin = 'France' | |
| production_year = '1998' | |
| weight = '1055' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '298' | |
| } | |
| if (car == 'audi a4 super touring 1995') { | |
| origin = 'Germany' | |
| production_year = '1995' | |
| weight = '1120' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '305' | |
| } | |
| if (car == 'cupra leon competición') { | |
| origin = 'Spain' | |
| production_year = '2020' | |
| weight = '1305 kg' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '335 hp' | |
| } | |
| if (car == 'opel astra') { | |
| origin = 'Germany' | |
| production_year = '2018' | |
| weight = '1315' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '339bhp' | |
| } | |
| if (car == 'peugeot 308 tcr') { | |
| origin = 'France' | |
| production_year = '2018' | |
| weight = '1285 kg' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '330 bhp' | |
| } | |
| if (car == 'volkswagen golf gti tcr') { | |
| origin = 'Germany' | |
| production_year = '2018' | |
| weight = '1315' | |
| engine_type = 'Inline-4' | |
| aspiration = 'N/A' | |
| drive_type = 'Front Drive' | |
| horse_power = '338' | |
| } | |
| if (car == 'renault mégane rs tcr') { | |
| origin = 'France' | |
| production_year = '2020' | |
| weight = '1295' | |
| engine_type = 'Inline-4 1.8' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '340hp' | |
| } | |
| if (car == 'alfa romeo giulietta tcr') { | |
| origin = 'Italy' | |
| production_year = '1995' | |
| weight = '1160 kg' | |
| engine_type = 'V6' | |
| aspiration = 'Turbo' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '490' | |
| } | |
| if (car == 'cupra tcr') { | |
| origin = 'Spain' | |
| production_year = '2018' | |
| weight = '1305 kg' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '335 bhp' | |
| } | |
| if (car == 'honda civic tcr') { | |
| origin = 'Japan' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'honda civic wtcc 2014') { | |
| origin = 'Japan' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'honda civic wtcc 2015') { | |
| origin = 'Japan' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'honda civic wtcc 2016') { | |
| origin = 'Japan' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'honda civic wtcc 2017') { | |
| origin = 'Japan' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'honda civic wtcc') { | |
| origin = 'Japan' | |
| production_year = '2013' | |
| weight = '1150' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '290' | |
| } | |
| if (car == 'hyundai elantra tcr 2021') { | |
| origin = 'South Korea' | |
| production_year = '2021' | |
| weight = '1365' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '340bhp' | |
| } | |
| if (car == 'hyundai i30 n tcr') { | |
| origin = 'South Korea' | |
| production_year = '2018' | |
| weight = '1325kg' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '340bhp' | |
| } | |
| if (car == 'lada granta 1.6t') { | |
| origin = 'Russia' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'lada granta wtcc') { | |
| origin = 'Russia' | |
| production_year = '2013' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '300' | |
| } | |
| if (car == 'lada vesta tcr') { | |
| origin = 'Russia' | |
| production_year = '2020' | |
| weight = '1345' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '345bhp' | |
| } | |
| if (car == 'lada vesta') { | |
| origin = 'Russia' | |
| production_year = '2020' | |
| weight = '1345' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '345bhp' | |
| } | |
| if (car == 'lada vesta wtcc 2015') { | |
| origin = 'Russia' | |
| production_year = '2015' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'lada vesta wtcc 2016') { | |
| origin = 'Russia' | |
| production_year = '2015' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'lada vesta wtcc 2017') { | |
| origin = 'Russia' | |
| production_year = '2015' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'lynk & co 03 tcr') { | |
| origin = 'China' | |
| production_year = '2019' | |
| weight = '1355' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '340bhp' | |
| } | |
| if (car == 'seat león wtcc') { | |
| origin = 'Spain' | |
| production_year = '2013' | |
| weight = '1150' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '310' | |
| } | |
| if (car == 'chevrolet cruze wtcc') { | |
| origin = 'USA' | |
| production_year = '2013' | |
| weight = '1150' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '310' | |
| } | |
| } | |
| if (car == 'praga r1') { | |
| origin = 'Czechia' | |
| production_year = '2022' | |
| weight = '745 kg' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '365 hp' | |
| } | |
| if (car == 'bmw m3 e92 gt') { | |
| origin = 'Germany' | |
| production_year = '2009' | |
| weight = '1150 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '540+ hp' | |
| } | |
| if (car == '134 judd v8') { | |
| origin = 'Germany' | |
| production_year = '2011' | |
| weight = '860 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '583 bhp' | |
| } | |
| if (car == 'alfa romeo 155 ti dtm 1995') { | |
| origin = 'Italy' | |
| production_year = '1995' | |
| weight = '1285 kg' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '330' | |
| } | |
| if (car == 'amg-mercedes c-klasse dtm') { | |
| origin = 'Germany' | |
| production_year = '1995' | |
| weight = '1160 kg' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '505' | |
| } | |
| if (car == 'opel calibra v6 dtm') { | |
| origin = 'Germany' | |
| production_year = '1995' | |
| weight = '1160 kg' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '494' | |
| } | |
| if (car == 'amg mercedes c klasse dtm 1995') { | |
| origin = 'Germany' | |
| production_year = '1995' | |
| weight = '1120 kg' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Rear' | |
| horse_power = '492 bhp' | |
| } | |
| if (car == 'amg mercedes c klasse dtm') { | |
| origin = 'Germany' | |
| production_year = '2005' | |
| weight = '1060kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '480 ps @ 7000 rpm' | |
| } | |
| if (car == 'amg mercedes clk dtm') { | |
| origin = 'Germany' | |
| production_year = '2003' | |
| weight = '1080kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '460 ps @ 6750 rpm' | |
| } | |
| if (car == 'aquila cr1 sports gt') { | |
| origin = 'Denmark' | |
| production_year = '2009' | |
| weight = '890' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '315' | |
| } | |
| if (car == 'audi 90 quattro') { | |
| origin = 'Germany' | |
| production_year = '1989' | |
| weight = '1207' | |
| engine_type = 'Inline-5' | |
| aspiration = 'Turbo' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '709' | |
| } | |
| if (car == 'audi r18') { | |
| origin = 'Germany' | |
| production_year = '2011' | |
| weight = '970' | |
| engine_type = 'V6 Diesel' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '540' | |
| } | |
| if (car == 'audi r8 lms gt2 2019') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1435' | |
| engine_type = 'V10 5.2' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '635bhp' | |
| } | |
| if (car == 'audi r8 lms gt3 evo dtm') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1390' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'audi r8 lms') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1340' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'audi r8 lms ultra') { | |
| origin = 'Germany' | |
| production_year = '2012' | |
| weight = '1350' | |
| engine_type = 'V10 5.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '585bhp' | |
| } | |
| if (car == 'audi rs 3 lms 2021') { | |
| origin = 'Germany' | |
| production_year = '2021' | |
| weight = '1385' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '345bhp' | |
| } | |
| if (car == 'audi rs 3 lms') { | |
| origin = 'Germany' | |
| production_year = '2018' | |
| weight = '1315 kg' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '338 bhp' | |
| } | |
| if (car == 'audi rs 5 dtm 2014') { | |
| origin = 'Germany' | |
| production_year = '2014' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'audi rs 5 dtm 2015') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'audi rs 5 dtm 2016') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1120' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'audi rs 5 dtm 2020') { | |
| origin = 'Germany' | |
| production_year = '2020' | |
| weight = '1070' | |
| engine_type = 'Inline 4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '580 bhp' | |
| } | |
| if (car == 'audi rs 5 dtm') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'audi tt cup 2015') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1125kg' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '310hp (P2P +30)' | |
| } | |
| if (car == 'audi tt cup 2016') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1125kg' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '310hp (P2P +30)' | |
| } | |
| if (car == 'audi tt rs vln') { | |
| origin = 'Germany' | |
| production_year = '2011' | |
| weight = '1100' | |
| engine_type = 'Inline-5' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '365' | |
| } | |
| if (car == 'audi v8 dtm') { | |
| origin = 'Germany' | |
| production_year = '1992' | |
| weight = '1300' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '+460' | |
| } | |
| if (car == 'bmw 320 turbo') { | |
| origin = 'Germany' | |
| production_year = '1980' | |
| weight = '875' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650' | |
| } | |
| if (car == 'bmw 635 csi') { | |
| origin = 'Germany' | |
| production_year = '1989' | |
| weight = '1180' | |
| engine_type = 'Inline-6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '320+' | |
| } | |
| if (car == 'bmw e90 320 tc') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '1150' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '320' | |
| } | |
| if (car == 'bmw m1 gr. 4') { | |
| origin = 'Germany' | |
| production_year = '1979' | |
| weight = '1235kg' | |
| engine_type = 'Straight-6 3.5' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '465bhp' | |
| } | |
| if (car == 'bmw m1 procar') { | |
| origin = 'Germany' | |
| production_year = '1979' | |
| weight = '1130kg' | |
| engine_type = 'Straight-6 3.5' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '470bhp' | |
| } | |
| if (car == 'bmw m235i racing') { | |
| origin = 'Germany' | |
| production_year = '2014' | |
| weight = '1425kg' | |
| engine_type = 'Straight-6' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '333 bhp @ 5800 rpm' | |
| } | |
| if (car == 'bmw m3 e30 gr.a') { | |
| origin = 'Germany' | |
| production_year = '1991' | |
| weight = '940' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '330+' | |
| } | |
| if (car == 'bmw m2 cs racing 2021') { | |
| origin = 'Germany' | |
| production_year = '2021' | |
| weight = '1620' | |
| engine_type = 'Inline-6 3.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '450' | |
| } | |
| if (car == 'bmw m3 gt2') { | |
| origin = 'Germany' | |
| production_year = '2009' | |
| weight = '1150' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '540+' | |
| } | |
| if (car == 'bmw m3 sport evolution') { | |
| origin = 'Germany' | |
| production_year = '1992' | |
| weight = '970' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '+350' | |
| } | |
| if (car == 'bmw m4 dtm 2015') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'bmw m4 dtm 2016') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1120' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'bmw m4 dtm 2020') { | |
| origin = 'Germany' | |
| production_year = '2020' | |
| weight = '1070' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '580 bhp' | |
| } | |
| if (car == 'bmw m4 dtm') { | |
| origin = 'Germany' | |
| production_year = '2014' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'bmw m6 gt3 dtm') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1395' | |
| engine_type = 'V8 4.4' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '590bhp' | |
| } | |
| if (car == 'cadillac cts-v.r') { | |
| origin = 'USA' | |
| production_year = '2012' | |
| weight = '1450' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'canhard r51') { | |
| origin = 'France' | |
| production_year = '2010' | |
| weight = '1050' | |
| engine_type = 'V6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '400' | |
| } | |
| if (car == 'canhard r52') { | |
| origin = 'France' | |
| production_year = '2010' | |
| weight = '1035' | |
| engine_type = 'Inline-5' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '415' | |
| } | |
| if (car == 'carlsson c25 gt') { | |
| origin = 'Germany' | |
| production_year = '2012' | |
| weight = '1490' | |
| engine_type = 'V12' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650+' | |
| } | |
| if (car == 'carlsson slk 340 judd') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '860 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '610 bhp' | |
| } | |
| if (car == 'chevrolet corvette c6.r zr1') { | |
| origin = 'USA' | |
| production_year = '2009' | |
| weight = '1150' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '525+' | |
| } | |
| if (car == 'chevrolet corvette greenwood 1977') { | |
| origin = 'USA' | |
| production_year = '1977' | |
| weight = '1309' | |
| engine_type = 'V8' | |
| aspiration = 'Atmospheric' | |
| drive_type = 'Rear Drive' | |
| horse_power = '900' | |
| } | |
| if (car == 'chevrolet daytona prototype') { | |
| origin = 'USA' | |
| production_year = '2012' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '600' | |
| } | |
| if (car == 'chevrolet dekon monza') { | |
| origin = 'USA' | |
| production_year = '1975' | |
| weight = '1030' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650' | |
| } | |
| if (car == 'chevrolet rml cruze tc1 2015') { | |
| origin = 'USA' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'chevrolet rml cruze tc1 2016') { | |
| origin = 'USA' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'chevrolet rml cruze tc1 2017') { | |
| origin = 'USA' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'chevrolet rml cruze tc1') { | |
| origin = 'USA' | |
| production_year = '2014' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'cougar c14-1') { | |
| origin = 'Germany' | |
| production_year = '2010' | |
| weight = '1000' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '420' | |
| } | |
| if (car == 'cougar c14-2') { | |
| origin = 'Germany' | |
| production_year = '2010' | |
| weight = '1050' | |
| engine_type = 'V6' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '399' | |
| } | |
| if (car == 'cupra leon e-racer') { | |
| origin = 'Spain' | |
| production_year = '2020' | |
| weight = '1680' | |
| engine_type = 'Fully Electric' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '670hp' | |
| } | |
| if (car == 'dmd p20') { | |
| origin = 'The Netherlands' | |
| production_year = '2009' | |
| weight = '970' | |
| engine_type = 'V12' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570' | |
| } | |
| if (car == 'dmd p21') { | |
| origin = 'The Netherlands' | |
| production_year = '2009' | |
| weight = '970' | |
| engine_type = 'V6' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '450' | |
| } | |
| if (car == 'dtm mercedes amg c coupe 14') { | |
| origin = 'Germany' | |
| production_year = '2014' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'dtm mercedes amg c coupe') { | |
| origin = 'Germany' | |
| production_year = '2013' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'fabcar 935') { | |
| origin = 'USA' | |
| production_year = '1983' | |
| weight = '1025' | |
| engine_type = 'Boxer-6' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '800' | |
| } | |
| if (car == 'ferrari 488 gt3 evo 2020 dtm') { | |
| origin = 'Italy' | |
| production_year = '2021' | |
| weight = '1370' | |
| engine_type = 'V8 3.9' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '560bhp' | |
| } | |
| if (car == 'ford gt gt1') { | |
| origin = 'USA' | |
| production_year = '2011' | |
| weight = '1280 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '609 bhp' | |
| } | |
| if (car == 'ford mustang gt dtm') { | |
| origin = 'USA' | |
| production_year = '1992' | |
| weight = '1160' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '+520' | |
| } | |
| if (car == 'ford mustang imsa gto') { | |
| origin = 'USA' | |
| production_year = '1985' | |
| weight = '1100' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650' | |
| } | |
| if (car == 'ford mustang mach-e 1400') { | |
| origin = 'America' | |
| production_year = '2021' | |
| weight = '2600' | |
| engine_type = 'Fully Electric' | |
| aspiration = '' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '1400 HP' | |
| } | |
| if (car == 'formula raceroom 2') { | |
| origin = 'Sweden' | |
| production_year = '2015' | |
| weight = '688' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '612' | |
| } | |
| if (car == 'formula raceroom 3') { | |
| origin = 'Sweden' | |
| production_year = '2016' | |
| weight = '565' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '240' | |
| } | |
| if (car == 'formula raceroom junior') { | |
| origin = 'Sweden' | |
| production_year = '2015' | |
| weight = '545' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '145' | |
| } | |
| if (car == 'formula raceroom us') { | |
| origin = 'Sweden' | |
| production_year = '2016' | |
| weight = '785 kg including driver' | |
| engine_type = 'V6' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '675' | |
| } | |
| if (car == 'formula raceroom x 17') { | |
| origin = 'Sweden' | |
| production_year = '2017' | |
| weight = '620' | |
| engine_type = 'V10' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '950' | |
| } | |
| if (car == 'formula rr 90 v10') { | |
| origin = 'Sweden' | |
| production_year = '1990' | |
| weight = '560kg (including driver)' | |
| engine_type = 'V10' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '680 bhp@ 12750' | |
| } | |
| if (car == 'formula rr 90 v12') { | |
| origin = 'France' | |
| production_year = '1990' | |
| weight = '560kg (including driver)' | |
| engine_type = 'V12' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '680 bhp @ 13000' | |
| } | |
| if (car == 'formula rr 90 v8') { | |
| origin = 'UK' | |
| production_year = '1990' | |
| weight = '560kg (including driver)' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '680 bhp@ 12500' | |
| } | |
| if (car == 'gumpert apollo sport') { | |
| origin = 'Germany' | |
| production_year = '2008' | |
| weight = '1275 kg' | |
| engine_type = 'V8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '612 bhp' | |
| } | |
| if (car == 'koenigsegg ccgt') { | |
| origin = 'Sweden' | |
| production_year = '2007' | |
| weight = '1275 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '598 bhp' | |
| } | |
| if (car == 'mazda mx-5 cup 2019 nd2') { | |
| origin = 'Japan' | |
| production_year = '2019' | |
| weight = '1140' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '360' | |
| } | |
| if (car == 'ktm x-bow rr') { | |
| origin = 'Austria' | |
| production_year = '2012' | |
| weight = '810' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '181' | |
| } | |
| if (car == 'ktm x-bow gtx') { | |
| origin = 'Austria' | |
| production_year = '2020' | |
| weight = '1040' | |
| engine_type = 'Inline-5 2.5' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '530' | |
| } | |
| if (car == 'mclaren 720s gt3 dtm') { | |
| origin = 'UK' | |
| production_year = '2021' | |
| weight = '1390' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '575bhp' | |
| } | |
| if (car == 'mclaren-mercedes slr 722 gt') { | |
| origin = 'Germany' | |
| production_year = '2007' | |
| weight = '1490' | |
| engine_type = 'V8' | |
| aspiration = 'Super Charged' | |
| drive_type = 'Rear Drive' | |
| horse_power = '600+' | |
| } | |
| if (car == 'mercedes 190e evo ii dtm') { | |
| origin = 'Germany' | |
| production_year = '1992' | |
| weight = '970' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '+350' | |
| } | |
| if (car == 'mercedes amg c 63 dtm 2016') { | |
| origin = 'Germany' | |
| production_year = '2016' | |
| weight = '1120' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'mercedes amg c63 dtm') { | |
| origin = 'Germany' | |
| production_year = '2015' | |
| weight = '1110' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500+' | |
| } | |
| if (car == 'mistral m530') { | |
| origin = 'UK' | |
| production_year = '2009' | |
| weight = '970' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '535' | |
| } | |
| if (car == 'mistral m531') { | |
| origin = 'UK' | |
| production_year = '2009' | |
| weight = '970' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '450' | |
| } | |
| if (car == 'nissan 300zx z32') { | |
| origin = 'Japan' | |
| production_year = '1989' | |
| weight = '1200' | |
| engine_type = 'V6' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '750' | |
| } | |
| if (car == 'nissan gt-r gt1') { | |
| origin = 'Japan' | |
| production_year = '2011' | |
| weight = '1320 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '653 bhp' | |
| } | |
| if (car == 'nissan r90ck') { | |
| origin = 'Japan' | |
| production_year = '1990' | |
| weight = '1033kg (with driver)' | |
| engine_type = 'V8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '773 hp' | |
| } | |
| if (car == 'nissan silvia turbo') { | |
| origin = 'Japan' | |
| production_year = '1981' | |
| weight = '1050' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650' | |
| } | |
| if (car == 'nissan skyline 2000rs') { | |
| origin = 'Japan' | |
| production_year = '1981' | |
| weight = '1005' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '650' | |
| } | |
| if (car == 'nissan skyline gtr r32 group n') { | |
| origin = 'Japan' | |
| production_year = '1990' | |
| weight = '1400kg' | |
| engine_type = 'Inline-6' | |
| aspiration = '' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '400+' | |
| } | |
| if (car == 'nissan skyline gtr r32') { | |
| origin = 'Japan' | |
| production_year = '1990' | |
| weight = '1400kg' | |
| engine_type = 'Inline-6' | |
| aspiration = 'Twin Turbo' | |
| drive_type = '4 Wheel Drive' | |
| horse_power = '400+' | |
| } | |
| if (car == 'nsu tts') { | |
| origin = 'Germany' | |
| production_year = '1969' | |
| weight = '620' | |
| engine_type = 'Inline-4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '122' | |
| } | |
| if (car == 'opel omega 3000 evo500') { | |
| origin = 'Germany' | |
| production_year = '1992' | |
| weight = '1130' | |
| engine_type = 'Inline-6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '+400' | |
| } | |
| if (car == 'p4-5 competizione gt2') { | |
| origin = 'Italy' | |
| production_year = '2011' | |
| weight = '1230' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '500' | |
| } | |
| if (car == 'pagani zonda r') { | |
| origin = 'Italy' | |
| production_year = '2009' | |
| weight = '1184 kg' | |
| engine_type = 'V12' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '670 bhp' | |
| } | |
| if (car == 'porsche 911 gt3 cup (991.2)') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1205' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '485' | |
| } | |
| if (car == 'porsche 911 carrera cup 964') { | |
| origin = 'Germany' | |
| production_year = '1990/1991' | |
| weight = '1158' | |
| engine_type = 'Flat-6 3.6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '265' | |
| } | |
| if (car == 'porsche 944 turbo cup') { | |
| origin = 'Germany' | |
| production_year = '1986' | |
| weight = '1245' | |
| engine_type = 'Inline-4 2.5' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '250' | |
| } | |
| if (car == 'porsche 911 gt2 rs clubsport') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1475' | |
| engine_type = 'Flat-6 3.8' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '700bhp' | |
| } | |
| if (car == 'porsche 911 gt3 cup (992) endurance') { | |
| origin = 'Germany' | |
| production_year = '2021' | |
| weight = '1260 Kg' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '503' | |
| } | |
| if (car == 'porsche 911 gt3 cup (992)') { | |
| origin = 'Germany' | |
| production_year = '2021' | |
| weight = '1260 Kg' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '503' | |
| } | |
| if (car == 'porsche 911 gt3 cup endurance') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1205 Kg' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '485' | |
| } | |
| if (car == 'porsche 911 gt3 cup') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1205 Kg' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = 'N/A' | |
| drive_type = 'Rear Drive' | |
| horse_power = '485 BHP @ 7500rpm' | |
| } | |
| if (car == 'porsche 911 gt3 r (2019) dtm') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1345' | |
| engine_type = 'Flat-6 4.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '570bhp' | |
| } | |
| if (car == 'porsche 911 rsr (2019)') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1335' | |
| engine_type = 'Flat-6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '610bhp' | |
| } | |
| if (car == 'porsche 934 turbo rsr') { | |
| origin = 'Germany' | |
| production_year = '1976' | |
| weight = '1190' | |
| engine_type = 'Flat-6 3.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '485hp' | |
| } | |
| if (car == 'porsche 962 c team joest') { | |
| origin = 'Germany' | |
| production_year = '1992' | |
| weight = '1057' | |
| engine_type = 'Flat-6 3.2' | |
| aspiration = 'Twin turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '735 hp' | |
| } | |
| if (car == 'radical sr9 aer') { | |
| origin = 'UK' | |
| production_year = '2006' | |
| weight = '970' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '470' | |
| } | |
| if (car == 'porsche cayman gt4 clubsport') { | |
| origin = 'Germany' | |
| production_year = '2017' | |
| weight = '1380 Kg' | |
| engine_type = 'Flat-6 3.8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '385 BHP @ 7500 RPM' | |
| } | |
| if (car == 'radical sr9 judd') { | |
| origin = 'UK' | |
| production_year = '2006' | |
| weight = '970' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '475' | |
| } | |
| if (car == 'ruf ctr3') { | |
| origin = 'Germany' | |
| production_year = '2007' | |
| weight = '1300 kg' | |
| engine_type = 'Flat-6' | |
| aspiration = 'Twin Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '615 bhp' | |
| } | |
| if (car == 'ruf rt12r') { | |
| origin = 'Germany' | |
| production_year = '2011' | |
| weight = '1150' | |
| engine_type = 'Flat-6' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '545+' | |
| } | |
| if (car == 'saleen s7r') { | |
| origin = 'USA' | |
| production_year = '2004' | |
| weight = '1295 kg' | |
| engine_type = 'V8' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '615 bhp' | |
| } | |
| if (car == 'tatuus f4') { | |
| origin = 'Italy' | |
| production_year = '2014' | |
| weight = '570' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '160' | |
| } | |
| if (car == 'volkswagen id. r') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1,100' | |
| engine_type = 'Full-Electric' | |
| aspiration = 'N/A' | |
| drive_type = '4WD + Torque Dist.' | |
| horse_power = '500 kW (680 HP)' | |
| } | |
| if (car == 'volkswagen scirocco gr2') { | |
| origin = 'Germany' | |
| production_year = '1976' | |
| weight = '855' | |
| engine_type = 'Inline 4 1.6' | |
| aspiration = '' | |
| drive_type = 'Front Drive' | |
| horse_power = '176hp' | |
| } | |
| if (car == 'volvo 240 turbo') { | |
| origin = 'Sweden' | |
| production_year = '1980' | |
| weight = '1050' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '345+' | |
| } | |
| if (car == 'volvo s60 polestar tc1') { | |
| origin = 'Sweden' | |
| production_year = '2016' | |
| weight = '1100' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Front Drive' | |
| horse_power = '380' | |
| } | |
| if (car == 'zakspeed capri') { | |
| origin = 'Germany' | |
| production_year = '1979' | |
| weight = '830' | |
| engine_type = 'Inline-4' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '600' | |
| } | |
| if (car == 'mercedes-amg gt3 2020 dtm') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1390' | |
| engine_type = 'V8 6.3' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '585hp' | |
| } | |
| if (carclass == "GTE"){ | |
| if (car == 'bmw m8 gte') { | |
| origin = 'Germany' | |
| production_year = '2018' | |
| weight = '1335' | |
| engine_type = 'V8 4.0' | |
| aspiration = 'Twin Turbo + Anti Lag' | |
| drive_type = 'Rear Drive' | |
| horse_power = '592' | |
| } | |
| if (car == 'porsche 911 rsr 2019') { | |
| origin = 'Germany' | |
| production_year = '2019' | |
| weight = '1345' | |
| engine_type = 'Flat-6 4.2' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '610bhp' | |
| } | |
| } | |
| if (car == 'crosslé 90f') { | |
| origin = 'North Ireland' | |
| production_year = '2017' | |
| weight = '500' | |
| engine_type = 'Ford Zetec 2.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '200' | |
| } | |
| if (car == 'crosslé 9s') { | |
| origin = 'North Ireland' | |
| production_year = '1966' | |
| weight = '590' | |
| engine_type = 'Ford Zetec 2.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '185' | |
| } | |
| if (car == 'mazda rt24 p dpi') { | |
| origin = 'US' | |
| production_year = '2021' | |
| weight = '930' | |
| engine_type = 'Inline-4 2.0' | |
| aspiration = 'Turbo' | |
| drive_type = 'Rear Drive' | |
| horse_power = '620' | |
| } | |
| if (car == 'raceroom truck') { | |
| origin = 'Germany' | |
| production_year = '2022' | |
| weight = '5300' | |
| engine_type = '12.4' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '1100' | |
| } | |
| if (car == 'shopping cart') { | |
| origin = 'Sweden' | |
| production_year = '2022' | |
| weight = '200' | |
| engine_type = '4C 4.0' | |
| aspiration = '' | |
| drive_type = 'Rear Drive' | |
| horse_power = '67hp' | |
| } | |
| car = $prop('CarModel') | |
| return car + '\n' + | |
| engine_type + ' ' + aspiration + ' ' + '\n' + origin + ' ' + production_year + ' - ' + drive_type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment