Advertisement
friquentin

Untitled

Nov 2nd, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 306.19 KB | None | 0 0
  1. #define false 0
  2. #define true 1
  3.  
  4. class CarShops {
  5. /*
  6. * ARRAY FORMAT:
  7. * 0: STRING (Classname)
  8. * 1: STRING (Condition)
  9. * FORMAT:
  10. * STRING (Conditions) - Must return boolean :
  11. * String can contain any amount of conditions, aslong as the entire
  12. * string returns a boolean. This allows you to check any levels, licenses etc,
  13. * in any combination. For example:
  14. * "call life_copLevel & call life_medLevel & license_civ_someLicense"
  15. * This will also let you call any other function.
  16. *
  17. * BLUFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_WEST
  18. * OPFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EAST
  19. * Independent Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_GUER
  20. * Civilian Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_CIV
  21. */
  22. class civ_car {
  23. side = "civ";
  24. conditions = "";
  25. vehicles[] = {
  26. { "Abarth500lu_civ", "" },
  27. { "Berlingo2_civ", "" },
  28. { "c4hch_civ", "C" },
  29. { "Peugeot_308_civ", "" },
  30. { "chds4", "" },
  31. { "chduster14_civ", "" },
  32. { "mondeoswch_civ", "" },
  33. { "Renault_Espace_civ", "" },
  34. { "Crownlu", "" },
  35. { "ch508", "" },
  36. { "chBeetle", "" },
  37. { "Dacia_Duster_civ", "" },
  38. { "Mk3lu_civ", "" },
  39. { "chfcrsciv", "" },
  40. { "berlingo1_civ", "" },
  41. { "chc2", "" },
  42. { "chds3", "" },
  43. { "Warrior_civ", "" },
  44. { "Multipla_civ_ch", "" },
  45. { "chpunto", "" },
  46. { "focus3ch_civ", "" },
  47. { "galaxych_civ", "" },
  48. //{ "chrr_svr", "" },
  49. { "Megane_Estate_civ", "" },
  50. { "chaustin", "" },
  51. { "Raptorlu_civ", "" },
  52. { "focussw1998_civ", "" },
  53. { "mondeo_civ", "" },
  54. { "mondeovch_civ", "" },
  55. { "308_2015_civ", "" },
  56. { "ch206_civ", "" },
  57. { "chdefender_civ", "" },
  58. { "ch_citroen_c1", "" },
  59. { "cmax_civ", "" },
  60. { "chsandero", "" },
  61. { "AlessioTouareg", "" }
  62. };
  63. };
  64. ////////////////////////////////////////////////////////////VEHICULE MARQUE///////////////////////////////////////////////////////////
  65. class civ_ford {
  66. side = "civ";
  67. conditions = "";
  68. vehicles[] = {
  69. { "cmax_civ", "" },
  70. { "Crownlu", "" },
  71. { "chfiesta", "" },
  72. { "focus3ch_civ", "" },
  73. { "focus03_civ", "" },
  74. { "FocusRSlu_civ", "" },
  75. { "Mk3lu_civ", "" },
  76. { "focussw1998_civ", "" },
  77. { "focussw2p2_civ", "" },
  78. { "focussw3_civ", "" },
  79. { "chKa", "" },
  80. { "mondeo_civ", "" },
  81. { "mondeoswch_civ", "" },
  82. { "mondeovch_civ", "" },
  83. { "Raptorlu_civ", "" },
  84. { "galaxych_civ", "" }
  85. };
  86. };
  87. class civ_abarth {
  88. side = "civ";
  89. conditions = "";
  90. vehicles[] = {
  91. { "Abarth500lu_civ", "" },
  92. };
  93. };
  94. class civ_alfa {
  95. side = "civ";
  96. conditions = "";
  97. vehicles[] = {
  98. { "chBrera", "" },
  99. { "chGiulietta", "" },
  100. { "chMito", "" }
  101. };
  102. };
  103. class civ_citroen {
  104. side = "civ";
  105. conditions = "";
  106. vehicles[] = {
  107. { "ch2CV", "" },
  108. { "berlingo1_civ", "" },
  109. { "Berlingo2_civ", "" },
  110. { "ch_citroen_c1", "" },
  111. { "chc2", "" },
  112. { "chds3", "" },
  113. { "chds4", "" }
  114. };
  115. };
  116. class civ_dacia {
  117. side = "civ";
  118. conditions = "";
  119. vehicles[] = {
  120. { "Dacia_Duster_civ", "" },
  121. { "chduster14_civ", "" },
  122. { "chsandero", "" }
  123. };
  124. };
  125. ////////////////////////////////////////////////////////////LUXE MARQUE///////////////////////////////////////////////////////////
  126. class civ_nm_ford {
  127. side = "civ";
  128. conditions = "license_civ_NazarovMachina";
  129. vehicles[] = {
  130. { "AlessioMustang", "license_civ_NazarovMachina" },
  131. { "AlessioMustangChrome", "license_civ_NazarovMachina" },
  132. { "AlessioMustangGold", "license_civ_NazarovMachina" },
  133. { "GT500lu_civ", "license_civ_NazarovMachina" },
  134. { "Mustanglu_civ", "license_civ_NazarovMachina" }
  135. };
  136. };
  137. class civ_nm_agera {
  138. side = "civ";
  139. conditions = "license_civ_NazarovMachina";
  140. vehicles[] = {
  141. { "AlessioAgera", "license_civ_NazarovMachina" },
  142. { "AlessioAgeraC", "license_civ_NazarovMachina" },
  143. { "AlessioAgeraG", "license_civ_NazarovMachina" }
  144. };
  145. };
  146. class civ_nm_bmw {
  147. side = "civ";
  148. conditions = "license_civ_NazarovMachina";
  149. vehicles[] = {
  150. { "M235ilu_civ", "license_civ_NazarovMachina" },
  151. { "AlessioBM4", "license_civ_NazarovMachina" },
  152. { "AlessioBMG", "license_civ_NazarovMachina" },
  153. { "AlessioM5", "license_civ_NazarovMachina" },
  154. { "AlessioM5_Gold", "license_civ_NazarovMachina" },
  155. { "M5lu_civ", "license_civ_NazarovMachina" }
  156. };
  157. };
  158. class civ_nm_aventador {
  159. side = "civ";
  160. conditions = "license_civ_NazarovMachina";
  161. vehicles[] = {
  162. { "AVENTADOR_CARBONE", "license_civ_NazarovMachina" },
  163. };
  164. };
  165. class civ_nm_bugatti {
  166. side = "civ";
  167. conditions = "license_civ_NazarovMachina";
  168. vehicles[] = {
  169. { "Chironlu_civ", "license_civ_NazarovMachina" },
  170. };
  171. };
  172. class civ_nm_chrysler {
  173. side = "civ";
  174. conditions = "license_civ_NazarovMachina";
  175. vehicles[] = {
  176. { "CHRlu_civ", "license_civ_NazarovMachina" },
  177. { "ch300C", "license_civ_NazarovMachina" },
  178. { "chCrossfire", "license_civ_NazarovMachina" }
  179. };
  180. };
  181. class civ_nm_chevrolet {
  182. side = "civ";
  183. conditions = "license_civ_NazarovMachina";
  184. vehicles[] = {
  185. { "AlessioStingrayM", "license_civ_NazarovMachina" },
  186. };
  187. };
  188. class civ_nm_audi {
  189. side = "civ";
  190. conditions = "license_civ_NazarovMachina";
  191. vehicles[] = {
  192. { "AlessioR8", "license_civ_NazarovMachina" },
  193. { "AlessioR8_Chrome", "license_civ_NazarovMachina" },
  194. { "AlessioAgeraG", "license_civ_NazarovMachina" },
  195. { "AlessioR8_Gold", "license_civ_NazarovMachina" },
  196. { "AlessioR8Mat", "license_civ_NazarovMachina" },
  197. { "chRS2", "license_civ_NazarovMachina" },
  198. { "RS3lu_civ", "license_civ_NazarovMachina" },
  199. { "AlessioRS4", "license_civ_NazarovMachina" },
  200. { "AlessioRS4Chrome", "license_civ_NazarovMachina" },
  201. { "AlessioRS4Gold", "license_civ_NazarovMachina" },
  202. { "RS6_Avantlu_civ", "license_civ_NazarovMachina" },
  203. { "RS6_Avantlu_GMK", "license_civ_NazarovMachina" },
  204. { "RS6_Avantlu_GMK2", "license_civ_NazarovMachina" },
  205. { "RS7lu_civ", "license_civ_NazarovMachina" },
  206. { "chTT_2", "license_civ_NazarovMachina" },
  207. { "TTRSlu_civ", "license_civ_NazarovMachina" }
  208. };
  209. };
  210. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  211. class civ_luxe {
  212. side = "civ";
  213. conditions = "license_civ_NazarovMachina";
  214. vehicles[] = {
  215. { "AlessioC63N", "license_civ_NazarovMachina" },
  216. { "RS7lu_civ", "license_civ_NazarovMachina" },
  217. { "AlessioR8", "license_civ_NazarovMachina" },
  218. { "AlessioR8_Chrome", "license_civ_NazarovMachina" },
  219. { "AlessioR8_Gold", "license_civ_NazarovMachina" },
  220. { "AlessioR8Mat", "license_civ_NazarovMachina" },
  221. { "RS6_Avantlu_civ", "license_civ_NazarovMachina" },
  222. { "RS6_Avantlu_GMK", "license_civ_NazarovMachina" },
  223. { "AlessioBM4", "license_civ_NazarovMachina" },
  224. { "AlessioBMG", "license_civ_NazarovMachina" },
  225. { "AlessioBM4M", "license_civ_NazarovMachina" },
  226. { "M4_ALLG2", "license_civ_NazarovMachina" },
  227. { "M5lu_civ", "license_civ_NazarovMachina" },
  228. { "CHRlu_civ", "license_civ_NazarovMachina" },
  229. { "Charger_1969lu_white", "license_civ_NazarovMachina" },
  230. { "Alessio458_Gold", "license_civ_NazarovMachina" },
  231. { "Alessio458Mat", "license_civ_NazarovMachina" },
  232. { "F488lu_civ", "license_civ_NazarovMachina" },
  233. { "AlessioGTB_Gold", "license_civ_NazarovMachina" },
  234. { "AlessioGTBMat", "license_civ_NazarovMachina" },
  235. { "Chironlu_civ", "license_civ_NazarovMachina" },
  236. { "fgtz3_civ", "license_civ_NazarovMachina" },
  237. { "fgtz3", "license_civ_NazarovMachina" },
  238. { "AlessioMustangGold", "license_civ_NazarovMachina" },
  239. { "GT500lu_civ", "license_civ_NazarovMachina" },
  240. { "AlessioAventadorG", "license_civ_NazarovMachina" },
  241. { "AlessioAventadorM", "license_civ_NazarovMachina" },
  242. { "MP4lu_civ", "license_civ_NazarovMachina" },
  243. { "AlessioC63G", "license_civ_NazarovMachina" },
  244. { "AlessioC63M", "license_civ_NazarovMachina" },
  245. { "AlessioC63NM", "license_civ_NazarovMachina" },
  246. { "AlessioC63NG", "license_civ_NazarovMachina" },
  247. { "CLS63lu_civ", "license_civ_NazarovMachina" },
  248. { "ML63lu_civ", "license_civ_NazarovMachina" },
  249. { "AlessioMGAG", "license_civ_NazarovMachina" },
  250. { "AlessioIXMR", "license_civ_NazarovMachina" },
  251. { "AlessioIXMRG", "license_civ_NazarovMachina" },
  252. { "cha110", "license_civ_NazarovMachina" },
  253. { "subaruch_civ", "license_civ_NazarovMachina" },
  254. { "Model_Slu_civ", "license_civ_NazarovMachina" },
  255. { "AlessioIXMRMat", "license_civ_NazarovMachina" },
  256. { "Charger_1969lu_Race", "license_civ_NazarovMachina" },
  257. { "F12lu_civ", "license_civ_NazarovMachina" },
  258. { "F12lu_civ_GMK", "license_civ_NazarovMachina" },
  259. { "FFlu_civ", "license_civ_NazarovMachina" },
  260. { "Alessio458", "license_civ_NazarovMachina" },
  261. { "Alessio458GMK", "license_civ_NazarovMachina" },
  262. { "AlessioGTB", "license_civ_NazarovMachina" },
  263. { "chf_california", "license_civ_NazarovMachina" },
  264. { "AlessioMustang", "license_civ_NazarovMachina" },
  265. { "Mustanglu_civ", "license_civ_NazarovMachina" },
  266. { "Gallardolu_civ", "license_civ_NazarovMachina" },
  267. { "AlessioAventador", "license_civ_NazarovMachina" },
  268. { "P1lu_civ", "license_civ_NazarovMachina" },
  269. { "R35lu_civ", "license_civ_NazarovMachina" },
  270. { "GT3lu_civ", "license_civ_NazarovMachina" },
  271. { "Macanlu_civ", "license_civ_NazarovMachina" },
  272. { "Panameralu", "license_civ_NazarovMachina" },
  273. { "Wraithlu_civ", "license_civ_NazarovMachina" },
  274. { "AlessioHuayra", "license_civ_NazarovMachina" },
  275. { "ageracover", "license_civ_NazarovMachina" },
  276. { "rs4cover2", "license_civ_NazarovMachina" },
  277. { "AVENTADOR_GMK", "license_civ_NazarovMachina" },
  278. { "C63_ROCKET", "license_civ_NazarovMachina" },
  279. { "M4_CAMO", "license_civ_NazarovMachina" },
  280. { "C63_CAMO", "license_civ_NazarovMachina" },
  281. { "C63_ALL", "license_civ_NazarovMachina" },
  282. { "caymancamo2", "license_civ_NazarovMachina" },
  283. { "f458cover1", "license_civ_NazarovMachina" },
  284. { "gtbcover2", "license_civ_NazarovMachina" },
  285. { "fastcover1", "license_civ_NazarovMachina" },
  286. { "golfcamo2mat", "license_civ_NazarovMachina" },
  287. { "AlessioMGA", "license_civ_NazarovMachina" },
  288. { "R50_CAMO2", "license_civ_NazarovMachina" },
  289. { "r8camo4", "license_civ_NazarovMachina" },
  290. { "rs4camo", "license_civ_NazarovMachina" },
  291. { "mustangmonstermet", "license_civ_NazarovMachina" },
  292. { "mustangmonster2met", "license_civ_NazarovMachina" }
  293. };
  294. };
  295.  
  296. class civ_truck {
  297. side = "civ";
  298. conditions = "license_civ_trucking";
  299. vehicles[] = {
  300. { "Midlum_amazon", "" },
  301. { "Midlum_poste", "" },
  302. { "Midlum_DHL", "" },
  303. { "Midlum_fedex", "" },
  304. { "Midlum_inter", "" },
  305. { "midlum", "" },
  306. { "Scania_124L", "" }
  307. };
  308. };
  309.  
  310. class civ_tunning {
  311. side = "civ";
  312. conditions = "";
  313. vehicles[] = {
  314. };
  315. };
  316.  
  317. class civ_br {
  318. side = "civ";
  319. conditions = "license_civ_br";
  320. vehicles[] = {
  321. { "shounka_a3_brinks_noir", "license_civ_br" },
  322. { "shounka_a3_brinks_rouge", "license_civ_br" },
  323. };
  324. };
  325.  
  326. class cop_ap {
  327. side = "cop";
  328. conditions = "license_cop_ap";
  329. vehicles[] = {
  330. { "Transit_adp", "license_cop_ap" },
  331. { "kangooII1_adp", "license_cop_ap" },
  332. { "chmaster2_adp", "license_cop_ap" },
  333. { "Trafic_adp", "license_cop_ap" },
  334. { "chtrans_pen", "license_cop_ap" }
  335. };
  336. };
  337.  
  338. class civ_militaire {
  339. side = "civ";
  340. conditions = "license_civ_aml";
  341. vehicles[] = {
  342. { "chdefender_vigi", "license_civ_aml" },
  343. { "Peugeot_Expert_vigi", "license_civ_aml" },
  344. { "chp4", "license_civ_aml" },
  345. { "PVP_AT", "license_civ_aml" },
  346. { "chgbc_180", "license_civ_aml" },
  347. { "kangooII1_vigi", "license_civ_aml" },
  348. { "Scenic3_vigi", "license_civ_aml" },
  349. { "Trafic3_vigi", "license_civ_aml" },
  350. { "VAB_AT", "license_civ_aml" },
  351. { "VBL_AT", "license_civ_aml" }
  352. };
  353. };
  354.  
  355. class civ_gouv {
  356. side = "civ";
  357. conditions = "license_civ_Maire";
  358. vehicles[] = {
  359. { "shounka_limo_civ", "license_civ_Maire" },
  360. { "chXTS_Royal", "license_civ_Maire" },
  361. { "Tahoelu_civ", "license_civ_Maire" },
  362. { "chMehari", "license_civ_Maire" }
  363. };
  364. };
  365.  
  366. class civ_utili {
  367. side = "civ";
  368. conditions = "";
  369. vehicles[] = {
  370. { "ch_sprinter_civ", "" },
  371. { "Peugeot_Boxer_civ", "" },
  372. { "Mer_Vito_civ", "" },
  373. { "Transitlu_civ", "" },
  374. { "V250_civ", "" }
  375. };
  376. };
  377.  
  378. class civ_secu {
  379. side = "civ";
  380. conditions = "license_civ_secu";
  381. vehicles[] = {
  382. { "rs4carbone", "" },
  383. { "Mer_Vito_civ", "" }
  384. };
  385. };
  386.  
  387. class civ_taxi {
  388. side = "civ";
  389. conditions = "license_civ_taxi";
  390. vehicles[] = {
  391. };
  392. };
  393.  
  394. class moto_shop {
  395. side = "civ";
  396. conditions = "license_civ_moto";
  397. vehicles[] = {
  398. { "1150RT_ch", "" },
  399. { "1200RT_ch", "" },
  400. { "S1000RR_ch", "" },
  401. { "fatboy_ch", "" },
  402. { "690duke_ch", "" },
  403. { "FJR1300_ch", "" },
  404. { "YamahaQlu_civ", "" },
  405. { "xj6_ch", "" } ,
  406. { "r125_ch", "" }
  407. };
  408. };
  409.  
  410. class civ_air {
  411. side = "";
  412. conditions = "";
  413. vehicles[] = {
  414. { "EC635_Unarmed", "license_civ_al" },
  415. { "C_Heli_Light_01_civil_F", "license_civ_al" },
  416. { "A320_ch_AF", "license_civ_al" },
  417. { "chciternvol_bp", "license_civ_al" },
  418. { "chciternvol_total", "license_civ_al" },
  419. { "chpush_back", "license_civ_al" },
  420. { "chcitan_civ_fm", "license_civ_al" },
  421. { "do228_ch_Blanc", "license_civ_al" }
  422. };
  423. };
  424.  
  425. class civ_ship {
  426. side = "civ";
  427. conditions = "license_civ_boat";
  428. vehicles[] = {
  429. { "C_Rubberboat", "" },
  430. { "C_Boat_Civil_01_F", "" },
  431. { "sab_boat", "" },
  432. { "C_Boat_Transport_02_F", "" }, //Apex DLC
  433. { "C_Scooter_Transport_01_F", "" },
  434. { "GeK_Ferry", "" }
  435. };
  436. };
  437.  
  438. class dep_shop {
  439. side = "civ";
  440. conditions = "license_civ_dep";
  441. vehicles[] = {
  442. { "chtwingoII_DIR", "license_civ_dep" },
  443. { "KangooII1_DIR", "license_civ_dep" },
  444. { "ClioIV_DIR", "license_civ_dep" },
  445. { "Trafic3_DIR", "license_civ_dep" },
  446. { "Master3_DIR", "license_civ_dep" },
  447. { "depanren", "license_civ_dep" },
  448. { "chchariot", "license_civ_dep" },
  449. { "Volvo_FHlu_d", "license_civ_dep" },
  450. { "KangooI2_DIR", "license_civ_dep" },
  451. { "chTransport_L", "license_civ_dep" },
  452. { "Master2_DIR", "license_civ_dep" },
  453. { "chtwingoI_DIR", "license_civ_dep" },
  454. { "Trafic3_grdf", "license_civ_dep" },
  455. { "Trafic_DIR", "license_civ_dep" },
  456. { "master3p2_enedis", "license_civ_dep" },
  457. { "master3_enedis", "license_civ_dep" },
  458. { "partner2_grdf", "license_civ_dep" },
  459. { "chmaster2_grdf", "license_civ_dep" },
  460. { "Trafic3_grdf", "license_civ_dep" },
  461. { "Ducato_civ_grdf", "license_civ_dep" },
  462. { "chGrue_Mobile", "license_civ_dep" },
  463. { "chclio3_grdf", "license_civ_dep" },
  464. { "chduster14_civ_enedis", "license_civ_dep" },
  465. { "chbetonniere", "license_civ_dep" },
  466. { "chgrue", "license_civ_dep" },
  467. { "Peugeot_Expert_grdf", "license_civ_dep" },
  468. { "chbalayeuse", "license_civ_dep" },
  469. { "chdepanpl2", "license_civ_dep" }
  470. };
  471. };
  472.  
  473. class med_shop {
  474. side = "med";
  475. conditions = "";
  476. vehicles[] = {
  477. { "chepa_MAN", "" },
  478. { "chepa_Mercedes_Atego", "" },
  479. { "chepa_Mercedes_Atego_1530", "" },
  480. { "chepa_Scania_124L", "" },
  481. { "chepa_Scania_P280", "" },
  482. { "chepa_renault_lander", "" },
  483. { "trafic3_vsm", "" },
  484. { "devidoirch", "" },
  485. { "brancardch", "" },
  486. { "PMA", "" },
  487. { "chvsavar_ivecoar", "" },
  488. { "chVSAV_Sprinter", "" },
  489. { "chps5g", "" },
  490. { "ccfm_renault", "" },
  491. { "ccfm1_renault", "" },
  492. { "FPT_Scania_94D", "" },
  493. { "chmaster3_vsrl", "" },
  494. { "Trafic_vtp", "" },
  495. { "chduster14_vlhr", "" },
  496. { "kangooII1_vl", "" },
  497. { "chdefender_vlhr", "" },
  498. { "EPA", "" },
  499. { "chOshkosh_Striker_3000", "" },
  500. { "VPC", "" },
  501. { "Trafic_vtp", "" }
  502. };
  503. };
  504.  
  505. class med_air_shop {
  506. side = "med";
  507. conditions = "";
  508. vehicles[] = {
  509. { "CY_SC_EC635", "" },
  510. { "ec_635_securite_civ", "" },
  511. { "Heli_Transport_CDN888", "" }
  512. };
  513. };
  514.  
  515. class med_ship {
  516. side = "med";
  517. conditions = "";
  518. vehicles[] = {
  519. { "SH_BLS_SP", "license_med_sapeurspompiers" },
  520. { "C_Boat_Civil_01_rescue_F", "" }
  521. };
  522. };
  523.  
  524. class cop_car {
  525. side = "cop";
  526. conditions = "";
  527. vehicles[] = {
  528. { "CY_GENDARMERIE_EC635", "license_cop_gn" },
  529. { "1150RT_gn_ch", "license_cop_gn" },
  530. { "1200RT_gn_ch", "license_cop_gn" },
  531. { "berlingo1_gn", "license_cop_gn" },
  532. { "berlingo2_gn", "license_cop_gn" },
  533. { "c4h_gnb", "license_cop_gn" },
  534. { "c4h_gnr", "license_cop_gn" },
  535. { "chduster14_gn", "license_cop_gn" },
  536. { "Dacia_Duster_gn", "license_cop_gn" },
  537. { "Focus03_GN", "license_cop_gn" },
  538. { "chfcrs", "license_cop_gn" },
  539. { "focussw1998_GN", "license_cop_gn" },
  540. { "focussw2p2_GN", "license_cop_gn" },
  541. { "focussw3_gn", "license_cop_gn" },
  542. { "galaxych_gn", "license_cop_gn" },
  543. { "Transit_gn", "license_cop_gn" },
  544. { "IvecoCh_GN", "license_cop_gn" },
  545. { "chdefender_gn", "license_cop_gn" },
  546. { "Mer_Vito_gn", "license_cop_gn" },
  547. { "206_gn", "license_cop_gn" },
  548. { "206_gns", "license_cop_gn" },
  549. { "chExpert3_gn", "license_cop_gn" },
  550. { "Expert_GN", "license_cop_gn" },
  551. { "Expert_GN2", "license_cop_gn" },
  552. { "Expert_GN3", "license_cop_gn" },
  553. { "partner2_gn", "license_cop_gn" },
  554. { "partner2_gn2", "license_cop_gn" },
  555. { "4l_gn", "license_cop_gn" },
  556. { "ClioIch", "license_cop_gn" },
  557. { "Clio_GN", "license_cop_gn" },
  558. { "ClioIV_GN", "license_cop_gn" },
  559. { "kangooI1_gn", "license_cop_gn" },
  560. { "kangooI2_gn", "license_cop_gn" },
  561. { "megane_4_estate_gn", "license_cop_gn" },
  562. { "Megane_Estate_gn", "license_cop_gn" },
  563. { "Megane_Estate_p2_gn", "license_cop_gn" },
  564. { "Megane_gn", "license_cop_gn" },
  565. { "chmgrs", "license_cop_eri" },
  566. { "rs01ch", "license_cop_eri" },
  567. { "Trafic_gn", "license_cop_gn" },
  568. { "chtrafic1_gn", "license_cop_gn" },
  569. { "SubaruWRXgn", "license_cop_gn" },
  570. { "Sharanch_gn", "license_cop_gign" },
  571. { "FJR1300_gn_ch", "license_cop_gn" }
  572. };
  573. };
  574.  
  575. class cop_air {
  576. side = "cop";
  577. conditions = "";
  578. vehicles[] = {
  579. { "CY_GENDARMERIE_EC635", "license_cop_cAir" },
  580. { "CY_GENDARMERIE_EC635_CARGO", "license_cop_cAir" }
  581. };
  582. };
  583.  
  584. class cop_ship {
  585. side = "cop";
  586. conditions = "";
  587. vehicles[] = {
  588. { "B_Boat_Transport_01_F", "license_cop_pn" },
  589. { "Burnes_MK10_1", "license_cop_pn" }
  590. };
  591. };
  592. };
  593.  
  594. class LifeCfgVehicles {
  595. /*
  596. * Vehicle Configs (Contains textures and other stuff)
  597. *
  598. * "price" is the price before any multipliers set in Master_Config are applied.
  599. *
  600. * Default Multiplier Values & Calculations:
  601. * Civilian [Purchase, Sell]: [1.0, 0.5]
  602. * Cop [Purchase, Sell]: [0.5, 0.5]
  603. * Medic [Purchase, Sell]: [0.75, 0.5]
  604. * ChopShop: Payout = price * 0.25
  605. * GarageSell: Payout = price * [0.5, 0.5, 0.5, -1]
  606. * Cop Impound: Payout = price * 0.1
  607. * Pull Vehicle from Garage: Cost = price * [1, 0.5, 0.75, -1] * [0.5, 0.5, 0.5, -1]
  608. * -- Pull Vehicle & GarageSell Array Explanation = [civ,cop,medic,east]
  609. *
  610. * 1: ARRAY (license required)
  611. * Ex: { "driver", "" , "" , "" } //civilian, west, independent, east
  612. * licenses[] = { {"CIV"}, {"COP"}, {"MEDIC"}, {"EAST"} };
  613. * Textures config follows { Texture Name, side, {texture(s)path}}
  614. * Texture(s)path follows this format:
  615. * INDEX 0: Texture Layer 0
  616. * INDEX 1: Texture Layer 1
  617. * INDEX 2: Texture Layer 2
  618. * etc etc etc
  619. *
  620. */
  621.  
  622. class Default {
  623. vItemSpace = -1;
  624. conditions = "";
  625. price = -1;
  626. textures[] = {};
  627. };
  628.  
  629. //Véhicule Félindra
  630. class AlessioMGA {
  631. vItemSpace = 25;
  632. conditions = "";
  633. price = 450120;
  634. textures[] = {
  635. { "Noir", "civ", {
  636. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  637. }, "" },
  638. { "Blanc", "civ", {
  639. "#(argb,8,8,3)color(1,1,1,1)"
  640. }, "" },
  641. { "Gris", "civ", {
  642. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  643. }, "" },
  644. { "Sable", "civ", {
  645. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  646. }, "" },
  647. { "Rouge", "civ", {
  648. "#(argb,8,8,3)color(1,0,0,1)"
  649. }, "" },
  650. { "Jaune", "civ", {
  651. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  652. }, "" },
  653. { "Bleu", "civ", {
  654. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  655. }, "" },
  656. { "Bleu Nuit", "civ", {
  657. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  658. }, "" },
  659. { "Mauve", "civ", {
  660. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  661. }, "" },
  662. { "Orange", "civ", {
  663. "#(argb,8,8,3)color(1,0.251,0,1)"
  664. }, "" },
  665. { "Vert", "civ", {
  666. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  667. }, "" },
  668. { "Rose", "civ", {
  669. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  670. }, "" },
  671. { "Violet", "civ", {
  672. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  673. }, "" }
  674. };
  675. };
  676. //Véhicule Kris
  677. class EC135GNlu {
  678. vItemSpace = 100;
  679. conditions = "";
  680. price = 250;
  681. };
  682.  
  683. class EC135SClu {
  684. vItemSpace = 100;
  685. conditions = "";
  686. price = 250;
  687. };
  688.  
  689. class GT500Plu {
  690. vItemSpace = 100;
  691. conditions = "";
  692. price = 250;
  693. textures[] = {
  694. { "Noir", "civ", {
  695. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  696. }, "" },
  697. { "Blanc", "civ", {
  698. "#(argb,8,8,3)color(1,1,1,1)"
  699. }, "" },
  700. { "Gris", "civ", {
  701. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  702. }, "" },
  703. { "Sable", "civ", {
  704. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  705. }, "" },
  706. { "Rouge", "civ", {
  707. "#(argb,8,8,3)color(1,0,0,1)"
  708. }, "" },
  709. { "Jaune", "civ", {
  710. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  711. }, "" },
  712. { "Bleu", "civ", {
  713. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  714. }, "" },
  715. { "Bleu Nuit", "civ", {
  716. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  717. }, "" },
  718. { "Mauve", "civ", {
  719. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  720. }, "" },
  721. { "Orange", "civ", {
  722. "#(argb,8,8,3)color(1,0.251,0,1)"
  723. }, "" },
  724. { "Vert", "civ", {
  725. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  726. }, "" },
  727. { "Rose", "civ", {
  728. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  729. }, "" },
  730. { "Violet", "civ", {
  731. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  732. }, "" }
  733. };
  734. };
  735.  
  736.  
  737. class Model_Slu_P {
  738. vItemSpace = 100;
  739. conditions = "";
  740. price = 250;
  741. };
  742.  
  743. class mondeovch_bac {
  744. vItemSpace = 100;
  745. conditions = "";
  746. price = 250;
  747. textures[] = {
  748. { "Noir", "civ", {
  749. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  750. }, "" },
  751. { "Blanc", "civ", {
  752. "#(argb,8,8,3)color(1,1,1,1)"
  753. }, "" },
  754. { "Gris", "civ", {
  755. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  756. }, "" },
  757. { "Sable", "civ", {
  758. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  759. }, "" },
  760. { "Rouge", "civ", {
  761. "#(argb,8,8,3)color(1,0,0,1)"
  762. }, "" },
  763. { "Jaune", "civ", {
  764. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  765. }, "" },
  766. { "Bleu", "civ", {
  767. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  768. }, "" },
  769. { "Bleu Nuit", "civ", {
  770. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  771. }, "" },
  772. { "Mauve", "civ", {
  773. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  774. }, "" },
  775. { "Orange", "civ", {
  776. "#(argb,8,8,3)color(1,0.251,0,1)"
  777. }, "" },
  778. { "Vert", "civ", {
  779. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  780. }, "" },
  781. { "Rose", "civ", {
  782. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  783. }, "" },
  784. { "Violet", "civ", {
  785. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  786. }, "" }
  787. };
  788. };
  789.  
  790. class chwt5_raid {
  791. vItemSpace = 100;
  792. conditions = "";
  793. price = 250;
  794. };
  795.  
  796. class c4h_bana {
  797. vItemSpace = 100;
  798. conditions = "";
  799. price = 250;
  800. textures[] = {
  801. { "Noir", "civ", {
  802. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  803. }, "" },
  804. { "Blanc", "civ", {
  805. "#(argb,8,8,3)color(1,1,1,1)"
  806. }, "" },
  807. { "Gris", "civ", {
  808. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  809. }, "" },
  810. { "Sable", "civ", {
  811. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  812. }, "" },
  813. { "Rouge", "civ", {
  814. "#(argb,8,8,3)color(1,0,0,1)"
  815. }, "" },
  816. { "Jaune", "civ", {
  817. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  818. }, "" },
  819. { "Bleu", "civ", {
  820. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  821. }, "" },
  822. { "Bleu Nuit", "civ", {
  823. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  824. }, "" },
  825. { "Mauve", "civ", {
  826. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  827. }, "" },
  828. { "Orange", "civ", {
  829. "#(argb,8,8,3)color(1,0.251,0,1)"
  830. }, "" },
  831. { "Vert", "civ", {
  832. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  833. }, "" },
  834. { "Rose", "civ", {
  835. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  836. }, "" },
  837. { "Violet", "civ", {
  838. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  839. }, "" }
  840. };
  841. };
  842.  
  843.  
  844. class 307_bac {
  845. vItemSpace = 100;
  846. conditions = "";
  847. price = 250;
  848. textures[] = {
  849. { "Noir", "civ", {
  850. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  851. }, "" },
  852. { "Blanc", "civ", {
  853. "#(argb,8,8,3)color(1,1,1,1)"
  854. }, "" },
  855. { "Gris", "civ", {
  856. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  857. }, "" },
  858. { "Sable", "civ", {
  859. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  860. }, "" },
  861. { "Rouge", "civ", {
  862. "#(argb,8,8,3)color(1,0,0,1)"
  863. }, "" },
  864. { "Jaune", "civ", {
  865. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  866. }, "" },
  867. { "Bleu", "civ", {
  868. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  869. }, "" },
  870. { "Bleu Nuit", "civ", {
  871. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  872. }, "" },
  873. { "Mauve", "civ", {
  874. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  875. }, "" },
  876. { "Orange", "civ", {
  877. "#(argb,8,8,3)color(1,0.251,0,1)"
  878. }, "" },
  879. { "Vert", "civ", {
  880. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  881. }, "" },
  882. { "Rose", "civ", {
  883. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  884. }, "" },
  885. { "Violet", "civ", {
  886. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  887. }, "" }
  888. };
  889. };
  890.  
  891. class 308_bac {
  892. vItemSpace = 100;
  893. conditions = "license_cop_pn";
  894. price = 250;
  895. textures[] = {
  896. { "Noir", "civ", {
  897. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  898. }, "" },
  899. { "Blanc", "civ", {
  900. "#(argb,8,8,3)color(1,1,1,1)"
  901. }, "" },
  902. { "Gris", "civ", {
  903. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  904. }, "" },
  905. { "Sable", "civ", {
  906. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  907. }, "" },
  908. { "Rouge", "civ", {
  909. "#(argb,8,8,3)color(1,0,0,1)"
  910. }, "" },
  911. { "Jaune", "civ", {
  912. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  913. }, "" },
  914. { "Bleu", "civ", {
  915. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  916. }, "" },
  917. { "Bleu Nuit", "civ", {
  918. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  919. }, "" },
  920. { "Mauve", "civ", {
  921. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  922. }, "" },
  923. { "Orange", "civ", {
  924. "#(argb,8,8,3)color(1,0.251,0,1)"
  925. }, "" },
  926. { "Vert", "civ", {
  927. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  928. }, "" },
  929. { "Rose", "civ", {
  930. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  931. }, "" },
  932. { "Violet", "civ", {
  933. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  934. }, "" }
  935. };
  936. };
  937.  
  938. class mondeoswch_bac {
  939. vItemSpace = 100;
  940. conditions = "license_cop_pn";
  941. price = 250;
  942. textures[] = {
  943. { "Noir", "civ", {
  944. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  945. }, "" },
  946. { "Blanc", "civ", {
  947. "#(argb,8,8,3)color(1,1,1,1)"
  948. }, "" },
  949. { "Gris", "civ", {
  950. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  951. }, "" },
  952. { "Sable", "civ", {
  953. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  954. }, "" },
  955. { "Rouge", "civ", {
  956. "#(argb,8,8,3)color(1,0,0,1)"
  957. }, "" },
  958. { "Jaune", "civ", {
  959. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  960. }, "" },
  961. { "Bleu", "civ", {
  962. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  963. }, "" },
  964. { "Bleu Nuit", "civ", {
  965. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  966. }, "" },
  967. { "Mauve", "civ", {
  968. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  969. }, "" },
  970. { "Orange", "civ", {
  971. "#(argb,8,8,3)color(1,0.251,0,1)"
  972. }, "" },
  973. { "Vert", "civ", {
  974. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  975. }, "" },
  976. { "Rose", "civ", {
  977. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  978. }, "" },
  979. { "Violet", "civ", {
  980. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  981. }, "" }
  982. };
  983. };
  984.  
  985. class scenic_bac {
  986. vItemSpace = 100;
  987. conditions = "license_cop_pn";
  988. price = 250;
  989. textures[] = {
  990. { "Noir", "civ", {
  991. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  992. }, "" },
  993. { "Blanc", "civ", {
  994. "#(argb,8,8,3)color(1,1,1,1)"
  995. }, "" },
  996. { "Gris", "civ", {
  997. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  998. }, "" },
  999. { "Sable", "civ", {
  1000. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1001. }, "" },
  1002. { "Rouge", "civ", {
  1003. "#(argb,8,8,3)color(1,0,0,1)"
  1004. }, "" },
  1005. { "Jaune", "civ", {
  1006. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1007. }, "" },
  1008. { "Bleu", "civ", {
  1009. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1010. }, "" },
  1011. { "Bleu Nuit", "civ", {
  1012. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1013. }, "" },
  1014. { "Mauve", "civ", {
  1015. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1016. }, "" },
  1017. { "Orange", "civ", {
  1018. "#(argb,8,8,3)color(1,0.251,0,1)"
  1019. }, "" },
  1020. { "Vert", "civ", {
  1021. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1022. }, "" },
  1023. { "Rose", "civ", {
  1024. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1025. }, "" },
  1026. { "Violet", "civ", {
  1027. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1028. }, "" }
  1029. };
  1030. };
  1031.  
  1032. class cmax_bac {
  1033. vItemSpace = 100;
  1034. conditions = "license_cop_pn";
  1035. price = 250;
  1036. textures[] = {
  1037. { "Noir", "civ", {
  1038. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1039. }, "" },
  1040. { "Blanc", "civ", {
  1041. "#(argb,8,8,3)color(1,1,1,1)"
  1042. }, "" },
  1043. { "Gris", "civ", {
  1044. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1045. }, "" },
  1046. { "Sable", "civ", {
  1047. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1048. }, "" },
  1049. { "Rouge", "civ", {
  1050. "#(argb,8,8,3)color(1,0,0,1)"
  1051. }, "" },
  1052. { "Jaune", "civ", {
  1053. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1054. }, "" },
  1055. { "Bleu", "civ", {
  1056. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1057. }, "" },
  1058. { "Bleu Nuit", "civ", {
  1059. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1060. }, "" },
  1061. { "Mauve", "civ", {
  1062. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1063. }, "" },
  1064. { "Orange", "civ", {
  1065. "#(argb,8,8,3)color(1,0.251,0,1)"
  1066. }, "" },
  1067. { "Vert", "civ", {
  1068. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1069. }, "" },
  1070. { "Rose", "civ", {
  1071. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1072. }, "" },
  1073. { "Violet", "civ", {
  1074. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1075. }, "" }
  1076. };
  1077. };
  1078.  
  1079. class 1150RT_gn_ch {
  1080. vItemSpace = 50;
  1081. conditions = "";
  1082. price = 250;
  1083. };
  1084.  
  1085. class 1200RT_gn_ch {
  1086. vItemSpace = 50;
  1087. conditions = "";
  1088. price = 250;
  1089. };
  1090.  
  1091. class berlingo1_gn {
  1092. vItemSpace = 100;
  1093. conditions = "";
  1094. price = 250;
  1095. };
  1096.  
  1097. class berlingo2_gn {
  1098. vItemSpace = 100;
  1099. conditions = "";
  1100. price = 250;
  1101. };
  1102.  
  1103. class c4h_gnb {
  1104. vItemSpace = 100;
  1105. conditions = "license_cop_eri";
  1106. price = 250;
  1107. };
  1108.  
  1109. class c4h_gnr {
  1110. vItemSpace = 100;
  1111. conditions = "";
  1112. price = 250;
  1113. };
  1114.  
  1115. class chduster14_gn {
  1116. vItemSpace = 100;
  1117. conditions = "";
  1118. price = 250;
  1119. };
  1120.  
  1121. class Dacia_Duster_gn {
  1122. vItemSpace = 100;
  1123. conditions = "";
  1124. price = 250;
  1125. };
  1126.  
  1127. class Focus03_GN {
  1128. vItemSpace = 100;
  1129. conditions = "";
  1130. price = 250;
  1131. };
  1132.  
  1133. class chfcrs {
  1134. vItemSpace = 100;
  1135. conditions = "";
  1136. price = 250;
  1137. };
  1138.  
  1139. class focussw1998_GN {
  1140. vItemSpace = 100;
  1141. conditions = "";
  1142. price = 250;
  1143. };
  1144.  
  1145. class focussw2p2_GN {
  1146. vItemSpace = 100;
  1147. conditions = "";
  1148. price = 250;
  1149. };
  1150.  
  1151. class focussw3_gn {
  1152. vItemSpace = 100;
  1153. conditions = "";
  1154. price = 250;
  1155. };
  1156.  
  1157. class galaxych_gn {
  1158. vItemSpace = 100;
  1159. conditions = "";
  1160. price = 250;
  1161. };
  1162.  
  1163. class Transit_gn {
  1164. vItemSpace = 100;
  1165. conditions = "";
  1166. price = 250;
  1167. };
  1168.  
  1169. class IvecoCh_GN {
  1170. vItemSpace = 100;
  1171. conditions = "";
  1172. price = 250;
  1173. };
  1174.  
  1175. class chdefender_gn {
  1176. vItemSpace = 100;
  1177. conditions = "";
  1178. price = 250;
  1179. };
  1180.  
  1181. class Mer_Vito_gn {
  1182. vItemSpace = 100;
  1183. conditions = "";
  1184. price = 250;
  1185. };
  1186.  
  1187. class 206_gn {
  1188. vItemSpace = 100;
  1189. conditions = "";
  1190. price = 250;
  1191. };
  1192.  
  1193. class 206_gns {
  1194. vItemSpace = 100;
  1195. conditions = "";
  1196. price = 250;
  1197. };
  1198.  
  1199. class chExpert3_gn {
  1200. vItemSpace = 100;
  1201. conditions = "";
  1202. price = 250;
  1203. };
  1204.  
  1205. class Expert_GN {
  1206. vItemSpace = 100;
  1207. conditions = "";
  1208. price = 250;
  1209. };
  1210.  
  1211. class Expert_GN2 {
  1212. vItemSpace = 100;
  1213. conditions = "";
  1214. price = 250;
  1215. };
  1216.  
  1217. class Expert_GN3 {
  1218. vItemSpace = 100;
  1219. conditions = "";
  1220. price = 250;
  1221. };
  1222.  
  1223. class partner2_gn {
  1224. vItemSpace = 100;
  1225. conditions = "";
  1226. price = 250;
  1227. };
  1228.  
  1229. class partner2_gn2 {
  1230. vItemSpace = 100;
  1231. conditions = "";
  1232. price = 250;
  1233. };
  1234.  
  1235. class 4l_gn {
  1236. vItemSpace = 100;
  1237. conditions = "";
  1238. price = 250;
  1239. };
  1240.  
  1241. class ClioIch {
  1242. vItemSpace = 100;
  1243. conditions = "";
  1244. price = 250;
  1245. };
  1246.  
  1247. class Clio_GN {
  1248. vItemSpace = 100;
  1249. conditions = "";
  1250. price = 250;
  1251. };
  1252.  
  1253. class ClioIV_GN {
  1254. vItemSpace = 100;
  1255. conditions = "";
  1256. price = 250;
  1257. };
  1258.  
  1259. class kangooI1_gn {
  1260. vItemSpace = 100;
  1261. conditions = "";
  1262. price = 250;
  1263. };
  1264.  
  1265. class kangooI2_gn {
  1266. vItemSpace = 100;
  1267. conditions = "";
  1268. price = 250;
  1269. };
  1270.  
  1271. class megane_4_estate_gn {
  1272. vItemSpace = 100;
  1273. conditions = "";
  1274. price = 250;
  1275. };
  1276.  
  1277. class Megane_Estate_gn {
  1278. vItemSpace = 100;
  1279. conditions = "";
  1280. price = 250;
  1281. textures[] = {
  1282. };
  1283. };
  1284.  
  1285. class Focus03_bac {
  1286. vItemSpace = 100;
  1287. conditions = "";
  1288. price = 250;
  1289. textures[] = {
  1290. { "Noir", "civ", {
  1291. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1292. }, "" },
  1293. { "Blanc", "civ", {
  1294. "#(argb,8,8,3)color(1,1,1,1)"
  1295. }, "" },
  1296. { "Gris", "civ", {
  1297. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1298. }, "" },
  1299. { "Sable", "civ", {
  1300. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1301. }, "" },
  1302. { "Rouge", "civ", {
  1303. "#(argb,8,8,3)color(1,0,0,1)"
  1304. }, "" },
  1305. { "Jaune", "civ", {
  1306. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1307. }, "" },
  1308. { "Bleu", "civ", {
  1309. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1310. }, "" },
  1311. { "Bleu Nuit", "civ", {
  1312. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1313. }, "" },
  1314. { "Mauve", "civ", {
  1315. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1316. }, "" },
  1317. { "Orange", "civ", {
  1318. "#(argb,8,8,3)color(1,0.251,0,1)"
  1319. }, "" },
  1320. { "Vert", "civ", {
  1321. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1322. }, "" },
  1323. { "Rose", "civ", {
  1324. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1325. }, "" },
  1326. { "Violet", "civ", {
  1327. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1328. }, "" }
  1329. };
  1330. };
  1331.  
  1332. class mondeo_bac {
  1333. vItemSpace = 100;
  1334. conditions = "";
  1335. price = 250;
  1336. textures[] = {
  1337. { "Noir", "civ", {
  1338. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1339. }, "" },
  1340. { "Blanc", "civ", {
  1341. "#(argb,8,8,3)color(1,1,1,1)"
  1342. }, "" },
  1343. { "Gris", "civ", {
  1344. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1345. }, "" },
  1346. { "Sable", "civ", {
  1347. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1348. }, "" },
  1349. { "Rouge", "civ", {
  1350. "#(argb,8,8,3)color(1,0,0,1)"
  1351. }, "" },
  1352. { "Jaune", "civ", {
  1353. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1354. }, "" },
  1355. { "Bleu", "civ", {
  1356. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1357. }, "" },
  1358. { "Bleu Nuit", "civ", {
  1359. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1360. }, "" },
  1361. { "Mauve", "civ", {
  1362. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1363. }, "" },
  1364. { "Orange", "civ", {
  1365. "#(argb,8,8,3)color(1,0.251,0,1)"
  1366. }, "" },
  1367. { "Vert", "civ", {
  1368. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1369. }, "" },
  1370. { "Rose", "civ", {
  1371. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1372. }, "" },
  1373. { "Violet", "civ", {
  1374. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1375. }, "" }
  1376. };
  1377. };
  1378.  
  1379. class 207_bac {
  1380. vItemSpace = 100;
  1381. conditions = "";
  1382. price = 250;
  1383. textures[] = {
  1384. { "Noir", "civ", {
  1385. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1386. }, "" },
  1387. { "Blanc", "civ", {
  1388. "#(argb,8,8,3)color(1,1,1,1)"
  1389. }, "" },
  1390. { "Gris", "civ", {
  1391. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1392. }, "" },
  1393. { "Sable", "civ", {
  1394. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1395. }, "" },
  1396. { "Rouge", "civ", {
  1397. "#(argb,8,8,3)color(1,0,0,1)"
  1398. }, "" },
  1399. { "Jaune", "civ", {
  1400. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1401. }, "" },
  1402. { "Bleu", "civ", {
  1403. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1404. }, "" },
  1405. { "Bleu Nuit", "civ", {
  1406. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1407. }, "" },
  1408. { "Mauve", "civ", {
  1409. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1410. }, "" },
  1411. { "Orange", "civ", {
  1412. "#(argb,8,8,3)color(1,0.251,0,1)"
  1413. }, "" },
  1414. { "Vert", "civ", {
  1415. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1416. }, "" },
  1417. { "Rose", "civ", {
  1418. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1419. }, "" },
  1420. { "Violet", "civ", {
  1421. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1422. }, "" }
  1423. };
  1424. };
  1425.  
  1426. class G65lu_B {
  1427. vItemSpace = 100;
  1428. conditions = "";
  1429. price = 250;
  1430. textures[] = {
  1431. { "Noir", "civ", {
  1432. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1433. }, "" },
  1434. { "Blanc", "civ", {
  1435. "#(argb,8,8,3)color(1,1,1,1)"
  1436. }, "" },
  1437. { "Gris", "civ", {
  1438. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1439. }, "" },
  1440. { "Sable", "civ", {
  1441. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1442. }, "" },
  1443. { "Rouge", "civ", {
  1444. "#(argb,8,8,3)color(1,0,0,1)"
  1445. }, "" },
  1446. { "Jaune", "civ", {
  1447. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1448. }, "" },
  1449. { "Bleu", "civ", {
  1450. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1451. }, "" },
  1452. { "Bleu Nuit", "civ", {
  1453. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1454. }, "" },
  1455. { "Mauve", "civ", {
  1456. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1457. }, "" },
  1458. { "Orange", "civ", {
  1459. "#(argb,8,8,3)color(1,0.251,0,1)"
  1460. }, "" },
  1461. { "Vert", "civ", {
  1462. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1463. }, "" },
  1464. { "Rose", "civ", {
  1465. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1466. }, "" },
  1467. { "Violet", "civ", {
  1468. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1469. }, "" }
  1470. };
  1471. };
  1472.  
  1473. class chmegane2_bac {
  1474. vItemSpace = 100;
  1475. conditions = "";
  1476. price = 250;
  1477. textures[] = {
  1478. { "Noir", "civ", {
  1479. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1480. }, "" },
  1481. { "Blanc", "civ", {
  1482. "#(argb,8,8,3)color(1,1,1,1)"
  1483. }, "" },
  1484. { "Gris", "civ", {
  1485. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1486. }, "" },
  1487. { "Sable", "civ", {
  1488. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1489. }, "" },
  1490. { "Rouge", "civ", {
  1491. "#(argb,8,8,3)color(1,0,0,1)"
  1492. }, "" },
  1493. { "Jaune", "civ", {
  1494. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1495. }, "" },
  1496. { "Bleu", "civ", {
  1497. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1498. }, "" },
  1499. { "Bleu Nuit", "civ", {
  1500. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1501. }, "" },
  1502. { "Mauve", "civ", {
  1503. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1504. }, "" },
  1505. { "Orange", "civ", {
  1506. "#(argb,8,8,3)color(1,0.251,0,1)"
  1507. }, "" },
  1508. { "Vert", "civ", {
  1509. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1510. }, "" },
  1511. { "Rose", "civ", {
  1512. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1513. }, "" },
  1514. { "Violet", "civ", {
  1515. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1516. }, "" }
  1517. };
  1518. };
  1519.  
  1520. class V250lu_B {
  1521. vItemSpace = 100;
  1522. conditions = "license_cop_bac";
  1523. price = 250;
  1524. textures[] = {
  1525. { "Noir", "civ", {
  1526. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1527. }, "" },
  1528. { "Blanc", "civ", {
  1529. "#(argb,8,8,3)color(1,1,1,1)"
  1530. }, "" },
  1531. { "Gris", "civ", {
  1532. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1533. }, "" },
  1534. { "Sable", "civ", {
  1535. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1536. }, "" },
  1537. { "Rouge", "civ", {
  1538. "#(argb,8,8,3)color(1,0,0,1)"
  1539. }, "" },
  1540. { "Jaune", "civ", {
  1541. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1542. }, "" },
  1543. { "Bleu", "civ", {
  1544. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1545. }, "" },
  1546. { "Bleu Nuit", "civ", {
  1547. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1548. }, "" },
  1549. { "Mauve", "civ", {
  1550. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1551. }, "" },
  1552. { "Orange", "civ", {
  1553. "#(argb,8,8,3)color(1,0.251,0,1)"
  1554. }, "" },
  1555. { "Vert", "civ", {
  1556. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1557. }, "" },
  1558. { "Rose", "civ", {
  1559. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1560. }, "" },
  1561. { "Violet", "civ", {
  1562. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1563. }, "" }
  1564. };
  1565. };
  1566.  
  1567. class Megane_Estate_p2_gn {
  1568. vItemSpace = 100;
  1569. conditions = "license_cop_pm";
  1570. price = 250;
  1571. };
  1572.  
  1573. class Megane_gn {
  1574. vItemSpace = 100;
  1575. conditions = "license_cop_pm";
  1576. price = 250;
  1577. };
  1578.  
  1579. class chmgrs {
  1580. vItemSpace = 100;
  1581. conditions = "license_cop_pm";
  1582. price = 250;
  1583. };
  1584.  
  1585. class Scenic3_Dne {
  1586. vItemSpace = 100;
  1587. conditions = "license_cop_douane";
  1588. price = 250;
  1589. };
  1590.  
  1591. class FJR1300_dne_ch {
  1592. vItemSpace = 100;
  1593. conditions = "license_cop_douane";
  1594. price = 250;
  1595. };
  1596.  
  1597. class Trafic_douane {
  1598. vItemSpace = 100;
  1599. conditions = "license_cop_douane";
  1600. price = 250;
  1601. };
  1602.  
  1603. class Megane_Estate_p2_dne {
  1604. vItemSpace = 100;
  1605. conditions = "license_cop_douane";
  1606. price = 250;
  1607. };
  1608.  
  1609. class Megane_Estate_douane {
  1610. vItemSpace = 100;
  1611. conditions = "license_cop_douane";
  1612. price = 250;
  1613. };
  1614.  
  1615. class megane_4_estate_dne {
  1616. vItemSpace = 100;
  1617. conditions = "license_cop_douane";
  1618. price = 250;
  1619. };
  1620.  
  1621. class Transit_dne {
  1622. vItemSpace = 100;
  1623. conditions = "license_cop_douane";
  1624. price = 250;
  1625. };
  1626.  
  1627. class cmax_dne {
  1628. vItemSpace = 100;
  1629. conditions = "license_cop_douane";
  1630. price = 250;
  1631. };
  1632. /////////////////////////////////////////////////////////////////
  1633. class chmgrs {
  1634. vItemSpace = 50;
  1635. conditions = "";
  1636. price = 100;
  1637. };
  1638. class rs01ch {
  1639. vItemSpace = 50;
  1640. conditions = "";
  1641. price = 100;
  1642. };
  1643. class Trafic_gn {
  1644. vItemSpace = 50;
  1645. conditions = "";
  1646. price = 100;
  1647. };
  1648. class chtrafic1_gn {
  1649. vItemSpace = 50;
  1650. conditions = "";
  1651. price = 100;
  1652. };
  1653. class SubaruWRXgn {
  1654. vItemSpace = 50;
  1655. conditions = "";
  1656. price = 100;
  1657. };
  1658. class Sharanch_gn {
  1659. vItemSpace = 50;
  1660. conditions = "";
  1661. price = 100;
  1662. };
  1663. class FJR1300_gn_ch {
  1664. vItemSpace = 50;
  1665. conditions = "";
  1666. price = 100;
  1667. };
  1668.  
  1669. class Peugeot_Boxer_civ {
  1670. vItemSpace = 120;
  1671. conditions = "";
  1672. price = 80120;
  1673. textures[] = {
  1674. { "Noir", "civ", {
  1675. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1676. }, "" },
  1677. { "Blanc", "civ", {
  1678. "#(argb,8,8,3)color(1,1,1,1)"
  1679. }, "" },
  1680. { "Gris", "civ", {
  1681. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1682. }, "" },
  1683. { "Sable", "civ", {
  1684. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1685. }, "" },
  1686. { "Rouge", "civ", {
  1687. "#(argb,8,8,3)color(1,0,0,1)"
  1688. }, "" },
  1689. { "Jaune", "civ", {
  1690. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1691. }, "" },
  1692. { "Bleu", "civ", {
  1693. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1694. }, "" },
  1695. { "Bleu Nuit", "civ", {
  1696. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1697. }, "" },
  1698. { "Mauve", "civ", {
  1699. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1700. }, "" },
  1701. { "Orange", "civ", {
  1702. "#(argb,8,8,3)color(1,0.251,0,1)"
  1703. }, "" },
  1704. { "Vert", "civ", {
  1705. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1706. }, "" },
  1707. { "Rose", "civ", {
  1708. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1709. }, "" },
  1710. { "Violet", "civ", {
  1711. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1712. }, "" }
  1713. };
  1714. };
  1715.  
  1716. class focussw3_civ_taxi {
  1717. vItemSpace = 50;
  1718. conditions = "";
  1719. price = 1;
  1720. };
  1721.  
  1722. class mondeo_civ_taxi {
  1723. vItemSpace = 50;
  1724. conditions = "";
  1725. price = 1;
  1726. };
  1727.  
  1728. class Megane_Estate_civ_taxi {
  1729. vItemSpace = 50;
  1730. conditions = "";
  1731. price = 1;
  1732. };
  1733.  
  1734. class chcitan_civ_taxi {
  1735. vItemSpace = 50;
  1736. conditions = "";
  1737. price = 1;
  1738. };
  1739.  
  1740. class Mer_Vito_civ_taxi {
  1741. vItemSpace = 50;
  1742. conditions = "";
  1743. price = 1;
  1744. };
  1745. class 308_2015_taxi {
  1746. vItemSpace = 50;
  1747. conditions = "";
  1748. price = 1;
  1749. };
  1750.  
  1751. class Peugeot_308_civ_taxi {
  1752. vItemSpace = 50;
  1753. conditions = "";
  1754. price = 1;
  1755. textures[] = {};
  1756. };
  1757.  
  1758. class 508_taxi {
  1759. vItemSpace = 50;
  1760. conditions = "";
  1761. price = 1;
  1762. };
  1763.  
  1764. class Peugeot_Expert_civ_taxi {
  1765. vItemSpace = 50;
  1766. conditions = "";
  1767. price = 1;
  1768. };
  1769.  
  1770. class chmaster2_adp {
  1771. vItemSpace = 50;
  1772. conditions = "license_cop_ap";
  1773. price = 1;
  1774. textures[] = {};
  1775. };
  1776.  
  1777. class Trafic_adp {
  1778. vItemSpace = 50;
  1779. conditions = "license_cop_ap";
  1780. price = 1;
  1781. textures[] = {};
  1782. };
  1783.  
  1784. class chtrans_pen {
  1785. vItemSpace = 50;
  1786. conditions = "license_cop_ap";
  1787. textures[] = {};
  1788. };
  1789.  
  1790. //Concessionnaire Véhicule Civil
  1791. class Burnes_MK10_1 {
  1792. vItemSpace = 500;
  1793. conditions = "";
  1794. price = 450120;
  1795. textures[] = {};
  1796. };
  1797.  
  1798. class chaustin {
  1799. vItemSpace = 20;
  1800. conditions = "";
  1801. price = 12230;
  1802. textures[] = {
  1803. { "Noir", "civ", {
  1804. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1805. }, "" },
  1806. { "Blanc", "civ", {
  1807. "#(argb,8,8,3)color(1,1,1,1)"
  1808. }, "" },
  1809. { "Gris", "civ", {
  1810. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1811. }, "" },
  1812. { "Sable", "civ", {
  1813. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1814. }, "" },
  1815. { "Rouge", "civ", {
  1816. "#(argb,8,8,3)color(1,0,0,1)"
  1817. }, "" },
  1818. { "Jaune", "civ", {
  1819. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1820. }, "" },
  1821. { "Bleu", "civ", {
  1822. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1823. }, "" },
  1824. { "Bleu Nuit", "civ", {
  1825. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1826. }, "" },
  1827. { "Mauve", "civ", {
  1828. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1829. }, "" },
  1830. { "Orange", "civ", {
  1831. "#(argb,8,8,3)color(1,0.251,0,1)"
  1832. }, "" },
  1833. { "Vert", "civ", {
  1834. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1835. }, "" },
  1836. { "Rose", "civ", {
  1837. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1838. }, "" },
  1839. { "Violet", "civ", {
  1840. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1841. }, "" }
  1842. };
  1843. };
  1844.  
  1845. class Megane_Estate_civ {
  1846. vItemSpace = 40;
  1847. conditions = "";
  1848. price = 48500;
  1849. textures[] = {
  1850. { "Noir", "civ", {
  1851. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1852. }, "" },
  1853. { "Blanc", "civ", {
  1854. "#(argb,8,8,3)color(1,1,1,1)"
  1855. }, "" },
  1856. { "Gris", "civ", {
  1857. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1858. }, "" },
  1859. { "Sable", "civ", {
  1860. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1861. }, "" },
  1862. { "Rouge", "civ", {
  1863. "#(argb,8,8,3)color(1,0,0,1)"
  1864. }, "" },
  1865. { "Jaune", "civ", {
  1866. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1867. }, "" },
  1868. { "Bleu", "civ", {
  1869. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1870. }, "" },
  1871. { "Bleu Nuit", "civ", {
  1872. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1873. }, "" },
  1874. { "Mauve", "civ", {
  1875. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1876. }, "" },
  1877. { "Orange", "civ", {
  1878. "#(argb,8,8,3)color(1,0.251,0,1)"
  1879. }, "" },
  1880. { "Vert", "civ", {
  1881. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1882. }, "" },
  1883. { "Rose", "civ", {
  1884. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1885. }, "" },
  1886. { "Violet", "civ", {
  1887. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1888. }, "" }
  1889. };
  1890. };
  1891.  
  1892. class Caddylu_civ {
  1893. vItemSpace = 26;
  1894. conditions = "";
  1895. price = 26520;
  1896. textures[] = {
  1897. { "Noir", "civ", {
  1898. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1899. }, "" },
  1900. { "Blanc", "civ", {
  1901. "#(argb,8,8,3)color(1,1,1,1)"
  1902. }, "" },
  1903. { "Gris", "civ", {
  1904. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1905. }, "" },
  1906. { "Sable", "civ", {
  1907. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1908. }, "" },
  1909. { "Rouge", "civ", {
  1910. "#(argb,8,8,3)color(1,0,0,1)"
  1911. }, "" },
  1912. { "Jaune", "civ", {
  1913. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1914. }, "" },
  1915. { "Bleu", "civ", {
  1916. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1917. }, "" },
  1918. { "Bleu Nuit", "civ", {
  1919. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1920. }, "" },
  1921. { "Mauve", "civ", {
  1922. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1923. }, "" },
  1924. { "Orange", "civ", {
  1925. "#(argb,8,8,3)color(1,0.251,0,1)"
  1926. }, "" },
  1927. { "Vert", "civ", {
  1928. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1929. }, "" },
  1930. { "Rose", "civ", {
  1931. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1932. }, "" },
  1933. { "Violet", "civ", {
  1934. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1935. }, "" }
  1936. };
  1937. };
  1938.  
  1939. class Multipla_civ_ch {
  1940. vItemSpace = 48;
  1941. conditions = "";
  1942. price = 16950;
  1943. textures[] = {
  1944. { "Noir", "civ", {
  1945. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1946. }, "" },
  1947. { "Blanc", "civ", {
  1948. "#(argb,8,8,3)color(1,1,1,1)"
  1949. }, "" },
  1950. { "Gris", "civ", {
  1951. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1952. }, "" },
  1953. { "Sable", "civ", {
  1954. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  1955. }, "" },
  1956. { "Rouge", "civ", {
  1957. "#(argb,8,8,3)color(1,0,0,1)"
  1958. }, "" },
  1959. { "Jaune", "civ", {
  1960. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  1961. }, "" },
  1962. { "Bleu", "civ", {
  1963. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  1964. }, "" },
  1965. { "Bleu Nuit", "civ", {
  1966. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  1967. }, "" },
  1968. { "Mauve", "civ", {
  1969. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  1970. }, "" },
  1971. { "Orange", "civ", {
  1972. "#(argb,8,8,3)color(1,0.251,0,1)"
  1973. }, "" },
  1974. { "Vert", "civ", {
  1975. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  1976. }, "" },
  1977. { "Rose", "civ", {
  1978. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  1979. }, "" },
  1980. { "Violet", "civ", {
  1981. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  1982. }, "" }
  1983. };
  1984. };
  1985.  
  1986. class chpunto {
  1987. vItemSpace = 38;
  1988. conditions = "";
  1989. price = 19650;
  1990. textures[] = {
  1991. { "Noir", "civ", {
  1992. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  1993. }, "" },
  1994. { "Blanc", "civ", {
  1995. "#(argb,8,8,3)color(1,1,1,1)"
  1996. }, "" },
  1997. { "Gris", "civ", {
  1998. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  1999. }, "" },
  2000. { "Sable", "civ", {
  2001. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2002. }, "" },
  2003. { "Rouge", "civ", {
  2004. "#(argb,8,8,3)color(1,0,0,1)"
  2005. }, "" },
  2006. { "Jaune", "civ", {
  2007. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2008. }, "" },
  2009. { "Bleu", "civ", {
  2010. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2011. }, "" },
  2012. { "Bleu Nuit", "civ", {
  2013. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2014. }, "" },
  2015. { "Mauve", "civ", {
  2016. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2017. }, "" },
  2018. { "Orange", "civ", {
  2019. "#(argb,8,8,3)color(1,0.251,0,1)"
  2020. }, "" },
  2021. { "Vert", "civ", {
  2022. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2023. }, "" },
  2024. { "Rose", "civ", {
  2025. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2026. }, "" },
  2027. { "Violet", "civ", {
  2028. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2029. }, "" }
  2030. };
  2031. };
  2032.  
  2033. class focus3ch_civ {
  2034. vItemSpace = 40;
  2035. conditions = "";
  2036. price = 21200;
  2037. textures[] = {
  2038. { "Noir", "civ", {
  2039. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2040. }, "" },
  2041. { "Blanc", "civ", {
  2042. "#(argb,8,8,3)color(1,1,1,1)"
  2043. }, "" },
  2044. { "Gris", "civ", {
  2045. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2046. }, "" },
  2047. { "Sable", "civ", {
  2048. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2049. }, "" },
  2050. { "Rouge", "civ", {
  2051. "#(argb,8,8,3)color(1,0,0,1)"
  2052. }, "" },
  2053. { "Jaune", "civ", {
  2054. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2055. }, "" },
  2056. { "Bleu", "civ", {
  2057. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2058. }, "" },
  2059. { "Bleu Nuit", "civ", {
  2060. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2061. }, "" },
  2062. { "Mauve", "civ", {
  2063. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2064. }, "" },
  2065. { "Orange", "civ", {
  2066. "#(argb,8,8,3)color(1,0.251,0,1)"
  2067. }, "" },
  2068. { "Vert", "civ", {
  2069. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2070. }, "" },
  2071. { "Rose", "civ", {
  2072. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2073. }, "" },
  2074. { "Violet", "civ", {
  2075. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2076. }, "" }
  2077. };
  2078. };
  2079.  
  2080.  
  2081. class focussw1998_civ {
  2082. vItemSpace = 60;
  2083. conditions = "";
  2084. price = 55200;
  2085. textures[] = {
  2086. { "Noir", "civ", {
  2087. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2088. }, "" },
  2089. { "Blanc", "civ", {
  2090. "#(argb,8,8,3)color(1,1,1,1)"
  2091. }, "" },
  2092. { "Gris", "civ", {
  2093. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2094. }, "" },
  2095. { "Sable", "civ", {
  2096. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2097. }, "" },
  2098. { "Rouge", "civ", {
  2099. "#(argb,8,8,3)color(1,0,0,1)"
  2100. }, "" },
  2101. { "Jaune", "civ", {
  2102. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2103. }, "" },
  2104. { "Bleu", "civ", {
  2105. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2106. }, "" },
  2107. { "Bleu Nuit", "civ", {
  2108. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2109. }, "" },
  2110. { "Mauve", "civ", {
  2111. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2112. }, "" },
  2113. { "Orange", "civ", {
  2114. "#(argb,8,8,3)color(1,0.251,0,1)"
  2115. }, "" },
  2116. { "Vert", "civ", {
  2117. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2118. }, "" },
  2119. { "Rose", "civ", {
  2120. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2121. }, "" },
  2122. { "Violet", "civ", {
  2123. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2124. }, "" }
  2125. };
  2126. };
  2127.  
  2128. class focussw2p2_civ {
  2129. vItemSpace = 45;
  2130. conditions = "";
  2131. price = 46950;
  2132. textures[] = {
  2133. { "Noir", "civ", {
  2134. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2135. }, "" },
  2136. { "Blanc", "civ", {
  2137. "#(argb,8,8,3)color(1,1,1,1)"
  2138. }, "" },
  2139. { "Gris", "civ", {
  2140. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2141. }, "" },
  2142. { "Sable", "civ", {
  2143. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2144. }, "" },
  2145. { "Rouge", "civ", {
  2146. "#(argb,8,8,3)color(1,0,0,1)"
  2147. }, "" },
  2148. { "Jaune", "civ", {
  2149. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2150. }, "" },
  2151. { "Bleu", "civ", {
  2152. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2153. }, "" },
  2154. { "Bleu Nuit", "civ", {
  2155. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2156. }, "" },
  2157. { "Mauve", "civ", {
  2158. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2159. }, "" },
  2160. { "Orange", "civ", {
  2161. "#(argb,8,8,3)color(1,0.251,0,1)"
  2162. }, "" },
  2163. { "Vert", "civ", {
  2164. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2165. }, "" },
  2166. { "Rose", "civ", {
  2167. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2168. }, "" },
  2169. { "Violet", "civ", {
  2170. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2171. }, "" }
  2172. };
  2173. };
  2174.  
  2175. class chKa {
  2176. vItemSpace = 20;
  2177. conditions = "";
  2178. price = 8000;
  2179. textures[] = {
  2180. { "Noir", "civ", {
  2181. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2182. }, "" },
  2183. { "Blanc", "civ", {
  2184. "#(argb,8,8,3)color(1,1,1,1)"
  2185. }, "" },
  2186. { "Gris", "civ", {
  2187. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2188. }, "" },
  2189. { "Sable", "civ", {
  2190. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2191. }, "" },
  2192. { "Rouge", "civ", {
  2193. "#(argb,8,8,3)color(1,0,0,1)"
  2194. }, "" },
  2195. { "Jaune", "civ", {
  2196. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2197. }, "" },
  2198. { "Bleu", "civ", {
  2199. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2200. }, "" },
  2201. { "Bleu Nuit", "civ", {
  2202. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2203. }, "" },
  2204. { "Mauve", "civ", {
  2205. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2206. }, "" },
  2207. { "Orange", "civ", {
  2208. "#(argb,8,8,3)color(1,0.251,0,1)"
  2209. }, "" },
  2210. { "Vert", "civ", {
  2211. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2212. }, "" },
  2213. { "Rose", "civ", {
  2214. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2215. }, "" },
  2216. { "Violet", "civ", {
  2217. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2218. }, "" }
  2219. };
  2220. };
  2221. class focussw3_civ {
  2222. vItemSpace = 70;
  2223. conditions = "";
  2224. price = 66800;
  2225. textures[] = {
  2226. { "Noir", "civ", {
  2227. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2228. }, "" },
  2229. { "Blanc", "civ", {
  2230. "#(argb,8,8,3)color(1,1,1,1)"
  2231. }, "" },
  2232. { "Gris", "civ", {
  2233. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2234. }, "" },
  2235. { "Sable", "civ", {
  2236. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2237. }, "" },
  2238. { "Rouge", "civ", {
  2239. "#(argb,8,8,3)color(1,0,0,1)"
  2240. }, "" },
  2241. { "Jaune", "civ", {
  2242. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2243. }, "" },
  2244. { "Bleu", "civ", {
  2245. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2246. }, "" },
  2247. { "Bleu Nuit", "civ", {
  2248. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2249. }, "" },
  2250. { "Mauve", "civ", {
  2251. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2252. }, "" },
  2253. { "Orange", "civ", {
  2254. "#(argb,8,8,3)color(1,0.251,0,1)"
  2255. }, "" },
  2256. { "Vert", "civ", {
  2257. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2258. }, "" },
  2259. { "Rose", "civ", {
  2260. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2261. }, "" },
  2262. { "Violet", "civ", {
  2263. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2264. }, "" }
  2265. };
  2266. };
  2267.  
  2268. class Transitlu_civ {
  2269. vItemSpace = 130;
  2270. conditions = "";
  2271. price = 120520;
  2272. textures[] = {
  2273. { "Noir", "civ", {
  2274. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2275. }, "" },
  2276. { "Blanc", "civ", {
  2277. "#(argb,8,8,3)color(1,1,1,1)"
  2278. }, "" },
  2279. { "Gris", "civ", {
  2280. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2281. }, "" },
  2282. { "Sable", "civ", {
  2283. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2284. }, "" },
  2285. { "Rouge", "civ", {
  2286. "#(argb,8,8,3)color(1,0,0,1)"
  2287. }, "" },
  2288. { "Jaune", "civ", {
  2289. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2290. }, "" },
  2291. { "Bleu", "civ", {
  2292. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2293. }, "" },
  2294. { "Bleu Nuit", "civ", {
  2295. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2296. }, "" },
  2297. { "Mauve", "civ", {
  2298. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2299. }, "" },
  2300. { "Orange", "civ", {
  2301. "#(argb,8,8,3)color(1,0.251,0,1)"
  2302. }, "" },
  2303. { "Vert", "civ", {
  2304. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2305. }, "" },
  2306. { "Rose", "civ", {
  2307. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2308. }, "" },
  2309. { "Violet", "civ", {
  2310. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2311. }, "" }
  2312. };
  2313. };
  2314.  
  2315. class ch_sprinter_civ {
  2316. vItemSpace = 150;
  2317. conditions = "";
  2318. price = 100123;
  2319. textures[] = {
  2320. { "Noir", "civ", {
  2321. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2322. }, "" },
  2323. { "Blanc", "civ", {
  2324. "#(argb,8,8,3)color(1,1,1,1)"
  2325. }, "" },
  2326. { "Gris", "civ", {
  2327. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2328. }, "" },
  2329. { "Sable", "civ", {
  2330. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2331. }, "" },
  2332. { "Rouge", "civ", {
  2333. "#(argb,8,8,3)color(1,0,0,1)"
  2334. }, "" },
  2335. { "Jaune", "civ", {
  2336. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2337. }, "" },
  2338. { "Bleu", "civ", {
  2339. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2340. }, "" },
  2341. { "Bleu Nuit", "civ", {
  2342. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2343. }, "" },
  2344. { "Mauve", "civ", {
  2345. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2346. }, "" },
  2347. { "Orange", "civ", {
  2348. "#(argb,8,8,3)color(1,0.251,0,1)"
  2349. }, "" },
  2350. { "Vert", "civ", {
  2351. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2352. }, "" },
  2353. { "Rose", "civ", {
  2354. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2355. }, "" },
  2356. { "Violet", "civ", {
  2357. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2358. }, "" }
  2359. };
  2360. };
  2361. class chMito {
  2362. vItemSpace = 20;
  2363. conditions = "";
  2364. price = 9590;
  2365. textures[] = {
  2366. { "Noir", "civ", {
  2367. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2368. }, "" },
  2369. { "Blanc", "civ", {
  2370. "#(argb,8,8,3)color(1,1,1,1)"
  2371. }, "" },
  2372. { "Gris", "civ", {
  2373. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2374. }, "" },
  2375. { "Sable", "civ", {
  2376. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2377. }, "" },
  2378. { "Rouge", "civ", {
  2379. "#(argb,8,8,3)color(1,0,0,1)"
  2380. }, "" },
  2381. { "Jaune", "civ", {
  2382. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2383. }, "" },
  2384. { "Bleu", "civ", {
  2385. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2386. }, "" },
  2387. { "Bleu Nuit", "civ", {
  2388. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2389. }, "" },
  2390. { "Mauve", "civ", {
  2391. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2392. }, "" },
  2393. { "Orange", "civ", {
  2394. "#(argb,8,8,3)color(1,0.251,0,1)"
  2395. }, "" },
  2396. { "Vert", "civ", {
  2397. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2398. }, "" },
  2399. { "Rose", "civ", {
  2400. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2401. }, "" },
  2402. { "Violet", "civ", {
  2403. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2404. }, "" }
  2405. };
  2406. };
  2407. class chGiulietta {
  2408. vItemSpace = 25;
  2409. conditions = "";
  2410. price = 12590;
  2411. textures[] = {
  2412. { "Noir", "civ", {
  2413. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2414. }, "" },
  2415. { "Blanc", "civ", {
  2416. "#(argb,8,8,3)color(1,1,1,1)"
  2417. }, "" },
  2418. { "Gris", "civ", {
  2419. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2420. }, "" },
  2421. { "Sable", "civ", {
  2422. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2423. }, "" },
  2424. { "Rouge", "civ", {
  2425. "#(argb,8,8,3)color(1,0,0,1)"
  2426. }, "" },
  2427. { "Jaune", "civ", {
  2428. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2429. }, "" },
  2430. { "Bleu", "civ", {
  2431. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2432. }, "" },
  2433. { "Bleu Nuit", "civ", {
  2434. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2435. }, "" },
  2436. { "Mauve", "civ", {
  2437. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2438. }, "" },
  2439. { "Orange", "civ", {
  2440. "#(argb,8,8,3)color(1,0.251,0,1)"
  2441. }, "" },
  2442. { "Vert", "civ", {
  2443. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2444. }, "" },
  2445. { "Rose", "civ", {
  2446. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2447. }, "" },
  2448. { "Violet", "civ", {
  2449. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2450. }, "" }
  2451. };
  2452. };
  2453. class chBrera {
  2454. vItemSpace = 29;
  2455. conditions = "";
  2456. price = 14590;
  2457. textures[] = {
  2458. { "Noir", "civ", {
  2459. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2460. }, "" },
  2461. { "Blanc", "civ", {
  2462. "#(argb,8,8,3)color(1,1,1,1)"
  2463. }, "" },
  2464. { "Gris", "civ", {
  2465. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2466. }, "" },
  2467. { "Sable", "civ", {
  2468. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2469. }, "" },
  2470. { "Rouge", "civ", {
  2471. "#(argb,8,8,3)color(1,0,0,1)"
  2472. }, "" },
  2473. { "Jaune", "civ", {
  2474. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2475. }, "" },
  2476. { "Bleu", "civ", {
  2477. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2478. }, "" },
  2479. { "Bleu Nuit", "civ", {
  2480. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2481. }, "" },
  2482. { "Mauve", "civ", {
  2483. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2484. }, "" },
  2485. { "Orange", "civ", {
  2486. "#(argb,8,8,3)color(1,0.251,0,1)"
  2487. }, "" },
  2488. { "Vert", "civ", {
  2489. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2490. }, "" },
  2491. { "Rose", "civ", {
  2492. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2493. }, "" },
  2494. { "Violet", "civ", {
  2495. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2496. }, "" }
  2497. };
  2498. };
  2499. class Abarth500lu_civ {
  2500. vItemSpace = 25;
  2501. conditions = "";
  2502. price = 13590;
  2503. textures[] = {
  2504. { "Noir", "civ", {
  2505. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2506. }, "" },
  2507. { "Blanc", "civ", {
  2508. "#(argb,8,8,3)color(1,1,1,1)"
  2509. }, "" },
  2510. { "Gris", "civ", {
  2511. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2512. }, "" },
  2513. { "Sable", "civ", {
  2514. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2515. }, "" },
  2516. { "Rouge", "civ", {
  2517. "#(argb,8,8,3)color(1,0,0,1)"
  2518. }, "" },
  2519. { "Jaune", "civ", {
  2520. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2521. }, "" },
  2522. { "Bleu", "civ", {
  2523. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2524. }, "" },
  2525. { "Bleu Nuit", "civ", {
  2526. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2527. }, "" },
  2528. { "Mauve", "civ", {
  2529. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2530. }, "" },
  2531. { "Orange", "civ", {
  2532. "#(argb,8,8,3)color(1,0.251,0,1)"
  2533. }, "" },
  2534. { "Vert", "civ", {
  2535. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2536. }, "" },
  2537. { "Rose", "civ", {
  2538. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2539. }, "" },
  2540. { "Violet", "civ", {
  2541. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2542. }, "" }
  2543. };
  2544. };
  2545.  
  2546. class Trafic1pl_civ {
  2547. vItemSpace = 45;
  2548. conditions = "";
  2549. price = 30350;
  2550. textures[] = {
  2551. { "Noir", "civ", {
  2552. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2553. }, "" },
  2554. { "Blanc", "civ", {
  2555. "#(argb,8,8,3)color(1,1,1,1)"
  2556. }, "" },
  2557. { "Gris", "civ", {
  2558. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2559. }, "" },
  2560. { "Sable", "civ", {
  2561. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2562. }, "" },
  2563. { "Rouge", "civ", {
  2564. "#(argb,8,8,3)color(1,0,0,1)"
  2565. }, "" },
  2566. { "Jaune", "civ", {
  2567. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2568. }, "" },
  2569. { "Bleu", "civ", {
  2570. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2571. }, "" },
  2572. { "Bleu Nuit", "civ", {
  2573. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2574. }, "" },
  2575. { "Mauve", "civ", {
  2576. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2577. }, "" },
  2578. { "Orange", "civ", {
  2579. "#(argb,8,8,3)color(1,0.251,0,1)"
  2580. }, "" },
  2581. { "Vert", "civ", {
  2582. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2583. }, "" },
  2584. { "Rose", "civ", {
  2585. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2586. }, "" },
  2587. { "Violet", "civ", {
  2588. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2589. }, "" }
  2590. };
  2591. };
  2592.  
  2593. class Berlingo2_civ {
  2594. vItemSpace = 60;
  2595. conditions = "";
  2596. price = 53350;
  2597. textures[] = {
  2598. { "Noir", "civ", {
  2599. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2600. }, "" },
  2601. { "Blanc", "civ", {
  2602. "#(argb,8,8,3)color(1,1,1,1)"
  2603. }, "" },
  2604. { "Gris", "civ", {
  2605. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2606. }, "" },
  2607. { "Sable", "civ", {
  2608. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2609. }, "" },
  2610. { "Rouge", "civ", {
  2611. "#(argb,8,8,3)color(1,0,0,1)"
  2612. }, "" },
  2613. { "Jaune", "civ", {
  2614. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2615. }, "" },
  2616. { "Bleu", "civ", {
  2617. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2618. }, "" },
  2619. { "Bleu Nuit", "civ", {
  2620. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2621. }, "" },
  2622. { "Mauve", "civ", {
  2623. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2624. }, "" },
  2625. { "Orange", "civ", {
  2626. "#(argb,8,8,3)color(1,0.251,0,1)"
  2627. }, "" },
  2628. { "Vert", "civ", {
  2629. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2630. }, "" },
  2631. { "Rose", "civ", {
  2632. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2633. }, "" },
  2634. { "Violet", "civ", {
  2635. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2636. }, "" }
  2637. };
  2638. };
  2639.  
  2640. class ch2CV {
  2641. vItemSpace = 20;
  2642. conditions = "";
  2643. price = 13520;
  2644. textures[] = {
  2645. { "Noir", "civ", {
  2646. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2647. }, "" },
  2648. { "Blanc", "civ", {
  2649. "#(argb,8,8,3)color(1,1,1,1)"
  2650. }, "" },
  2651. { "Gris", "civ", {
  2652. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2653. }, "" },
  2654. { "Sable", "civ", {
  2655. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2656. }, "" },
  2657. { "Rouge", "civ", {
  2658. "#(argb,8,8,3)color(1,0,0,1)"
  2659. }, "" },
  2660. { "Jaune", "civ", {
  2661. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2662. }, "" },
  2663. { "Bleu", "civ", {
  2664. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2665. }, "" },
  2666. { "Bleu Nuit", "civ", {
  2667. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2668. }, "" },
  2669. { "Mauve", "civ", {
  2670. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2671. }, "" },
  2672. { "Orange", "civ", {
  2673. "#(argb,8,8,3)color(1,0.251,0,1)"
  2674. }, "" },
  2675. { "Vert", "civ", {
  2676. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2677. }, "" },
  2678. { "Rose", "civ", {
  2679. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2680. }, "" },
  2681. { "Violet", "civ", {
  2682. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2683. }, "" }
  2684. };
  2685. };
  2686. class berlingo1_civ {
  2687. vItemSpace = 40;
  2688. conditions = "";
  2689. price = 28300;
  2690. textures[] = {
  2691. { "Noir", "civ", {
  2692. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2693. }, "" },
  2694. { "Blanc", "civ", {
  2695. "#(argb,8,8,3)color(1,1,1,1)"
  2696. }, "" },
  2697. { "Gris", "civ", {
  2698. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2699. }, "" },
  2700. { "Sable", "civ", {
  2701. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2702. }, "" },
  2703. { "Rouge", "civ", {
  2704. "#(argb,8,8,3)color(1,0,0,1)"
  2705. }, "" },
  2706. { "Jaune", "civ", {
  2707. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2708. }, "" },
  2709. { "Bleu", "civ", {
  2710. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2711. }, "" },
  2712. { "Bleu Nuit", "civ", {
  2713. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2714. }, "" },
  2715. { "Mauve", "civ", {
  2716. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2717. }, "" },
  2718. { "Orange", "civ", {
  2719. "#(argb,8,8,3)color(1,0.251,0,1)"
  2720. }, "" },
  2721. { "Vert", "civ", {
  2722. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2723. }, "" },
  2724. { "Rose", "civ", {
  2725. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2726. }, "" },
  2727. { "Violet", "civ", {
  2728. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2729. }, "" }
  2730. };
  2731. };
  2732.  
  2733. class chc2 {
  2734. vItemSpace = 25;
  2735. conditions = "";
  2736. price = 6600;
  2737. textures[] = {
  2738. { "Noir", "civ", {
  2739. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2740. }, "" },
  2741. { "Blanc", "civ", {
  2742. "#(argb,8,8,3)color(1,1,1,1)"
  2743. }, "" },
  2744. { "Gris", "civ", {
  2745. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2746. }, "" },
  2747. { "Sable", "civ", {
  2748. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2749. }, "" },
  2750. { "Rouge", "civ", {
  2751. "#(argb,8,8,3)color(1,0,0,1)"
  2752. }, "" },
  2753. { "Jaune", "civ", {
  2754. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2755. }, "" },
  2756. { "Bleu", "civ", {
  2757. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2758. }, "" },
  2759. { "Bleu Nuit", "civ", {
  2760. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2761. }, "" },
  2762. { "Mauve", "civ", {
  2763. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2764. }, "" },
  2765. { "Orange", "civ", {
  2766. "#(argb,8,8,3)color(1,0.251,0,1)"
  2767. }, "" },
  2768. { "Vert", "civ", {
  2769. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2770. }, "" },
  2771. { "Rose", "civ", {
  2772. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2773. }, "" },
  2774. { "Violet", "civ", {
  2775. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2776. }, "" }
  2777. };
  2778. };
  2779.  
  2780. class c4hch_civ {
  2781. vItemSpace = 20;
  2782. conditions = "";
  2783. price = 22100;
  2784. textures[] = {
  2785. { "Noir", "civ", {
  2786. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2787. }, "" },
  2788. { "Blanc", "civ", {
  2789. "#(argb,8,8,3)color(1,1,1,1)"
  2790. }, "" },
  2791. { "Gris", "civ", {
  2792. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2793. }, "" },
  2794. { "Sable", "civ", {
  2795. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2796. }, "" },
  2797. { "Rouge", "civ", {
  2798. "#(argb,8,8,3)color(1,0,0,1)"
  2799. }, "" },
  2800. { "Jaune", "civ", {
  2801. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2802. }, "" },
  2803. { "Bleu", "civ", {
  2804. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2805. }, "" },
  2806. { "Bleu Nuit", "civ", {
  2807. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2808. }, "" },
  2809. { "Mauve", "civ", {
  2810. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2811. }, "" },
  2812. { "Orange", "civ", {
  2813. "#(argb,8,8,3)color(1,0.251,0,1)"
  2814. }, "" },
  2815. { "Vert", "civ", {
  2816. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2817. }, "" },
  2818. { "Rose", "civ", {
  2819. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2820. }, "" },
  2821. { "Violet", "civ", {
  2822. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2823. }, "" }
  2824. };
  2825. };
  2826.  
  2827. class chMehari {
  2828. vItemSpace = 30;
  2829. conditions = "license_civ_Maire";
  2830. price = 14500;
  2831. textures[] = {
  2832. { "Noir", "civ", {
  2833. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2834. }, "" },
  2835. { "Blanc", "civ", {
  2836. "#(argb,8,8,3)color(1,1,1,1)"
  2837. }, "" },
  2838. { "Gris", "civ", {
  2839. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2840. }, "" },
  2841. { "Sable", "civ", {
  2842. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2843. }, "" },
  2844. { "Rouge", "civ", {
  2845. "#(argb,8,8,3)color(1,0,0,1)"
  2846. }, "" },
  2847. { "Jaune", "civ", {
  2848. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2849. }, "" },
  2850. { "Bleu", "civ", {
  2851. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2852. }, "" },
  2853. { "Bleu Nuit", "civ", {
  2854. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2855. }, "" },
  2856. { "Mauve", "civ", {
  2857. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2858. }, "" },
  2859. { "Orange", "civ", {
  2860. "#(argb,8,8,3)color(1,0.251,0,1)"
  2861. }, "" },
  2862. { "Vert", "civ", {
  2863. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2864. }, "" },
  2865. { "Rose", "civ", {
  2866. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2867. }, "" },
  2868. { "Violet", "civ", {
  2869. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2870. }, "" }
  2871. };
  2872. };
  2873. class chds4 {
  2874. vItemSpace = 30;
  2875. conditions = "";
  2876. price = 13600;
  2877. textures[] = {
  2878. { "Noir", "civ", {
  2879. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2880. }, "" },
  2881. { "Blanc", "civ", {
  2882. "#(argb,8,8,3)color(1,1,1,1)"
  2883. }, "" },
  2884. { "Gris", "civ", {
  2885. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2886. }, "" },
  2887. { "Sable", "civ", {
  2888. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2889. }, "" },
  2890. { "Rouge", "civ", {
  2891. "#(argb,8,8,3)color(1,0,0,1)"
  2892. }, "" },
  2893. { "Jaune", "civ", {
  2894. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2895. }, "" },
  2896. { "Bleu", "civ", {
  2897. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2898. }, "" },
  2899. { "Bleu Nuit", "civ", {
  2900. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2901. }, "" },
  2902. { "Mauve", "civ", {
  2903. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2904. }, "" },
  2905. { "Orange", "civ", {
  2906. "#(argb,8,8,3)color(1,0.251,0,1)"
  2907. }, "" },
  2908. { "Vert", "civ", {
  2909. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2910. }, "" },
  2911. { "Rose", "civ", {
  2912. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2913. }, "" },
  2914. { "Violet", "civ", {
  2915. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2916. }, "" }
  2917. };
  2918. };
  2919. class chds3 {
  2920. vItemSpace = 25;
  2921. conditions = "";
  2922. price = 9600;
  2923. textures[] = {
  2924. { "Noir", "civ", {
  2925. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2926. }, "" },
  2927. { "Blanc", "civ", {
  2928. "#(argb,8,8,3)color(1,1,1,1)"
  2929. }, "" },
  2930. { "Gris", "civ", {
  2931. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2932. }, "" },
  2933. { "Sable", "civ", {
  2934. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2935. }, "" },
  2936. { "Rouge", "civ", {
  2937. "#(argb,8,8,3)color(1,0,0,1)"
  2938. }, "" },
  2939. { "Jaune", "civ", {
  2940. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2941. }, "" },
  2942. { "Bleu", "civ", {
  2943. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2944. }, "" },
  2945. { "Bleu Nuit", "civ", {
  2946. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2947. }, "" },
  2948. { "Mauve", "civ", {
  2949. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2950. }, "" },
  2951. { "Orange", "civ", {
  2952. "#(argb,8,8,3)color(1,0.251,0,1)"
  2953. }, "" },
  2954. { "Vert", "civ", {
  2955. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  2956. }, "" },
  2957. { "Rose", "civ", {
  2958. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  2959. }, "" },
  2960. { "Violet", "civ", {
  2961. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  2962. }, "" }
  2963. };
  2964. };
  2965.  
  2966. class Peugeot_308_civ {
  2967. vItemSpace = 30;
  2968. conditions = "";
  2969. price = 18560;
  2970. textures[] = {
  2971. { "Noir", "civ", {
  2972. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2973. }, "" },
  2974. { "Blanc", "civ", {
  2975. "#(argb,8,8,3)color(1,1,1,1)"
  2976. }, "" },
  2977. { "Gris", "civ", {
  2978. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  2979. }, "" },
  2980. { "Sable", "civ", {
  2981. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  2982. }, "" },
  2983. { "Rouge", "civ", {
  2984. "#(argb,8,8,3)color(1,0,0,1)"
  2985. }, "" },
  2986. { "Jaune", "civ", {
  2987. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  2988. }, "" },
  2989. { "Bleu", "civ", {
  2990. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  2991. }, "" },
  2992. { "Bleu Nuit", "civ", {
  2993. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  2994. }, "" },
  2995. { "Mauve", "civ", {
  2996. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  2997. }, "" },
  2998. { "Orange", "civ", {
  2999. "#(argb,8,8,3)color(1,0.251,0,1)"
  3000. }, "" },
  3001. { "Vert", "civ", {
  3002. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3003. }, "" },
  3004. { "Rose", "civ", {
  3005. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3006. }, "" },
  3007. { "Violet", "civ", {
  3008. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3009. }, "" }
  3010. };
  3011. };
  3012. class chduster14_civ {
  3013. vItemSpace = 40;
  3014. conditions = "";
  3015. price = 28560;
  3016. textures[] = {
  3017. { "Noir", "civ", {
  3018. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3019. }, "" },
  3020. { "Blanc", "civ", {
  3021. "#(argb,8,8,3)color(1,1,1,1)"
  3022. }, "" },
  3023. { "Gris", "civ", {
  3024. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3025. }, "" },
  3026. { "Sable", "civ", {
  3027. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3028. }, "" },
  3029. { "Rouge", "civ", {
  3030. "#(argb,8,8,3)color(1,0,0,1)"
  3031. }, "" },
  3032. { "Jaune", "civ", {
  3033. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3034. }, "" },
  3035. { "Bleu", "civ", {
  3036. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3037. }, "" },
  3038. { "Bleu Nuit", "civ", {
  3039. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3040. }, "" },
  3041. { "Mauve", "civ", {
  3042. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3043. }, "" },
  3044. { "Orange", "civ", {
  3045. "#(argb,8,8,3)color(1,0.251,0,1)"
  3046. }, "" },
  3047. { "Vert", "civ", {
  3048. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3049. }, "" },
  3050. { "Rose", "civ", {
  3051. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3052. }, "" },
  3053. { "Violet", "civ", {
  3054. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3055. }, "" }
  3056. };
  3057. };
  3058.  
  3059. class mondeoswch_civ {
  3060. vItemSpace = 40;
  3061. conditions = "";
  3062. price = 38550;
  3063. textures[] = {
  3064. { "Noir", "civ", {
  3065. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3066. }, "" },
  3067. { "Blanc", "civ", {
  3068. "#(argb,8,8,3)color(1,1,1,1)"
  3069. }, "" },
  3070. { "Gris", "civ", {
  3071. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3072. }, "" },
  3073. { "Sable", "civ", {
  3074. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3075. }, "" },
  3076. { "Rouge", "civ", {
  3077. "#(argb,8,8,3)color(1,0,0,1)"
  3078. }, "" },
  3079. { "Jaune", "civ", {
  3080. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3081. }, "" },
  3082. { "Bleu", "civ", {
  3083. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3084. }, "" },
  3085. { "Bleu Nuit", "civ", {
  3086. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3087. }, "" },
  3088. { "Mauve", "civ", {
  3089. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3090. }, "" },
  3091. { "Orange", "civ", {
  3092. "#(argb,8,8,3)color(1,0.251,0,1)"
  3093. }, "" },
  3094. { "Vert", "civ", {
  3095. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3096. }, "" },
  3097. { "Rose", "civ", {
  3098. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3099. }, "" },
  3100. { "Violet", "civ", {
  3101. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3102. }, "" }
  3103. };
  3104. };
  3105.  
  3106. class chmeganers_civ {
  3107. vItemSpace = 50;
  3108. conditions = "";
  3109. price = 134550;
  3110. textures[] = {
  3111. { "Noir", "civ", {
  3112. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3113. }, "" },
  3114. { "Blanc", "civ", {
  3115. "#(argb,8,8,3)color(1,1,1,1)"
  3116. }, "" },
  3117. { "Gris", "civ", {
  3118. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3119. }, "" },
  3120. { "Sable", "civ", {
  3121. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3122. }, "" },
  3123. { "Rouge", "civ", {
  3124. "#(argb,8,8,3)color(1,0,0,1)"
  3125. }, "" },
  3126. { "Jaune", "civ", {
  3127. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3128. }, "" },
  3129. { "Bleu", "civ", {
  3130. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3131. }, "" },
  3132. { "Bleu Nuit", "civ", {
  3133. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3134. }, "" },
  3135. { "Mauve", "civ", {
  3136. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3137. }, "" },
  3138. { "Orange", "civ", {
  3139. "#(argb,8,8,3)color(1,0.251,0,1)"
  3140. }, "" },
  3141. { "Vert", "civ", {
  3142. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3143. }, "" },
  3144. { "Rose", "civ", {
  3145. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3146. }, "" },
  3147. { "Violet", "civ", {
  3148. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3149. }, "" }
  3150. };
  3151. };
  3152.  
  3153. class chmegane_4_estate_civ {
  3154. vItemSpace = 50;
  3155. conditions = "";
  3156. price = 38690;
  3157. textures[] = {
  3158. { "Noir", "civ", {
  3159. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3160. }, "" },
  3161. { "Blanc", "civ", {
  3162. "#(argb,8,8,3)color(1,1,1,1)"
  3163. }, "" },
  3164. { "Gris", "civ", {
  3165. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3166. }, "" },
  3167. { "Sable", "civ", {
  3168. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3169. }, "" },
  3170. { "Rouge", "civ", {
  3171. "#(argb,8,8,3)color(1,0,0,1)"
  3172. }, "" },
  3173. { "Jaune", "civ", {
  3174. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3175. }, "" },
  3176. { "Bleu", "civ", {
  3177. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3178. }, "" },
  3179. { "Bleu Nuit", "civ", {
  3180. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3181. }, "" },
  3182. { "Mauve", "civ", {
  3183. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3184. }, "" },
  3185. { "Orange", "civ", {
  3186. "#(argb,8,8,3)color(1,0.251,0,1)"
  3187. }, "" },
  3188. { "Vert", "civ", {
  3189. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3190. }, "" },
  3191. { "Rose", "civ", {
  3192. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3193. }, "" },
  3194. { "Violet", "civ", {
  3195. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3196. }, "" }
  3197. };
  3198. };
  3199.  
  3200. class Renault_Espace_civ {
  3201. vItemSpace = 30;
  3202. conditions = "";
  3203. price = 5500;
  3204. textures[] = {
  3205. { "Noir", "civ", {
  3206. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3207. }, "" },
  3208. { "Blanc", "civ", {
  3209. "#(argb,8,8,3)color(1,1,1,1)"
  3210. }, "" },
  3211. { "Gris", "civ", {
  3212. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3213. }, "" },
  3214. { "Sable", "civ", {
  3215. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3216. }, "" },
  3217. { "Rouge", "civ", {
  3218. "#(argb,8,8,3)color(1,0,0,1)"
  3219. }, "" },
  3220. { "Jaune", "civ", {
  3221. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3222. }, "" },
  3223. { "Bleu", "civ", {
  3224. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3225. }, "" },
  3226. { "Bleu Nuit", "civ", {
  3227. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3228. }, "" },
  3229. { "Mauve", "civ", {
  3230. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3231. }, "" },
  3232. { "Orange", "civ", {
  3233. "#(argb,8,8,3)color(1,0.251,0,1)"
  3234. }, "" },
  3235. { "Vert", "civ", {
  3236. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3237. }, "" },
  3238. { "Rose", "civ", {
  3239. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3240. }, "" },
  3241. { "Violet", "civ", {
  3242. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3243. }, "" }
  3244. };
  3245. };
  3246.  
  3247. class AlessioRS4 {
  3248. vItemSpace = 25;
  3249. conditions = "";
  3250. price = 156000;
  3251. textures[] = {
  3252. { "Noir", "civ", {
  3253. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3254. }, "" },
  3255. { "Blanc", "civ", {
  3256. "#(argb,8,8,3)color(1,1,1,1)"
  3257. }, "" },
  3258. { "Gris", "civ", {
  3259. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3260. }, "" },
  3261. { "Sable", "civ", {
  3262. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3263. }, "" },
  3264. { "Rouge", "civ", {
  3265. "#(argb,8,8,3)color(1,0,0,1)"
  3266. }, "" },
  3267. { "Jaune", "civ", {
  3268. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3269. }, "" },
  3270. { "Bleu", "civ", {
  3271. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3272. }, "" },
  3273. { "Bleu Nuit", "civ", {
  3274. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3275. }, "" },
  3276. { "Mauve", "civ", {
  3277. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3278. }, "" },
  3279. { "Orange", "civ", {
  3280. "#(argb,8,8,3)color(1,0.251,0,1)"
  3281. }, "" },
  3282. { "Vert", "civ", {
  3283. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3284. }, "" },
  3285. { "Rose", "civ", {
  3286. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3287. }, "" },
  3288. { "Violet", "civ", {
  3289. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3290. }, "" }
  3291. };
  3292. };
  3293. class RS3lu_civ {
  3294. vItemSpace = 25;
  3295. conditions = "";
  3296. price = 156000;
  3297. textures[] = {
  3298. { "Noir", "civ", {
  3299. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3300. }, "" },
  3301. { "Blanc", "civ", {
  3302. "#(argb,8,8,3)color(1,1,1,1)"
  3303. }, "" },
  3304. { "Gris", "civ", {
  3305. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3306. }, "" },
  3307. { "Sable", "civ", {
  3308. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3309. }, "" },
  3310. { "Rouge", "civ", {
  3311. "#(argb,8,8,3)color(1,0,0,1)"
  3312. }, "" },
  3313. { "Jaune", "civ", {
  3314. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3315. }, "" },
  3316. { "Bleu", "civ", {
  3317. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3318. }, "" },
  3319. { "Bleu Nuit", "civ", {
  3320. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3321. }, "" },
  3322. { "Mauve", "civ", {
  3323. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3324. }, "" },
  3325. { "Orange", "civ", {
  3326. "#(argb,8,8,3)color(1,0.251,0,1)"
  3327. }, "" },
  3328. { "Vert", "civ", {
  3329. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3330. }, "" },
  3331. { "Rose", "civ", {
  3332. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3333. }, "" },
  3334. { "Violet", "civ", {
  3335. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3336. }, "" }
  3337. };
  3338. };
  3339.  
  3340. class chfiesta {
  3341. vItemSpace = 25;
  3342. conditions = "";
  3343. price = 22500;
  3344. textures[] = {
  3345. { "Noir", "civ", {
  3346. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3347. }, "" },
  3348. { "Blanc", "civ", {
  3349. "#(argb,8,8,3)color(1,1,1,1)"
  3350. }, "" },
  3351. { "Gris", "civ", {
  3352. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3353. }, "" },
  3354. { "Sable", "civ", {
  3355. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3356. }, "" },
  3357. { "Rouge", "civ", {
  3358. "#(argb,8,8,3)color(1,0,0,1)"
  3359. }, "" },
  3360. { "Jaune", "civ", {
  3361. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3362. }, "" },
  3363. { "Bleu", "civ", {
  3364. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3365. }, "" },
  3366. { "Bleu Nuit", "civ", {
  3367. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3368. }, "" },
  3369. { "Mauve", "civ", {
  3370. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3371. }, "" },
  3372. { "Orange", "civ", {
  3373. "#(argb,8,8,3)color(1,0.251,0,1)"
  3374. }, "" },
  3375. { "Vert", "civ", {
  3376. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3377. }, "" },
  3378. { "Rose", "civ", {
  3379. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3380. }, "" },
  3381. { "Violet", "civ", {
  3382. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3383. }, "" }
  3384. };
  3385. };
  3386.  
  3387. class Crownlu {
  3388. vItemSpace = 30;
  3389. conditions = "";
  3390. price = 42500;
  3391. textures[] = {
  3392. { "Noir", "civ", {
  3393. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3394. }, "" },
  3395. { "Blanc", "civ", {
  3396. "#(argb,8,8,3)color(1,1,1,1)"
  3397. }, "" },
  3398. { "Gris", "civ", {
  3399. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3400. }, "" },
  3401. { "Sable", "civ", {
  3402. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3403. }, "" },
  3404. { "Rouge", "civ", {
  3405. "#(argb,8,8,3)color(1,0,0,1)"
  3406. }, "" },
  3407. { "Jaune", "civ", {
  3408. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3409. }, "" },
  3410. { "Bleu", "civ", {
  3411. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3412. }, "" },
  3413. { "Bleu Nuit", "civ", {
  3414. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3415. }, "" },
  3416. { "Mauve", "civ", {
  3417. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3418. }, "" },
  3419. { "Orange", "civ", {
  3420. "#(argb,8,8,3)color(1,0.251,0,1)"
  3421. }, "" },
  3422. { "Vert", "civ", {
  3423. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3424. }, "" },
  3425. { "Rose", "civ", {
  3426. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3427. }, "" },
  3428. { "Violet", "civ", {
  3429. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3430. }, "" }
  3431. };
  3432. };
  3433.  
  3434. class Dacia_Duster_civ {
  3435. vItemSpace = 50;
  3436. conditions = "";
  3437. price = 42360;
  3438. textures[] = {
  3439. { "Noir", "civ", {
  3440. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3441. }, "" },
  3442. { "Blanc", "civ", {
  3443. "#(argb,8,8,3)color(1,1,1,1)"
  3444. }, "" },
  3445. { "Gris", "civ", {
  3446. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3447. }, "" },
  3448. { "Sable", "civ", {
  3449. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3450. }, "" },
  3451. { "Rouge", "civ", {
  3452. "#(argb,8,8,3)color(1,0,0,1)"
  3453. }, "" },
  3454. { "Jaune", "civ", {
  3455. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3456. }, "" },
  3457. { "Bleu", "civ", {
  3458. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3459. }, "" },
  3460. { "Bleu Nuit", "civ", {
  3461. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3462. }, "" },
  3463. { "Mauve", "civ", {
  3464. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3465. }, "" },
  3466. { "Orange", "civ", {
  3467. "#(argb,8,8,3)color(1,0.251,0,1)"
  3468. }, "" },
  3469. { "Vert", "civ", {
  3470. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3471. }, "" },
  3472. { "Rose", "civ", {
  3473. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3474. }, "" },
  3475. { "Violet", "civ", {
  3476. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3477. }, "" }
  3478. };
  3479. };
  3480.  
  3481. class chBeetle {
  3482. vItemSpace = 40;
  3483. conditions = "";
  3484. price = 58201;
  3485. textures[] = {
  3486. { "Noir", "civ", {
  3487. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3488. }, "" },
  3489. { "Blanc", "civ", {
  3490. "#(argb,8,8,3)color(1,1,1,1)"
  3491. }, "" },
  3492. { "Gris", "civ", {
  3493. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3494. }, "" },
  3495. { "Sable", "civ", {
  3496. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3497. }, "" },
  3498. { "Rouge", "civ", {
  3499. "#(argb,8,8,3)color(1,0,0,1)"
  3500. }, "" },
  3501. { "Jaune", "civ", {
  3502. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3503. }, "" },
  3504. { "Bleu", "civ", {
  3505. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3506. }, "" },
  3507. { "Bleu Nuit", "civ", {
  3508. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3509. }, "" },
  3510. { "Mauve", "civ", {
  3511. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3512. }, "" },
  3513. { "Orange", "civ", {
  3514. "#(argb,8,8,3)color(1,0.251,0,1)"
  3515. }, "" },
  3516. { "Vert", "civ", {
  3517. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3518. }, "" },
  3519. { "Rose", "civ", {
  3520. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3521. }, "" },
  3522. { "Violet", "civ", {
  3523. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3524. }, "" }
  3525. };
  3526. };
  3527.  
  3528. class ch508 {
  3529. vItemSpace = 55;
  3530. conditions = "";
  3531. price = 46850;
  3532. textures[] = {
  3533. { "Noir", "civ", {
  3534. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3535. }, "" },
  3536. { "Blanc", "civ", {
  3537. "#(argb,8,8,3)color(1,1,1,1)"
  3538. }, "" },
  3539. { "Gris", "civ", {
  3540. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3541. }, "" },
  3542. { "Sable", "civ", {
  3543. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3544. }, "" },
  3545. { "Rouge", "civ", {
  3546. "#(argb,8,8,3)color(1,0,0,1)"
  3547. }, "" },
  3548. { "Jaune", "civ", {
  3549. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3550. }, "" },
  3551. { "Bleu", "civ", {
  3552. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3553. }, "" },
  3554. { "Bleu Nuit", "civ", {
  3555. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3556. }, "" },
  3557. { "Mauve", "civ", {
  3558. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3559. }, "" },
  3560. { "Orange", "civ", {
  3561. "#(argb,8,8,3)color(1,0.251,0,1)"
  3562. }, "" },
  3563. { "Vert", "civ", {
  3564. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3565. }, "" },
  3566. { "Rose", "civ", {
  3567. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3568. }, "" },
  3569. { "Violet", "civ", {
  3570. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3571. }, "" }
  3572. };
  3573. };
  3574.  
  3575. class Mk3lu_civ {
  3576. vItemSpace = 25;
  3577. conditions = "";
  3578. price = 19500;
  3579. textures[] = {
  3580. { "Noir", "civ", {
  3581. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3582. }, "" },
  3583. { "Blanc", "civ", {
  3584. "#(argb,8,8,3)color(1,1,1,1)"
  3585. }, "" },
  3586. { "Gris", "civ", {
  3587. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3588. }, "" },
  3589. { "Sable", "civ", {
  3590. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3591. }, "" },
  3592. { "Rouge", "civ", {
  3593. "#(argb,8,8,3)color(1,0,0,1)"
  3594. }, "" },
  3595. { "Jaune", "civ", {
  3596. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3597. }, "" },
  3598. { "Bleu", "civ", {
  3599. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3600. }, "" },
  3601. { "Bleu Nuit", "civ", {
  3602. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3603. }, "" },
  3604. { "Mauve", "civ", {
  3605. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3606. }, "" },
  3607. { "Orange", "civ", {
  3608. "#(argb,8,8,3)color(1,0.251,0,1)"
  3609. }, "" },
  3610. { "Vert", "civ", {
  3611. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3612. }, "" },
  3613. { "Rose", "civ", {
  3614. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3615. }, "" },
  3616. { "Violet", "civ", {
  3617. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3618. }, "" }
  3619. };
  3620. };
  3621.  
  3622. class CLS63lu_civ {
  3623. vItemSpace = 25;
  3624. conditions = "";
  3625. price = 450120;
  3626. textures[] = {
  3627. { "Noir", "civ", {
  3628. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3629. }, "" },
  3630. { "Blanc", "civ", {
  3631. "#(argb,8,8,3)color(1,1,1,1)"
  3632. }, "" },
  3633. { "Gris", "civ", {
  3634. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3635. }, "" },
  3636. { "Sable", "civ", {
  3637. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3638. }, "" },
  3639. { "Rouge", "civ", {
  3640. "#(argb,8,8,3)color(1,0,0,1)"
  3641. }, "" },
  3642. { "Jaune", "civ", {
  3643. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3644. }, "" },
  3645. { "Bleu", "civ", {
  3646. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3647. }, "" },
  3648. { "Bleu Nuit", "civ", {
  3649. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3650. }, "" },
  3651. { "Mauve", "civ", {
  3652. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3653. }, "" },
  3654. { "Orange", "civ", {
  3655. "#(argb,8,8,3)color(1,0.251,0,1)"
  3656. }, "" },
  3657. { "Vert", "civ", {
  3658. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3659. }, "" },
  3660. { "Rose", "civ", {
  3661. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3662. }, "" },
  3663. { "Violet", "civ", {
  3664. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3665. }, "" }
  3666. };
  3667. };
  3668.  
  3669. class AlessioC63 {
  3670. vItemSpace = 50;
  3671. conditions = "";
  3672. price = 1500000;
  3673. textures[] = {
  3674. { "Noir", "civ", {
  3675. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3676. }, "" },
  3677. { "Blanc", "civ", {
  3678. "#(argb,8,8,3)color(1,1,1,1)"
  3679. }, "" },
  3680. { "Gris", "civ", {
  3681. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3682. }, "" },
  3683. { "Sable", "civ", {
  3684. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3685. }, "" },
  3686. { "Rouge", "civ", {
  3687. "#(argb,8,8,3)color(1,0,0,1)"
  3688. }, "" },
  3689. { "Jaune", "civ", {
  3690. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3691. }, "" },
  3692. { "Bleu", "civ", {
  3693. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3694. }, "" },
  3695. { "Bleu Nuit", "civ", {
  3696. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3697. }, "" },
  3698. { "Mauve", "civ", {
  3699. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3700. }, "" },
  3701. { "Orange", "civ", {
  3702. "#(argb,8,8,3)color(1,0.251,0,1)"
  3703. }, "" },
  3704. { "Vert", "civ", {
  3705. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3706. }, "" },
  3707. { "Rose", "civ", {
  3708. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3709. }, "" },
  3710. { "Violet", "civ", {
  3711. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3712. }, "" }
  3713. };
  3714. };
  3715.  
  3716. class AlessioBM4 {
  3717. vItemSpace = 25;
  3718. conditions = "";
  3719. price = 250120;
  3720. textures[] = {
  3721. { "Noir", "civ", {
  3722. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3723. }, "" },
  3724. { "Blanc", "civ", {
  3725. "#(argb,8,8,3)color(1,1,1,1)"
  3726. }, "" },
  3727. { "Gris", "civ", {
  3728. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3729. }, "" },
  3730. { "Sable", "civ", {
  3731. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3732. }, "" },
  3733. { "Rouge", "civ", {
  3734. "#(argb,8,8,3)color(1,0,0,1)"
  3735. }, "" },
  3736. { "Jaune", "civ", {
  3737. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3738. }, "" },
  3739. { "Bleu", "civ", {
  3740. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3741. }, "" },
  3742. { "Bleu Nuit", "civ", {
  3743. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3744. }, "" },
  3745. { "Mauve", "civ", {
  3746. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3747. }, "" },
  3748. { "Orange", "civ", {
  3749. "#(argb,8,8,3)color(1,0.251,0,1)"
  3750. }, "" },
  3751. { "Vert", "civ", {
  3752. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3753. }, "" },
  3754. { "Rose", "civ", {
  3755. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3756. }, "" },
  3757. { "Violet", "civ", {
  3758. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3759. }, "" }
  3760. };
  3761. };
  3762.  
  3763. class V250_civ {
  3764. vItemSpace = 90;
  3765. conditions = "";
  3766. price = 73500;
  3767. textures[] = {
  3768. { "Noir", "civ", {
  3769. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3770. }, "" },
  3771. { "Blanc", "civ", {
  3772. "#(argb,8,8,3)color(1,1,1,1)"
  3773. }, "" },
  3774. { "Gris", "civ", {
  3775. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3776. }, "" },
  3777. { "Sable", "civ", {
  3778. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3779. }, "" },
  3780. { "Rouge", "civ", {
  3781. "#(argb,8,8,3)color(1,0,0,1)"
  3782. }, "" },
  3783. { "Jaune", "civ", {
  3784. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3785. }, "" },
  3786. { "Bleu", "civ", {
  3787. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3788. }, "" },
  3789. { "Bleu Nuit", "civ", {
  3790. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3791. }, "" },
  3792. { "Mauve", "civ", {
  3793. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3794. }, "" },
  3795. { "Orange", "civ", {
  3796. "#(argb,8,8,3)color(1,0.251,0,1)"
  3797. }, "" },
  3798. { "Vert", "civ", {
  3799. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3800. }, "" },
  3801. { "Rose", "civ", {
  3802. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3803. }, "" },
  3804. { "Violet", "civ", {
  3805. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3806. }, "" }
  3807. };
  3808. };
  3809.  
  3810. class ch_citroen_c1 {
  3811. vItemSpace = 20;
  3812. conditions = "";
  3813. price = 3900;
  3814. textures[] = {
  3815. { "Noir", "civ", {
  3816. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3817. }, "" },
  3818. { "Blanc", "civ", {
  3819. "#(argb,8,8,3)color(1,1,1,1)"
  3820. }, "" },
  3821. { "Gris", "civ", {
  3822. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3823. }, "" },
  3824. { "Sable", "civ", {
  3825. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3826. }, "" },
  3827. { "Rouge", "civ", {
  3828. "#(argb,8,8,3)color(1,0,0,1)"
  3829. }, "" },
  3830. { "Jaune", "civ", {
  3831. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3832. }, "" },
  3833. { "Bleu", "civ", {
  3834. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3835. }, "" },
  3836. { "Bleu Nuit", "civ", {
  3837. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3838. }, "" },
  3839. { "Mauve", "civ", {
  3840. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3841. }, "" },
  3842. { "Orange", "civ", {
  3843. "#(argb,8,8,3)color(1,0.251,0,1)"
  3844. }, "" },
  3845. { "Vert", "civ", {
  3846. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3847. }, "" },
  3848. { "Rose", "civ", {
  3849. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3850. }, "" },
  3851. { "Violet", "civ", {
  3852. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3853. }, "" }
  3854. };
  3855. };
  3856.  
  3857. class FocusRSlu_civ {
  3858. vItemSpace = 45;
  3859. conditions = "";
  3860. price = 40250;
  3861. textures[] = {
  3862. { "Noir", "civ", {
  3863. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3864. }, "" },
  3865. { "Blanc", "civ", {
  3866. "#(argb,8,8,3)color(1,1,1,1)"
  3867. }, "" },
  3868. { "Gris", "civ", {
  3869. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3870. }, "" },
  3871. { "Sable", "civ", {
  3872. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3873. }, "" },
  3874. { "Rouge", "civ", {
  3875. "#(argb,8,8,3)color(1,0,0,1)"
  3876. }, "" },
  3877. { "Jaune", "civ", {
  3878. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3879. }, "" },
  3880. { "Bleu", "civ", {
  3881. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3882. }, "" },
  3883. { "Bleu Nuit", "civ", {
  3884. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3885. }, "" },
  3886. { "Mauve", "civ", {
  3887. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3888. }, "" },
  3889. { "Orange", "civ", {
  3890. "#(argb,8,8,3)color(1,0.251,0,1)"
  3891. }, "" },
  3892. { "Vert", "civ", {
  3893. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3894. }, "" },
  3895. { "Rose", "civ", {
  3896. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3897. }, "" },
  3898. { "Violet", "civ", {
  3899. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3900. }, "" }
  3901. };
  3902. };
  3903. class focus03_civ {
  3904. vItemSpace = 30;
  3905. conditions = "";
  3906. price = 25630;
  3907. textures[] = {
  3908. { "Noir", "civ", {
  3909. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3910. }, "" },
  3911. { "Blanc", "civ", {
  3912. "#(argb,8,8,3)color(1,1,1,1)"
  3913. }, "" },
  3914. { "Gris", "civ", {
  3915. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3916. }, "" },
  3917. { "Sable", "civ", {
  3918. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3919. }, "" },
  3920. { "Rouge", "civ", {
  3921. "#(argb,8,8,3)color(1,0,0,1)"
  3922. }, "" },
  3923. { "Jaune", "civ", {
  3924. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3925. }, "" },
  3926. { "Bleu", "civ", {
  3927. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3928. }, "" },
  3929. { "Bleu Nuit", "civ", {
  3930. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3931. }, "" },
  3932. { "Mauve", "civ", {
  3933. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3934. }, "" },
  3935. { "Orange", "civ", {
  3936. "#(argb,8,8,3)color(1,0.251,0,1)"
  3937. }, "" },
  3938. { "Vert", "civ", {
  3939. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3940. }, "" },
  3941. { "Rose", "civ", {
  3942. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3943. }, "" },
  3944. { "Violet", "civ", {
  3945. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3946. }, "" }
  3947. };
  3948. };
  3949. class cmax_civ {
  3950. vItemSpace = 40;
  3951. conditions = "";
  3952. price = 35630;
  3953. textures[] = {
  3954. { "Noir", "civ", {
  3955. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3956. }, "" },
  3957. { "Blanc", "civ", {
  3958. "#(argb,8,8,3)color(1,1,1,1)"
  3959. }, "" },
  3960. { "Gris", "civ", {
  3961. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  3962. }, "" },
  3963. { "Sable", "civ", {
  3964. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  3965. }, "" },
  3966. { "Rouge", "civ", {
  3967. "#(argb,8,8,3)color(1,0,0,1)"
  3968. }, "" },
  3969. { "Jaune", "civ", {
  3970. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  3971. }, "" },
  3972. { "Bleu", "civ", {
  3973. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  3974. }, "" },
  3975. { "Bleu Nuit", "civ", {
  3976. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  3977. }, "" },
  3978. { "Mauve", "civ", {
  3979. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  3980. }, "" },
  3981. { "Orange", "civ", {
  3982. "#(argb,8,8,3)color(1,0.251,0,1)"
  3983. }, "" },
  3984. { "Vert", "civ", {
  3985. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  3986. }, "" },
  3987. { "Rose", "civ", {
  3988. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  3989. }, "" },
  3990. { "Violet", "civ", {
  3991. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  3992. }, "" }
  3993. };
  3994. };
  3995.  
  3996. class Mer_Vito_civ {
  3997. vItemSpace = 100;
  3998. conditions = "";
  3999. price = 80125;
  4000. textures[] = {
  4001. { "Noir", "civ", {
  4002. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4003. }, "" },
  4004. { "Blanc", "civ", {
  4005. "#(argb,8,8,3)color(1,1,1,1)"
  4006. }, "" },
  4007. { "Gris", "civ", {
  4008. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4009. }, "" },
  4010. { "Sable", "civ", {
  4011. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4012. }, "" },
  4013. { "Rouge", "civ", {
  4014. "#(argb,8,8,3)color(1,0,0,1)"
  4015. }, "" },
  4016. { "Jaune", "civ", {
  4017. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4018. }, "" },
  4019. { "Bleu", "civ", {
  4020. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4021. }, "" },
  4022. { "Bleu Nuit", "civ", {
  4023. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4024. }, "" },
  4025. { "Mauve", "civ", {
  4026. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4027. }, "" },
  4028. { "Orange", "civ", {
  4029. "#(argb,8,8,3)color(1,0.251,0,1)"
  4030. }, "" },
  4031. { "Vert", "civ", {
  4032. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4033. }, "" },
  4034. { "Rose", "civ", {
  4035. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4036. }, "" },
  4037. { "Violet", "civ", {
  4038. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4039. }, "" }
  4040. };
  4041. };
  4042.  
  4043. class chfcrsciv {
  4044. vItemSpace = 40;
  4045. conditions = "";
  4046. price = 26560;
  4047. textures[] = {
  4048. { "Noir", "civ", {
  4049. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4050. }, "" },
  4051. { "Blanc", "civ", {
  4052. "#(argb,8,8,3)color(1,1,1,1)"
  4053. }, "" },
  4054. { "Gris", "civ", {
  4055. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4056. }, "" },
  4057. { "Sable", "civ", {
  4058. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4059. }, "" },
  4060. { "Rouge", "civ", {
  4061. "#(argb,8,8,3)color(1,0,0,1)"
  4062. }, "" },
  4063. { "Jaune", "civ", {
  4064. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4065. }, "" },
  4066. { "Bleu", "civ", {
  4067. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4068. }, "" },
  4069. { "Bleu Nuit", "civ", {
  4070. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4071. }, "" },
  4072. { "Mauve", "civ", {
  4073. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4074. }, "" },
  4075. { "Orange", "civ", {
  4076. "#(argb,8,8,3)color(1,0.251,0,1)"
  4077. }, "" },
  4078. { "Vert", "civ", {
  4079. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4080. }, "" },
  4081. { "Rose", "civ", {
  4082. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4083. }, "" },
  4084. { "Violet", "civ", {
  4085. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4086. }, "" }
  4087. };
  4088. };
  4089.  
  4090. class mondeo_civ {
  4091. vItemSpace = 40;
  4092. conditions = "";
  4093. price = 36560;
  4094. textures[] = {
  4095. { "Noir", "civ", {
  4096. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4097. }, "" },
  4098. { "Blanc", "civ", {
  4099. "#(argb,8,8,3)color(1,1,1,1)"
  4100. }, "" },
  4101. { "Gris", "civ", {
  4102. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4103. }, "" },
  4104. { "Sable", "civ", {
  4105. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4106. }, "" },
  4107. { "Rouge", "civ", {
  4108. "#(argb,8,8,3)color(1,0,0,1)"
  4109. }, "" },
  4110. { "Jaune", "civ", {
  4111. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4112. }, "" },
  4113. { "Bleu", "civ", {
  4114. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4115. }, "" },
  4116. { "Bleu Nuit", "civ", {
  4117. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4118. }, "" },
  4119. { "Mauve", "civ", {
  4120. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4121. }, "" },
  4122. { "Orange", "civ", {
  4123. "#(argb,8,8,3)color(1,0.251,0,1)"
  4124. }, "" },
  4125. { "Vert", "civ", {
  4126. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4127. }, "" },
  4128. { "Rose", "civ", {
  4129. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4130. }, "" },
  4131. { "Violet", "civ", {
  4132. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4133. }, "" }
  4134. };
  4135. };
  4136.  
  4137. class mondeovch_civ {
  4138. vItemSpace = 48;
  4139. conditions = "";
  4140. price = 39560;
  4141. textures[] = {
  4142. { "Noir", "civ", {
  4143. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4144. }, "" },
  4145. { "Blanc", "civ", {
  4146. "#(argb,8,8,3)color(1,1,1,1)"
  4147. }, "" },
  4148. { "Gris", "civ", {
  4149. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4150. }, "" },
  4151. { "Sable", "civ", {
  4152. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4153. }, "" },
  4154. { "Rouge", "civ", {
  4155. "#(argb,8,8,3)color(1,0,0,1)"
  4156. }, "" },
  4157. { "Jaune", "civ", {
  4158. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4159. }, "" },
  4160. { "Bleu", "civ", {
  4161. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4162. }, "" },
  4163. { "Bleu Nuit", "civ", {
  4164. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4165. }, "" },
  4166. { "Mauve", "civ", {
  4167. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4168. }, "" },
  4169. { "Orange", "civ", {
  4170. "#(argb,8,8,3)color(1,0.251,0,1)"
  4171. }, "" },
  4172. { "Vert", "civ", {
  4173. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4174. }, "" },
  4175. { "Rose", "civ", {
  4176. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4177. }, "" },
  4178. { "Violet", "civ", {
  4179. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4180. }, "" }
  4181. };
  4182. };
  4183.  
  4184. class chdefender_civ {
  4185. vItemSpace = 45;
  4186. conditions = "";
  4187. price = 21250;
  4188. textures[] = {
  4189. { "Noir", "civ", {
  4190. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4191. }, "" },
  4192. { "Blanc", "civ", {
  4193. "#(argb,8,8,3)color(1,1,1,1)"
  4194. }, "" },
  4195. { "Gris", "civ", {
  4196. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4197. }, "" },
  4198. { "Sable", "civ", {
  4199. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4200. }, "" },
  4201. { "Rouge", "civ", {
  4202. "#(argb,8,8,3)color(1,0,0,1)"
  4203. }, "" },
  4204. { "Jaune", "civ", {
  4205. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4206. }, "" },
  4207. { "Bleu", "civ", {
  4208. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4209. }, "" },
  4210. { "Bleu Nuit", "civ", {
  4211. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4212. }, "" },
  4213. { "Mauve", "civ", {
  4214. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4215. }, "" },
  4216. { "Orange", "civ", {
  4217. "#(argb,8,8,3)color(1,0.251,0,1)"
  4218. }, "" },
  4219. { "Vert", "civ", {
  4220. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4221. }, "" },
  4222. { "Rose", "civ", {
  4223. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4224. }, "" },
  4225. { "Violet", "civ", {
  4226. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4227. }, "" }
  4228. };
  4229. };
  4230.  
  4231. class ch206_civ {
  4232. vItemSpace = 32;
  4233. conditions = "";
  4234. price = 22320;
  4235. textures[] = {
  4236. { "Noir", "civ", {
  4237. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4238. }, "" },
  4239. { "Blanc", "civ", {
  4240. "#(argb,8,8,3)color(1,1,1,1)"
  4241. }, "" },
  4242. { "Gris", "civ", {
  4243. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4244. }, "" },
  4245. { "Sable", "civ", {
  4246. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4247. }, "" },
  4248. { "Rouge", "civ", {
  4249. "#(argb,8,8,3)color(1,0,0,1)"
  4250. }, "" },
  4251. { "Jaune", "civ", {
  4252. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4253. }, "" },
  4254. { "Bleu", "civ", {
  4255. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4256. }, "" },
  4257. { "Bleu Nuit", "civ", {
  4258. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4259. }, "" },
  4260. { "Mauve", "civ", {
  4261. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4262. }, "" },
  4263. { "Orange", "civ", {
  4264. "#(argb,8,8,3)color(1,0.251,0,1)"
  4265. }, "" },
  4266. { "Vert", "civ", {
  4267. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4268. }, "" },
  4269. { "Rose", "civ", {
  4270. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4271. }, "" },
  4272. { "Violet", "civ", {
  4273. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4274. }, "" }
  4275. };
  4276. };
  4277.  
  4278. class 308_2015_civ {
  4279. vItemSpace = 30;
  4280. conditions = "";
  4281. price = 28650;
  4282. textures[] = {
  4283. { "Noir", "civ", {
  4284. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4285. }, "" },
  4286. { "Blanc", "civ", {
  4287. "#(argb,8,8,3)color(1,1,1,1)"
  4288. }, "" },
  4289. { "Gris", "civ", {
  4290. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4291. }, "" },
  4292. { "Sable", "civ", {
  4293. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4294. }, "" },
  4295. { "Rouge", "civ", {
  4296. "#(argb,8,8,3)color(1,0,0,1)"
  4297. }, "" },
  4298. { "Jaune", "civ", {
  4299. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4300. }, "" },
  4301. { "Bleu", "civ", {
  4302. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4303. }, "" },
  4304. { "Bleu Nuit", "civ", {
  4305. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4306. }, "" },
  4307. { "Mauve", "civ", {
  4308. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4309. }, "" },
  4310. { "Orange", "civ", {
  4311. "#(argb,8,8,3)color(1,0.251,0,1)"
  4312. }, "" },
  4313. { "Vert", "civ", {
  4314. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4315. }, "" },
  4316. { "Rose", "civ", {
  4317. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4318. }, "" },
  4319. { "Violet", "civ", {
  4320. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4321. }, "" }
  4322. };
  4323. };
  4324.  
  4325. class chsandero {
  4326. vItemSpace = 22;
  4327. conditions = "";
  4328. price = 8200;
  4329. textures[] = {
  4330. { "Noir", "civ", {
  4331. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4332. }, "" },
  4333. { "Blanc", "civ", {
  4334. "#(argb,8,8,3)color(1,1,1,1)"
  4335. }, "" },
  4336. { "Gris", "civ", {
  4337. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4338. }, "" },
  4339. { "Sable", "civ", {
  4340. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4341. }, "" },
  4342. { "Rouge", "civ", {
  4343. "#(argb,8,8,3)color(1,0,0,1)"
  4344. }, "" },
  4345. { "Jaune", "civ", {
  4346. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4347. }, "" },
  4348. { "Bleu", "civ", {
  4349. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4350. }, "" },
  4351. { "Bleu Nuit", "civ", {
  4352. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4353. }, "" },
  4354. { "Mauve", "civ", {
  4355. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4356. }, "" },
  4357. { "Orange", "civ", {
  4358. "#(argb,8,8,3)color(1,0.251,0,1)"
  4359. }, "" },
  4360. { "Vert", "civ", {
  4361. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4362. }, "" },
  4363. { "Rose", "civ", {
  4364. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4365. }, "" },
  4366. { "Violet", "civ", {
  4367. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4368. }, "" }
  4369. };
  4370. };
  4371.  
  4372. class chrr_svr {
  4373. vItemSpace = 36;
  4374. conditions = "";
  4375. price = 15600;
  4376. textures[] = {
  4377. { "Noir", "civ", {
  4378. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4379. }, "" },
  4380. { "Blanc", "civ", {
  4381. "#(argb,8,8,3)color(1,1,1,1)"
  4382. }, "" },
  4383. { "Gris", "civ", {
  4384. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4385. }, "" },
  4386. { "Sable", "civ", {
  4387. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4388. }, "" },
  4389. { "Rouge", "civ", {
  4390. "#(argb,8,8,3)color(1,0,0,1)"
  4391. }, "" },
  4392. { "Jaune", "civ", {
  4393. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4394. }, "" },
  4395. { "Bleu", "civ", {
  4396. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4397. }, "" },
  4398. { "Bleu Nuit", "civ", {
  4399. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4400. }, "" },
  4401. { "Mauve", "civ", {
  4402. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4403. }, "" },
  4404. { "Orange", "civ", {
  4405. "#(argb,8,8,3)color(1,0.251,0,1)"
  4406. }, "" },
  4407. { "Vert", "civ", {
  4408. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4409. }, "" },
  4410. { "Rose", "civ", {
  4411. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4412. }, "" },
  4413. { "Violet", "civ", {
  4414. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4415. }, "" }
  4416. };
  4417. };
  4418.  
  4419. class galaxych_civ {
  4420. vItemSpace = 36;
  4421. conditions = "";
  4422. price = 21600;
  4423. textures[] = {
  4424. { "Noir", "civ", {
  4425. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4426. }, "" },
  4427. { "Blanc", "civ", {
  4428. "#(argb,8,8,3)color(1,1,1,1)"
  4429. }, "" },
  4430. { "Gris", "civ", {
  4431. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4432. }, "" },
  4433. { "Sable", "civ", {
  4434. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4435. }, "" },
  4436. { "Rouge", "civ", {
  4437. "#(argb,8,8,3)color(1,0,0,1)"
  4438. }, "" },
  4439. { "Jaune", "civ", {
  4440. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4441. }, "" },
  4442. { "Bleu", "civ", {
  4443. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4444. }, "" },
  4445. { "Bleu Nuit", "civ", {
  4446. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4447. }, "" },
  4448. { "Mauve", "civ", {
  4449. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4450. }, "" },
  4451. { "Orange", "civ", {
  4452. "#(argb,8,8,3)color(1,0.251,0,1)"
  4453. }, "" },
  4454. { "Vert", "civ", {
  4455. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4456. }, "" },
  4457. { "Rose", "civ", {
  4458. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4459. }, "" },
  4460. { "Violet", "civ", {
  4461. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4462. }, "" }
  4463. };
  4464. };
  4465.  
  4466. class Charger_1969lu_white {
  4467. vItemSpace = 25;
  4468. conditions = "";
  4469. price = 450120;
  4470. textures[] = {
  4471. { "Noir", "civ", {
  4472. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4473. }, "" },
  4474. { "Blanc", "civ", {
  4475. "#(argb,8,8,3)color(1,1,1,1)"
  4476. }, "" },
  4477. { "Gris", "civ", {
  4478. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4479. }, "" },
  4480. { "Sable", "civ", {
  4481. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4482. }, "" },
  4483. { "Rouge", "civ", {
  4484. "#(argb,8,8,3)color(1,0,0,1)"
  4485. }, "" },
  4486. { "Jaune", "civ", {
  4487. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4488. }, "" },
  4489. { "Bleu", "civ", {
  4490. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4491. }, "" },
  4492. { "Bleu Nuit", "civ", {
  4493. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4494. }, "" },
  4495. { "Mauve", "civ", {
  4496. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4497. }, "" },
  4498. { "Orange", "civ", {
  4499. "#(argb,8,8,3)color(1,0.251,0,1)"
  4500. }, "" },
  4501. { "Vert", "civ", {
  4502. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4503. }, "" },
  4504. { "Rose", "civ", {
  4505. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4506. }, "" },
  4507. { "Violet", "civ", {
  4508. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4509. }, "" }
  4510. };
  4511. };
  4512.  
  4513. class AlessioVIR {
  4514. vItemSpace = 50;
  4515. conditions = "";
  4516. price = 25000;
  4517. textures[] = {
  4518. { "Noir", "civ", {
  4519. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4520. }, "" },
  4521. { "Blanc", "civ", {
  4522. "#(argb,8,8,3)color(1,1,1,1)"
  4523. }, "" },
  4524. { "Gris", "civ", {
  4525. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4526. }, "" },
  4527. { "Sable", "civ", {
  4528. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4529. }, "" },
  4530. { "Rouge", "civ", {
  4531. "#(argb,8,8,3)color(1,0,0,1)"
  4532. }, "" },
  4533. { "Jaune", "civ", {
  4534. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4535. }, "" },
  4536. { "Bleu", "civ", {
  4537. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4538. }, "" },
  4539. { "Bleu Nuit", "civ", {
  4540. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4541. }, "" },
  4542. { "Mauve", "civ", {
  4543. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4544. }, "" },
  4545. { "Orange", "civ", {
  4546. "#(argb,8,8,3)color(1,0.251,0,1)"
  4547. }, "" },
  4548. { "Vert", "civ", {
  4549. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4550. }, "" },
  4551. { "Rose", "civ", {
  4552. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4553. }, "" },
  4554. { "Violet", "civ", {
  4555. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4556. }, "" }
  4557. };
  4558. };
  4559.  
  4560. class AlessioTouareg {
  4561. vItemSpace = 60;
  4562. conditions = "";
  4563. price = 59560;
  4564. textures[] = {
  4565. { "Noir", "civ", {
  4566. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4567. }, "" },
  4568. { "Blanc", "civ", {
  4569. "#(argb,8,8,3)color(1,1,1,1)"
  4570. }, "" },
  4571. { "Gris", "civ", {
  4572. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4573. }, "" },
  4574. { "Sable", "civ", {
  4575. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4576. }, "" },
  4577. { "Rouge", "civ", {
  4578. "#(argb,8,8,3)color(1,0,0,1)"
  4579. }, "" },
  4580. { "Jaune", "civ", {
  4581. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4582. }, "" },
  4583. { "Bleu", "civ", {
  4584. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4585. }, "" },
  4586. { "Bleu Nuit", "civ", {
  4587. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4588. }, "" },
  4589. { "Mauve", "civ", {
  4590. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4591. }, "" },
  4592. { "Orange", "civ", {
  4593. "#(argb,8,8,3)color(1,0.251,0,1)"
  4594. }, "" },
  4595. { "Vert", "civ", {
  4596. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4597. }, "" },
  4598. { "Rose", "civ", {
  4599. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4600. }, "" },
  4601. { "Violet", "civ", {
  4602. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4603. }, "" }
  4604. };
  4605. };
  4606.  
  4607. //Concessionnaire de Luxe Civil
  4608. class master3p2_ft {
  4609. vItemSpace = 50;
  4610. conditions = "";
  4611. price = 500000;
  4612. textures[] = {
  4613. { "Noir", "civ", {
  4614. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4615. }, "" },
  4616. { "Blanc", "civ", {
  4617. "#(argb,8,8,3)color(1,1,1,1)"
  4618. }, "" },
  4619. { "Gris", "civ", {
  4620. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4621. }, "" },
  4622. { "Sable", "civ", {
  4623. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4624. }, "" },
  4625. { "Rouge", "civ", {
  4626. "#(argb,8,8,3)color(1,0,0,1)"
  4627. }, "" },
  4628. { "Jaune", "civ", {
  4629. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4630. }, "" },
  4631. { "Bleu", "civ", {
  4632. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4633. }, "" },
  4634. { "Bleu Nuit", "civ", {
  4635. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4636. }, "" },
  4637. { "Mauve", "civ", {
  4638. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4639. }, "" },
  4640. { "Orange", "civ", {
  4641. "#(argb,8,8,3)color(1,0.251,0,1)"
  4642. }, "" },
  4643. { "Vert", "civ", {
  4644. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4645. }, "" },
  4646. { "Rose", "civ", {
  4647. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4648. }, "" },
  4649. { "Violet", "civ", {
  4650. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4651. }, "" }
  4652. };
  4653. };
  4654.  
  4655. class cha110 {
  4656. vItemSpace = 25;
  4657. conditions = "";
  4658. price = 450120;
  4659. textures[] = {
  4660. { "Noir", "civ", {
  4661. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4662. }, "" },
  4663. { "Blanc", "civ", {
  4664. "#(argb,8,8,3)color(1,1,1,1)"
  4665. }, "" },
  4666. { "Gris", "civ", {
  4667. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4668. }, "" },
  4669. { "Sable", "civ", {
  4670. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4671. }, "" },
  4672. { "Rouge", "civ", {
  4673. "#(argb,8,8,3)color(1,0,0,1)"
  4674. }, "" },
  4675. { "Jaune", "civ", {
  4676. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4677. }, "" },
  4678. { "Bleu", "civ", {
  4679. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4680. }, "" },
  4681. { "Bleu Nuit", "civ", {
  4682. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4683. }, "" },
  4684. { "Mauve", "civ", {
  4685. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4686. }, "" },
  4687. { "Orange", "civ", {
  4688. "#(argb,8,8,3)color(1,0.251,0,1)"
  4689. }, "" },
  4690. { "Vert", "civ", {
  4691. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4692. }, "" },
  4693. { "Rose", "civ", {
  4694. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4695. }, "" },
  4696. { "Violet", "civ", {
  4697. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4698. }, "" }
  4699. };
  4700. };
  4701. class AlessioAgera {
  4702. vItemSpace = 25;
  4703. conditions = "";
  4704. price = 950120;
  4705. textures[] = {
  4706. { "Noir", "civ", {
  4707. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4708. }, "" },
  4709. { "Blanc", "civ", {
  4710. "#(argb,8,8,3)color(1,1,1,1)"
  4711. }, "" },
  4712. { "Gris", "civ", {
  4713. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4714. }, "" },
  4715. { "Sable", "civ", {
  4716. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4717. }, "" },
  4718. { "Rouge", "civ", {
  4719. "#(argb,8,8,3)color(1,0,0,1)"
  4720. }, "" },
  4721. { "Jaune", "civ", {
  4722. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4723. }, "" },
  4724. { "Bleu", "civ", {
  4725. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4726. }, "" },
  4727. { "Bleu Nuit", "civ", {
  4728. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4729. }, "" },
  4730. { "Mauve", "civ", {
  4731. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4732. }, "" },
  4733. { "Orange", "civ", {
  4734. "#(argb,8,8,3)color(1,0.251,0,1)"
  4735. }, "" },
  4736. { "Vert", "civ", {
  4737. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4738. }, "" },
  4739. { "Rose", "civ", {
  4740. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4741. }, "" },
  4742. { "Violet", "civ", {
  4743. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4744. }, "" }
  4745. };
  4746. };
  4747.  
  4748. class fgtz3 {
  4749. vItemSpace = 25;
  4750. conditions = "";
  4751. price = 450120;
  4752. textures[] = {};
  4753. };
  4754. class AlessioAgeraG {
  4755. vItemSpace = 25;
  4756. conditions = "";
  4757. price = 950120;
  4758. textures[] = {};
  4759. };
  4760. class AlessioAgeraC {
  4761. vItemSpace = 25;
  4762. conditions = "";
  4763. price = 950120;
  4764. textures[] = {};
  4765. };
  4766.  
  4767. class fgtz3_civ {
  4768. vItemSpace = 25;
  4769. conditions = "";
  4770. price = 250120;
  4771. textures[] = {};
  4772. };
  4773.  
  4774. class ageracover {
  4775. vItemSpace = 25;
  4776. conditions = "";
  4777. price = 850120;
  4778. textures[] = {};
  4779. };
  4780.  
  4781. class rs4carbone {
  4782. vItemSpace = 25;
  4783. conditions = "";
  4784. price = 355500;
  4785. textures[] = {};
  4786. };
  4787.  
  4788. class rs4camo {
  4789. vItemSpace = 25;
  4790. conditions = "";
  4791. price = 468956;
  4792. textures[] = {};
  4793. };
  4794.  
  4795. class rs4cover2 {
  4796. vItemSpace = 50;
  4797. conditions = "";
  4798. price = 450000;
  4799. textures[] = {};
  4800. };
  4801.  
  4802. class AVENTADOR_GMK {
  4803. vItemSpace = 50;
  4804. conditions = "";
  4805. price = 450000;
  4806. textures[] = {};
  4807. };
  4808.  
  4809. class berlingosecu {
  4810. vItemSpace = 50;
  4811. conditions = "license_civ_secu";
  4812. price = 1500;
  4813. textures[] = {};
  4814. };
  4815.  
  4816. class mondeosecu {
  4817. vItemSpace = 50;
  4818. conditions = "license_civ_secu";
  4819. price = 1500;
  4820. textures[] = {};
  4821. };
  4822.  
  4823. class C63_CAMO {
  4824. vItemSpace = 50;
  4825. conditions = "";
  4826. price = 668456;
  4827. textures[] = {};
  4828. };
  4829.  
  4830. class C63_ALL {
  4831. vItemSpace = 50;
  4832. conditions = "";
  4833. price = 688456;
  4834. textures[] = {};
  4835. };
  4836.  
  4837. class caymancamo2 {
  4838. vItemSpace = 50;
  4839. conditions = "";
  4840. price = 2200123;
  4841. textures[] = {};
  4842. };
  4843.  
  4844. class MrShounka_Suburban_2017_GIGN_haras_f {
  4845. vItemSpace = 50;
  4846. conditions = "license_cop_raid";
  4847. price = 15600;
  4848. textures[] = {};
  4849. };
  4850.  
  4851. class R50_CAMO2 {
  4852. vItemSpace = 50;
  4853. conditions = "";
  4854. price = 321200;
  4855. textures[] = {};
  4856. };
  4857.  
  4858. class r8camo4 {
  4859. vItemSpace = 50;
  4860. conditions = "";
  4861. price = 6130147;
  4862. textures[] = {};
  4863. };
  4864.  
  4865. class mustangmonstermet {
  4866. vItemSpace = 25;
  4867. conditions = "";
  4868. price = 758650;
  4869. textures[] = {};
  4870. };
  4871.  
  4872. class mustangmonster2met {
  4873. vItemSpace = 25;
  4874. conditions = "";
  4875. price = 450120;
  4876. textures[] = {};
  4877. };
  4878.  
  4879. class dustersecu {
  4880. vItemSpace = 50;
  4881. conditions = "license_civ_secu";
  4882. price = 1500;
  4883. textures[] = {};
  4884. };
  4885.  
  4886. class M4_CAMO {
  4887. vItemSpace = 50;
  4888. conditions = "";
  4889. price = 400000;
  4890. textures[] = {};
  4891. };
  4892.  
  4893. class C63_ROCKET {
  4894. vItemSpace = 50;
  4895. conditions = "";
  4896. price = 436850;
  4897. textures[] = {};
  4898. };
  4899.  
  4900. class f458cover1 {
  4901. vItemSpace = 50;
  4902. conditions = "";
  4903. price = 2521240;
  4904. textures[] = {};
  4905. };
  4906.  
  4907. class gtbcover2 {
  4908. vItemSpace = 50;
  4909. conditions = "";
  4910. price = 450000;
  4911. textures[] = {};
  4912. };
  4913.  
  4914. class fastcover1 {
  4915. vItemSpace = 50;
  4916. conditions = "";
  4917. price = 450000;
  4918. textures[] = {};
  4919. };
  4920.  
  4921. class GeK_Yukon {
  4922. vItemSpace = 50;
  4923. conditions = "license_civ_gouvernement";
  4924. price = 35000;
  4925. textures[] = {};
  4926. };
  4927.  
  4928. class golfcamo2mat {
  4929. vItemSpace = 50;
  4930. conditions = "";
  4931. price = 489152;
  4932. textures[] = {};
  4933. };
  4934.  
  4935. class shounka_a3_dafxf_euro6_f {
  4936. vItemSpace = 700;
  4937. conditions = "";
  4938. price = 665120;
  4939. textures[] = {
  4940. { "Noir", "civ", {
  4941. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4942. }, "" },
  4943. { "Blanc", "civ", {
  4944. "#(argb,8,8,3)color(1,1,1,1)"
  4945. }, "" },
  4946. { "Gris", "civ", {
  4947. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4948. }, "" },
  4949. { "Sable", "civ", {
  4950. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4951. }, "" },
  4952. { "Rouge", "civ", {
  4953. "#(argb,8,8,3)color(1,0,0,1)"
  4954. }, "" },
  4955. { "Jaune", "civ", {
  4956. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  4957. }, "" },
  4958. { "Bleu", "civ", {
  4959. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  4960. }, "" },
  4961. { "Bleu Nuit", "civ", {
  4962. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  4963. }, "" },
  4964. { "Mauve", "civ", {
  4965. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  4966. }, "" },
  4967. { "Orange", "civ", {
  4968. "#(argb,8,8,3)color(1,0.251,0,1)"
  4969. }, "" },
  4970. { "Vert", "civ", {
  4971. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  4972. }, "" },
  4973. { "Rose", "civ", {
  4974. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  4975. }, "" },
  4976. { "Violet", "civ", {
  4977. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  4978. }, "" }
  4979. };
  4980. };
  4981.  
  4982. class shounka_a3_renaultmagnum_f {
  4983. vItemSpace = 600;
  4984. conditions = "";
  4985. price = 565120;
  4986. textures[] = {
  4987. { "Noir", "civ", {
  4988. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  4989. }, "" },
  4990. { "Blanc", "civ", {
  4991. "#(argb,8,8,3)color(1,1,1,1)"
  4992. }, "" },
  4993. { "Gris", "civ", {
  4994. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  4995. }, "" },
  4996. { "Sable", "civ", {
  4997. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  4998. }, "" },
  4999. { "Rouge", "civ", {
  5000. "#(argb,8,8,3)color(1,0,0,1)"
  5001. }, "" },
  5002. { "Jaune", "civ", {
  5003. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5004. }, "" },
  5005. { "Bleu", "civ", {
  5006. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5007. }, "" },
  5008. { "Bleu Nuit", "civ", {
  5009. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5010. }, "" },
  5011. { "Mauve", "civ", {
  5012. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5013. }, "" },
  5014. { "Orange", "civ", {
  5015. "#(argb,8,8,3)color(1,0.251,0,1)"
  5016. }, "" },
  5017. { "Vert", "civ", {
  5018. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5019. }, "" },
  5020. { "Rose", "civ", {
  5021. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5022. }, "" },
  5023. { "Violet", "civ", {
  5024. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5025. }, "" }
  5026. };
  5027. };
  5028.  
  5029. class shounka_limo_civ {
  5030. vItemSpace = 50;
  5031. conditions = "license_civ_Maire";
  5032. price = 5000;
  5033. textures[] = {
  5034. { "Noir", "civ", {
  5035. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5036. }, "" },
  5037. { "Blanc", "civ", {
  5038. "#(argb,8,8,3)color(1,1,1,1)"
  5039. }, "" },
  5040. { "Gris", "civ", {
  5041. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5042. }, "" },
  5043. { "Sable", "civ", {
  5044. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5045. }, "" },
  5046. { "Rouge", "civ", {
  5047. "#(argb,8,8,3)color(1,0,0,1)"
  5048. }, "" },
  5049. { "Jaune", "civ", {
  5050. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5051. }, "" },
  5052. { "Bleu", "civ", {
  5053. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5054. }, "" },
  5055. { "Bleu Nuit", "civ", {
  5056. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5057. }, "" },
  5058. { "Mauve", "civ", {
  5059. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5060. }, "" },
  5061. { "Orange", "civ", {
  5062. "#(argb,8,8,3)color(1,0.251,0,1)"
  5063. }, "" },
  5064. { "Vert", "civ", {
  5065. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5066. }, "" },
  5067. { "Rose", "civ", {
  5068. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5069. }, "" },
  5070. { "Violet", "civ", {
  5071. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5072. }, "" }
  5073. };
  5074. };
  5075.  
  5076. class AlessioHuayra {
  5077. vItemSpace = 25;
  5078. conditions = "";
  5079. price = 450120;
  5080. textures[] = {
  5081. { "Noir", "civ", {
  5082. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5083. }, "" },
  5084. { "Blanc", "civ", {
  5085. "#(argb,8,8,3)color(1,1,1,1)"
  5086. }, "" },
  5087. { "Gris", "civ", {
  5088. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5089. }, "" },
  5090. { "Sable", "civ", {
  5091. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5092. }, "" },
  5093. { "Rouge", "civ", {
  5094. "#(argb,8,8,3)color(1,0,0,1)"
  5095. }, "" },
  5096. { "Jaune", "civ", {
  5097. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5098. }, "" },
  5099. { "Bleu", "civ", {
  5100. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5101. }, "" },
  5102. { "Bleu Nuit", "civ", {
  5103. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5104. }, "" },
  5105. { "Mauve", "civ", {
  5106. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5107. }, "" },
  5108. { "Orange", "civ", {
  5109. "#(argb,8,8,3)color(1,0.251,0,1)"
  5110. }, "" },
  5111. { "Vert", "civ", {
  5112. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5113. }, "" },
  5114. { "Rose", "civ", {
  5115. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5116. }, "" },
  5117. { "Violet", "civ", {
  5118. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5119. }, "" }
  5120. };
  5121. };
  5122.  
  5123. class AlessioC63N {
  5124. vItemSpace = 25;
  5125. conditions = "";
  5126. price = 150000;
  5127. textures[] = {
  5128. { "Noir", "civ", {
  5129. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5130. }, "" },
  5131. { "Blanc", "civ", {
  5132. "#(argb,8,8,3)color(1,1,1,1)"
  5133. }, "" },
  5134. { "Gris", "civ", {
  5135. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5136. }, "" },
  5137. { "Sable", "civ", {
  5138. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5139. }, "" },
  5140. { "Rouge", "civ", {
  5141. "#(argb,8,8,3)color(1,0,0,1)"
  5142. }, "" },
  5143. { "Jaune", "civ", {
  5144. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5145. }, "" },
  5146. { "Bleu", "civ", {
  5147. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5148. }, "" },
  5149. { "Bleu Nuit", "civ", {
  5150. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5151. }, "" },
  5152. { "Mauve", "civ", {
  5153. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5154. }, "" },
  5155. { "Orange", "civ", {
  5156. "#(argb,8,8,3)color(1,0.251,0,1)"
  5157. }, "" },
  5158. { "Vert", "civ", {
  5159. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5160. }, "" },
  5161. { "Rose", "civ", {
  5162. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5163. }, "" },
  5164. { "Violet", "civ", {
  5165. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5166. }, "" }
  5167. };
  5168. };
  5169.  
  5170. class TTRSlu_civ {
  5171. vItemSpace = 25;
  5172. conditions = "";
  5173. price = 250120;
  5174. textures[] = {
  5175. { "Noir", "civ", {
  5176. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5177. }, "" },
  5178. { "Blanc", "civ", {
  5179. "#(argb,8,8,3)color(1,1,1,1)"
  5180. }, "" },
  5181. { "Gris", "civ", {
  5182. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5183. }, "" },
  5184. { "Sable", "civ", {
  5185. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5186. }, "" },
  5187. { "Rouge", "civ", {
  5188. "#(argb,8,8,3)color(1,0,0,1)"
  5189. }, "" },
  5190. { "Jaune", "civ", {
  5191. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5192. }, "" },
  5193. { "Bleu", "civ", {
  5194. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5195. }, "" },
  5196. { "Bleu Nuit", "civ", {
  5197. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5198. }, "" },
  5199. { "Mauve", "civ", {
  5200. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5201. }, "" },
  5202. { "Orange", "civ", {
  5203. "#(argb,8,8,3)color(1,0.251,0,1)"
  5204. }, "" },
  5205. { "Vert", "civ", {
  5206. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5207. }, "" },
  5208. { "Rose", "civ", {
  5209. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5210. }, "" },
  5211. { "Violet", "civ", {
  5212. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5213. }, "" }
  5214. };
  5215. };
  5216. class chTT_2 {
  5217. vItemSpace = 25;
  5218. conditions = "";
  5219. price = 250120;
  5220. textures[] = {
  5221. { "Noir", "civ", {
  5222. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5223. }, "" },
  5224. { "Blanc", "civ", {
  5225. "#(argb,8,8,3)color(1,1,1,1)"
  5226. }, "" },
  5227. { "Gris", "civ", {
  5228. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5229. }, "" },
  5230. { "Sable", "civ", {
  5231. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5232. }, "" },
  5233. { "Rouge", "civ", {
  5234. "#(argb,8,8,3)color(1,0,0,1)"
  5235. }, "" },
  5236. { "Jaune", "civ", {
  5237. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5238. }, "" },
  5239. { "Bleu", "civ", {
  5240. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5241. }, "" },
  5242. { "Bleu Nuit", "civ", {
  5243. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5244. }, "" },
  5245. { "Mauve", "civ", {
  5246. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5247. }, "" },
  5248. { "Orange", "civ", {
  5249. "#(argb,8,8,3)color(1,0.251,0,1)"
  5250. }, "" },
  5251. { "Vert", "civ", {
  5252. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5253. }, "" },
  5254. { "Rose", "civ", {
  5255. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5256. }, "" },
  5257. { "Violet", "civ", {
  5258. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5259. }, "" }
  5260. };
  5261. };
  5262. class RS7lu_civ {
  5263. vItemSpace = 25;
  5264. conditions = "";
  5265. price = 250120;
  5266. textures[] = {
  5267. { "Noir", "civ", {
  5268. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5269. }, "" },
  5270. { "Blanc", "civ", {
  5271. "#(argb,8,8,3)color(1,1,1,1)"
  5272. }, "" },
  5273. { "Gris", "civ", {
  5274. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5275. }, "" },
  5276. { "Sable", "civ", {
  5277. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5278. }, "" },
  5279. { "Rouge", "civ", {
  5280. "#(argb,8,8,3)color(1,0,0,1)"
  5281. }, "" },
  5282. { "Jaune", "civ", {
  5283. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5284. }, "" },
  5285. { "Bleu", "civ", {
  5286. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5287. }, "" },
  5288. { "Bleu Nuit", "civ", {
  5289. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5290. }, "" },
  5291. { "Mauve", "civ", {
  5292. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5293. }, "" },
  5294. { "Orange", "civ", {
  5295. "#(argb,8,8,3)color(1,0.251,0,1)"
  5296. }, "" },
  5297. { "Vert", "civ", {
  5298. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5299. }, "" },
  5300. { "Rose", "civ", {
  5301. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5302. }, "" },
  5303. { "Violet", "civ", {
  5304. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5305. }, "" }
  5306. };
  5307. };
  5308.  
  5309. class AlessioR8 {
  5310. vItemSpace = 40;
  5311. conditions = "";
  5312. price = 450120;
  5313. textures[] = {
  5314. { "Noir", "civ", {
  5315. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5316. }, "" },
  5317. { "Blanc", "civ", {
  5318. "#(argb,8,8,3)color(1,1,1,1)"
  5319. }, "" },
  5320. { "Gris", "civ", {
  5321. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5322. }, "" },
  5323. { "Sable", "civ", {
  5324. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5325. }, "" },
  5326. { "Rouge", "civ", {
  5327. "#(argb,8,8,3)color(1,0,0,1)"
  5328. }, "" },
  5329. { "Jaune", "civ", {
  5330. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5331. }, "" },
  5332. { "Bleu", "civ", {
  5333. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5334. }, "" },
  5335. { "Bleu Nuit", "civ", {
  5336. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5337. }, "" },
  5338. { "Mauve", "civ", {
  5339. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5340. }, "" },
  5341. { "Orange", "civ", {
  5342. "#(argb,8,8,3)color(1,0.251,0,1)"
  5343. }, "" },
  5344. { "Vert", "civ", {
  5345. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5346. }, "" },
  5347. { "Rose", "civ", {
  5348. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5349. }, "" },
  5350. { "Violet", "civ", {
  5351. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5352. }, "" }
  5353. };
  5354. };
  5355. class Tahoelu_civ {
  5356. vItemSpace = 25;
  5357. conditions = "license_civ_Maire";
  5358. price = 950120;
  5359. textures[] = {
  5360. { "Noir", "civ", {
  5361. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5362. }, "" },
  5363. { "Blanc", "civ", {
  5364. "#(argb,8,8,3)color(1,1,1,1)"
  5365. }, "" },
  5366. { "Gris", "civ", {
  5367. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5368. }, "" },
  5369. { "Sable", "civ", {
  5370. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5371. }, "" },
  5372. { "Rouge", "civ", {
  5373. "#(argb,8,8,3)color(1,0,0,1)"
  5374. }, "" },
  5375. { "Jaune", "civ", {
  5376. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5377. }, "" },
  5378. { "Bleu", "civ", {
  5379. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5380. }, "" },
  5381. { "Bleu Nuit", "civ", {
  5382. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5383. }, "" },
  5384. { "Mauve", "civ", {
  5385. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5386. }, "" },
  5387. { "Orange", "civ", {
  5388. "#(argb,8,8,3)color(1,0.251,0,1)"
  5389. }, "" },
  5390. { "Vert", "civ", {
  5391. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5392. }, "" },
  5393. { "Rose", "civ", {
  5394. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5395. }, "" },
  5396. { "Violet", "civ", {
  5397. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5398. }, "" }
  5399. };
  5400. };
  5401. class chXTS_Royal {
  5402. vItemSpace = 25;
  5403. conditions = "license_civ_Maire";
  5404. price = 950120;
  5405. textures[] = {
  5406. { "Noir", "civ", {
  5407. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5408. }, "" },
  5409. { "Blanc", "civ", {
  5410. "#(argb,8,8,3)color(1,1,1,1)"
  5411. }, "" },
  5412. { "Gris", "civ", {
  5413. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5414. }, "" },
  5415. { "Sable", "civ", {
  5416. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5417. }, "" },
  5418. { "Rouge", "civ", {
  5419. "#(argb,8,8,3)color(1,0,0,1)"
  5420. }, "" },
  5421. { "Jaune", "civ", {
  5422. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5423. }, "" },
  5424. { "Bleu", "civ", {
  5425. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5426. }, "" },
  5427. { "Bleu Nuit", "civ", {
  5428. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5429. }, "" },
  5430. { "Mauve", "civ", {
  5431. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5432. }, "" },
  5433. { "Orange", "civ", {
  5434. "#(argb,8,8,3)color(1,0.251,0,1)"
  5435. }, "" },
  5436. { "Vert", "civ", {
  5437. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5438. }, "" },
  5439. { "Rose", "civ", {
  5440. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5441. }, "" },
  5442. { "Violet", "civ", {
  5443. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5444. }, "" }
  5445. };
  5446. };
  5447. class AlessioStingrayM {
  5448. vItemSpace = 25;
  5449. conditions = "";
  5450. price = 950120;
  5451. textures[] = {
  5452. { "Noir", "civ", {
  5453. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5454. }, "" },
  5455. { "Blanc", "civ", {
  5456. "#(argb,8,8,3)color(1,1,1,1)"
  5457. }, "" },
  5458. { "Gris", "civ", {
  5459. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5460. }, "" },
  5461. { "Sable", "civ", {
  5462. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5463. }, "" },
  5464. { "Rouge", "civ", {
  5465. "#(argb,8,8,3)color(1,0,0,1)"
  5466. }, "" },
  5467. { "Jaune", "civ", {
  5468. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5469. }, "" },
  5470. { "Bleu", "civ", {
  5471. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5472. }, "" },
  5473. { "Bleu Nuit", "civ", {
  5474. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5475. }, "" },
  5476. { "Mauve", "civ", {
  5477. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5478. }, "" },
  5479. { "Orange", "civ", {
  5480. "#(argb,8,8,3)color(1,0.251,0,1)"
  5481. }, "" },
  5482. { "Vert", "civ", {
  5483. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5484. }, "" },
  5485. { "Rose", "civ", {
  5486. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5487. }, "" },
  5488. { "Violet", "civ", {
  5489. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5490. }, "" }
  5491. };
  5492. };
  5493. class Chironlu_civ {
  5494. vItemSpace = 25;
  5495. conditions = "";
  5496. price = 950120;
  5497. textures[] = {
  5498. { "Noir", "civ", {
  5499. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5500. }, "" },
  5501. { "Blanc", "civ", {
  5502. "#(argb,8,8,3)color(1,1,1,1)"
  5503. }, "" },
  5504. { "Gris", "civ", {
  5505. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5506. }, "" },
  5507. { "Sable", "civ", {
  5508. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5509. }, "" },
  5510. { "Rouge", "civ", {
  5511. "#(argb,8,8,3)color(1,0,0,1)"
  5512. }, "" },
  5513. { "Jaune", "civ", {
  5514. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5515. }, "" },
  5516. { "Bleu", "civ", {
  5517. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5518. }, "" },
  5519. { "Bleu Nuit", "civ", {
  5520. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5521. }, "" },
  5522. { "Mauve", "civ", {
  5523. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5524. }, "" },
  5525. { "Orange", "civ", {
  5526. "#(argb,8,8,3)color(1,0.251,0,1)"
  5527. }, "" },
  5528. { "Vert", "civ", {
  5529. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5530. }, "" },
  5531. { "Rose", "civ", {
  5532. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5533. }, "" },
  5534. { "Violet", "civ", {
  5535. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5536. }, "" }
  5537. };
  5538. };
  5539.  
  5540. class Charger_1969lu_Race {
  5541. vItemSpace = 25;
  5542. conditions = "";
  5543. price = 450120;
  5544. textures[] = {
  5545. { "Noir", "civ", {
  5546. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5547. }, "" },
  5548. { "Blanc", "civ", {
  5549. "#(argb,8,8,3)color(1,1,1,1)"
  5550. }, "" },
  5551. { "Gris", "civ", {
  5552. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5553. }, "" },
  5554. { "Sable", "civ", {
  5555. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5556. }, "" },
  5557. { "Rouge", "civ", {
  5558. "#(argb,8,8,3)color(1,0,0,1)"
  5559. }, "" },
  5560. { "Jaune", "civ", {
  5561. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5562. }, "" },
  5563. { "Bleu", "civ", {
  5564. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5565. }, "" },
  5566. { "Bleu Nuit", "civ", {
  5567. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5568. }, "" },
  5569. { "Mauve", "civ", {
  5570. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5571. }, "" },
  5572. { "Orange", "civ", {
  5573. "#(argb,8,8,3)color(1,0.251,0,1)"
  5574. }, "" },
  5575. { "Vert", "civ", {
  5576. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5577. }, "" },
  5578. { "Rose", "civ", {
  5579. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5580. }, "" },
  5581. { "Violet", "civ", {
  5582. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5583. }, "" }
  5584. };
  5585. };
  5586.  
  5587. class Model_Slu_civ {
  5588. vItemSpace = 25;
  5589. conditions = "";
  5590. price = 450120;
  5591. textures[] = {
  5592. { "Noir", "civ", {
  5593. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5594. }, "" },
  5595. { "Blanc", "civ", {
  5596. "#(argb,8,8,3)color(1,1,1,1)"
  5597. }, "" },
  5598. { "Gris", "civ", {
  5599. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5600. }, "" },
  5601. { "Sable", "civ", {
  5602. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5603. }, "" },
  5604. { "Rouge", "civ", {
  5605. "#(argb,8,8,3)color(1,0,0,1)"
  5606. }, "" },
  5607. { "Jaune", "civ", {
  5608. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5609. }, "" },
  5610. { "Bleu", "civ", {
  5611. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5612. }, "" },
  5613. { "Bleu Nuit", "civ", {
  5614. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5615. }, "" },
  5616. { "Mauve", "civ", {
  5617. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5618. }, "" },
  5619. { "Orange", "civ", {
  5620. "#(argb,8,8,3)color(1,0.251,0,1)"
  5621. }, "" },
  5622. { "Vert", "civ", {
  5623. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5624. }, "" },
  5625. { "Rose", "civ", {
  5626. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5627. }, "" },
  5628. { "Violet", "civ", {
  5629. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5630. }, "" }
  5631. };
  5632. };
  5633.  
  5634. class AlessioIXMRMat {
  5635. vItemSpace = 25;
  5636. conditions = "";
  5637. price = 150120;
  5638. textures[] = {
  5639. { "Noir", "civ", {
  5640. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5641. }, "" },
  5642. { "Blanc", "civ", {
  5643. "#(argb,8,8,3)color(1,1,1,1)"
  5644. }, "" },
  5645. { "Gris", "civ", {
  5646. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5647. }, "" },
  5648. { "Sable", "civ", {
  5649. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5650. }, "" },
  5651. { "Rouge", "civ", {
  5652. "#(argb,8,8,3)color(1,0,0,1)"
  5653. }, "" },
  5654. { "Jaune", "civ", {
  5655. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5656. }, "" },
  5657. { "Bleu", "civ", {
  5658. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5659. }, "" },
  5660. { "Bleu Nuit", "civ", {
  5661. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5662. }, "" },
  5663. { "Mauve", "civ", {
  5664. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5665. }, "" },
  5666. { "Orange", "civ", {
  5667. "#(argb,8,8,3)color(1,0.251,0,1)"
  5668. }, "" },
  5669. { "Vert", "civ", {
  5670. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5671. }, "" },
  5672. { "Rose", "civ", {
  5673. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5674. }, "" },
  5675. { "Violet", "civ", {
  5676. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5677. }, "" }
  5678. };
  5679. };
  5680.  
  5681. class F12lu_civ {
  5682. vItemSpace = 25;
  5683. conditions = "";
  5684. price = 450120;
  5685. textures[] = {
  5686. { "Noir", "civ", {
  5687. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5688. }, "" },
  5689. { "Blanc", "civ", {
  5690. "#(argb,8,8,3)color(1,1,1,1)"
  5691. }, "" },
  5692. { "Gris", "civ", {
  5693. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5694. }, "" },
  5695. { "Sable", "civ", {
  5696. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5697. }, "" },
  5698. { "Rouge", "civ", {
  5699. "#(argb,8,8,3)color(1,0,0,1)"
  5700. }, "" },
  5701. { "Jaune", "civ", {
  5702. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5703. }, "" },
  5704. { "Bleu", "civ", {
  5705. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5706. }, "" },
  5707. { "Bleu Nuit", "civ", {
  5708. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5709. }, "" },
  5710. { "Mauve", "civ", {
  5711. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5712. }, "" },
  5713. { "Orange", "civ", {
  5714. "#(argb,8,8,3)color(1,0.251,0,1)"
  5715. }, "" },
  5716. { "Vert", "civ", {
  5717. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5718. }, "" },
  5719. { "Rose", "civ", {
  5720. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5721. }, "" },
  5722. { "Violet", "civ", {
  5723. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5724. }, "" }
  5725. };
  5726. };
  5727. //////////////////////////////////////////////////////////////////////////////////////////////
  5728. class AlessioR8_Chrome {
  5729. vItemSpace = 25;
  5730. conditions = "";
  5731. price = 450120;
  5732. textures[] = {
  5733. };
  5734. };
  5735. class AlessioRS4Chrome {
  5736. vItemSpace = 25;
  5737. conditions = "";
  5738. price = 450120;
  5739. textures[] = {
  5740. };
  5741. };
  5742. class AlessioRS4Gold {
  5743. vItemSpace = 25;
  5744. conditions = "";
  5745. price = 450120;
  5746. textures[] = {
  5747. };
  5748. };
  5749. class AlessioR8_Gold {
  5750. vItemSpace = 25;
  5751. conditions = "";
  5752. price = 450120;
  5753. textures[] = {
  5754. };
  5755. };
  5756.  
  5757. class AlessioR8Mat {
  5758. vItemSpace = 25;
  5759. conditions = "";
  5760. price = 450120;
  5761. textures[] = {
  5762. { "Noir", "civ", {
  5763. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5764. }, "" },
  5765. { "Blanc", "civ", {
  5766. "#(argb,8,8,3)color(1,1,1,1)"
  5767. }, "" },
  5768. { "Gris", "civ", {
  5769. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5770. }, "" },
  5771. { "Sable", "civ", {
  5772. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5773. }, "" },
  5774. { "Rouge", "civ", {
  5775. "#(argb,8,8,3)color(1,0,0,1)"
  5776. }, "" },
  5777. { "Jaune", "civ", {
  5778. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5779. }, "" },
  5780. { "Bleu", "civ", {
  5781. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5782. }, "" },
  5783. { "Bleu Nuit", "civ", {
  5784. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5785. }, "" },
  5786. { "Mauve", "civ", {
  5787. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5788. }, "" },
  5789. { "Orange", "civ", {
  5790. "#(argb,8,8,3)color(1,0.251,0,1)"
  5791. }, "" },
  5792. { "Vert", "civ", {
  5793. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5794. }, "" },
  5795. { "Rose", "civ", {
  5796. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5797. }, "" },
  5798. { "Violet", "civ", {
  5799. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5800. }, "" }
  5801. };
  5802. };
  5803. class chRS2 {
  5804. vItemSpace = 25;
  5805. conditions = "";
  5806. price = 150120;
  5807. textures[] = {
  5808. { "Noir", "civ", {
  5809. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5810. }, "" },
  5811. { "Blanc", "civ", {
  5812. "#(argb,8,8,3)color(1,1,1,1)"
  5813. }, "" },
  5814. { "Gris", "civ", {
  5815. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5816. }, "" },
  5817. { "Sable", "civ", {
  5818. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5819. }, "" },
  5820. { "Rouge", "civ", {
  5821. "#(argb,8,8,3)color(1,0,0,1)"
  5822. }, "" },
  5823. { "Jaune", "civ", {
  5824. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5825. }, "" },
  5826. { "Bleu", "civ", {
  5827. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5828. }, "" },
  5829. { "Bleu Nuit", "civ", {
  5830. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5831. }, "" },
  5832. { "Mauve", "civ", {
  5833. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5834. }, "" },
  5835. { "Orange", "civ", {
  5836. "#(argb,8,8,3)color(1,0.251,0,1)"
  5837. }, "" },
  5838. { "Vert", "civ", {
  5839. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5840. }, "" },
  5841. { "Rose", "civ", {
  5842. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5843. }, "" },
  5844. { "Violet", "civ", {
  5845. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5846. }, "" }
  5847. };
  5848. };
  5849.  
  5850. class r125_ch_n {
  5851. vItemSpace = 20;
  5852. conditions = "";
  5853. price = 102500;
  5854. textures[] = {
  5855. { "Noir", "civ", {
  5856. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5857. }, "" },
  5858. { "Blanc", "civ", {
  5859. "#(argb,8,8,3)color(1,1,1,1)"
  5860. }, "" },
  5861. { "Gris", "civ", {
  5862. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5863. }, "" },
  5864. { "Sable", "civ", {
  5865. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5866. }, "" },
  5867. { "Rouge", "civ", {
  5868. "#(argb,8,8,3)color(1,0,0,1)"
  5869. }, "" },
  5870. { "Jaune", "civ", {
  5871. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5872. }, "" },
  5873. { "Bleu", "civ", {
  5874. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5875. }, "" },
  5876. { "Bleu Nuit", "civ", {
  5877. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5878. }, "" },
  5879. { "Mauve", "civ", {
  5880. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5881. }, "" },
  5882. { "Orange", "civ", {
  5883. "#(argb,8,8,3)color(1,0.251,0,1)"
  5884. }, "" },
  5885. { "Vert", "civ", {
  5886. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5887. }, "" },
  5888. { "Rose", "civ", {
  5889. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5890. }, "" },
  5891. { "Violet", "civ", {
  5892. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5893. }, "" }
  5894. };
  5895. };
  5896.  
  5897. class RS6_Avantlu_GMK {
  5898. vItemSpace = 25;
  5899. conditions = "";
  5900. price = 450120;
  5901. textures[] = {
  5902. { "Noir", "civ", {
  5903. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5904. }, "" },
  5905. { "Blanc", "civ", {
  5906. "#(argb,8,8,3)color(1,1,1,1)"
  5907. }, "" },
  5908. { "Gris", "civ", {
  5909. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5910. }, "" },
  5911. { "Sable", "civ", {
  5912. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5913. }, "" },
  5914. { "Rouge", "civ", {
  5915. "#(argb,8,8,3)color(1,0,0,1)"
  5916. }, "" },
  5917. { "Jaune", "civ", {
  5918. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5919. }, "" },
  5920. { "Bleu", "civ", {
  5921. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5922. }, "" },
  5923. { "Bleu Nuit", "civ", {
  5924. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5925. }, "" },
  5926. { "Mauve", "civ", {
  5927. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5928. }, "" },
  5929. { "Orange", "civ", {
  5930. "#(argb,8,8,3)color(1,0.251,0,1)"
  5931. }, "" },
  5932. { "Vert", "civ", {
  5933. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5934. }, "" },
  5935. { "Rose", "civ", {
  5936. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5937. }, "" },
  5938. { "Violet", "civ", {
  5939. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5940. }, "" }
  5941. };
  5942. };
  5943. class RS6_Avantlu_GMK2 {
  5944. vItemSpace = 25;
  5945. conditions = "";
  5946. price = 450120;
  5947. textures[] = {
  5948. { "Noir", "civ", {
  5949. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5950. }, "" },
  5951. { "Blanc", "civ", {
  5952. "#(argb,8,8,3)color(1,1,1,1)"
  5953. }, "" },
  5954. { "Gris", "civ", {
  5955. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  5956. }, "" },
  5957. { "Sable", "civ", {
  5958. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  5959. }, "" },
  5960. { "Rouge", "civ", {
  5961. "#(argb,8,8,3)color(1,0,0,1)"
  5962. }, "" },
  5963. { "Jaune", "civ", {
  5964. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  5965. }, "" },
  5966. { "Bleu", "civ", {
  5967. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  5968. }, "" },
  5969. { "Bleu Nuit", "civ", {
  5970. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  5971. }, "" },
  5972. { "Mauve", "civ", {
  5973. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  5974. }, "" },
  5975. { "Orange", "civ", {
  5976. "#(argb,8,8,3)color(1,0.251,0,1)"
  5977. }, "" },
  5978. { "Vert", "civ", {
  5979. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  5980. }, "" },
  5981. { "Rose", "civ", {
  5982. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  5983. }, "" },
  5984. { "Violet", "civ", {
  5985. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  5986. }, "" }
  5987. };
  5988. };
  5989.  
  5990. class r125_ch {
  5991. vItemSpace = 30;
  5992. conditions = "";
  5993. price = 21120;
  5994. textures[] = {
  5995. { "Noir", "civ", {
  5996. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  5997. }, "" },
  5998. { "Blanc", "civ", {
  5999. "#(argb,8,8,3)color(1,1,1,1)"
  6000. }, "" },
  6001. { "Gris", "civ", {
  6002. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6003. }, "" },
  6004. { "Sable", "civ", {
  6005. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6006. }, "" },
  6007. { "Rouge", "civ", {
  6008. "#(argb,8,8,3)color(1,0,0,1)"
  6009. }, "" },
  6010. { "Jaune", "civ", {
  6011. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6012. }, "" },
  6013. { "Bleu", "civ", {
  6014. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6015. }, "" },
  6016. { "Bleu Nuit", "civ", {
  6017. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6018. }, "" },
  6019. { "Mauve", "civ", {
  6020. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6021. }, "" },
  6022. { "Orange", "civ", {
  6023. "#(argb,8,8,3)color(1,0.251,0,1)"
  6024. }, "" },
  6025. { "Vert", "civ", {
  6026. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6027. }, "" },
  6028. { "Rose", "civ", {
  6029. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6030. }, "" },
  6031. { "Violet", "civ", {
  6032. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6033. }, "" }
  6034. };
  6035. };
  6036. class xj6_ch {
  6037. vItemSpace = 50;
  6038. conditions = "";
  6039. price = 18000;
  6040. textures[] = {
  6041. { "Noir", "civ", {
  6042. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6043. }, "" },
  6044. { "Blanc", "civ", {
  6045. "#(argb,8,8,3)color(1,1,1,1)"
  6046. }, "" },
  6047. { "Gris", "civ", {
  6048. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6049. }, "" },
  6050. { "Sable", "civ", {
  6051. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6052. }, "" },
  6053. { "Rouge", "civ", {
  6054. "#(argb,8,8,3)color(1,0,0,1)"
  6055. }, "" },
  6056. { "Jaune", "civ", {
  6057. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6058. }, "" },
  6059. { "Bleu", "civ", {
  6060. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6061. }, "" },
  6062. { "Bleu Nuit", "civ", {
  6063. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6064. }, "" },
  6065. { "Mauve", "civ", {
  6066. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6067. }, "" },
  6068. { "Orange", "civ", {
  6069. "#(argb,8,8,3)color(1,0.251,0,1)"
  6070. }, "" },
  6071. { "Vert", "civ", {
  6072. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6073. }, "" },
  6074. { "Rose", "civ", {
  6075. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6076. }, "" },
  6077. { "Violet", "civ", {
  6078. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6079. }, "" }
  6080. };
  6081. };
  6082.  
  6083. class M235ilu_civ {
  6084. vItemSpace = 25;
  6085. conditions = "";
  6086. price = 150000;
  6087. textures[] = {
  6088. { "Noir", "civ", {
  6089. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6090. }, "" },
  6091. };
  6092. };
  6093.  
  6094. class YamahaQlu_civ {
  6095. vItemSpace = 50;
  6096. conditions = "";
  6097. price = 10520;
  6098. textures[] = {
  6099. { "Noir", "civ", {
  6100. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6101. }, "" },
  6102. { "Blanc", "civ", {
  6103. "#(argb,8,8,3)color(1,1,1,1)"
  6104. }, "" },
  6105. { "Gris", "civ", {
  6106. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6107. }, "" },
  6108. { "Sable", "civ", {
  6109. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6110. }, "" },
  6111. { "Rouge", "civ", {
  6112. "#(argb,8,8,3)color(1,0,0,1)"
  6113. }, "" },
  6114. { "Jaune", "civ", {
  6115. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6116. }, "" },
  6117. { "Bleu", "civ", {
  6118. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6119. }, "" },
  6120. { "Bleu Nuit", "civ", {
  6121. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6122. }, "" },
  6123. { "Mauve", "civ", {
  6124. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6125. }, "" },
  6126. { "Orange", "civ", {
  6127. "#(argb,8,8,3)color(1,0.251,0,1)"
  6128. }, "" },
  6129. { "Vert", "civ", {
  6130. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6131. }, "" },
  6132. { "Rose", "civ", {
  6133. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6134. }, "" },
  6135. { "Violet", "civ", {
  6136. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6137. }, "" }
  6138. };
  6139. };
  6140.  
  6141. class RS6_Avantlu_civ {
  6142. vItemSpace = 25;
  6143. conditions = "";
  6144. price = 350120;
  6145. textures[] = {
  6146. { "Noir", "civ", {
  6147. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6148. }, "" },
  6149. { "Blanc", "civ", {
  6150. "#(argb,8,8,3)color(1,1,1,1)"
  6151. }, "" },
  6152. { "Gris", "civ", {
  6153. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6154. }, "" },
  6155. { "Sable", "civ", {
  6156. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6157. }, "" },
  6158. { "Rouge", "civ", {
  6159. "#(argb,8,8,3)color(1,0,0,1)"
  6160. }, "" },
  6161. { "Jaune", "civ", {
  6162. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6163. }, "" },
  6164. { "Bleu", "civ", {
  6165. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6166. }, "" },
  6167. { "Bleu Nuit", "civ", {
  6168. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6169. }, "" },
  6170. { "Mauve", "civ", {
  6171. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6172. }, "" },
  6173. { "Orange", "civ", {
  6174. "#(argb,8,8,3)color(1,0.251,0,1)"
  6175. }, "" },
  6176. { "Vert", "civ", {
  6177. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6178. }, "" },
  6179. { "Rose", "civ", {
  6180. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6181. }, "" },
  6182. { "Violet", "civ", {
  6183. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6184. }, "" }
  6185. };
  6186. };
  6187.  
  6188. class AlessioBMG {
  6189. vItemSpace = 25;
  6190. conditions = "";
  6191. price = 450120;
  6192. textures[] = {
  6193. };
  6194. };
  6195. class AlessioM5_Gold {
  6196. vItemSpace = 25;
  6197. conditions = "";
  6198. price = 450120;
  6199. textures[] = {
  6200. };
  6201. };
  6202. class M5lu_civ {
  6203. vItemSpace = 25;
  6204. conditions = "";
  6205. price = 250120;
  6206. textures[] = {
  6207. { "Noir", "civ", {
  6208. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6209. }, "" },
  6210. { "Blanc", "civ", {
  6211. "#(argb,8,8,3)color(1,1,1,1)"
  6212. }, "" },
  6213. { "Gris", "civ", {
  6214. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6215. }, "" },
  6216. { "Sable", "civ", {
  6217. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6218. }, "" },
  6219. { "Rouge", "civ", {
  6220. "#(argb,8,8,3)color(1,0,0,1)"
  6221. }, "" },
  6222. { "Jaune", "civ", {
  6223. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6224. }, "" },
  6225. { "Bleu", "civ", {
  6226. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6227. }, "" },
  6228. { "Bleu Nuit", "civ", {
  6229. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6230. }, "" },
  6231. { "Mauve", "civ", {
  6232. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6233. }, "" },
  6234. { "Orange", "civ", {
  6235. "#(argb,8,8,3)color(1,0.251,0,1)"
  6236. }, "" },
  6237. { "Vert", "civ", {
  6238. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6239. }, "" },
  6240. { "Rose", "civ", {
  6241. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6242. }, "" },
  6243. { "Violet", "civ", {
  6244. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6245. }, "" }
  6246. };
  6247. };
  6248. class AlessioM5 {
  6249. vItemSpace = 25;
  6250. conditions = "";
  6251. price = 250120;
  6252. textures[] = {
  6253. { "Noir", "civ", {
  6254. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6255. }, "" },
  6256. { "Blanc", "civ", {
  6257. "#(argb,8,8,3)color(1,1,1,1)"
  6258. }, "" },
  6259. { "Gris", "civ", {
  6260. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6261. }, "" },
  6262. { "Sable", "civ", {
  6263. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6264. }, "" },
  6265. { "Rouge", "civ", {
  6266. "#(argb,8,8,3)color(1,0,0,1)"
  6267. }, "" },
  6268. { "Jaune", "civ", {
  6269. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6270. }, "" },
  6271. { "Bleu", "civ", {
  6272. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6273. }, "" },
  6274. { "Bleu Nuit", "civ", {
  6275. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6276. }, "" },
  6277. { "Mauve", "civ", {
  6278. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6279. }, "" },
  6280. { "Orange", "civ", {
  6281. "#(argb,8,8,3)color(1,0.251,0,1)"
  6282. }, "" },
  6283. { "Vert", "civ", {
  6284. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6285. }, "" },
  6286. { "Rose", "civ", {
  6287. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6288. }, "" },
  6289. { "Violet", "civ", {
  6290. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6291. }, "" }
  6292. };
  6293. };
  6294. class AlessioBM4M {
  6295. vItemSpace = 25;
  6296. conditions = "";
  6297. price = 250120;
  6298. textures[] = {
  6299. { "Noir", "civ", {
  6300. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6301. }, "" },
  6302. { "Blanc", "civ", {
  6303. "#(argb,8,8,3)color(1,1,1,1)"
  6304. }, "" },
  6305. { "Gris", "civ", {
  6306. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6307. }, "" },
  6308. { "Sable", "civ", {
  6309. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6310. }, "" },
  6311. { "Rouge", "civ", {
  6312. "#(argb,8,8,3)color(1,0,0,1)"
  6313. }, "" },
  6314. { "Jaune", "civ", {
  6315. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6316. }, "" },
  6317. { "Bleu", "civ", {
  6318. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6319. }, "" },
  6320. { "Bleu Nuit", "civ", {
  6321. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6322. }, "" },
  6323. { "Mauve", "civ", {
  6324. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6325. }, "" },
  6326. { "Orange", "civ", {
  6327. "#(argb,8,8,3)color(1,0.251,0,1)"
  6328. }, "" },
  6329. { "Vert", "civ", {
  6330. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6331. }, "" },
  6332. { "Rose", "civ", {
  6333. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6334. }, "" },
  6335. { "Violet", "civ", {
  6336. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6337. }, "" }
  6338. };
  6339. };
  6340.  
  6341. class midlum_p2 {
  6342. vItemSpace = 500;
  6343. conditions = "";
  6344. price = 940000;
  6345. textures[] = {
  6346. { "Noir", "civ", {
  6347. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6348. }, "" },
  6349. { "Blanc", "civ", {
  6350. "#(argb,8,8,3)color(1,1,1,1)"
  6351. }, "" },
  6352. { "Gris", "civ", {
  6353. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6354. }, "" },
  6355. { "Sable", "civ", {
  6356. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6357. }, "" },
  6358. { "Rouge", "civ", {
  6359. "#(argb,8,8,3)color(1,0,0,1)"
  6360. }, "" },
  6361. { "Jaune", "civ", {
  6362. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6363. }, "" },
  6364. { "Bleu", "civ", {
  6365. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6366. }, "" },
  6367. { "Bleu Nuit", "civ", {
  6368. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6369. }, "" },
  6370. { "Mauve", "civ", {
  6371. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6372. }, "" },
  6373. { "Orange", "civ", {
  6374. "#(argb,8,8,3)color(1,0.251,0,1)"
  6375. }, "" },
  6376. { "Vert", "civ", {
  6377. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6378. }, "" },
  6379. { "Rose", "civ", {
  6380. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6381. }, "" },
  6382. { "Violet", "civ", {
  6383. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6384. }, "" }
  6385. };
  6386. };
  6387.  
  6388. class Midlum_inter {
  6389. vItemSpace = 500;
  6390. conditions = "";
  6391. price = 596520;
  6392. textures[] = {
  6393. { "Noir", "civ", {
  6394. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6395. }, "" },
  6396. { "Blanc", "civ", {
  6397. "#(argb,8,8,3)color(1,1,1,1)"
  6398. }, "" },
  6399. { "Gris", "civ", {
  6400. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6401. }, "" },
  6402. { "Sable", "civ", {
  6403. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6404. }, "" },
  6405. { "Rouge", "civ", {
  6406. "#(argb,8,8,3)color(1,0,0,1)"
  6407. }, "" },
  6408. { "Jaune", "civ", {
  6409. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6410. }, "" },
  6411. { "Bleu", "civ", {
  6412. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6413. }, "" },
  6414. { "Bleu Nuit", "civ", {
  6415. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6416. }, "" },
  6417. { "Mauve", "civ", {
  6418. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6419. }, "" },
  6420. { "Orange", "civ", {
  6421. "#(argb,8,8,3)color(1,0.251,0,1)"
  6422. }, "" },
  6423. { "Vert", "civ", {
  6424. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6425. }, "" },
  6426. { "Rose", "civ", {
  6427. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6428. }, "" },
  6429. { "Violet", "civ", {
  6430. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6431. }, "" }
  6432. };
  6433. };
  6434.  
  6435. class Midlum_fedex {
  6436. vItemSpace = 500;
  6437. conditions = "";
  6438. price = 596520;
  6439. textures[] = {
  6440. { "Noir", "civ", {
  6441. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6442. }, "" },
  6443. { "Blanc", "civ", {
  6444. "#(argb,8,8,3)color(1,1,1,1)"
  6445. }, "" },
  6446. { "Gris", "civ", {
  6447. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6448. }, "" },
  6449. { "Sable", "civ", {
  6450. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6451. }, "" },
  6452. { "Rouge", "civ", {
  6453. "#(argb,8,8,3)color(1,0,0,1)"
  6454. }, "" },
  6455. { "Jaune", "civ", {
  6456. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6457. }, "" },
  6458. { "Bleu", "civ", {
  6459. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6460. }, "" },
  6461. { "Bleu Nuit", "civ", {
  6462. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6463. }, "" },
  6464. { "Mauve", "civ", {
  6465. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6466. }, "" },
  6467. { "Orange", "civ", {
  6468. "#(argb,8,8,3)color(1,0.251,0,1)"
  6469. }, "" },
  6470. { "Vert", "civ", {
  6471. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6472. }, "" },
  6473. { "Rose", "civ", {
  6474. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6475. }, "" },
  6476. { "Violet", "civ", {
  6477. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6478. }, "" }
  6479. };
  6480. };
  6481.  
  6482. class Midlum_DHL {
  6483. vItemSpace = 500;
  6484. conditions = "";
  6485. price = 596520;
  6486. textures[] = {
  6487. { "Noir", "civ", {
  6488. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6489. }, "" },
  6490. { "Blanc", "civ", {
  6491. "#(argb,8,8,3)color(1,1,1,1)"
  6492. }, "" },
  6493. { "Gris", "civ", {
  6494. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6495. }, "" },
  6496. { "Sable", "civ", {
  6497. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6498. }, "" },
  6499. { "Rouge", "civ", {
  6500. "#(argb,8,8,3)color(1,0,0,1)"
  6501. }, "" },
  6502. { "Jaune", "civ", {
  6503. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6504. }, "" },
  6505. { "Bleu", "civ", {
  6506. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6507. }, "" },
  6508. { "Bleu Nuit", "civ", {
  6509. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6510. }, "" },
  6511. { "Mauve", "civ", {
  6512. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6513. }, "" },
  6514. { "Orange", "civ", {
  6515. "#(argb,8,8,3)color(1,0.251,0,1)"
  6516. }, "" },
  6517. { "Vert", "civ", {
  6518. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6519. }, "" },
  6520. { "Rose", "civ", {
  6521. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6522. }, "" },
  6523. { "Violet", "civ", {
  6524. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6525. }, "" }
  6526. };
  6527. };
  6528.  
  6529. class Midlum_poste {
  6530. vItemSpace = 500;
  6531. conditions = "";
  6532. price = 596520;
  6533. textures[] = {
  6534. { "Noir", "civ", {
  6535. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6536. }, "" },
  6537. { "Blanc", "civ", {
  6538. "#(argb,8,8,3)color(1,1,1,1)"
  6539. }, "" },
  6540. { "Gris", "civ", {
  6541. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6542. }, "" },
  6543. { "Sable", "civ", {
  6544. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6545. }, "" },
  6546. { "Rouge", "civ", {
  6547. "#(argb,8,8,3)color(1,0,0,1)"
  6548. }, "" },
  6549. { "Jaune", "civ", {
  6550. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6551. }, "" },
  6552. { "Bleu", "civ", {
  6553. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6554. }, "" },
  6555. { "Bleu Nuit", "civ", {
  6556. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6557. }, "" },
  6558. { "Mauve", "civ", {
  6559. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6560. }, "" },
  6561. { "Orange", "civ", {
  6562. "#(argb,8,8,3)color(1,0.251,0,1)"
  6563. }, "" },
  6564. { "Vert", "civ", {
  6565. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6566. }, "" },
  6567. { "Rose", "civ", {
  6568. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6569. }, "" },
  6570. { "Violet", "civ", {
  6571. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6572. }, "" }
  6573. };
  6574. };
  6575.  
  6576. class Midlum_amazon {
  6577. vItemSpace = 500;
  6578. conditions = "";
  6579. price = 596520;
  6580. textures[] = {
  6581. { "Noir", "civ", {
  6582. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6583. }, "" },
  6584. { "Blanc", "civ", {
  6585. "#(argb,8,8,3)color(1,1,1,1)"
  6586. }, "" },
  6587. { "Gris", "civ", {
  6588. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6589. }, "" },
  6590. { "Sable", "civ", {
  6591. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6592. }, "" },
  6593. { "Rouge", "civ", {
  6594. "#(argb,8,8,3)color(1,0,0,1)"
  6595. }, "" },
  6596. { "Jaune", "civ", {
  6597. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6598. }, "" },
  6599. { "Bleu", "civ", {
  6600. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6601. }, "" },
  6602. { "Bleu Nuit", "civ", {
  6603. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6604. }, "" },
  6605. { "Mauve", "civ", {
  6606. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6607. }, "" },
  6608. { "Orange", "civ", {
  6609. "#(argb,8,8,3)color(1,0.251,0,1)"
  6610. }, "" },
  6611. { "Vert", "civ", {
  6612. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6613. }, "" },
  6614. { "Rose", "civ", {
  6615. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6616. }, "" },
  6617. { "Violet", "civ", {
  6618. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6619. }, "" }
  6620. };
  6621. };
  6622.  
  6623. class subaruch_civ {
  6624. vItemSpace = 25;
  6625. conditions = "";
  6626. price = 150120;
  6627. textures[] = {
  6628. { "Noir", "civ", {
  6629. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6630. }, "" },
  6631. { "Blanc", "civ", {
  6632. "#(argb,8,8,3)color(1,1,1,1)"
  6633. }, "" },
  6634. { "Gris", "civ", {
  6635. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6636. }, "" },
  6637. { "Sable", "civ", {
  6638. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6639. }, "" },
  6640. { "Rouge", "civ", {
  6641. "#(argb,8,8,3)color(1,0,0,1)"
  6642. }, "" },
  6643. { "Jaune", "civ", {
  6644. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6645. }, "" },
  6646. { "Bleu", "civ", {
  6647. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6648. }, "" },
  6649. { "Bleu Nuit", "civ", {
  6650. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6651. }, "" },
  6652. { "Mauve", "civ", {
  6653. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6654. }, "" },
  6655. { "Orange", "civ", {
  6656. "#(argb,8,8,3)color(1,0.251,0,1)"
  6657. }, "" },
  6658. { "Vert", "civ", {
  6659. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6660. }, "" },
  6661. { "Rose", "civ", {
  6662. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6663. }, "" },
  6664. { "Violet", "civ", {
  6665. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6666. }, "" }
  6667. };
  6668. };
  6669.  
  6670. class Scania_124L {
  6671. vItemSpace = 650;
  6672. conditions = "";
  6673. price = 556000;
  6674. textures[] = {
  6675. { "Noir", "civ", {
  6676. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6677. }, "" },
  6678. { "Blanc", "civ", {
  6679. "#(argb,8,8,3)color(1,1,1,1)"
  6680. }, "" },
  6681. { "Gris", "civ", {
  6682. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6683. }, "" },
  6684. { "Sable", "civ", {
  6685. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6686. }, "" },
  6687. { "Rouge", "civ", {
  6688. "#(argb,8,8,3)color(1,0,0,1)"
  6689. }, "" },
  6690. { "Jaune", "civ", {
  6691. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6692. }, "" },
  6693. { "Bleu", "civ", {
  6694. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6695. }, "" },
  6696. { "Bleu Nuit", "civ", {
  6697. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6698. }, "" },
  6699. { "Mauve", "civ", {
  6700. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6701. }, "" },
  6702. { "Orange", "civ", {
  6703. "#(argb,8,8,3)color(1,0.251,0,1)"
  6704. }, "" },
  6705. { "Vert", "civ", {
  6706. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6707. }, "" },
  6708. { "Rose", "civ", {
  6709. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6710. }, "" },
  6711. { "Violet", "civ", {
  6712. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6713. }, "" }
  6714. };
  6715. };
  6716.  
  6717. class Renault_Range_T {
  6718. vItemSpace = 550;
  6719. conditions = "";
  6720. price = 1400202;
  6721. textures[] = {
  6722. { "Noir", "civ", {
  6723. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6724. }, "" },
  6725. { "Blanc", "civ", {
  6726. "#(argb,8,8,3)color(1,1,1,1)"
  6727. }, "" },
  6728. { "Gris", "civ", {
  6729. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6730. }, "" },
  6731. { "Sable", "civ", {
  6732. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6733. }, "" },
  6734. { "Rouge", "civ", {
  6735. "#(argb,8,8,3)color(1,0,0,1)"
  6736. }, "" },
  6737. { "Jaune", "civ", {
  6738. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6739. }, "" },
  6740. { "Bleu", "civ", {
  6741. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6742. }, "" },
  6743. { "Bleu Nuit", "civ", {
  6744. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6745. }, "" },
  6746. { "Mauve", "civ", {
  6747. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6748. }, "" },
  6749. { "Orange", "civ", {
  6750. "#(argb,8,8,3)color(1,0.251,0,1)"
  6751. }, "" },
  6752. { "Vert", "civ", {
  6753. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6754. }, "" },
  6755. { "Rose", "civ", {
  6756. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6757. }, "" },
  6758. { "Violet", "civ", {
  6759. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6760. }, "" }
  6761. };
  6762. };
  6763.  
  6764. class M4_ALLG2 {
  6765. vItemSpace = 25;
  6766. conditions = "";
  6767. price = 450120;
  6768. textures[] = {
  6769. { "Noir", "civ", {
  6770. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6771. }, "" },
  6772. { "Blanc", "civ", {
  6773. "#(argb,8,8,3)color(1,1,1,1)"
  6774. }, "" },
  6775. { "Gris", "civ", {
  6776. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6777. }, "" },
  6778. { "Sable", "civ", {
  6779. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6780. }, "" },
  6781. { "Rouge", "civ", {
  6782. "#(argb,8,8,3)color(1,0,0,1)"
  6783. }, "" },
  6784. { "Jaune", "civ", {
  6785. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6786. }, "" },
  6787. { "Bleu", "civ", {
  6788. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6789. }, "" },
  6790. { "Bleu Nuit", "civ", {
  6791. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6792. }, "" },
  6793. { "Mauve", "civ", {
  6794. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6795. }, "" },
  6796. { "Orange", "civ", {
  6797. "#(argb,8,8,3)color(1,0.251,0,1)"
  6798. }, "" },
  6799. { "Vert", "civ", {
  6800. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6801. }, "" },
  6802. { "Rose", "civ", {
  6803. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6804. }, "" },
  6805. { "Violet", "civ", {
  6806. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6807. }, "" }
  6808. };
  6809. };
  6810.  
  6811. class Renault_Lander {
  6812. vItemSpace = 550;
  6813. conditions = "";
  6814. price = 1486520;
  6815. textures[] = {
  6816. { "Noir", "civ", {
  6817. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6818. }, "" },
  6819. { "Blanc", "civ", {
  6820. "#(argb,8,8,3)color(1,1,1,1)"
  6821. }, "" },
  6822. { "Gris", "civ", {
  6823. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6824. }, "" },
  6825. { "Sable", "civ", {
  6826. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6827. }, "" },
  6828. { "Rouge", "civ", {
  6829. "#(argb,8,8,3)color(1,0,0,1)"
  6830. }, "" },
  6831. { "Jaune", "civ", {
  6832. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6833. }, "" },
  6834. { "Bleu", "civ", {
  6835. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6836. }, "" },
  6837. { "Bleu Nuit", "civ", {
  6838. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6839. }, "" },
  6840. { "Mauve", "civ", {
  6841. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6842. }, "" },
  6843. { "Orange", "civ", {
  6844. "#(argb,8,8,3)color(1,0.251,0,1)"
  6845. }, "" },
  6846. { "Vert", "civ", {
  6847. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6848. }, "" },
  6849. { "Rose", "civ", {
  6850. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6851. }, "" },
  6852. { "Violet", "civ", {
  6853. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6854. }, "" }
  6855. };
  6856. };
  6857.  
  6858. class AlessioC63M {
  6859. vItemSpace = 50;
  6860. conditions = "";
  6861. price = 620100;
  6862. textures[] = {
  6863. { "Noir", "civ", {
  6864. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6865. }, "" },
  6866. { "Blanc", "civ", {
  6867. "#(argb,8,8,3)color(1,1,1,1)"
  6868. }, "" },
  6869. { "Gris", "civ", {
  6870. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6871. }, "" },
  6872. { "Sable", "civ", {
  6873. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6874. }, "" },
  6875. { "Rouge", "civ", {
  6876. "#(argb,8,8,3)color(1,0,0,1)"
  6877. }, "" },
  6878. { "Jaune", "civ", {
  6879. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6880. }, "" },
  6881. { "Bleu", "civ", {
  6882. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6883. }, "" },
  6884. { "Bleu Nuit", "civ", {
  6885. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6886. }, "" },
  6887. { "Mauve", "civ", {
  6888. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6889. }, "" },
  6890. { "Orange", "civ", {
  6891. "#(argb,8,8,3)color(1,0.251,0,1)"
  6892. }, "" },
  6893. { "Vert", "civ", {
  6894. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6895. }, "" },
  6896. { "Rose", "civ", {
  6897. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6898. }, "" },
  6899. { "Violet", "civ", {
  6900. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6901. }, "" }
  6902. };
  6903. };
  6904.  
  6905. class AlessioC63NG {
  6906. vItemSpace = 50;
  6907. conditions = "";
  6908. price = 520100;
  6909. textures[] = {
  6910. { "Noir", "civ", {
  6911. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  6912. }, "" },
  6913. { "Blanc", "civ", {
  6914. "#(argb,8,8,3)color(1,1,1,1)"
  6915. }, "" },
  6916. { "Gris", "civ", {
  6917. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  6918. }, "" },
  6919. { "Sable", "civ", {
  6920. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  6921. }, "" },
  6922. { "Rouge", "civ", {
  6923. "#(argb,8,8,3)color(1,0,0,1)"
  6924. }, "" },
  6925. { "Jaune", "civ", {
  6926. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  6927. }, "" },
  6928. { "Bleu", "civ", {
  6929. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  6930. }, "" },
  6931. { "Bleu Nuit", "civ", {
  6932. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  6933. }, "" },
  6934. { "Mauve", "civ", {
  6935. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  6936. }, "" },
  6937. { "Orange", "civ", {
  6938. "#(argb,8,8,3)color(1,0.251,0,1)"
  6939. }, "" },
  6940. { "Vert", "civ", {
  6941. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  6942. }, "" },
  6943. { "Rose", "civ", {
  6944. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  6945. }, "" },
  6946. { "Violet", "civ", {
  6947. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  6948. }, "" }
  6949. };
  6950. };
  6951.  
  6952. class AlessioIXMRG {
  6953. vItemSpace = 25;
  6954. conditions = "";
  6955. price = 450120;
  6956. textures[] = {};
  6957. };
  6958.  
  6959. class shounka_a3_brinks_noir {
  6960. vItemSpace = 50;
  6961. conditions = "license_civ_br";
  6962. price = 55120;
  6963. textures[] = {};
  6964. };
  6965.  
  6966. class shounka_a3_brinks_rouge {
  6967. vItemSpace = 50;
  6968. conditions = "license_civ_br";
  6969. price = 55120;
  6970. textures[] = {};
  6971. };
  6972. class chtrans_pen {
  6973. vItemSpace = 50;
  6974. conditions = "license_cop_ap";
  6975. price = 55120;
  6976. textures[] = {};
  6977. };
  6978. class Trafic_adp {
  6979. vItemSpace = 50;
  6980. conditions = "license_cop_ap";
  6981. price = 55120;
  6982. textures[] = {};
  6983. };
  6984. class chmaster2_adp {
  6985. vItemSpace = 50;
  6986. conditions = "license_cop_ap";
  6987. price = 55120;
  6988. textures[] = {};
  6989. };
  6990. class kangooII1_adp {
  6991. vItemSpace = 50;
  6992. conditions = "license_cop_ap";
  6993. price = 55120;
  6994. textures[] = {};
  6995. };
  6996. class Transit_adp {
  6997. vItemSpace = 50;
  6998. conditions = "license_cop_ap";
  6999. price = 55120;
  7000. textures[] = {};
  7001. };
  7002. class Peugeot_Expert_vigi {
  7003. vItemSpace = 50;
  7004. conditions = "license_civ_aml";
  7005. price = 55120;
  7006. textures[] = {};
  7007. };
  7008. class chdefender_vigi {
  7009. vItemSpace = 50;
  7010. conditions = "license_civ_aml";
  7011. price = 55120;
  7012. textures[] = {};
  7013. };
  7014. class chp4 {
  7015. vItemSpace = 50;
  7016. conditions = "license_civ_aml";
  7017. price = 55120;
  7018. textures[] = {};
  7019. };
  7020. class PVP_AT {
  7021. vItemSpace = 50;
  7022. conditions = "license_civ_aml";
  7023. price = 55120;
  7024. textures[] = {};
  7025. };
  7026. class chgbc_180 {
  7027. vItemSpace = 50;
  7028. conditions = "license_civ_aml";
  7029. price = 55120;
  7030. textures[] = {};
  7031. };
  7032. class kangooII1_vigi {
  7033. vItemSpace = 50;
  7034. conditions = "license_civ_aml";
  7035. price = 55120;
  7036. textures[] = {};
  7037. };
  7038. class Scenic3_vigi {
  7039. vItemSpace = 50;
  7040. conditions = "license_civ_aml";
  7041. price = 55120;
  7042. textures[] = {};
  7043. };
  7044. class Trafic3_vigi {
  7045. vItemSpace = 50;
  7046. conditions = "license_civ_aml";
  7047. price = 55120;
  7048. textures[] = {};
  7049. };
  7050. class VAB_AT {
  7051. vItemSpace = 50;
  7052. conditions = "license_civ_aml";
  7053. price = 55120;
  7054. textures[] = {};
  7055. };
  7056. class VBL_AT {
  7057. vItemSpace = 50;
  7058. conditions = "license_civ_aml";
  7059. price = 55120;
  7060. textures[] = {};
  7061. };
  7062.  
  7063. class Warrior_civ {
  7064. vItemSpace = 65;
  7065. conditions = "";
  7066. price = 59853;
  7067. textures[] = {
  7068. { "Noir", "civ", {
  7069. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7070. }, "" },
  7071. { "Blanc", "civ", {
  7072. "#(argb,8,8,3)color(1,1,1,1)"
  7073. }, "" },
  7074. { "Gris", "civ", {
  7075. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7076. }, "" },
  7077. { "Sable", "civ", {
  7078. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7079. }, "" },
  7080. { "Rouge", "civ", {
  7081. "#(argb,8,8,3)color(1,0,0,1)"
  7082. }, "" },
  7083. { "Jaune", "civ", {
  7084. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7085. }, "" },
  7086. { "Bleu", "civ", {
  7087. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7088. }, "" },
  7089. { "Bleu Nuit", "civ", {
  7090. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7091. }, "" },
  7092. { "Mauve", "civ", {
  7093. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7094. }, "" },
  7095. { "Orange", "civ", {
  7096. "#(argb,8,8,3)color(1,0.251,0,1)"
  7097. }, "" },
  7098. { "Vert", "civ", {
  7099. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7100. }, "" },
  7101. { "Rose", "civ", {
  7102. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7103. }, "" },
  7104. { "Violet", "civ", {
  7105. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7106. }, "" }
  7107. };
  7108. };
  7109.  
  7110. class AlessioMGAG {
  7111. vItemSpace = 25;
  7112. conditions = "";
  7113. price = 450120;
  7114. textures[] = {
  7115. { "Noir", "civ", {
  7116. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7117. }, "" },
  7118. { "Blanc", "civ", {
  7119. "#(argb,8,8,3)color(1,1,1,1)"
  7120. }, "" },
  7121. { "Gris", "civ", {
  7122. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7123. }, "" },
  7124. { "Sable", "civ", {
  7125. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7126. }, "" },
  7127. { "Rouge", "civ", {
  7128. "#(argb,8,8,3)color(1,0,0,1)"
  7129. }, "" },
  7130. { "Jaune", "civ", {
  7131. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7132. }, "" },
  7133. { "Bleu", "civ", {
  7134. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7135. }, "" },
  7136. { "Bleu Nuit", "civ", {
  7137. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7138. }, "" },
  7139. { "Mauve", "civ", {
  7140. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7141. }, "" },
  7142. { "Orange", "civ", {
  7143. "#(argb,8,8,3)color(1,0.251,0,1)"
  7144. }, "" },
  7145. { "Vert", "civ", {
  7146. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7147. }, "" },
  7148. { "Rose", "civ", {
  7149. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7150. }, "" },
  7151. { "Violet", "civ", {
  7152. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7153. }, "" }
  7154. };
  7155. };
  7156.  
  7157. class AlessioIXMR {
  7158. vItemSpace = 25;
  7159. conditions = "";
  7160. price = 450120;
  7161. textures[] = {
  7162. { "Noir", "civ", {
  7163. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7164. }, "" },
  7165. { "Blanc", "civ", {
  7166. "#(argb,8,8,3)color(1,1,1,1)"
  7167. }, "" },
  7168. { "Gris", "civ", {
  7169. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7170. }, "" },
  7171. { "Sable", "civ", {
  7172. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7173. }, "" },
  7174. { "Rouge", "civ", {
  7175. "#(argb,8,8,3)color(1,0,0,1)"
  7176. }, "" },
  7177. { "Jaune", "civ", {
  7178. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7179. }, "" },
  7180. { "Bleu", "civ", {
  7181. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7182. }, "" },
  7183. { "Bleu Nuit", "civ", {
  7184. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7185. }, "" },
  7186. { "Mauve", "civ", {
  7187. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7188. }, "" },
  7189. { "Orange", "civ", {
  7190. "#(argb,8,8,3)color(1,0.251,0,1)"
  7191. }, "" },
  7192. { "Vert", "civ", {
  7193. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7194. }, "" },
  7195. { "Rose", "civ", {
  7196. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7197. }, "" },
  7198. { "Violet", "civ", {
  7199. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7200. }, "" }
  7201. };
  7202. };
  7203.  
  7204. class AVENTADOR_CARBONE {
  7205. vItemSpace = 25;
  7206. conditions = "";
  7207. price = 950120;
  7208. textures[] = {
  7209. { "Noir", "civ", {
  7210. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7211. }, "" },
  7212. { "Blanc", "civ", {
  7213. "#(argb,8,8,3)color(1,1,1,1)"
  7214. }, "" },
  7215. { "Gris", "civ", {
  7216. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7217. }, "" },
  7218. { "Sable", "civ", {
  7219. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7220. }, "" },
  7221. { "Rouge", "civ", {
  7222. "#(argb,8,8,3)color(1,0,0,1)"
  7223. }, "" },
  7224. { "Jaune", "civ", {
  7225. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7226. }, "" },
  7227. { "Bleu", "civ", {
  7228. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7229. }, "" },
  7230. { "Bleu Nuit", "civ", {
  7231. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7232. }, "" },
  7233. { "Mauve", "civ", {
  7234. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7235. }, "" },
  7236. { "Orange", "civ", {
  7237. "#(argb,8,8,3)color(1,0.251,0,1)"
  7238. }, "" },
  7239. { "Vert", "civ", {
  7240. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7241. }, "" },
  7242. { "Rose", "civ", {
  7243. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7244. }, "" },
  7245. { "Violet", "civ", {
  7246. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7247. }, "" }
  7248. };
  7249. };
  7250. class AlessioAventadorG {
  7251. vItemSpace = 25;
  7252. conditions = "";
  7253. price = 950120;
  7254. textures[] = {
  7255. { "Noir", "civ", {
  7256. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7257. }, "" },
  7258. { "Blanc", "civ", {
  7259. "#(argb,8,8,3)color(1,1,1,1)"
  7260. }, "" },
  7261. { "Gris", "civ", {
  7262. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7263. }, "" },
  7264. { "Sable", "civ", {
  7265. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7266. }, "" },
  7267. { "Rouge", "civ", {
  7268. "#(argb,8,8,3)color(1,0,0,1)"
  7269. }, "" },
  7270. { "Jaune", "civ", {
  7271. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7272. }, "" },
  7273. { "Bleu", "civ", {
  7274. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7275. }, "" },
  7276. { "Bleu Nuit", "civ", {
  7277. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7278. }, "" },
  7279. { "Mauve", "civ", {
  7280. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7281. }, "" },
  7282. { "Orange", "civ", {
  7283. "#(argb,8,8,3)color(1,0.251,0,1)"
  7284. }, "" },
  7285. { "Vert", "civ", {
  7286. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7287. }, "" },
  7288. { "Rose", "civ", {
  7289. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7290. }, "" },
  7291. { "Violet", "civ", {
  7292. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7293. }, "" }
  7294. };
  7295. };
  7296.  
  7297. class AlessioAventadorM {
  7298. vItemSpace = 25;
  7299. conditions = "";
  7300. price = 450120;
  7301. textures[] = {
  7302. { "Noir", "civ", {
  7303. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7304. }, "" },
  7305. { "Blanc", "civ", {
  7306. "#(argb,8,8,3)color(1,1,1,1)"
  7307. }, "" },
  7308. { "Gris", "civ", {
  7309. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7310. }, "" },
  7311. { "Sable", "civ", {
  7312. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7313. }, "" },
  7314. { "Rouge", "civ", {
  7315. "#(argb,8,8,3)color(1,0,0,1)"
  7316. }, "" },
  7317. { "Jaune", "civ", {
  7318. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7319. }, "" },
  7320. { "Bleu", "civ", {
  7321. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7322. }, "" },
  7323. { "Bleu Nuit", "civ", {
  7324. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7325. }, "" },
  7326. { "Mauve", "civ", {
  7327. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7328. }, "" },
  7329. { "Orange", "civ", {
  7330. "#(argb,8,8,3)color(1,0.251,0,1)"
  7331. }, "" },
  7332. { "Vert", "civ", {
  7333. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7334. }, "" },
  7335. { "Rose", "civ", {
  7336. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7337. }, "" },
  7338. { "Violet", "civ", {
  7339. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7340. }, "" }
  7341. };
  7342. };
  7343.  
  7344. class MP4lu_civ {
  7345. vItemSpace = 25;
  7346. conditions = "";
  7347. price = 450120;
  7348. textures[] = {
  7349. { "Noir", "civ", {
  7350. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7351. }, "" },
  7352. { "Blanc", "civ", {
  7353. "#(argb,8,8,3)color(1,1,1,1)"
  7354. }, "" },
  7355. { "Gris", "civ", {
  7356. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7357. }, "" },
  7358. { "Sable", "civ", {
  7359. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7360. }, "" },
  7361. { "Rouge", "civ", {
  7362. "#(argb,8,8,3)color(1,0,0,1)"
  7363. }, "" },
  7364. { "Jaune", "civ", {
  7365. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7366. }, "" },
  7367. { "Bleu", "civ", {
  7368. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7369. }, "" },
  7370. { "Bleu Nuit", "civ", {
  7371. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7372. }, "" },
  7373. { "Mauve", "civ", {
  7374. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7375. }, "" },
  7376. { "Orange", "civ", {
  7377. "#(argb,8,8,3)color(1,0.251,0,1)"
  7378. }, "" },
  7379. { "Vert", "civ", {
  7380. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7381. }, "" },
  7382. { "Rose", "civ", {
  7383. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7384. }, "" },
  7385. { "Violet", "civ", {
  7386. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7387. }, "" }
  7388. };
  7389. };
  7390.  
  7391. class AlessioC63G {
  7392. vItemSpace = 25;
  7393. conditions = "";
  7394. price = 450120;
  7395. textures[] = {
  7396. { "Noir", "civ", {
  7397. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7398. }, "" },
  7399. { "Blanc", "civ", {
  7400. "#(argb,8,8,3)color(1,1,1,1)"
  7401. }, "" },
  7402. { "Gris", "civ", {
  7403. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7404. }, "" },
  7405. { "Sable", "civ", {
  7406. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7407. }, "" },
  7408. { "Rouge", "civ", {
  7409. "#(argb,8,8,3)color(1,0,0,1)"
  7410. }, "" },
  7411. { "Jaune", "civ", {
  7412. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7413. }, "" },
  7414. { "Bleu", "civ", {
  7415. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7416. }, "" },
  7417. { "Bleu Nuit", "civ", {
  7418. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7419. }, "" },
  7420. { "Mauve", "civ", {
  7421. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7422. }, "" },
  7423. { "Orange", "civ", {
  7424. "#(argb,8,8,3)color(1,0.251,0,1)"
  7425. }, "" },
  7426. { "Vert", "civ", {
  7427. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7428. }, "" },
  7429. { "Rose", "civ", {
  7430. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7431. }, "" },
  7432. { "Violet", "civ", {
  7433. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7434. }, "" }
  7435. };
  7436. };
  7437.  
  7438. class AlessioGTBMat {
  7439. vItemSpace = 25;
  7440. conditions = "";
  7441. price = 450120;
  7442. textures[] = {
  7443. { "Noir", "civ", {
  7444. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7445. }, "" },
  7446. { "Blanc", "civ", {
  7447. "#(argb,8,8,3)color(1,1,1,1)"
  7448. }, "" },
  7449. { "Gris", "civ", {
  7450. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7451. }, "" },
  7452. { "Sable", "civ", {
  7453. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7454. }, "" },
  7455. { "Rouge", "civ", {
  7456. "#(argb,8,8,3)color(1,0,0,1)"
  7457. }, "" },
  7458. { "Jaune", "civ", {
  7459. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7460. }, "" },
  7461. { "Bleu", "civ", {
  7462. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7463. }, "" },
  7464. { "Bleu Nuit", "civ", {
  7465. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7466. }, "" },
  7467. { "Mauve", "civ", {
  7468. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7469. }, "" },
  7470. { "Orange", "civ", {
  7471. "#(argb,8,8,3)color(1,0.251,0,1)"
  7472. }, "" },
  7473. { "Vert", "civ", {
  7474. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7475. }, "" },
  7476. { "Rose", "civ", {
  7477. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7478. }, "" },
  7479. { "Violet", "civ", {
  7480. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7481. }, "" }
  7482. };
  7483. };
  7484.  
  7485. class AlessioMustangGold {
  7486. vItemSpace = 25;
  7487. conditions = "";
  7488. price = 350120;
  7489. textures[] = {};
  7490. };
  7491. class AlessioMustangChrome {
  7492. vItemSpace = 25;
  7493. conditions = "";
  7494. price = 350120;
  7495. textures[] = {};
  7496. };
  7497.  
  7498. class AlessioMustangMat {
  7499. vItemSpace = 25;
  7500. conditions = "";
  7501. price = 450120;
  7502. textures[] = {
  7503. { "Noir", "civ", {
  7504. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7505. }, "" },
  7506. { "Blanc", "civ", {
  7507. "#(argb,8,8,3)color(1,1,1,1)"
  7508. }, "" },
  7509. { "Gris", "civ", {
  7510. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7511. }, "" },
  7512. { "Sable", "civ", {
  7513. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7514. }, "" },
  7515. { "Rouge", "civ", {
  7516. "#(argb,8,8,3)color(1,0,0,1)"
  7517. }, "" },
  7518. { "Jaune", "civ", {
  7519. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7520. }, "" },
  7521. { "Bleu", "civ", {
  7522. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7523. }, "" },
  7524. { "Bleu Nuit", "civ", {
  7525. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7526. }, "" },
  7527. { "Mauve", "civ", {
  7528. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7529. }, "" },
  7530. { "Orange", "civ", {
  7531. "#(argb,8,8,3)color(1,0.251,0,1)"
  7532. }, "" },
  7533. { "Vert", "civ", {
  7534. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7535. }, "" },
  7536. { "Rose", "civ", {
  7537. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7538. }, "" },
  7539. { "Violet", "civ", {
  7540. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7541. }, "" }
  7542. };
  7543. };
  7544. class chCrossfire {
  7545. vItemSpace = 25;
  7546. conditions = "";
  7547. price = 450120;
  7548. textures[] = {
  7549. { "Noir", "civ", {
  7550. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7551. }, "" },
  7552. { "Blanc", "civ", {
  7553. "#(argb,8,8,3)color(1,1,1,1)"
  7554. }, "" },
  7555. { "Gris", "civ", {
  7556. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7557. }, "" },
  7558. { "Sable", "civ", {
  7559. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7560. }, "" },
  7561. { "Rouge", "civ", {
  7562. "#(argb,8,8,3)color(1,0,0,1)"
  7563. }, "" },
  7564. { "Jaune", "civ", {
  7565. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7566. }, "" },
  7567. { "Bleu", "civ", {
  7568. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7569. }, "" },
  7570. { "Bleu Nuit", "civ", {
  7571. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7572. }, "" },
  7573. { "Mauve", "civ", {
  7574. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7575. }, "" },
  7576. { "Orange", "civ", {
  7577. "#(argb,8,8,3)color(1,0.251,0,1)"
  7578. }, "" },
  7579. { "Vert", "civ", {
  7580. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7581. }, "" },
  7582. { "Rose", "civ", {
  7583. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7584. }, "" },
  7585. { "Violet", "civ", {
  7586. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7587. }, "" }
  7588. };
  7589. };
  7590. class ch300C {
  7591. vItemSpace = 25;
  7592. conditions = "";
  7593. price = 450120;
  7594. textures[] = {
  7595. { "Noir", "civ", {
  7596. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7597. }, "" },
  7598. { "Blanc", "civ", {
  7599. "#(argb,8,8,3)color(1,1,1,1)"
  7600. }, "" },
  7601. { "Gris", "civ", {
  7602. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7603. }, "" },
  7604. { "Sable", "civ", {
  7605. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7606. }, "" },
  7607. { "Rouge", "civ", {
  7608. "#(argb,8,8,3)color(1,0,0,1)"
  7609. }, "" },
  7610. { "Jaune", "civ", {
  7611. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7612. }, "" },
  7613. { "Bleu", "civ", {
  7614. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7615. }, "" },
  7616. { "Bleu Nuit", "civ", {
  7617. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7618. }, "" },
  7619. { "Mauve", "civ", {
  7620. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7621. }, "" },
  7622. { "Orange", "civ", {
  7623. "#(argb,8,8,3)color(1,0.251,0,1)"
  7624. }, "" },
  7625. { "Vert", "civ", {
  7626. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7627. }, "" },
  7628. { "Rose", "civ", {
  7629. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7630. }, "" },
  7631. { "Violet", "civ", {
  7632. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7633. }, "" }
  7634. };
  7635. };
  7636. class CHRlu_civ {
  7637. vItemSpace = 25;
  7638. conditions = "";
  7639. price = 450120;
  7640. textures[] = {
  7641. { "Noir", "civ", {
  7642. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7643. }, "" },
  7644. { "Blanc", "civ", {
  7645. "#(argb,8,8,3)color(1,1,1,1)"
  7646. }, "" },
  7647. { "Gris", "civ", {
  7648. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7649. }, "" },
  7650. { "Sable", "civ", {
  7651. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7652. }, "" },
  7653. { "Rouge", "civ", {
  7654. "#(argb,8,8,3)color(1,0,0,1)"
  7655. }, "" },
  7656. { "Jaune", "civ", {
  7657. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7658. }, "" },
  7659. { "Bleu", "civ", {
  7660. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7661. }, "" },
  7662. { "Bleu Nuit", "civ", {
  7663. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7664. }, "" },
  7665. { "Mauve", "civ", {
  7666. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7667. }, "" },
  7668. { "Orange", "civ", {
  7669. "#(argb,8,8,3)color(1,0.251,0,1)"
  7670. }, "" },
  7671. { "Vert", "civ", {
  7672. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7673. }, "" },
  7674. { "Rose", "civ", {
  7675. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7676. }, "" },
  7677. { "Violet", "civ", {
  7678. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7679. }, "" }
  7680. };
  7681. };
  7682.  
  7683. class Alessio458_Gold {
  7684. vItemSpace = 25;
  7685. conditions = "";
  7686. price = 450120;
  7687. textures[] = {};
  7688. };
  7689.  
  7690. class Alessio458Mat {
  7691. vItemSpace = 25;
  7692. conditions = "";
  7693. price = 450120;
  7694. textures[] = {
  7695. { "Noir", "civ", {
  7696. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7697. }, "" },
  7698. { "Blanc", "civ", {
  7699. "#(argb,8,8,3)color(1,1,1,1)"
  7700. }, "" },
  7701. { "Gris", "civ", {
  7702. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7703. }, "" },
  7704. { "Sable", "civ", {
  7705. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7706. }, "" },
  7707. { "Rouge", "civ", {
  7708. "#(argb,8,8,3)color(1,0,0,1)"
  7709. }, "" },
  7710. { "Jaune", "civ", {
  7711. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7712. }, "" },
  7713. { "Bleu", "civ", {
  7714. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7715. }, "" },
  7716. { "Bleu Nuit", "civ", {
  7717. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7718. }, "" },
  7719. { "Mauve", "civ", {
  7720. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7721. }, "" },
  7722. { "Orange", "civ", {
  7723. "#(argb,8,8,3)color(1,0.251,0,1)"
  7724. }, "" },
  7725. { "Vert", "civ", {
  7726. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7727. }, "" },
  7728. { "Rose", "civ", {
  7729. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7730. }, "" },
  7731. { "Violet", "civ", {
  7732. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7733. }, "" }
  7734. };
  7735. };
  7736.  
  7737. class F488lu_civ {
  7738. vItemSpace = 25;
  7739. conditions = "";
  7740. price = 450120;
  7741. textures[] = {
  7742. { "Noir", "civ", {
  7743. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7744. }, "" },
  7745. { "Blanc", "civ", {
  7746. "#(argb,8,8,3)color(1,1,1,1)"
  7747. }, "" },
  7748. { "Gris", "civ", {
  7749. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7750. }, "" },
  7751. { "Sable", "civ", {
  7752. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7753. }, "" },
  7754. { "Rouge", "civ", {
  7755. "#(argb,8,8,3)color(1,0,0,1)"
  7756. }, "" },
  7757. { "Jaune", "civ", {
  7758. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7759. }, "" },
  7760. { "Bleu", "civ", {
  7761. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7762. }, "" },
  7763. { "Bleu Nuit", "civ", {
  7764. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7765. }, "" },
  7766. { "Mauve", "civ", {
  7767. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7768. }, "" },
  7769. { "Orange", "civ", {
  7770. "#(argb,8,8,3)color(1,0.251,0,1)"
  7771. }, "" },
  7772. { "Vert", "civ", {
  7773. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7774. }, "" },
  7775. { "Rose", "civ", {
  7776. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7777. }, "" },
  7778. { "Violet", "civ", {
  7779. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7780. }, "" }
  7781. };
  7782. };
  7783.  
  7784. class AlessioGTB_Gold {
  7785. vItemSpace = 25;
  7786. conditions = "";
  7787. price = 450120;
  7788. textures[] = {};
  7789. };
  7790.  
  7791. class F12lu_civ_GMK {
  7792. vItemSpace = 25;
  7793. conditions = "";
  7794. price = 450120;
  7795. textures[] = {};
  7796. };
  7797.  
  7798. class FFlu_civ {
  7799. vItemSpace = 25;
  7800. conditions = "";
  7801. price = 450120;
  7802. textures[] = {
  7803. { "Noir", "civ", {
  7804. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7805. }, "" },
  7806. { "Blanc", "civ", {
  7807. "#(argb,8,8,3)color(1,1,1,1)"
  7808. }, "" },
  7809. { "Gris", "civ", {
  7810. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7811. }, "" },
  7812. { "Sable", "civ", {
  7813. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7814. }, "" },
  7815. { "Rouge", "civ", {
  7816. "#(argb,8,8,3)color(1,0,0,1)"
  7817. }, "" },
  7818. { "Jaune", "civ", {
  7819. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7820. }, "" },
  7821. { "Bleu", "civ", {
  7822. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7823. }, "" },
  7824. { "Bleu Nuit", "civ", {
  7825. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7826. }, "" },
  7827. { "Mauve", "civ", {
  7828. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7829. }, "" },
  7830. { "Orange", "civ", {
  7831. "#(argb,8,8,3)color(1,0.251,0,1)"
  7832. }, "" },
  7833. { "Vert", "civ", {
  7834. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7835. }, "" },
  7836. { "Rose", "civ", {
  7837. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7838. }, "" },
  7839. { "Violet", "civ", {
  7840. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7841. }, "" }
  7842. };
  7843. };
  7844.  
  7845. class Alessio458 {
  7846. vItemSpace = 25;
  7847. conditions = "";
  7848. price = 450120;
  7849. textures[] = {
  7850. { "Noir", "civ", {
  7851. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7852. }, "" },
  7853. { "Blanc", "civ", {
  7854. "#(argb,8,8,3)color(1,1,1,1)"
  7855. }, "" },
  7856. { "Gris", "civ", {
  7857. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7858. }, "" },
  7859. { "Sable", "civ", {
  7860. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7861. }, "" },
  7862. { "Rouge", "civ", {
  7863. "#(argb,8,8,3)color(1,0,0,1)"
  7864. }, "" },
  7865. { "Jaune", "civ", {
  7866. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7867. }, "" },
  7868. { "Bleu", "civ", {
  7869. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7870. }, "" },
  7871. { "Bleu Nuit", "civ", {
  7872. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7873. }, "" },
  7874. { "Mauve", "civ", {
  7875. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7876. }, "" },
  7877. { "Orange", "civ", {
  7878. "#(argb,8,8,3)color(1,0.251,0,1)"
  7879. }, "" },
  7880. { "Vert", "civ", {
  7881. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7882. }, "" },
  7883. { "Rose", "civ", {
  7884. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7885. }, "" },
  7886. { "Violet", "civ", {
  7887. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7888. }, "" }
  7889. };
  7890. };
  7891.  
  7892. class Alessio458GMK {
  7893. vItemSpace = 50;
  7894. conditions = "";
  7895. price = 1671500;
  7896. textures[] = {};
  7897. };
  7898.  
  7899. class AlessioGTB {
  7900. vItemSpace = 25;
  7901. conditions = "";
  7902. price = 450120;
  7903. textures[] = {
  7904. { "Noir", "civ", {
  7905. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7906. }, "" },
  7907. { "Blanc", "civ", {
  7908. "#(argb,8,8,3)color(1,1,1,1)"
  7909. }, "" },
  7910. { "Gris", "civ", {
  7911. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7912. }, "" },
  7913. { "Sable", "civ", {
  7914. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7915. }, "" },
  7916. { "Rouge", "civ", {
  7917. "#(argb,8,8,3)color(1,0,0,1)"
  7918. }, "" },
  7919. { "Jaune", "civ", {
  7920. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7921. }, "" },
  7922. { "Bleu", "civ", {
  7923. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7924. }, "" },
  7925. { "Bleu Nuit", "civ", {
  7926. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7927. }, "" },
  7928. { "Mauve", "civ", {
  7929. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7930. }, "" },
  7931. { "Orange", "civ", {
  7932. "#(argb,8,8,3)color(1,0.251,0,1)"
  7933. }, "" },
  7934. { "Vert", "civ", {
  7935. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7936. }, "" },
  7937. { "Rose", "civ", {
  7938. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7939. }, "" },
  7940. { "Violet", "civ", {
  7941. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7942. }, "" }
  7943. };
  7944. };
  7945.  
  7946. class chf_california {
  7947. vItemSpace = 25;
  7948. conditions = "";
  7949. price = 450120;
  7950. textures[] = {
  7951. { "Noir", "civ", {
  7952. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  7953. }, "" },
  7954. { "Blanc", "civ", {
  7955. "#(argb,8,8,3)color(1,1,1,1)"
  7956. }, "" },
  7957. { "Gris", "civ", {
  7958. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  7959. }, "" },
  7960. { "Sable", "civ", {
  7961. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  7962. }, "" },
  7963. { "Rouge", "civ", {
  7964. "#(argb,8,8,3)color(1,0,0,1)"
  7965. }, "" },
  7966. { "Jaune", "civ", {
  7967. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  7968. }, "" },
  7969. { "Bleu", "civ", {
  7970. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  7971. }, "" },
  7972. { "Bleu Nuit", "civ", {
  7973. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  7974. }, "" },
  7975. { "Mauve", "civ", {
  7976. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  7977. }, "" },
  7978. { "Orange", "civ", {
  7979. "#(argb,8,8,3)color(1,0.251,0,1)"
  7980. }, "" },
  7981. { "Vert", "civ", {
  7982. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  7983. }, "" },
  7984. { "Rose", "civ", {
  7985. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  7986. }, "" },
  7987. { "Violet", "civ", {
  7988. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  7989. }, "" }
  7990. };
  7991. };
  7992.  
  7993. class AlessioMustang {
  7994. vItemSpace = 25;
  7995. conditions = "";
  7996. price = 450120;
  7997. textures[] = {
  7998. { "Noir", "civ", {
  7999. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8000. }, "" },
  8001. { "Blanc", "civ", {
  8002. "#(argb,8,8,3)color(1,1,1,1)"
  8003. }, "" },
  8004. { "Gris", "civ", {
  8005. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8006. }, "" },
  8007. { "Sable", "civ", {
  8008. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8009. }, "" },
  8010. { "Rouge", "civ", {
  8011. "#(argb,8,8,3)color(1,0,0,1)"
  8012. }, "" },
  8013. { "Jaune", "civ", {
  8014. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8015. }, "" },
  8016. { "Bleu", "civ", {
  8017. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8018. }, "" },
  8019. { "Bleu Nuit", "civ", {
  8020. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8021. }, "" },
  8022. { "Mauve", "civ", {
  8023. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8024. }, "" },
  8025. { "Orange", "civ", {
  8026. "#(argb,8,8,3)color(1,0.251,0,1)"
  8027. }, "" },
  8028. { "Vert", "civ", {
  8029. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8030. }, "" },
  8031. { "Rose", "civ", {
  8032. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8033. }, "" },
  8034. { "Violet", "civ", {
  8035. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8036. }, "" }
  8037. };
  8038. };
  8039.  
  8040. class Mustanglu_civ {
  8041. vItemSpace = 20;
  8042. conditions = "";
  8043. price = 368500;
  8044. textures[] = {
  8045. { "Noir", "civ", {
  8046. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8047. }, "" },
  8048. { "Blanc", "civ", {
  8049. "#(argb,8,8,3)color(1,1,1,1)"
  8050. }, "" },
  8051. { "Gris", "civ", {
  8052. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8053. }, "" },
  8054. { "Sable", "civ", {
  8055. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8056. }, "" },
  8057. { "Rouge", "civ", {
  8058. "#(argb,8,8,3)color(1,0,0,1)"
  8059. }, "" },
  8060. { "Jaune", "civ", {
  8061. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8062. }, "" },
  8063. { "Bleu", "civ", {
  8064. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8065. }, "" },
  8066. { "Bleu Nuit", "civ", {
  8067. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8068. }, "" },
  8069. { "Mauve", "civ", {
  8070. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8071. }, "" },
  8072. { "Orange", "civ", {
  8073. "#(argb,8,8,3)color(1,0.251,0,1)"
  8074. }, "" },
  8075. { "Vert", "civ", {
  8076. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8077. }, "" },
  8078. { "Rose", "civ", {
  8079. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8080. }, "" },
  8081. { "Violet", "civ", {
  8082. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8083. }, "" }
  8084. };
  8085. };
  8086.  
  8087. class GT500lu_civ {
  8088. vItemSpace = 25;
  8089. conditions = "";
  8090. price = 450120;
  8091. textures[] = {
  8092. { "Noir", "civ", {
  8093. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8094. }, "" },
  8095. { "Blanc", "civ", {
  8096. "#(argb,8,8,3)color(1,1,1,1)"
  8097. }, "" },
  8098. { "Gris", "civ", {
  8099. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8100. }, "" },
  8101. { "Sable", "civ", {
  8102. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8103. }, "" },
  8104. { "Rouge", "civ", {
  8105. "#(argb,8,8,3)color(1,0,0,1)"
  8106. }, "" },
  8107. { "Jaune", "civ", {
  8108. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8109. }, "" },
  8110. { "Bleu", "civ", {
  8111. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8112. }, "" },
  8113. { "Bleu Nuit", "civ", {
  8114. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8115. }, "" },
  8116. { "Mauve", "civ", {
  8117. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8118. }, "" },
  8119. { "Orange", "civ", {
  8120. "#(argb,8,8,3)color(1,0.251,0,1)"
  8121. }, "" },
  8122. { "Vert", "civ", {
  8123. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8124. }, "" },
  8125. { "Rose", "civ", {
  8126. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8127. }, "" },
  8128. { "Violet", "civ", {
  8129. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8130. }, "" }
  8131. };
  8132. };
  8133.  
  8134. class Gallardolu_civ {
  8135. vItemSpace = 50;
  8136. conditions = "";
  8137. price = 1563123;
  8138. textures[] = {
  8139. { "Noir", "civ", {
  8140. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8141. }, "" },
  8142. { "Blanc", "civ", {
  8143. "#(argb,8,8,3)color(1,1,1,1)"
  8144. }, "" },
  8145. { "Gris", "civ", {
  8146. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8147. }, "" },
  8148. { "Sable", "civ", {
  8149. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8150. }, "" },
  8151. { "Rouge", "civ", {
  8152. "#(argb,8,8,3)color(1,0,0,1)"
  8153. }, "" },
  8154. { "Jaune", "civ", {
  8155. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8156. }, "" },
  8157. { "Bleu", "civ", {
  8158. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8159. }, "" },
  8160. { "Bleu Nuit", "civ", {
  8161. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8162. }, "" },
  8163. { "Mauve", "civ", {
  8164. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8165. }, "" },
  8166. { "Orange", "civ", {
  8167. "#(argb,8,8,3)color(1,0.251,0,1)"
  8168. }, "" },
  8169. { "Vert", "civ", {
  8170. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8171. }, "" },
  8172. { "Rose", "civ", {
  8173. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8174. }, "" },
  8175. { "Violet", "civ", {
  8176. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8177. }, "" }
  8178. };
  8179. };
  8180.  
  8181. class AlessioAventador {
  8182. vItemSpace = 50;
  8183. conditions = "";
  8184. price = 752100;
  8185. textures[] = {
  8186. { "Noir", "civ", {
  8187. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8188. }, "" },
  8189. { "Blanc", "civ", {
  8190. "#(argb,8,8,3)color(1,1,1,1)"
  8191. }, "" },
  8192. { "Gris", "civ", {
  8193. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8194. }, "" },
  8195. { "Sable", "civ", {
  8196. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8197. }, "" },
  8198. { "Rouge", "civ", {
  8199. "#(argb,8,8,3)color(1,0,0,1)"
  8200. }, "" },
  8201. { "Jaune", "civ", {
  8202. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8203. }, "" },
  8204. { "Bleu", "civ", {
  8205. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8206. }, "" },
  8207. { "Bleu Nuit", "civ", {
  8208. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8209. }, "" },
  8210. { "Mauve", "civ", {
  8211. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8212. }, "" },
  8213. { "Orange", "civ", {
  8214. "#(argb,8,8,3)color(1,0.251,0,1)"
  8215. }, "" },
  8216. { "Vert", "civ", {
  8217. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8218. }, "" },
  8219. { "Rose", "civ", {
  8220. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8221. }, "" },
  8222. { "Violet", "civ", {
  8223. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8224. }, "" }
  8225. };
  8226. };
  8227.  
  8228. class P1lu_civ {
  8229. vItemSpace = 50;
  8230. conditions = "";
  8231. price = 475600;
  8232. textures[] = {
  8233. { "Noir", "civ", {
  8234. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8235. }, "" },
  8236. { "Blanc", "civ", {
  8237. "#(argb,8,8,3)color(1,1,1,1)"
  8238. }, "" },
  8239. { "Gris", "civ", {
  8240. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8241. }, "" },
  8242. { "Sable", "civ", {
  8243. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8244. }, "" },
  8245. { "Rouge", "civ", {
  8246. "#(argb,8,8,3)color(1,0,0,1)"
  8247. }, "" },
  8248. { "Jaune", "civ", {
  8249. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8250. }, "" },
  8251. { "Bleu", "civ", {
  8252. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8253. }, "" },
  8254. { "Bleu Nuit", "civ", {
  8255. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8256. }, "" },
  8257. { "Mauve", "civ", {
  8258. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8259. }, "" },
  8260. { "Orange", "civ", {
  8261. "#(argb,8,8,3)color(1,0.251,0,1)"
  8262. }, "" },
  8263. { "Vert", "civ", {
  8264. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8265. }, "" },
  8266. { "Rose", "civ", {
  8267. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8268. }, "" },
  8269. { "Violet", "civ", {
  8270. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8271. }, "" }
  8272. };
  8273. };
  8274.  
  8275. class R35lu_civ {
  8276. vItemSpace = 50;
  8277. conditions = "";
  8278. price = 89600;
  8279. textures[] = {
  8280. { "Noir", "civ", {
  8281. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8282. }, "" },
  8283. { "Blanc", "civ", {
  8284. "#(argb,8,8,3)color(1,1,1,1)"
  8285. }, "" },
  8286. { "Gris", "civ", {
  8287. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8288. }, "" },
  8289. { "Sable", "civ", {
  8290. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8291. }, "" },
  8292. { "Rouge", "civ", {
  8293. "#(argb,8,8,3)color(1,0,0,1)"
  8294. }, "" },
  8295. { "Jaune", "civ", {
  8296. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8297. }, "" },
  8298. { "Bleu", "civ", {
  8299. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8300. }, "" },
  8301. { "Bleu Nuit", "civ", {
  8302. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8303. }, "" },
  8304. { "Mauve", "civ", {
  8305. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8306. }, "" },
  8307. { "Orange", "civ", {
  8308. "#(argb,8,8,3)color(1,0.251,0,1)"
  8309. }, "" },
  8310. { "Vert", "civ", {
  8311. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8312. }, "" },
  8313. { "Rose", "civ", {
  8314. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8315. }, "" },
  8316. { "Violet", "civ", {
  8317. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8318. }, "" }
  8319. };
  8320. };
  8321.  
  8322. class GT3lu_civ {
  8323. vItemSpace = 25;
  8324. conditions = "";
  8325. price = 265000;
  8326. textures[] = {
  8327. { "Noir", "civ", {
  8328. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8329. }, "" },
  8330. { "Blanc", "civ", {
  8331. "#(argb,8,8,3)color(1,1,1,1)"
  8332. }, "" },
  8333. { "Gris", "civ", {
  8334. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8335. }, "" },
  8336. { "Sable", "civ", {
  8337. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8338. }, "" },
  8339. { "Rouge", "civ", {
  8340. "#(argb,8,8,3)color(1,0,0,1)"
  8341. }, "" },
  8342. { "Jaune", "civ", {
  8343. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8344. }, "" },
  8345. { "Bleu", "civ", {
  8346. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8347. }, "" },
  8348. { "Bleu Nuit", "civ", {
  8349. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8350. }, "" },
  8351. { "Mauve", "civ", {
  8352. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8353. }, "" },
  8354. { "Orange", "civ", {
  8355. "#(argb,8,8,3)color(1,0.251,0,1)"
  8356. }, "" },
  8357. { "Vert", "civ", {
  8358. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8359. }, "" },
  8360. { "Rose", "civ", {
  8361. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8362. }, "" },
  8363. { "Violet", "civ", {
  8364. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8365. }, "" }
  8366. };
  8367. };
  8368.  
  8369. class Macanlu_civ {
  8370. vItemSpace = 25;
  8371. conditions = "";
  8372. price = 150120;
  8373. textures[] = {
  8374. { "Noir", "civ", {
  8375. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8376. }, "" },
  8377. { "Blanc", "civ", {
  8378. "#(argb,8,8,3)color(1,1,1,1)"
  8379. }, "" },
  8380. { "Gris", "civ", {
  8381. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8382. }, "" },
  8383. { "Sable", "civ", {
  8384. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8385. }, "" },
  8386. { "Rouge", "civ", {
  8387. "#(argb,8,8,3)color(1,0,0,1)"
  8388. }, "" },
  8389. { "Jaune", "civ", {
  8390. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8391. }, "" },
  8392. { "Bleu", "civ", {
  8393. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8394. }, "" },
  8395. { "Bleu Nuit", "civ", {
  8396. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8397. }, "" },
  8398. { "Mauve", "civ", {
  8399. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8400. }, "" },
  8401. { "Orange", "civ", {
  8402. "#(argb,8,8,3)color(1,0.251,0,1)"
  8403. }, "" },
  8404. { "Vert", "civ", {
  8405. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8406. }, "" },
  8407. { "Rose", "civ", {
  8408. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8409. }, "" },
  8410. { "Violet", "civ", {
  8411. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8412. }, "" }
  8413. };
  8414. };
  8415.  
  8416. class Panameralu {
  8417. vItemSpace = 25;
  8418. conditions = "";
  8419. price = 450120;
  8420. textures[] = {
  8421. { "Noir", "civ", {
  8422. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8423. }, "" },
  8424. { "Blanc", "civ", {
  8425. "#(argb,8,8,3)color(1,1,1,1)"
  8426. }, "" },
  8427. { "Gris", "civ", {
  8428. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8429. }, "" },
  8430. { "Sable", "civ", {
  8431. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8432. }, "" },
  8433. { "Rouge", "civ", {
  8434. "#(argb,8,8,3)color(1,0,0,1)"
  8435. }, "" },
  8436. { "Jaune", "civ", {
  8437. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8438. }, "" },
  8439. { "Bleu", "civ", {
  8440. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8441. }, "" },
  8442. { "Bleu Nuit", "civ", {
  8443. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8444. }, "" },
  8445. { "Mauve", "civ", {
  8446. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8447. }, "" },
  8448. { "Orange", "civ", {
  8449. "#(argb,8,8,3)color(1,0.251,0,1)"
  8450. }, "" },
  8451. { "Vert", "civ", {
  8452. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8453. }, "" },
  8454. { "Rose", "civ", {
  8455. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8456. }, "" },
  8457. { "Violet", "civ", {
  8458. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8459. }, "" }
  8460. };
  8461. };
  8462.  
  8463. class Wraithlu_civ {
  8464. vItemSpace = 30;
  8465. conditions = "";
  8466. price = 450120;
  8467. textures[] = {
  8468. { "Noir", "civ", {
  8469. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8470. }, "" },
  8471. { "Blanc", "civ", {
  8472. "#(argb,8,8,3)color(1,1,1,1)"
  8473. }, "" },
  8474. { "Gris", "civ", {
  8475. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8476. }, "" },
  8477. { "Sable", "civ", {
  8478. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8479. }, "" },
  8480. { "Rouge", "civ", {
  8481. "#(argb,8,8,3)color(1,0,0,1)"
  8482. }, "" },
  8483. { "Jaune", "civ", {
  8484. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8485. }, "" },
  8486. { "Bleu", "civ", {
  8487. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8488. }, "" },
  8489. { "Bleu Nuit", "civ", {
  8490. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8491. }, "" },
  8492. { "Mauve", "civ", {
  8493. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8494. }, "" },
  8495. { "Orange", "civ", {
  8496. "#(argb,8,8,3)color(1,0.251,0,1)"
  8497. }, "" },
  8498. { "Vert", "civ", {
  8499. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8500. }, "" },
  8501. { "Rose", "civ", {
  8502. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8503. }, "" },
  8504. { "Violet", "civ", {
  8505. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8506. }, "" }
  8507. };
  8508. };
  8509.  
  8510. //Concessionnaire Moto
  8511. class 1150RT_ch {
  8512. vItemSpace = 10;
  8513. conditions = "";
  8514. price = 10500;
  8515. textures[] = {
  8516. { "Noir", "civ", {
  8517. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8518. }, "" },
  8519. { "Blanc", "civ", {
  8520. "#(argb,8,8,3)color(1,1,1,1)"
  8521. }, "" },
  8522. { "Gris", "civ", {
  8523. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8524. }, "" },
  8525. { "Sable", "civ", {
  8526. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8527. }, "" },
  8528. { "Rouge", "civ", {
  8529. "#(argb,8,8,3)color(1,0,0,1)"
  8530. }, "" },
  8531. { "Jaune", "civ", {
  8532. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8533. }, "" },
  8534. { "Bleu", "civ", {
  8535. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8536. }, "" },
  8537. { "Bleu Nuit", "civ", {
  8538. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8539. }, "" },
  8540. { "Mauve", "civ", {
  8541. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8542. }, "" },
  8543. { "Orange", "civ", {
  8544. "#(argb,8,8,3)color(1,0.251,0,1)"
  8545. }, "" },
  8546. { "Vert", "civ", {
  8547. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8548. }, "" },
  8549. { "Rose", "civ", {
  8550. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8551. }, "" },
  8552. { "Violet", "civ", {
  8553. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8554. }, "" }
  8555. };
  8556. };
  8557.  
  8558. class 1200RT_ch {
  8559. vItemSpace = 10;
  8560. conditions = "";
  8561. price = 22320;
  8562. textures[] = {
  8563. { "Noir", "civ", {
  8564. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8565. }, "" },
  8566. { "Blanc", "civ", {
  8567. "#(argb,8,8,3)color(1,1,1,1)"
  8568. }, "" },
  8569. { "Gris", "civ", {
  8570. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8571. }, "" },
  8572. { "Sable", "civ", {
  8573. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8574. }, "" },
  8575. { "Rouge", "civ", {
  8576. "#(argb,8,8,3)color(1,0,0,1)"
  8577. }, "" },
  8578. { "Jaune", "civ", {
  8579. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8580. }, "" },
  8581. { "Bleu", "civ", {
  8582. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8583. }, "" },
  8584. { "Bleu Nuit", "civ", {
  8585. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8586. }, "" },
  8587. { "Mauve", "civ", {
  8588. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8589. }, "" },
  8590. { "Orange", "civ", {
  8591. "#(argb,8,8,3)color(1,0.251,0,1)"
  8592. }, "" },
  8593. { "Vert", "civ", {
  8594. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8595. }, "" },
  8596. { "Rose", "civ", {
  8597. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8598. }, "" },
  8599. { "Violet", "civ", {
  8600. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8601. }, "" }
  8602. };
  8603. };
  8604.  
  8605. class S1000RR_ch {
  8606. vItemSpace = 25;
  8607. conditions = "";
  8608. price = 29860;
  8609. textures[] = {};
  8610. };
  8611.  
  8612. class fatboy_ch {
  8613. vItemSpace = 10;
  8614. conditions = "";
  8615. price =30200;
  8616. textures[] = {
  8617. { "Noir", "civ", {
  8618. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8619. }, "" },
  8620. { "Blanc", "civ", {
  8621. "#(argb,8,8,3)color(1,1,1,1)"
  8622. }, "" },
  8623. { "Gris", "civ", {
  8624. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8625. }, "" },
  8626. { "Sable", "civ", {
  8627. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8628. }, "" },
  8629. { "Rouge", "civ", {
  8630. "#(argb,8,8,3)color(1,0,0,1)"
  8631. }, "" },
  8632. { "Jaune", "civ", {
  8633. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8634. }, "" },
  8635. { "Bleu", "civ", {
  8636. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8637. }, "" },
  8638. { "Bleu Nuit", "civ", {
  8639. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8640. }, "" },
  8641. { "Mauve", "civ", {
  8642. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8643. }, "" },
  8644. { "Orange", "civ", {
  8645. "#(argb,8,8,3)color(1,0.251,0,1)"
  8646. }, "" },
  8647. { "Vert", "civ", {
  8648. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8649. }, "" },
  8650. { "Rose", "civ", {
  8651. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8652. }, "" },
  8653. { "Violet", "civ", {
  8654. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8655. }, "" }
  8656. };
  8657. };
  8658.  
  8659. class 690duke_ch {
  8660. vItemSpace = 10;
  8661. conditions = "";
  8662. price = 48600;
  8663. textures[] = {};
  8664. };
  8665.  
  8666. class FJR1300_ch {
  8667. vItemSpace = 10;
  8668. conditions = "";
  8669. price = 35680;
  8670. textures[] = {
  8671. { "Noir", "civ", {
  8672. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8673. }, "" },
  8674. { "Blanc", "civ", {
  8675. "#(argb,8,8,3)color(1,1,1,1)"
  8676. }, "" },
  8677. { "Gris", "civ", {
  8678. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8679. }, "" },
  8680. { "Sable", "civ", {
  8681. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8682. }, "" },
  8683. { "Rouge", "civ", {
  8684. "#(argb,8,8,3)color(1,0,0,1)"
  8685. }, "" },
  8686. { "Jaune", "civ", {
  8687. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8688. }, "" },
  8689. { "Bleu", "civ", {
  8690. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8691. }, "" },
  8692. { "Bleu Nuit", "civ", {
  8693. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8694. }, "" },
  8695. { "Mauve", "civ", {
  8696. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8697. }, "" },
  8698. { "Orange", "civ", {
  8699. "#(argb,8,8,3)color(1,0.251,0,1)"
  8700. }, "" },
  8701. { "Vert", "civ", {
  8702. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8703. }, "" },
  8704. { "Rose", "civ", {
  8705. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8706. }, "" },
  8707. { "Violet", "civ", {
  8708. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8709. }, "" }
  8710. };
  8711. };
  8712.  
  8713. //Concessionnaire Poids Lourds
  8714. class chbetonniere {
  8715. vItemSpace = 400;
  8716. conditions = "";
  8717. price = 2000000;
  8718. itembuy = false;
  8719. itemprice = "aldarite";
  8720. textures[] = {
  8721. { "Noir", "civ", {
  8722. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8723. }, "" },
  8724. { "Blanc", "civ", {
  8725. "#(argb,8,8,3)color(1,1,1,1)"
  8726. }, "" },
  8727. { "Gris", "civ", {
  8728. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8729. }, "" },
  8730. { "Sable", "civ", {
  8731. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8732. }, "" },
  8733. { "Rouge", "civ", {
  8734. "#(argb,8,8,3)color(1,0,0,1)"
  8735. }, "" },
  8736. { "Jaune", "civ", {
  8737. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8738. }, "" },
  8739. { "Bleu", "civ", {
  8740. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8741. }, "" },
  8742. { "Bleu Nuit", "civ", {
  8743. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8744. }, "" },
  8745. { "Mauve", "civ", {
  8746. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8747. }, "" },
  8748. { "Orange", "civ", {
  8749. "#(argb,8,8,3)color(1,0.251,0,1)"
  8750. }, "" },
  8751. { "Vert", "civ", {
  8752. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8753. }, "" },
  8754. { "Rose", "civ", {
  8755. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8756. }, "" },
  8757. { "Violet", "civ", {
  8758. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8759. }, "" }
  8760. };
  8761. };
  8762.  
  8763. class Volvo_FHlu_b {
  8764. vItemSpace = 400;
  8765. conditions = "";
  8766. price = 610000;
  8767. textures[] = {
  8768. { "Noir", "civ", {
  8769. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8770. }, "" },
  8771. { "Blanc", "civ", {
  8772. "#(argb,8,8,3)color(1,1,1,1)"
  8773. }, "" },
  8774. { "Gris", "civ", {
  8775. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8776. }, "" },
  8777. { "Sable", "civ", {
  8778. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8779. }, "" },
  8780. { "Rouge", "civ", {
  8781. "#(argb,8,8,3)color(1,0,0,1)"
  8782. }, "" },
  8783. { "Jaune", "civ", {
  8784. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8785. }, "" },
  8786. { "Bleu", "civ", {
  8787. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8788. }, "" },
  8789. { "Bleu Nuit", "civ", {
  8790. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8791. }, "" },
  8792. { "Mauve", "civ", {
  8793. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8794. }, "" },
  8795. { "Orange", "civ", {
  8796. "#(argb,8,8,3)color(1,0.251,0,1)"
  8797. }, "" },
  8798. { "Vert", "civ", {
  8799. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8800. }, "" },
  8801. { "Rose", "civ", {
  8802. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8803. }, "" },
  8804. { "Violet", "civ", {
  8805. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8806. }, "" }
  8807. };
  8808. };
  8809.  
  8810. class Volvo_FHlu_c {
  8811. vItemSpace = 300;
  8812. conditions = "";
  8813. price = 500000;
  8814. textures[] = {
  8815. { "Noir", "civ", {
  8816. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8817. }, "" },
  8818. { "Blanc", "civ", {
  8819. "#(argb,8,8,3)color(1,1,1,1)"
  8820. }, "" },
  8821. { "Gris", "civ", {
  8822. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8823. }, "" },
  8824. { "Sable", "civ", {
  8825. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8826. }, "" },
  8827. { "Rouge", "civ", {
  8828. "#(argb,8,8,3)color(1,0,0,1)"
  8829. }, "" },
  8830. { "Jaune", "civ", {
  8831. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8832. }, "" },
  8833. { "Bleu", "civ", {
  8834. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8835. }, "" },
  8836. { "Bleu Nuit", "civ", {
  8837. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8838. }, "" },
  8839. { "Mauve", "civ", {
  8840. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8841. }, "" },
  8842. { "Orange", "civ", {
  8843. "#(argb,8,8,3)color(1,0.251,0,1)"
  8844. }, "" },
  8845. { "Vert", "civ", {
  8846. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8847. }, "" },
  8848. { "Rose", "civ", {
  8849. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8850. }, "" },
  8851. { "Violet", "civ", {
  8852. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8853. }, "" }
  8854. };
  8855. };
  8856.  
  8857. class chbenne {
  8858. vItemSpace = 550;
  8859. conditions = "";
  8860. price = 800000;
  8861. textures[] = {
  8862. { "Noir", "civ", {
  8863. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8864. }, "" },
  8865. { "Blanc", "civ", {
  8866. "#(argb,8,8,3)color(1,1,1,1)"
  8867. }, "" },
  8868. { "Gris", "civ", {
  8869. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8870. }, "" },
  8871. { "Sable", "civ", {
  8872. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8873. }, "" },
  8874. { "Rouge", "civ", {
  8875. "#(argb,8,8,3)color(1,0,0,1)"
  8876. }, "" },
  8877. { "Jaune", "civ", {
  8878. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8879. }, "" },
  8880. { "Bleu", "civ", {
  8881. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8882. }, "" },
  8883. { "Bleu Nuit", "civ", {
  8884. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8885. }, "" },
  8886. { "Mauve", "civ", {
  8887. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8888. }, "" },
  8889. { "Orange", "civ", {
  8890. "#(argb,8,8,3)color(1,0.251,0,1)"
  8891. }, "" },
  8892. { "Vert", "civ", {
  8893. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8894. }, "" },
  8895. { "Rose", "civ", {
  8896. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8897. }, "" },
  8898. { "Violet", "civ", {
  8899. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8900. }, "" }
  8901. };
  8902. };
  8903.  
  8904. class midlum {
  8905. vItemSpace = 500;
  8906. conditions = "";
  8907. price = 596520;
  8908. textures[] = {
  8909. { "Noir", "civ", {
  8910. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8911. }, "" },
  8912. { "Blanc", "civ", {
  8913. "#(argb,8,8,3)color(1,1,1,1)"
  8914. }, "" },
  8915. { "Gris", "civ", {
  8916. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8917. }, "" },
  8918. { "Sable", "civ", {
  8919. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8920. }, "" },
  8921. { "Rouge", "civ", {
  8922. "#(argb,8,8,3)color(1,0,0,1)"
  8923. }, "" },
  8924. { "Jaune", "civ", {
  8925. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8926. }, "" },
  8927. { "Bleu", "civ", {
  8928. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8929. }, "" },
  8930. { "Bleu Nuit", "civ", {
  8931. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8932. }, "" },
  8933. { "Mauve", "civ", {
  8934. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8935. }, "" },
  8936. { "Orange", "civ", {
  8937. "#(argb,8,8,3)color(1,0.251,0,1)"
  8938. }, "" },
  8939. { "Vert", "civ", {
  8940. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8941. }, "" },
  8942. { "Rose", "civ", {
  8943. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8944. }, "" },
  8945. { "Violet", "civ", {
  8946. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8947. }, "" }
  8948. };
  8949. };
  8950.  
  8951. // Concessionnaire Rebelle
  8952. //Dodge SRT8_12
  8953. class SRT8_12lu_civ {
  8954. vItemSpace = 50;
  8955. conditions = "";
  8956. price = 250000;
  8957. textures[] = {
  8958. { "Noir", "civ", {
  8959. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  8960. }, "" },
  8961. { "Blanc", "civ", {
  8962. "#(argb,8,8,3)color(1,1,1,1)"
  8963. }, "" },
  8964. { "Gris", "civ", {
  8965. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  8966. }, "" },
  8967. { "Sable", "civ", {
  8968. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  8969. }, "" },
  8970. { "Rouge", "civ", {
  8971. "#(argb,8,8,3)color(1,0,0,1)"
  8972. }, "" },
  8973. { "Jaune", "civ", {
  8974. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  8975. }, "" },
  8976. { "Bleu", "civ", {
  8977. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  8978. }, "" },
  8979. { "Bleu Nuit", "civ", {
  8980. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  8981. }, "" },
  8982. { "Mauve", "civ", {
  8983. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  8984. }, "" },
  8985. { "Orange", "civ", {
  8986. "#(argb,8,8,3)color(1,0.251,0,1)"
  8987. }, "" },
  8988. { "Vert", "civ", {
  8989. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  8990. }, "" },
  8991. { "Rose", "civ", {
  8992. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  8993. }, "" },
  8994. { "Violet", "civ", {
  8995. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  8996. }, "" }
  8997. };
  8998. };
  8999. //Ford Raptor
  9000. class Raptorlu_civ {
  9001. vItemSpace = 60;
  9002. conditions = "";
  9003. price = 80120;
  9004. textures[] = {
  9005. { "Noir", "civ", {
  9006. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  9007. }, "" },
  9008. { "Blanc", "civ", {
  9009. "#(argb,8,8,3)color(1,1,1,1)"
  9010. }, "" },
  9011. { "Gris", "civ", {
  9012. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  9013. }, "" },
  9014. { "Sable", "civ", {
  9015. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  9016. }, "" },
  9017. { "Rouge", "civ", {
  9018. "#(argb,8,8,3)color(1,0,0,1)"
  9019. }, "" },
  9020. { "Jaune", "civ", {
  9021. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  9022. }, "" },
  9023. { "Bleu", "civ", {
  9024. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  9025. }, "" },
  9026. { "Bleu Nuit", "civ", {
  9027. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  9028. }, "" },
  9029. { "Mauve", "civ", {
  9030. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  9031. }, "" },
  9032. { "Orange", "civ", {
  9033. "#(argb,8,8,3)color(1,0.251,0,1)"
  9034. }, "" },
  9035. { "Vert", "civ", {
  9036. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  9037. }, "" },
  9038. { "Rose", "civ", {
  9039. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  9040. }, "" },
  9041. { "Violet", "civ", {
  9042. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  9043. }, "" }
  9044. };
  9045. };
  9046. //Mercedes Benz ML63
  9047. class ML63lu_civ {
  9048. vItemSpace = 25;
  9049. conditions = "";
  9050. price = 450120;
  9051. textures[] = {
  9052. { "Noir", "civ", {
  9053. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  9054. }, "" },
  9055. { "Blanc", "civ", {
  9056. "#(argb,8,8,3)color(1,1,1,1)"
  9057. }, "" },
  9058. { "Gris", "civ", {
  9059. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  9060. }, "" },
  9061. { "Sable", "civ", {
  9062. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  9063. }, "" },
  9064. { "Rouge", "civ", {
  9065. "#(argb,8,8,3)color(1,0,0,1)"
  9066. }, "" },
  9067. { "Jaune", "civ", {
  9068. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  9069. }, "" },
  9070. { "Bleu", "civ", {
  9071. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  9072. }, "" },
  9073. { "Bleu Nuit", "civ", {
  9074. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  9075. }, "" },
  9076. { "Mauve", "civ", {
  9077. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  9078. }, "" },
  9079. { "Orange", "civ", {
  9080. "#(argb,8,8,3)color(1,0.251,0,1)"
  9081. }, "" },
  9082. { "Vert", "civ", {
  9083. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  9084. }, "" },
  9085. { "Rose", "civ", {
  9086. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  9087. }, "" },
  9088. { "Violet", "civ", {
  9089. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  9090. }, "" }
  9091. };
  9092. };
  9093.  
  9094. class Bollino_6x6_Blanc {
  9095. vItemSpace = 75;
  9096. conditions = "";
  9097. price = 200000;
  9098. textures[] = {
  9099. { "Noir", "civ", {
  9100. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  9101. }, "" },
  9102. { "Blanc", "civ", {
  9103. "#(argb,8,8,3)color(1,1,1,1)"
  9104. }, "" },
  9105. { "Gris", "civ", {
  9106. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  9107. }, "" },
  9108. { "Sable", "civ", {
  9109. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  9110. }, "" },
  9111. { "Rouge", "civ", {
  9112. "#(argb,8,8,3)color(1,0,0,1)"
  9113. }, "" },
  9114. { "Jaune", "civ", {
  9115. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  9116. }, "" },
  9117. { "Bleu", "civ", {
  9118. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  9119. }, "" },
  9120. { "Bleu Nuit", "civ", {
  9121. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  9122. }, "" },
  9123. { "Mauve", "civ", {
  9124. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  9125. }, "" },
  9126. { "Orange", "civ", {
  9127. "#(argb,8,8,3)color(1,0.251,0,1)"
  9128. }, "" },
  9129. { "Vert", "civ", {
  9130. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  9131. }, "" },
  9132. { "Rose", "civ", {
  9133. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  9134. }, "" },
  9135. { "Violet", "civ", {
  9136. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  9137. }, "" }
  9138. };
  9139. };
  9140. class do228_ch_Blanc {
  9141. vItemSpace = 75;
  9142. conditions = "";
  9143. price = 300000;
  9144. textures[] = {
  9145. };
  9146. };
  9147. //Concessionnaire Armée d'Altis
  9148. class shcadillacescalade_civ {
  9149. vItemSpace = 50;
  9150. conditions = "";
  9151. price = 150000;
  9152. textures[] = {};
  9153. };
  9154.  
  9155. // Concessionnaire Pompier
  9156.  
  9157. class chepa_MAN {
  9158. vItemSpace = 100;
  9159. conditions = "";
  9160. price = 250;
  9161. textures[] = {};
  9162. };
  9163. class chepa_Mercedes_Atego {
  9164. vItemSpace = 100;
  9165. conditions = "";
  9166. price = 250;
  9167. textures[] = {};
  9168. };
  9169. class chepa_Mercedes_Atego_1530 {
  9170. vItemSpace = 100;
  9171. conditions = "";
  9172. price = 250;
  9173. textures[] = {};
  9174. };
  9175. class chepa_Scania_124L {
  9176. vItemSpace = 100;
  9177. conditions = "";
  9178. price = 250;
  9179. textures[] = {};
  9180. };
  9181. class chepa_Scania_P280 {
  9182. vItemSpace = 100;
  9183. conditions = "";
  9184. price = 250;
  9185. textures[] = {};
  9186. };
  9187. class chepa_renault_lander {
  9188. vItemSpace = 100;
  9189. conditions = "";
  9190. price = 250;
  9191. textures[] = {};
  9192. };
  9193. class trafic3_vsm {
  9194. vItemSpace = 100;
  9195. conditions = "";
  9196. price = 250;
  9197. textures[] = {};
  9198. };
  9199. class devidoirch {
  9200. vItemSpace = 100;
  9201. conditions = "";
  9202. price = 250;
  9203. textures[] = {};
  9204. };
  9205. class brancardch {
  9206. vItemSpace = 100;
  9207. conditions = "";
  9208. price = 250;
  9209. textures[] = {};
  9210. };
  9211. class PMA {
  9212. vItemSpace = 100;
  9213. conditions = "";
  9214. price = 250;
  9215. textures[] = {};
  9216. };
  9217. class chvsavar_ivecoar {
  9218. vItemSpace = 100;
  9219. conditions = "";
  9220. price = 250;
  9221. textures[] = {};
  9222. };
  9223. class chVSAV_Sprinter {
  9224. vItemSpace = 100;
  9225. conditions = "";
  9226. price = 250;
  9227. textures[] = {};
  9228. };
  9229. class chps5g {
  9230. vItemSpace = 100;
  9231. conditions = "";
  9232. price = 250;
  9233. textures[] = {};
  9234. };
  9235. class ccfm_renault {
  9236. vItemSpace = 100;
  9237. conditions = "";
  9238. price = 250;
  9239. textures[] = {};
  9240. };
  9241. class ccfm1_renault {
  9242. vItemSpace = 100;
  9243. conditions = "";
  9244. price = 250;
  9245. textures[] = {};
  9246. };
  9247. class passatb7ch_samu {
  9248. vItemSpace = 100;
  9249. conditions = "";
  9250. price = 250;
  9251. textures[] = {};
  9252. };
  9253. class passatb6ch_samu {
  9254. vItemSpace = 100;
  9255. conditions = "";
  9256. price = 250;
  9257. textures[] = {};
  9258. };
  9259. class touranch_samu {
  9260. vItemSpace = 100;
  9261. conditions = "";
  9262. price = 250;
  9263. textures[] = {};
  9264. };
  9265. class chvwt5_samu {
  9266. vItemSpace = 100;
  9267. conditions = "";
  9268. price = 250;
  9269. textures[] = {};
  9270. };
  9271. class FPT_Scania_94D {
  9272. vItemSpace = 100;
  9273. conditions = "";
  9274. price = 250;
  9275. textures[] = {};
  9276. };
  9277. class chmaster3_vsrl {
  9278. vItemSpace = 100;
  9279. conditions = "";
  9280. price = 250;
  9281. textures[] = {};
  9282. };
  9283. class Trafic_vtp {
  9284. vItemSpace = 100;
  9285. conditions = "";
  9286. price = 250;
  9287. textures[] = {};
  9288. };
  9289. class VPC {
  9290. vItemSpace = 100;
  9291. conditions = "";
  9292. price = 250;
  9293. textures[] = {};
  9294. };
  9295. class chduster14_vlhr {
  9296. vItemSpace = 100;
  9297. conditions = "";
  9298. price = 250;
  9299. textures[] = {};
  9300. };
  9301. class chOshkosh_Striker_3000 {
  9302. vItemSpace = 100;
  9303. conditions = "";
  9304. price = 250;
  9305. textures[] = {};
  9306. };
  9307. class kangooII1_vl {
  9308. vItemSpace = 100;
  9309. conditions = "";
  9310. price = 250;
  9311. textures[] = {};
  9312. };
  9313. /*class chdefender_vlhr {
  9314. vItemSpace = 100;
  9315. conditions = "";
  9316. price = 250;
  9317. textures[] = {};
  9318. };
  9319. class VSAV_Ducato {
  9320. vItemSpace = 100;
  9321. conditions = "";
  9322. price = 250;
  9323. textures[] = {};
  9324. };
  9325. class VSAV_Boxer {
  9326. vItemSpace = 100;
  9327. conditions = "";
  9328. price = 250;
  9329. textures[] = {};
  9330. };
  9331. class ccrl {
  9332. vItemSpace = 100;
  9333. conditions = "";
  9334. price = 250;
  9335. textures[] = {};
  9336. };
  9337. class Clio_VLCG {
  9338. vItemSpace = 100;
  9339. conditions = "";
  9340. price = 250;
  9341. textures[] = {};
  9342. };
  9343. class chmaster2_vps {
  9344. vItemSpace = 100;
  9345. conditions = "";
  9346. price = 250;
  9347. textures[] = {};
  9348. };
  9349. class chmaster2_vtp {
  9350. vItemSpace = 100;
  9351. conditions = "";
  9352. price = 250;
  9353. textures[] = {};
  9354. };
  9355. class chmaster2_vtu {
  9356. vItemSpace = 100;
  9357. conditions = "";
  9358. price = 250;
  9359. textures[] = {};
  9360. };
  9361. class chmaster3_vsrl {
  9362. vItemSpace = 100;
  9363. conditions = "";
  9364. price = 250;
  9365. textures[] = {};
  9366. };
  9367. class chClioIII_VLCG {
  9368. vItemSpace = 100;
  9369. conditions = "";
  9370. price = 250;
  9371. textures[] = {};
  9372. };
  9373. class chMaster3_vtp {
  9374. vItemSpace = 100;
  9375. conditions = "";
  9376. price = 250;
  9377. textures[] = {};
  9378. };
  9379. class trafic3_vtp {
  9380. vItemSpace = 100;
  9381. conditions = "";
  9382. price = 250;
  9383. textures[] = {};
  9384. };
  9385. class Trafic_vtp {
  9386. vItemSpace = 100;
  9387. conditions = "";
  9388. price = 250;
  9389. textures[] = {};
  9390. };
  9391. class ccfm1_renault {
  9392. vItemSpace = 100;
  9393. conditions = "";
  9394. price = 250;
  9395. textures[] = {};
  9396. };
  9397. class ccfs_renault {
  9398. vItemSpace = 100;
  9399. conditions = "";
  9400. price = 250;
  9401. textures[] = {};
  9402. };
  9403. class CCGC {
  9404. vItemSpace = 100;
  9405. conditions = "";
  9406. price = 250;
  9407. textures[] = {};
  9408. };
  9409. class FPT_MAN {
  9410. vItemSpace = 100;
  9411. conditions = "";
  9412. price = 250;
  9413. textures[] = {};
  9414. };
  9415. class fptl_renault {
  9416. vItemSpace = 100;
  9417. conditions = "";
  9418. price = 250;
  9419. textures[] = {};
  9420. };
  9421. class Megane_Estate_vli {
  9422. vItemSpace = 100;
  9423. conditions = "";
  9424. price = 250;
  9425. textures[] = {};
  9426. };
  9427. class chvsavar_ducato {
  9428. vItemSpace = 100;
  9429. conditions = "";
  9430. price = 250;
  9431. textures[] = {};
  9432. };
  9433. class chvsavar_iveco {
  9434. vItemSpace = 100;
  9435. conditions = "";
  9436. price = 250;
  9437. textures[] = {};
  9438. };
  9439. class ch_umh_iveco {
  9440. vItemSpace = 100;
  9441. conditions = "";
  9442. price = 250;
  9443. textures[] = {};
  9444. };
  9445. class ch_umh_sprinter {
  9446. vItemSpace = 100;
  9447. conditions = "";
  9448. price = 250;
  9449. textures[] = {};
  9450. };
  9451.  
  9452. class chvsavar_boxer {
  9453. vItemSpace = 100;
  9454. conditions = "";
  9455. price = 250;
  9456. textures[] = {};
  9457. };
  9458. class ch_umh_boxer {
  9459. vItemSpace = 100;
  9460. conditions = "";
  9461. price = 250;
  9462. textures[] = {};
  9463. };
  9464. class chvsavar_master3p2 {
  9465. vItemSpace = 100;
  9466. conditions = "";
  9467. price = 250;
  9468. textures[] = {};
  9469. };
  9470. class chvsavar_master3 {
  9471. vItemSpace = 100;
  9472. conditions = "";
  9473. price = 250;
  9474. textures[] = {};
  9475. };
  9476. class chvsavar_master2 {
  9477. vItemSpace = 100;
  9478. conditions = "";
  9479. price = 250;
  9480. textures[] = {};
  9481. };
  9482. class IvecoCh_grimp {
  9483. vItemSpace = 100;
  9484. conditions = "";
  9485. price = 250;
  9486. textures[] = {};
  9487. };
  9488. class chfmogp {
  9489. vItemSpace = 100;
  9490. conditions = "";
  9491. price = 250;
  9492. textures[] = {};
  9493. };*/
  9494. class Mer_Vito_samu {
  9495. vItemSpace = 100;
  9496. conditions = "";
  9497. price = 250;
  9498. textures[] = {};
  9499. };
  9500. /*class PMA {
  9501. vItemSpace = 100;
  9502. conditions = "";
  9503. price = 250;
  9504. textures[] = {};
  9505. };*/
  9506. class Renault_Espace_samu {
  9507. vItemSpace = 100;
  9508. conditions = "";
  9509. price = 250;
  9510. textures[] = {};
  9511. };
  9512.  
  9513. class C_Boat_Civil_01_rescue_F {
  9514. vItemSpace = 50;
  9515. conditions = "";
  9516. price = 500;
  9517. textures[] = {};
  9518. };
  9519.  
  9520. class VSR {
  9521. vItemSpace = 50;
  9522. conditions = "";
  9523. price = 500;
  9524. textures[] = {};
  9525. };
  9526.  
  9527. class EPA {
  9528. vItemSpace = 50;
  9529. conditions = "";
  9530. price = 500;
  9531. textures[] = {};
  9532. };
  9533.  
  9534. class CY_SC_EC635 {
  9535. vItemSpace = 50;
  9536. conditions = "";
  9537. price = 35000;
  9538. textures[] = {};
  9539. };
  9540.  
  9541. class ec_635_securite_civ {
  9542. vItemSpace = 50;
  9543. conditions = "";
  9544. price = 35000;
  9545. textures[] = {};
  9546. };
  9547.  
  9548. // Concessionnaire Gendarmerie
  9549. class AlessioVIRGND {
  9550. vItemSpace = 50;
  9551. conditions = "";
  9552. price = 500;
  9553. textures[] = {};
  9554. };
  9555. class AlessioTouaregGND {
  9556. vItemSpace = 50;
  9557. conditions = "";
  9558. price = 500;
  9559. textures[] = {};
  9560. };
  9561. class AlessioRS4GNDM {
  9562. vItemSpace = 50;
  9563. conditions = "";
  9564. price = 500;
  9565. textures[] = {};
  9566. };
  9567. class AlessioM4GNDM {
  9568. vItemSpace = 50;
  9569. conditions = "";
  9570. price = 500;
  9571. textures[] = {};
  9572. };
  9573. class AlessioC63GND {
  9574. vItemSpace = 50;
  9575. conditions = "";
  9576. price = 500;
  9577. textures[] = {};
  9578. };
  9579. class AlessioMustangGNDM {
  9580. vItemSpace = 50;
  9581. conditions = "";
  9582. price = 500;
  9583. textures[] = {};
  9584. };
  9585. class AlessioWRXGND {
  9586. vItemSpace = 50;
  9587. conditions = "";
  9588. price = 500;
  9589. textures[] = {};
  9590. };
  9591. class Alessio206GND {
  9592. vItemSpace = 50;
  9593. conditions = "";
  9594. price = 500;
  9595. textures[] = {};
  9596. };
  9597. class AlessioGTRGND {
  9598. vItemSpace = 50;
  9599. conditions = "";
  9600. price = 500;
  9601. textures[] = {};
  9602. };
  9603.  
  9604. class focussw3_gn {
  9605. vItemSpace = 50;
  9606. conditions = "";
  9607. price = 500;
  9608. textures[] = {};
  9609. };
  9610.  
  9611. class M5lu_Gendarmerie {
  9612. vItemSpace = 50;
  9613. conditions = "";
  9614. price = 500;
  9615. textures[] = {};
  9616. };
  9617.  
  9618. class chExpert3_gn {
  9619. vItemSpace = 50;
  9620. conditions = "";
  9621. price = 500;
  9622. textures[] = {};
  9623. };
  9624.  
  9625. class trafic3_gn {
  9626. vItemSpace = 50;
  9627. conditions = "";
  9628. price = 500;
  9629. textures[] = {};
  9630. };
  9631.  
  9632. class SRT8_12_gn {
  9633. vItemSpace = 50;
  9634. conditions = "";
  9635. price = 500;
  9636. textures[] = {};
  9637. };
  9638.  
  9639. class IvecoCh_GN {
  9640. vItemSpace = 50;
  9641. conditions = "";
  9642. price = 500;
  9643. textures[] = {};
  9644. };
  9645.  
  9646. class chmgrs {
  9647. vItemSpace = 50;
  9648. conditions = "";
  9649. price = 500;
  9650. textures[] = {};
  9651. };
  9652.  
  9653. class FJR1300_gn_ch {
  9654. vItemSpace = 50;
  9655. conditions = "";
  9656. price = 500;
  9657. textures[] = {};
  9658. };
  9659.  
  9660. class galaxych_raid {
  9661. vItemSpace = 50;
  9662. conditions = "license_cop_raid";
  9663. price = 500;
  9664. textures[] = {};
  9665. };
  9666.  
  9667. class 308_2015_bac {
  9668. vItemSpace = 50;
  9669. conditions = "license_cop_bac";
  9670. price = 500;
  9671. textures[] = {};
  9672. };
  9673.  
  9674. class chgolf7_bac {
  9675. vItemSpace = 50;
  9676. conditions = "license_cop_bac";
  9677. price = 500;
  9678. textures[] = {};
  9679. };
  9680.  
  9681. class mondeocvh_bac {
  9682. vItemSpace = 50;
  9683. conditions = "license_cop_bac";
  9684. price = 500;
  9685. textures[] = {};
  9686. };
  9687.  
  9688. class Tahoelu_B {
  9689. vItemSpace = 50;
  9690. conditions = "";
  9691. price = 500;
  9692. textures[] = {};
  9693. };
  9694.  
  9695. class RS3lu_civ_P {
  9696. vItemSpace = 50;
  9697. conditions = "";
  9698. price = 500;
  9699. textures[] = {
  9700. { "Gendarmerie", "cop", {
  9701. "\IvoraMod_Skin\textures\gendarmerie\rs3_gendarmerie.paa"
  9702. }, "" }
  9703. };
  9704. };
  9705.  
  9706. class RS6_AvantPlu {
  9707. vItemSpace = 50;
  9708. conditions = "";
  9709. price = 500;
  9710. textures[] = {
  9711. { "Gendarmerie", "cop", {
  9712. "\IvoraMod_Skin\textures\gendarmerie\rs6_gendarmerie.paa"
  9713. }, "" }
  9714. };
  9715. };
  9716.  
  9717. class M5lu_civ_P {
  9718. vItemSpace = 50;
  9719. conditions = "";
  9720. price = 500;
  9721. textures[] = {
  9722. { "Gendarmerie", "cop", {
  9723. "\IvoraMod_Skin\textures\gendarmerie\m5_gendarmerie.paa"
  9724. }, "" }
  9725. };
  9726. };
  9727.  
  9728. class Tahoelu_P {
  9729. vItemSpace = 50;
  9730. conditions = "";
  9731. price = 500;
  9732. textures[] = {
  9733. { "Gendarmerie", "cop", {
  9734. "\IvoraMod_Skin\textures\gendarmerie\tahoe_gendarmerie.paa"
  9735. }, "" }
  9736. };
  9737. };
  9738.  
  9739. class V250_P {
  9740. vItemSpace = 50;
  9741. conditions = "";
  9742. price = 500;
  9743. textures[] = {};
  9744. };
  9745.  
  9746. class Warrior_P {
  9747. vItemSpace = 50;
  9748. conditions = "";
  9749. price = 500;
  9750. textures[] = {};
  9751. };
  9752.  
  9753. class Transit_gn {
  9754. vItemSpace = 50;
  9755. conditions = "";
  9756. price = 500;
  9757. textures[] = {};
  9758. };
  9759.  
  9760. class Mer_Vito_gn {
  9761. vItemSpace = 50;
  9762. conditions = "";
  9763. price = 500;
  9764. textures[] = {};
  9765. };
  9766.  
  9767. class kangooII1_gn {
  9768. vItemSpace = 50;
  9769. conditions = "";
  9770. price = 500;
  9771. textures[] = {};
  9772. };
  9773.  
  9774. class Megane_Estate_gn {
  9775. vItemSpace = 50;
  9776. conditions = "";
  9777. price = 500;
  9778. textures[] = {};
  9779. };
  9780.  
  9781. class Megane_Estate_p2_gn {
  9782. vItemSpace = 50;
  9783. conditions = "";
  9784. price = 500;
  9785. textures[] = {};
  9786. };
  9787.  
  9788. class Explorerlu_US {
  9789. vItemSpace = 50;
  9790. conditions = "";
  9791. price = 500;
  9792. textures[] = {};
  9793. };
  9794.  
  9795. class B_MRAP_01_F {
  9796. vItemSpace = 50;
  9797. conditions = "";
  9798. price = 30000;
  9799. textures[] = {
  9800. { "Gendarmerie", "cop", {
  9801. "\IvoraMod_Skin\textures\gendarmerie\hunter_gendarmerie.paa"
  9802. }, "" }
  9803. };
  9804. };
  9805.  
  9806. class CY_GENDARMERIE_EC635 {
  9807. vItemSpace = 50;
  9808. conditions = "";
  9809. price = 30000;
  9810. textures[] = {};
  9811. };
  9812.  
  9813. class CY_GENDARMERIE_EC635_CARGO {
  9814. vItemSpace = 50;
  9815. conditions = "";
  9816. price = 30000;
  9817. textures[] = {};
  9818. };
  9819.  
  9820. //Entreprise de Pétrole Eagle Chemicals
  9821. class D41_Trawler {
  9822. vItemSpace = 1000;
  9823. conditions = "";
  9824. price = 200000;
  9825. textures[] = {};
  9826. };
  9827.  
  9828.  
  9829. //D.I.R.S.P
  9830. class master3_enedis {
  9831. vItemSpace = 50;
  9832. conditions = "";
  9833. price = 1000;
  9834. textures[] = {};
  9835. };
  9836. class Trafic_DIR {
  9837. vItemSpace = 50;
  9838. conditions = "";
  9839. price = 1000;
  9840. textures[] = {};
  9841. };
  9842. class chdepanpl2 {
  9843. vItemSpace = 50;
  9844. conditions = "";
  9845. price = 1000;
  9846. textures[] = {};
  9847. };
  9848. class {
  9849. vItemSpace = 50;
  9850. conditions = "";
  9851. price = 1000;
  9852. textures[] = {};
  9853. };
  9854. class Trafic3_grdf {
  9855. vItemSpace = 50;
  9856. conditions = "";
  9857. price = 1000;
  9858. textures[] = {};
  9859. };
  9860. class chtwingoI_DIR {
  9861. vItemSpace = 50;
  9862. conditions = "";
  9863. price = 1000;
  9864. textures[] = {};
  9865. };
  9866. class master3p2_enedis {
  9867. vItemSpace = 50;
  9868. conditions = "";
  9869. price = 1000;
  9870. textures[] = {};
  9871. };
  9872. class chGrue_Mobile {
  9873. vItemSpace = 50;
  9874. conditions = "";
  9875. price = 1000;
  9876. textures[] = {};
  9877. };
  9878. class chclio3_grdf {
  9879. vItemSpace = 50;
  9880. conditions = "";
  9881. price = 1000;
  9882. textures[] = {};
  9883. };
  9884. class KangooI2_DIR {
  9885. vItemSpace = 50;
  9886. conditions = "";
  9887. price = 1000;
  9888. textures[] = {};
  9889. };
  9890. class chgrue {
  9891. vItemSpace = 50;
  9892. conditions = "";
  9893. price = 1000;
  9894. textures[] = {};
  9895. };
  9896. class chTransport_L {
  9897. vItemSpace = 50;
  9898. conditions = "";
  9899. price = 1000;
  9900. textures[] = {};
  9901. };
  9902. class Master2_DIR {
  9903. vItemSpace = 50;
  9904. conditions = "";
  9905. price = 1000;
  9906. textures[] = {};
  9907. };
  9908. class chmaster2_grdf {
  9909. vItemSpace = 50;
  9910. conditions = "";
  9911. price = 1000;
  9912. textures[] = {};
  9913. };
  9914. class partner2_grdf {
  9915. vItemSpace = 50;
  9916. conditions = "";
  9917. price = 1000;
  9918. textures[] = {};
  9919. };
  9920. class Peugeot_Expert_grdf {
  9921. vItemSpace = 50;
  9922. conditions = "";
  9923. price = 1000;
  9924. textures[] = {};
  9925. };
  9926. class Ducato_civ_grdf {
  9927. vItemSpace = 50;
  9928. conditions = "";
  9929. price = 1000;
  9930. textures[] = {};
  9931. };
  9932. class chduster14_civ_enedis {
  9933. vItemSpace = 50;
  9934. conditions = "";
  9935. price = 1000;
  9936. textures[] = {};
  9937. };
  9938. class Volvo_FHlu_d {
  9939. vItemSpace = 50;
  9940. conditions = "";
  9941. price = 1000;
  9942. textures[] = {};
  9943. };
  9944. class chchariotp {
  9945. vItemSpace = 50;
  9946. conditions = "";
  9947. price = 1000;
  9948. textures[] = {};
  9949. };
  9950. class chtwingoII_DIR {
  9951. vItemSpace = 50;
  9952. conditions = "";
  9953. price = 1000;
  9954. textures[] = {};
  9955. };
  9956.  
  9957. class KangooII1_DIR {
  9958. vItemSpace = 50;
  9959. conditions = "";
  9960. price = 1000;
  9961. textures[] = {};
  9962. };
  9963.  
  9964. class ClioIV_DIR {
  9965. vItemSpace = 50;
  9966. conditions = "";
  9967. price = 1000;
  9968. textures[] = {};
  9969. };
  9970.  
  9971. class Trafic3_DIR {
  9972. vItemSpace = 50;
  9973. conditions = "";
  9974. price = 1000;
  9975. textures[] = {};
  9976. };
  9977.  
  9978. class Master3_DIR {
  9979. vItemSpace = 50;
  9980. conditions = "";
  9981. price = 1000;
  9982. textures[] = {};
  9983. };
  9984.  
  9985. class depanren {
  9986. vItemSpace = 50;
  9987. conditions = "";
  9988. price = 1000;
  9989. textures[] = {};
  9990. };
  9991.  
  9992. class chdepanpl {
  9993. vItemSpace = 50;
  9994. conditions = "";
  9995. price = 1000;
  9996. textures[] = {};
  9997. };
  9998.  
  9999. class chmegane_4_estate_taxi {
  10000. vItemSpace = 50;
  10001. conditions = "";
  10002. price = 15000;
  10003. textures[] = {};
  10004. };
  10005.  
  10006. class galaxych_civ_taxi {
  10007. vItemSpace = 50;
  10008. conditions = "";
  10009. price = 15000;
  10010. textures[] = {};
  10011. };
  10012.  
  10013. class mondeovch_civ_taxi {
  10014. vItemSpace = 50;
  10015. conditions = "";
  10016. price = 15000;
  10017. textures[] = {};
  10018. };
  10019.  
  10020. class cmax_civ_taxi {
  10021. vItemSpace = 50;
  10022. conditions = "";
  10023. price = 15000;
  10024. textures[] = {};
  10025. };
  10026.  
  10027. //AUTRES
  10028. class I_Heli_light_03_unarmed_F {
  10029. vItemSpace = 50;
  10030. conditions = "";
  10031. price = 2000000;
  10032. textures[] = {
  10033. { "Gendarmerie", "cop", {
  10034. "\IvoraMod_Skin\textures\gendarmerie\hellcat_gendarmerie.paa"
  10035. }, "" }
  10036. };
  10037. };
  10038.  
  10039. // Apex DLC
  10040. class C_Boat_Transport_02_F {
  10041. vItemSpace = 50;
  10042. conditions = "";
  10043. price = 50000;
  10044. textures[] = {
  10045. { "Civilian", "civ", {
  10046. "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_civilian_CO.paa"
  10047. }, "" },
  10048. { "Black", "cop", {
  10049. "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_CO.paa"
  10050. }, "" }
  10051. };
  10052. };
  10053.  
  10054. // Apex DLC
  10055. class C_Offroad_02_unarmed_F {
  10056. vItemSpace = 50;
  10057. conditions = "";
  10058. price = 150000;
  10059. textures[] = {
  10060. { "Black", "civ", {
  10061. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_black_co.paa"
  10062. }, "" },
  10063. { "Blue", "civ", {
  10064. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_blue_co.paa"
  10065. }, "" },
  10066. { "Green", "civ", {
  10067. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_green_co.paa"
  10068. }, "" },
  10069. { "Orange", "civ", {
  10070. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_orange_co.paa"
  10071. }, "" },
  10072. { "Red", "civ", {
  10073. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_red_co.paa"
  10074. }, "" },
  10075. { "White", "civ", {
  10076. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_white_co.paa"
  10077. }, "" }
  10078. };
  10079. };
  10080.  
  10081. // Apex DLC
  10082. class C_Plane_Civil_01_F {
  10083. vItemSpace = 50;
  10084. conditions = "";
  10085. price = 2000000;
  10086. textures[] = {
  10087. { "Racing (Tan Interior)", "civ", {
  10088. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  10089. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  10090. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  10091. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  10092. }, "" },
  10093. { "Racing", "civ", {
  10094. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  10095. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  10096. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  10097. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  10098. }, "" },
  10099. { "Red Line (Tan Interior)", "civ", {
  10100. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  10101. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  10102. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  10103. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  10104. }, "" },
  10105. { "Red Line", "civ", {
  10106. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  10107. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  10108. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  10109. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  10110. }, "" },
  10111. { "Tribal (Tan Interior)", "civ", {
  10112. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  10113. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  10114. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  10115. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  10116. }, "" },
  10117. { "Tribal", "civ", {
  10118. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  10119. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  10120. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  10121. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  10122. }, "" },
  10123. { "Blue Wave (Tan Interior)", "civ", {
  10124. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  10125. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  10126. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  10127. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  10128. }, "" },
  10129. { "Blue Wave", "civ", {
  10130. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  10131. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  10132. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  10133. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  10134. }, "" }
  10135. };
  10136. };
  10137.  
  10138. // Apex DLC
  10139. class C_Scooter_Transport_01_F {
  10140. vItemSpace = 30;
  10141. conditions = "";
  10142. price = 1000;
  10143. textures[] = {
  10144. { "Black", "civ", {
  10145. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Black_CO.paa",
  10146. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Black_CO.paa"
  10147. }, "" },
  10148. { "Blue", "civ", {
  10149. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Blue_co.paa",
  10150. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Blue_co.paa"
  10151. }, "" },
  10152. { "Grey", "civ", {
  10153. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Grey_co.paa",
  10154. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Grey_co.paa"
  10155. }, "" },
  10156. { "Green", "civ", {
  10157. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Lime_co.paa",
  10158. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Lime_co.paa"
  10159. }, "" },
  10160. { "Red", "civ", {
  10161. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Red_CO.paa",
  10162. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  10163. }, "" },
  10164. { "White", "civ", {
  10165. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_CO.paa",
  10166. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  10167. }, "" },
  10168. { "Yellow", "civ", {
  10169. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Yellow_CO.paa",
  10170. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Yellow_CO.paa"
  10171. }, "" }
  10172. };
  10173. };
  10174.  
  10175. class B_Heli_Transport_03_unarmed_F {
  10176. vItemSpace = 150;
  10177. conditions = "";
  10178. price = 50000;
  10179. textures[] = {};
  10180. };
  10181.  
  10182. class GeK_Ferry {
  10183. vItemSpace = 150;
  10184. conditions = "";
  10185. price = 459850;
  10186. textures[] = {};
  10187. };
  10188.  
  10189. class EC635_Unarmed {
  10190. vItemSpace = 72;
  10191. conditions = "";
  10192. price = 410200;
  10193. textures[] = {};
  10194. };
  10195.  
  10196. class A320_ch_AF {
  10197. vItemSpace = 90;
  10198. conditions = "";
  10199. price = 600000;
  10200. textures[] = {};
  10201. };
  10202. class chpush_back {
  10203. vItemSpace = 25;
  10204. conditions = "";
  10205. price = 23520;
  10206. textures[] = {};
  10207. };
  10208. class chciternvol_total {
  10209. vItemSpace = 90;
  10210. conditions = "";
  10211. price = 200000;
  10212. textures[] = {};
  10213. };
  10214. class chcitan_civ_fm {
  10215. vItemSpace = 70;
  10216. conditions = "";
  10217. price = 40000;
  10218. textures[] = {};
  10219. };
  10220. class chciternvol_bp {
  10221. vItemSpace = 90;
  10222. conditions = "";
  10223. price = 200000;
  10224. textures[] = {};
  10225. };
  10226.  
  10227. class C_Heli_Light_01_civil_F {
  10228. vItemSpace = 50;
  10229. conditions = "";
  10230. price = 359850;
  10231. textures[] = {};
  10232. };
  10233.  
  10234. class C_Rubberboat {
  10235. vItemSpace = 45;
  10236. conditions = "";
  10237. price = 5000;
  10238. textures[] = {
  10239. { "Noir", "civ", {
  10240. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  10241. }, "" },
  10242. { "Blanc", "civ", {
  10243. "#(argb,8,8,3)color(1,1,1,1)"
  10244. }, "" },
  10245. { "Gris", "civ", {
  10246. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  10247. }, "" },
  10248. { "Sable", "civ", {
  10249. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  10250. }, "" },
  10251. { "Rouge", "civ", {
  10252. "#(argb,8,8,3)color(1,0,0,1)"
  10253. }, "" },
  10254. { "Jaune", "civ", {
  10255. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  10256. }, "" },
  10257. { "Bleu", "civ", {
  10258. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  10259. }, "" },
  10260. { "Bleu Nuit", "civ", {
  10261. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  10262. }, "" },
  10263. { "Mauve", "civ", {
  10264. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  10265. }, "" },
  10266. { "Orange", "civ", {
  10267. "#(argb,8,8,3)color(1,0.251,0,1)"
  10268. }, "" },
  10269. { "Vert", "civ", {
  10270. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  10271. }, "" },
  10272. { "Rose", "civ", {
  10273. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  10274. }, "" },
  10275. { "Violet", "civ", {
  10276. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  10277. }, "" }
  10278. };
  10279. };
  10280.  
  10281. class B_Heli_Transport_01_F {
  10282. vItemSpace = 50;
  10283. conditions = "";
  10284. price = 50000;
  10285. textures[] = {
  10286. { "Noir", "civ", {
  10287. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  10288. }, "" },
  10289. { "Blanc", "civ", {
  10290. "#(argb,8,8,3)color(1,1,1,1)"
  10291. }, "" },
  10292. { "Gris", "civ", {
  10293. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  10294. }, "" },
  10295. { "Sable", "civ", {
  10296. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  10297. }, "" },
  10298. { "Rouge", "civ", {
  10299. "#(argb,8,8,3)color(1,0,0,1)"
  10300. }, "" },
  10301. { "Jaune", "civ", {
  10302. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  10303. }, "" },
  10304. { "Bleu", "civ", {
  10305. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  10306. }, "" },
  10307. { "Bleu Nuit", "civ", {
  10308. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  10309. }, "" },
  10310. { "Mauve", "civ", {
  10311. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  10312. }, "" },
  10313. { "Orange", "civ", {
  10314. "#(argb,8,8,3)color(1,0.251,0,1)"
  10315. }, "" },
  10316. { "Vert", "civ", {
  10317. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  10318. }, "" },
  10319. { "Rose", "civ", {
  10320. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  10321. }, "" },
  10322. { "Violet", "civ", {
  10323. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  10324. }, "" }
  10325. };
  10326. };
  10327.  
  10328. class B_Boat_Transport_01_F {
  10329. vItemSpace = 45;
  10330. conditions = "";
  10331. price = 30000;
  10332. textures[] = {
  10333. { "Noir", "civ", {
  10334. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  10335. }, "" },
  10336. { "Blanc", "civ", {
  10337. "#(argb,8,8,3)color(1,1,1,1)"
  10338. }, "" },
  10339. { "Gris", "civ", {
  10340. "#(argb,8,8,3)color(0.0925,0.0925,0.0925,1)"
  10341. }, "" },
  10342. { "Sable", "civ", {
  10343. "#(argb,8,8,3)color(1.5,1.6,0.9,0.2)"
  10344. }, "" },
  10345. { "Rouge", "civ", {
  10346. "#(argb,8,8,3)color(1,0,0,1)"
  10347. }, "" },
  10348. { "Jaune", "civ", {
  10349. "#(argb,8,8,3)color(0.643,0.663,0,1)"
  10350. }, "" },
  10351. { "Bleu", "civ", {
  10352. "#(argb,8,8,3)color(0.01,0.6,1,0.1)"
  10353. }, "" },
  10354. { "Bleu Nuit", "civ", {
  10355. "#(argb,8,8,3)color(0,0,0.5,0.1)"
  10356. }, "" },
  10357. { "Mauve", "civ", {
  10358. "#(argb,8,8,3)color(0.6,0,1,0.01)"
  10359. }, "" },
  10360. { "Orange", "civ", {
  10361. "#(argb,8,8,3)color(1,0.251,0,1)"
  10362. }, "" },
  10363. { "Vert", "civ", {
  10364. "#(argb,8,8,3)color(0.5,1,0.5,0.05)"
  10365. }, "" },
  10366. { "Rose", "civ", {
  10367. "#(argb,8,8,3)color(0.878,0.067,0.373,1)"
  10368. }, "" },
  10369. { "Violet", "civ", {
  10370. "#(argb,8,8,3)color(0.455,0.004,0.875,1)"
  10371. }, "" }
  10372. };
  10373. };
  10374. //Container Banque
  10375. class Land_CargoBox_V1_F {
  10376. vItemSpace = 5000;
  10377. conditions = "";
  10378. price = -1;
  10379. textures[] = {};
  10380. };
  10381. //Petit Container
  10382. class Box_IND_Grenades_F {
  10383. vItemSpace = 350;
  10384. conditions = "";
  10385. price = -1;
  10386. textures[] = {};
  10387. };
  10388. //Grand Container
  10389. class B_supplyCrate_F {
  10390. vItemSpace = 700;
  10391. conditions = "";
  10392. price = -1;
  10393. textures[] = {};
  10394. };
  10395. //Atelier de Culture
  10396. class Land_Sink_F {
  10397. vItemSpace = 10;
  10398. conditions = "";
  10399. price = -1;
  10400. textures[] = {};
  10401. };
  10402. //Atelier de Traitement
  10403. class Land_Workbench_01_F {
  10404. vItemSpace = 10;
  10405. conditions = "";
  10406. price = -1;
  10407. textures[] = {};
  10408. };
  10409. //Dealer de drogue
  10410. class Land_TripodScreen_01_large_F {
  10411. vItemSpace = 10;
  10412. conditions = "";
  10413. price = -1;
  10414. textures[] = {};
  10415. };
  10416.  
  10417. /*//Incubateur Cannabis
  10418. class Land_FoodContainer_01_F {
  10419. vItemSpace = 65;
  10420. conditions = "";
  10421. price = 12500;
  10422. textures[] = {};
  10423. };
  10424.  
  10425. //Incubateur Cocaïne
  10426. class Land_BarrelEmpty_grey_F {
  10427. vItemSpace = 65;
  10428. conditions = "";
  10429. price = 12500;
  10430. textures[] = {};
  10431. };
  10432.  
  10433. //Incubateur Heröine
  10434. class Land_BarrelEmpty_F {
  10435. vItemSpace = 65;
  10436. conditions = "";
  10437. price = 12500;
  10438. textures[] = {};
  10439. };*/
  10440.  
  10441. class C_Boat_Civil_01_F {
  10442. vItemSpace = 50;
  10443. conditions = "";
  10444. price = 75000;
  10445. textures[] = {};
  10446. };
  10447.  
  10448. class sab_boat {
  10449. vItemSpace = 50;
  10450. conditions = "";
  10451. price = 275320;
  10452. textures[] = {};
  10453. };
  10454.  
  10455. class C_Boat_Civil_01_police_F {
  10456. vItemSpace = 50;
  10457. conditions = "";
  10458. price = 20000;
  10459. textures[] = {};
  10460. };
  10461.  
  10462. class C_Offroad_01_F {
  10463. vItemSpace = 50;
  10464. conditions = "";
  10465. price = 12500;
  10466. textures[] = {
  10467. { "Red", "civ", {
  10468. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
  10469. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
  10470. }, "" },
  10471. { "Yellow", "civ", {
  10472. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
  10473. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
  10474. }, "" },
  10475. { "White", "civ", {
  10476. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
  10477. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
  10478. }, "" },
  10479. { "Blue", "civ", {
  10480. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
  10481. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
  10482. }, "" },
  10483. { "Dark Red", "civ", {
  10484. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
  10485. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
  10486. }, "" },
  10487. { "Blue / White", "civ", {
  10488. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
  10489. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
  10490. }, "" },
  10491. { "Taxi", "civ", {
  10492. "#(argb,8,8,3)color(0.6,0.3,0.01,1)"
  10493. }, "" },
  10494. { "Police", "cop", {
  10495. "#(ai,64,64,1)Fresnel(1.3,7)"
  10496. }, "" }
  10497. };
  10498. };
  10499.  
  10500. class C_Kart_01_Blu_F {
  10501. vItemSpace = 20;
  10502. conditions = "";
  10503. price = 15000;
  10504. textures[] = {};
  10505. };
  10506. /*
  10507. To edit another information in this classes you can use this exemple.
  10508. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{
  10509. vItemSpace = 40;
  10510. price = ;
  10511. };
  10512.  
  10513. will modify the virtual space and the price of the vehicle, but other information such as license and textures will pick up the vehicle declare at : Vehicle {};
  10514. */
  10515. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{}; // Get all information of C_Kart_01_Blu_F
  10516. class C_Kart_01_Red_F : C_Kart_01_Blu_F{};
  10517. class C_Kart_01_Vrana_F : C_Kart_01_Blu_F{};
  10518.  
  10519. class C_Hatchback_01_sport_F {
  10520. vItemSpace = 45;
  10521. conditions = "";
  10522. price = 40000;
  10523. textures[] = {
  10524. { "Red", "civ", {
  10525. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport01_co.paa"
  10526. }, "" },
  10527. { "Dark Blue", "civ", {
  10528. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport02_co.paa"
  10529. }, "" },
  10530. { "Orange", "civ", {
  10531. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport03_co.paa"
  10532. }, "" },
  10533. { "Black / White", "civ", {
  10534. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport04_co.paa"
  10535. }, "" },
  10536. { "Beige", "civ", {
  10537. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport05_co.paa"
  10538. }, "" },
  10539. { "Green", "civ", {
  10540. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport06_co.paa"
  10541. }, "" },
  10542. { "Police", "cop", {
  10543. "#(ai,64,64,1)Fresnel(1.3,7)"
  10544. }, "" }
  10545. };
  10546. };
  10547.  
  10548. class I_Truck_02_covered_F {
  10549. vItemSpace = 250;
  10550. conditions = "";
  10551. price = 100000;
  10552. textures[] = {
  10553. { "Orange", "civ", {
  10554. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  10555. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  10556. }, "" },
  10557. { "Black", "cop", {
  10558. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  10559. }, "" }
  10560. };
  10561. };
  10562.  
  10563. class I_Truck_02_transport_F {
  10564. vItemSpace = 200;
  10565. conditions = "";
  10566. price = 75000;
  10567. textures[] = {
  10568. { "Orange", "civ", {
  10569. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  10570. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  10571. }, "" },
  10572. { "Black", "cop", {
  10573. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  10574. }, "" }
  10575. };
  10576. };
  10577.  
  10578. class O_Truck_03_covered_F {
  10579. vItemSpace = 300;
  10580. conditions = "";
  10581. price = 250000;
  10582. textures[] = {};
  10583. };
  10584.  
  10585. class NH90 {
  10586. vItemSpace = 300;
  10587. conditions = "";
  10588. price = 250000;
  10589. textures[] = {};
  10590. };
  10591.  
  10592. class C_Hatchback_01_F {
  10593. vItemSpace = 40;
  10594. conditions = "";
  10595. price = 9500;
  10596. textures[] = {
  10597. { "Beige", "civ", {
  10598. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base01_co.paa"
  10599. }, "" },
  10600. { "Green", "civ", {
  10601. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base02_co.paa"
  10602. }, "" },
  10603. { "Blue", "civ", {
  10604. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base03_co.paa"
  10605. }, "" },
  10606. { "Dark Blue", "civ", {
  10607. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  10608. }, "" },
  10609. { "Yellow", "civ", {
  10610. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  10611. }, "" },
  10612. { "White", "civ", {
  10613. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  10614. }, "" },
  10615. { "Grey", "civ", {
  10616. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  10617. }, "" },
  10618. { "Black", "civ", {
  10619. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  10620. }, "" }
  10621. };
  10622. };
  10623.  
  10624. class B_Heli_Light_01_stripped_F {
  10625. vItemSpace = 50;
  10626. conditions = "";
  10627. price = 275000;
  10628. textures[] = {
  10629. { "Rebel Digital", "reb", {
  10630. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  10631. }, "" },
  10632. { "Gendarmerie", "cop", {
  10633. "\IvoraMod_Skin\textures\gendarmerie\mh9_gendarmerie.paa"
  10634. }, "" },
  10635. };
  10636. };
  10637.  
  10638. class B_Heli_Light_01_F {
  10639. vItemSpace = 50;
  10640. conditions = "";
  10641. price = 245000;
  10642. textures[] = {
  10643. { "Sheriff", "civ", {
  10644. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sheriff_co.paa"
  10645. }, "" },
  10646. { "Civ Blue", "civ", {
  10647. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
  10648. }, "" },
  10649. { "Civ Red", "civ", {
  10650. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
  10651. }, "" },
  10652. { "Blueline", "civ", {
  10653. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
  10654. }, "" },
  10655. { "Elliptical", "civ", {
  10656. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
  10657. }, "" },
  10658. { "Furious", "civ", {
  10659. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
  10660. }, "" },
  10661. { "Jeans Blue", "civ", {
  10662. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
  10663. }, "" },
  10664. { "Speedy Redline", "civ", {
  10665. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
  10666. }, "" },
  10667. { "Sunset", "civ", {
  10668. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
  10669. }, "" },
  10670. { "Vrana", "civ", {
  10671. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
  10672. }, "" },
  10673. { "Waves Blue", "civ", {
  10674. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
  10675. }, "" },
  10676. { "Rebel Digital", "reb", {
  10677. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  10678. }, "" },
  10679. { "Digi Green", "reb", {
  10680. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
  10681. }, "" },
  10682. { "EMS White", "med", {
  10683. "#(argb,8,8,3)color(1,1,1,0.8)"
  10684. }, "" }
  10685. };
  10686. };
  10687.  
  10688. class O_Heli_Light_02_unarmed_F {
  10689. vItemSpace = 50;
  10690. conditions = "";
  10691. price = 750000;
  10692. textures[] = {
  10693. { "Armée", "adac", {
  10694. "\IvoraMod_Skin\textures\armee\Orca_Army.paa"
  10695. }, "" },
  10696. { "Black", "cop", {
  10697. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_co.paa"
  10698. }, "" },
  10699. { "White / Blue", "civ", {
  10700. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
  10701. }, "" },
  10702. { "Digi Green", "civ", {
  10703. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
  10704. }, "" },
  10705. { "Desert Digi", "reb", {
  10706. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
  10707. }, "" },
  10708. { "EMS White", "med", {
  10709. "#(argb,8,8,3)color(1,1,1,0.8)"
  10710. }, "" }
  10711. };
  10712. };
  10713.  
  10714. class B_SDV_01_F {
  10715. vItemSpace = 1000;
  10716. conditions = "";
  10717. price = 1500000;
  10718. textures[] = {};
  10719. };
  10720. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement