home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / dragracer.swf / scripts / frame_385 / DoAction.as
Encoding:
Text File  |  2005-10-06  |  15.9 KB  |  539 lines

  1. function getStoryData(lvl)
  2. {
  3.    var _loc1_ = _root;
  4.    var _loc2_ = lvl;
  5.    levl = _loc2_ - 1;
  6.    oppcar = new Object();
  7.    if(levl < levlMAX)
  8.    {
  9.       oppcar.oppname = StoryMode.Name[levl];
  10.       BuyCar(oppcar,_loc1_[StoryMode.CAR[levl]]);
  11.       if(StoryMode.KIT[levl])
  12.       {
  13.          oppcar._fkit = StoryMode.CAR[levl] add "_FKIT_1";
  14.          oppcar._skit = StoryMode.CAR[levl] add "_SKIT_1";
  15.          oppcar._bkit = StoryMode.CAR[levl] add "_BKIT_1";
  16.       }
  17.       oppcar.HP = StoryMode.HP[levl];
  18.       oppcar.TQ = StoryMode.TQ[levl];
  19.       oppcar.CL = 5;
  20.       oppcar.WT = StoryMode.WT[levl];
  21.       oppcar.FR = 0;
  22.       oppcar.hoodnum = 2;
  23.       switch(StoryMode.COL[levl])
  24.       {
  25.          case "black":
  26.             oppcar.cols = {rb:-215,gb:-215,bb:-215};
  27.             oppcar.spocols = {rb:-215,gb:-215,bb:-215};
  28.             oppcar.kscols = {rb:-215,gb:-215,bb:-215};
  29.             break;
  30.          case "blue":
  31.             oppcar.cols = {rb:-255,gb:-255,bb:0};
  32.             oppcar.spocols = {rb:-255,gb:-255,bb:0};
  33.             oppcar.kscols = {rb:-255,gb:-255,bb:0};
  34.             break;
  35.          case "blue":
  36.             oppcar.cols = {rb:-255,gb:-255,bb:0};
  37.             oppcar.spocols = {rb:-255,gb:-255,bb:0};
  38.             oppcar.kscols = {rb:-255,gb:-255,bb:0};
  39.             break;
  40.          default:
  41.             "gray";
  42.             if(_loc0_ !== "grey")
  43.             {
  44.                if(_loc0_ !== "yellow")
  45.                {
  46.                   if(_loc0_ !== "green")
  47.                   {
  48.                      if(_loc0_ !== "red")
  49.                      {
  50.                         if(_loc0_ !== "silver")
  51.                         {
  52.                            if(_loc0_ !== "darkgrey")
  53.                            {
  54.                               if(_loc0_ !== "navyblue")
  55.                               {
  56.                                  oppcar.cols = {rb:0,gb:0,bb:0};
  57.                                  oppcar.spocols = {rb:0,gb:0,bb:0};
  58.                                  oppcar.kscols = {rb:0,gb:0,bb:0};
  59.                                  break;
  60.                               }
  61.                               oppcar.cols = {rb:-255,gb:-255,bb:-150};
  62.                               oppcar.spocols = {rb:-255,gb:-255,bb:-150};
  63.                               oppcar.kscols = {rb:-255,gb:-255,bb:-150};
  64.                               break;
  65.                            }
  66.                            oppcar.cols = {rb:-200,gb:-200,bb:-200};
  67.                            oppcar.spocols = {rb:-200,gb:-200,bb:-200};
  68.                            oppcar.kscols = {rb:-200,gb:-200,bb:-200};
  69.                            break;
  70.                         }
  71.                         oppcar.cols = {rb:-55,gb:-55,bb:-55};
  72.                         oppcar.spocols = {rb:-55,gb:-55,bb:-55};
  73.                         oppcar.kscols = {rb:-55,gb:-55,bb:-55};
  74.                         break;
  75.                      }
  76.                      oppcar.cols = {rb:-30,gb:-255,bb:-255};
  77.                      oppcar.spocols = {rb:-30,gb:-255,bb:-255};
  78.                      oppcar.kscols = {rb:-30,gb:-255,bb:-255};
  79.                      break;
  80.                   }
  81.                   oppcar.cols = {rb:-255,gb:0,bb:-255};
  82.                   oppcar.spocols = {rb:-255,gb:0,bb:-255};
  83.                   oppcar.kscols = {rb:-255,gb:0,bb:-255};
  84.                   break;
  85.                }
  86.                oppcar.cols = {rb:-55,gb:-55,bb:-255};
  87.                oppcar.spocols = {rb:-55,gb:-55,bb:-255};
  88.                oppcar.kscols = {rb:-55,gb:-55,bb:-255};
  89.                break;
  90.             }
  91.             oppcar.cols = {rb:-155,gb:-155,bb:-155};
  92.             oppcar.spocols = {rb:-155,gb:-155,bb:-155};
  93.             oppcar.kscols = {rb:-155,gb:-155,bb:-155};
  94.             break;
  95.       }
  96.       _loc1_.wager = StoryMode.WAGER[levl];
  97.    }
  98.    else
  99.    {
  100.       oppcar.oppname = "???";
  101.       BuyCar(oppcar,_loc1_.SALEEN);
  102.       oppcar.HP = 1500 + (_loc2_ - levlMAX) * 10;
  103.       oppcar.TQ = 1000 + (_loc2_ - levlMAX) * 10;
  104.       oppcar.CL = 5;
  105.       oppcar.WT = 900;
  106.       oppcar.FR = 0;
  107.       oppcar.cols = {rb:-255,gb:-255,bb:-255};
  108.       oppcar.spocols = {rb:-255,gb:-255,bb:-255};
  109.       oppcar.kscols = {rb:-255,gb:-255,bb:-255};
  110.       _loc1_.wager = 10000;
  111.    }
  112. }
  113. StoryMode = new Object();
  114. StoryMode.Name = new Array();
  115. StoryMode.HP = new Array();
  116. StoryMode.TQ = new Array();
  117. StoryMode.WT = new Array();
  118. StoryMode.CAR = new Array();
  119. StoryMode.KIT = new Array();
  120. StoryMode.COL = new Array();
  121. StoryMode.WAGER = new Array();
  122. StoryMode.Name.push("Wincram");
  123. StoryMode.CAR.push("CRX");
  124. StoryMode.KIT.push(true);
  125. StoryMode.COL.push("black");
  126. StoryMode.WAGER.push(1000);
  127. StoryMode.HP.push(50);
  128. StoryMode.TQ.push(50);
  129. StoryMode.WT.push(2000);
  130. StoryMode.Name.push("G-Willie");
  131. StoryMode.CAR.push("CIVICH");
  132. StoryMode.KIT.push(true);
  133. StoryMode.COL.push("blue");
  134. StoryMode.WAGER.push(1000);
  135. StoryMode.HP.push(50);
  136. StoryMode.TQ.push(50);
  137. StoryMode.WT.push(1000);
  138. StoryMode.Name.push("SloJoe");
  139. StoryMode.CAR.push("CIVIC");
  140. StoryMode.KIT.push(true);
  141. StoryMode.COL.push("black");
  142. StoryMode.WAGER.push(1000);
  143. StoryMode.HP.push(100);
  144. StoryMode.TQ.push(100);
  145. StoryMode.WT.push(1000);
  146. StoryMode.Name.push("Otto");
  147. StoryMode.CAR.push("INTEGRA");
  148. StoryMode.KIT.push(true);
  149. StoryMode.COL.push("gray");
  150. StoryMode.WAGER.push(1000);
  151. StoryMode.HP.push(400);
  152. StoryMode.TQ.push(100);
  153. StoryMode.WT.push(1000);
  154. StoryMode.Name.push("Bort");
  155. StoryMode.CAR.push("CELICA");
  156. StoryMode.KIT.push(true);
  157. StoryMode.COL.push("yellow");
  158. StoryMode.WAGER.push(1000);
  159. StoryMode.HP.push(200);
  160. StoryMode.TQ.push(200);
  161. StoryMode.WT.push(1000);
  162. StoryMode.Name.push("Wendell");
  163. StoryMode.CAR.push("ECLIPSE");
  164. StoryMode.KIT.push(true);
  165. StoryMode.COL.push("green");
  166. StoryMode.WAGER.push(1000);
  167. StoryMode.HP.push(200);
  168. StoryMode.TQ.push(200);
  169. StoryMode.WT.push(1000);
  170. StoryMode.Name.push("Nate");
  171. StoryMode.CAR.push("PROTEGE");
  172. StoryMode.KIT.push(true);
  173. StoryMode.COL.push("black");
  174. StoryMode.WAGER.push(1000);
  175. StoryMode.HP.push(220);
  176. StoryMode.TQ.push(220);
  177. StoryMode.WT.push(1000);
  178. StoryMode.Name.push("J-Dogg");
  179. StoryMode.CAR.push("TIBURON");
  180. StoryMode.KIT.push(true);
  181. StoryMode.COL.push("gray");
  182. StoryMode.WAGER.push(1000);
  183. StoryMode.HP.push(230);
  184. StoryMode.TQ.push(230);
  185. StoryMode.WT.push(1000);
  186. StoryMode.Name.push("G-Money");
  187. StoryMode.CAR.push("CHARGER");
  188. StoryMode.KIT.push(true);
  189. StoryMode.COL.push("black");
  190. StoryMode.WAGER.push(2000);
  191. StoryMode.HP.push(240);
  192. StoryMode.TQ.push(240);
  193. StoryMode.WT.push(1000);
  194. StoryMode.Name.push("Kalkalash");
  195. StoryMode.CAR.push("LANCER");
  196. StoryMode.KIT.push(true);
  197. StoryMode.COL.push("red");
  198. StoryMode.WAGER.push(2000);
  199. StoryMode.HP.push(250);
  200. StoryMode.TQ.push(250);
  201. StoryMode.WT.push(1000);
  202. StoryMode.Name.push("Owen Woody");
  203. StoryMode.CAR.push("MR2");
  204. StoryMode.KIT.push(true);
  205. StoryMode.COL.push("red");
  206. StoryMode.WAGER.push(2000);
  207. StoryMode.HP.push(260);
  208. StoryMode.TQ.push(260);
  209. StoryMode.WT.push(1000);
  210. StoryMode.Name.push("Ziggy");
  211. StoryMode.CAR.push("IS300");
  212. StoryMode.KIT.push(true);
  213. StoryMode.COL.push("white");
  214. StoryMode.WAGER.push(2000);
  215. StoryMode.HP.push(100);
  216. StoryMode.TQ.push(500);
  217. StoryMode.WT.push(1200);
  218. StoryMode.Name.push("Pootie Tang");
  219. StoryMode.CAR.push("RSX");
  220. StoryMode.KIT.push(true);
  221. StoryMode.COL.push("gray");
  222. StoryMode.WAGER.push(2500);
  223. StoryMode.HP.push(300);
  224. StoryMode.TQ.push(350);
  225. StoryMode.WT.push(1000);
  226. StoryMode.Name.push("Miklea");
  227. StoryMode.CAR.push("TT");
  228. StoryMode.KIT.push(true);
  229. StoryMode.COL.push("red");
  230. StoryMode.WAGER.push(2500);
  231. StoryMode.HP.push(400);
  232. StoryMode.TQ.push(400);
  233. StoryMode.WT.push(1000);
  234. StoryMode.Name.push("Alf");
  235. StoryMode.CAR.push("NECLIPSE");
  236. StoryMode.KIT.push(true);
  237. StoryMode.COL.push("blue");
  238. StoryMode.WAGER.push(2500);
  239. StoryMode.HP.push(450);
  240. StoryMode.TQ.push(400);
  241. StoryMode.WT.push(1000);
  242. StoryMode.Name.push("Antonio");
  243. StoryMode.CAR.push("SILVIA");
  244. StoryMode.KIT.push(true);
  245. StoryMode.COL.push("gray");
  246. StoryMode.WAGER.push(2500);
  247. StoryMode.HP.push(420);
  248. StoryMode.TQ.push(420);
  249. StoryMode.WT.push(1000);
  250. StoryMode.Name.push("Robert");
  251. StoryMode.CAR.push("NECLIPSE");
  252. StoryMode.KIT.push(true);
  253. StoryMode.COL.push("yellow");
  254. StoryMode.WAGER.push(2500);
  255. StoryMode.HP.push(450);
  256. StoryMode.TQ.push(450);
  257. StoryMode.WT.push(1000);
  258. StoryMode.Name.push("Bennito");
  259. StoryMode.CAR.push("RSX");
  260. StoryMode.KIT.push(true);
  261. StoryMode.COL.push("orange");
  262. StoryMode.WAGER.push(2500);
  263. StoryMode.HP.push(450);
  264. StoryMode.TQ.push(450);
  265. StoryMode.WT.push(950);
  266. StoryMode.Name.push("Brack");
  267. StoryMode.CAR.push("NSX");
  268. StoryMode.KIT.push(false);
  269. StoryMode.COL.push("black");
  270. StoryMode.WAGER.push(2500);
  271. StoryMode.HP.push(450);
  272. StoryMode.TQ.push(450);
  273. StoryMode.WT.push(900);
  274. StoryMode.Name.push("Basim");
  275. StoryMode.CAR.push("GOLF");
  276. StoryMode.KIT.push(false);
  277. StoryMode.COL.push("white");
  278. StoryMode.WAGER.push(3000);
  279. StoryMode.HP.push(450);
  280. StoryMode.TQ.push(450);
  281. StoryMode.WT.push(850);
  282. StoryMode.Name.push("Dilbert");
  283. StoryMode.CAR.push("COOPER");
  284. StoryMode.KIT.push(true);
  285. StoryMode.COL.push("pink");
  286. StoryMode.WAGER.push(3000);
  287. StoryMode.HP.push(500);
  288. StoryMode.TQ.push(500);
  289. StoryMode.WT.push(900);
  290. StoryMode.Name.push("Melvin");
  291. StoryMode.CAR.push("FTO");
  292. StoryMode.KIT.push(true);
  293. StoryMode.COL.push("gray");
  294. StoryMode.WAGER.push(3000);
  295. StoryMode.HP.push(500);
  296. StoryMode.TQ.push(500);
  297. StoryMode.WT.push(800);
  298. StoryMode.Name.push("Retaino");
  299. StoryMode.CAR.push("NECLIPSE");
  300. StoryMode.KIT.push(true);
  301. StoryMode.COL.push("darkgray");
  302. StoryMode.WAGER.push(4000);
  303. StoryMode.HP.push(1000);
  304. StoryMode.TQ.push(100);
  305. StoryMode.WT.push(1000);
  306. StoryMode.Name.push("Bendo");
  307. StoryMode.CAR.push("RX7GEN3");
  308. StoryMode.KIT.push(true);
  309. StoryMode.COL.push("black");
  310. StoryMode.WAGER.push(4000);
  311. StoryMode.HP.push(500);
  312. StoryMode.TQ.push(500);
  313. StoryMode.WT.push(800);
  314. StoryMode.Name.push("B-Bud");
  315. StoryMode.CAR.push("M3");
  316. StoryMode.KIT.push(true);
  317. StoryMode.COL.push("grey");
  318. StoryMode.WAGER.push(4000);
  319. StoryMode.HP.push(500);
  320. StoryMode.TQ.push(500);
  321. StoryMode.WT.push(800);
  322. StoryMode.Name.push("PADDYA");
  323. StoryMode.CAR.push("NSX");
  324. StoryMode.KIT.push(true);
  325. StoryMode.COL.push("red");
  326. StoryMode.WAGER.push(4000);
  327. StoryMode.HP.push(1000);
  328. StoryMode.TQ.push(100);
  329. StoryMode.WT.push(800);
  330. StoryMode.Name.push("SupraEv");
  331. StoryMode.CAR.push("SUPRA");
  332. StoryMode.KIT.push(true);
  333. StoryMode.COL.push("navyblue");
  334. StoryMode.WAGER.push(4000);
  335. StoryMode.HP.push(500);
  336. StoryMode.TQ.push(500);
  337. StoryMode.WT.push(800);
  338. StoryMode.Name.push("Atalanta");
  339. StoryMode.CAR.push("IMPREZA");
  340. StoryMode.KIT.push(true);
  341. StoryMode.COL.push("blue");
  342. StoryMode.WAGER.push(4000);
  343. StoryMode.HP.push(500);
  344. StoryMode.TQ.push(500);
  345. StoryMode.WT.push(800);
  346. StoryMode.Name.push("Miguel");
  347. StoryMode.CAR.push("Z");
  348. StoryMode.KIT.push(true);
  349. StoryMode.COL.push("blue");
  350. StoryMode.WAGER.push(4000);
  351. StoryMode.HP.push(500);
  352. StoryMode.TQ.push(500);
  353. StoryMode.WT.push(800);
  354. StoryMode.Name.push("Rohan");
  355. StoryMode.CAR.push("SKYLINE");
  356. StoryMode.KIT.push(true);
  357. StoryMode.COL.push("blue");
  358. StoryMode.WAGER.push(4000);
  359. StoryMode.HP.push(500);
  360. StoryMode.TQ.push(500);
  361. StoryMode.WT.push(750);
  362. StoryMode.Name.push("MoJammed");
  363. StoryMode.CAR.push("SUPRA");
  364. StoryMode.KIT.push(true);
  365. StoryMode.COL.push("gray");
  366. StoryMode.WAGER.push(4000);
  367. StoryMode.HP.push(500);
  368. StoryMode.TQ.push(600);
  369. StoryMode.WT.push(800);
  370. StoryMode.Name.push("Corleone");
  371. StoryMode.CAR.push("BMWM5");
  372. StoryMode.KIT.push(true);
  373. StoryMode.COL.push("black");
  374. StoryMode.WAGER.push(4000);
  375. StoryMode.HP.push(400);
  376. StoryMode.TQ.push(700);
  377. StoryMode.WT.push(750);
  378. StoryMode.Name.push("Jonny");
  379. StoryMode.CAR.push("HUMMER");
  380. StoryMode.KIT.push(true);
  381. StoryMode.COL.push("black");
  382. StoryMode.WAGER.push(4000);
  383. StoryMode.HP.push(600);
  384. StoryMode.TQ.push(600);
  385. StoryMode.WT.push(1500);
  386. StoryMode.Name.push("Gale");
  387. StoryMode.CAR.push("PRELUDE");
  388. StoryMode.KIT.push(true);
  389. StoryMode.COL.push("black");
  390. StoryMode.WAGER.push(4000);
  391. StoryMode.HP.push(600);
  392. StoryMode.TQ.push(600);
  393. StoryMode.WT.push(900);
  394. StoryMode.Name.push("Trudelle");
  395. StoryMode.CAR.push("G35");
  396. StoryMode.KIT.push(true);
  397. StoryMode.COL.push("gray");
  398. StoryMode.WAGER.push(4000);
  399. StoryMode.HP.push(650);
  400. StoryMode.TQ.push(650);
  401. StoryMode.WT.push(950);
  402. StoryMode.Name.push("Archie");
  403. StoryMode.CAR.push("SC430");
  404. StoryMode.KIT.push(true);
  405. StoryMode.COL.push("gray");
  406. StoryMode.WAGER.push(4000);
  407. StoryMode.HP.push(700);
  408. StoryMode.TQ.push(700);
  409. StoryMode.WT.push(1000);
  410. StoryMode.Name.push("Matthew Pearce");
  411. StoryMode.CAR.push("CRX");
  412. StoryMode.KIT.push(true);
  413. StoryMode.COL.push("pink");
  414. StoryMode.WAGER.push(100);
  415. StoryMode.HP.push(100);
  416. StoryMode.TQ.push(100);
  417. StoryMode.WT.push(1000);
  418. StoryMode.Name.push("Frankes");
  419. StoryMode.CAR.push("RX7GEN3");
  420. StoryMode.KIT.push(true);
  421. StoryMode.COL.push("gray");
  422. StoryMode.WAGER.push(5000);
  423. StoryMode.HP.push(700);
  424. StoryMode.TQ.push(700);
  425. StoryMode.WT.push(800);
  426. StoryMode.Name.push("Owen");
  427. StoryMode.CAR.push("SHELBY");
  428. StoryMode.KIT.push(true);
  429. StoryMode.COL.push("black");
  430. StoryMode.WAGER.push(5000);
  431. StoryMode.HP.push(400);
  432. StoryMode.TQ.push(800);
  433. StoryMode.WT.push(900);
  434. StoryMode.Name.push("Jonnifer");
  435. StoryMode.CAR.push("RX8");
  436. StoryMode.KIT.push(true);
  437. StoryMode.COL.push("blue");
  438. StoryMode.WAGER.push(5000);
  439. StoryMode.HP.push(700);
  440. StoryMode.TQ.push(700);
  441. StoryMode.WT.push(900);
  442. StoryMode.Name.push("Teflon");
  443. StoryMode.CAR.push("SKYLINER34");
  444. StoryMode.KIT.push(true);
  445. StoryMode.COL.push("black");
  446. StoryMode.WAGER.push(10000);
  447. StoryMode.HP.push(800);
  448. StoryMode.TQ.push(800);
  449. StoryMode.WT.push(900);
  450. StoryMode.Name.push("Sniperman");
  451. StoryMode.CAR.push("VIPERSRT");
  452. StoryMode.KIT.push(true);
  453. StoryMode.COL.push("red");
  454. StoryMode.WAGER.push(15000);
  455. StoryMode.HP.push(900);
  456. StoryMode.TQ.push(900);
  457. StoryMode.WT.push(900);
  458. StoryMode.Name.push("Winters");
  459. StoryMode.CAR.push("COOPER");
  460. StoryMode.KIT.push(true);
  461. StoryMode.COL.push("black");
  462. StoryMode.WAGER.push(17000);
  463. StoryMode.HP.push(1000);
  464. StoryMode.TQ.push(900);
  465. StoryMode.WT.push(900);
  466. StoryMode.Name.push("PADDYC");
  467. StoryMode.CAR.push("P911");
  468. StoryMode.KIT.push(true);
  469. StoryMode.COL.push("gray");
  470. StoryMode.WAGER.push(17000);
  471. StoryMode.HP.push(1100);
  472. StoryMode.TQ.push(1000);
  473. StoryMode.WT.push(900);
  474. StoryMode.Name.push("Davey Crocket");
  475. StoryMode.CAR.push("SHELBY");
  476. StoryMode.KIT.push(true);
  477. StoryMode.COL.push("gray");
  478. StoryMode.WAGER.push(25000);
  479. StoryMode.HP.push(1500);
  480. StoryMode.TQ.push(1000);
  481. StoryMode.WT.push(900);
  482. StoryMode.Name.push("Meiek");
  483. StoryMode.CAR.push("MCLAREN");
  484. StoryMode.KIT.push(true);
  485. StoryMode.COL.push("orange");
  486. StoryMode.WAGER.push(25000);
  487. StoryMode.HP.push(1500);
  488. StoryMode.TQ.push(900);
  489. StoryMode.WT.push(900);
  490. StoryMode.Name.push("Braybrook");
  491. StoryMode.CAR.push("CARRERAGT");
  492. StoryMode.KIT.push(true);
  493. StoryMode.COL.push("grey");
  494. StoryMode.WAGER.push(25000);
  495. StoryMode.HP.push(1500);
  496. StoryMode.TQ.push(900);
  497. StoryMode.WT.push(900);
  498. StoryMode.Name.push("Benry");
  499. StoryMode.CAR.push("SALEEN");
  500. StoryMode.KIT.push(true);
  501. StoryMode.COL.push("grey");
  502. StoryMode.WAGER.push(25000);
  503. StoryMode.HP.push(1500);
  504. StoryMode.TQ.push(900);
  505. StoryMode.WT.push(900);
  506. StoryMode.Name.push("Walmsley");
  507. StoryMode.CAR.push("MODENA");
  508. StoryMode.KIT.push(true);
  509. StoryMode.COL.push("black");
  510. StoryMode.WAGER.push(25000);
  511. StoryMode.HP.push(1500);
  512. StoryMode.TQ.push(1000);
  513. StoryMode.WT.push(900);
  514. StoryMode.Name.push("PADDYB");
  515. StoryMode.CAR.push("P911GT1");
  516. StoryMode.KIT.push(true);
  517. StoryMode.COL.push("grey");
  518. StoryMode.WAGER.push(25000);
  519. StoryMode.HP.push(1500);
  520. StoryMode.TQ.push(900);
  521. StoryMode.WT.push(900);
  522. StoryMode.Name.push("DannoMan");
  523. StoryMode.CAR.push("FERRARI");
  524. StoryMode.KIT.push(true);
  525. StoryMode.COL.push("red");
  526. StoryMode.WAGER.push(25000);
  527. StoryMode.HP.push(1500);
  528. StoryMode.TQ.push(900);
  529. StoryMode.WT.push(900);
  530. StoryMode.Name.push("Fantom");
  531. StoryMode.CAR.push("MURCIELAGO");
  532. StoryMode.KIT.push(true);
  533. StoryMode.COL.push("black");
  534. StoryMode.WAGER.push(1000000);
  535. StoryMode.HP.push(1500);
  536. StoryMode.TQ.push(1000);
  537. StoryMode.WT.push(900);
  538. levlMAX = 52;
  539.