foodcompiled.js 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  1. if(!setup.beverages)
  2. setup.beverages = {};
  3. setup.beverages['pirosh'] = {
  4. frost: 0,
  5. minutes_inc: 15,
  6. cash_dec: 0,
  7. health_inc: $pc.pcs_health / 10,
  8. mood_inc: 5,
  9. fat_inc: 4,
  10. energy_inc: 40,
  11. cumclean: 2,
  12. breath: 0,
  13. image: "shared/food/pirozhki.jpg",
  14. $uni_lunch_bought: 1,
  15. $_eat: 0,
  16. hydra_dec: 10,
  17. }
  18. setup.beverages['golub'] = {
  19. frost: 0,
  20. minutes_inc: 20,
  21. cash_dec: 0,
  22. health_inc: 10,
  23. mood_inc: 5,
  24. fat_inc: 8,
  25. energy_inc: 60,
  26. cumclean: 2,
  27. breath: 0,
  28. image: "shared/food/golubtsy.jpg",
  29. $uni_lunch_bought: 1,
  30. $_eat: 0,
  31. hydra_inc: 20,
  32. }
  33. setup.beverages['pozhar'] = {
  34. frost: 0,
  35. minutes_inc: 20,
  36. cash_dec: 0,
  37. health_inc: 15,
  38. mood_inc: 10,
  39. fat_inc: 6,
  40. energy_inc: 70,
  41. cumclean: 2,
  42. breath: 0,
  43. image: "shared/food/pozharsky.jpg",
  44. $uni_lunch_bought: 1,
  45. $_eat: 0,
  46. hydra_dec: 10,
  47. }
  48. setup.beverages['reuben'] = {
  49. frost: 0,
  50. minutes_inc: 25,
  51. cash_dec: 0,
  52. health_inc: 20,
  53. mood_inc: 25,
  54. fat_inc: 12,
  55. energy_inc: 110,
  56. cumclean: 2,
  57. breath: 0,
  58. image: "shared/food/reuben.jpg",
  59. $uni_lunch_bought: 1,
  60. $_eat: 0,
  61. hydra_dec: 10,
  62. }
  63. setup.beverages['bliny'] = {
  64. frost: 0,
  65. minutes_inc: 15,
  66. cash_dec: 0,
  67. health_inc: 10,
  68. mood_inc: 5,
  69. fat_inc: 8,
  70. energy_inc: 50,
  71. cumclean: 2,
  72. breath: 0,
  73. image: "shared/food/blini.jpg",
  74. $uni_lunch_bought: 1,
  75. image: "shared/food/blini.jpg",
  76. $_eat: 0,
  77. hydra_dec: 10,
  78. }
  79. setup.beverages['varenfan'] = {
  80. frost: 0,
  81. minutes_inc: 25,
  82. cash_dec: 0,
  83. health_inc: 15,
  84. mood_inc: 15,
  85. fat_inc: 10,
  86. energy_inc: 40,
  87. cumclean: 2,
  88. breath: 0,
  89. image: "shared/food/varenikifancy.jpg",
  90. $_eat: 0,
  91. hydra_dec: 10,
  92. }
  93. setup.beverages['salfan'] = {
  94. frost: 0,
  95. minutes_inc: 40,
  96. cash_dec: 0,
  97. health_inc: 20,
  98. mood_inc: 20,
  99. fat_inc: 12,
  100. energy_inc: 80,
  101. cumclean: 2,
  102. breath: 0,
  103. image: "shared/food/salmonfancy.jpg",
  104. $_eat: 0,
  105. hydra_dec: 10,
  106. }
  107. setup.beverages['strofan'] = {
  108. frost: 0,
  109. minutes_inc: 35,
  110. cash_dec: 0,
  111. health_inc: 20,
  112. mood_inc: 30,
  113. fat_inc: 6,
  114. energy_inc: 120,
  115. cumclean: 2,
  116. breath: 0,
  117. image: "shared/food/stroganofffancy.jpg",
  118. $_eat: 0,
  119. hydra_dec: 10,
  120. }
  121. setup.beverages['borfan'] = {
  122. frost: 0,
  123. minutes_inc: 25,
  124. cash_dec: 0,
  125. health_inc: 10,
  126. mood_inc: 25,
  127. fat_inc: 4,
  128. energy_inc: 60,
  129. cumclean: 2,
  130. breath: 0,
  131. image: "shared/food/borschtfancy.jpg",
  132. $_eat: 0,
  133. hydra_inc: 40,
  134. }
  135. setup.beverages['blifan'] = {
  136. frost: 0,
  137. minutes_inc: 20,
  138. cash_dec: 0,
  139. health_inc: 30,
  140. mood_inc: 40,
  141. fat_inc: 6,
  142. energy_inc: 50,
  143. cumclean: 2,
  144. breath: 0,
  145. image: "shared/food/blinifancy.jpg",
  146. $_eat: 0,
  147. hydra_dec: 10,
  148. }
  149. setup.beverages['ryesna'] = {
  150. frost: 0,
  151. minutes_inc: 10,
  152. cash_dec: 0,
  153. health_inc: $pc.pcs_health / 10,
  154. mood_inc: 10,
  155. fat_inc: 4,
  156. energy_inc: 20,
  157. cumclean: 2,
  158. breath: 0,
  159. image: "shared/food/ryesnack.jpg",
  160. $_eat: 0,
  161. hydra_dec: 10,
  162. }
  163. setup.beverages['crisps'] = {
  164. frost: 0,
  165. minutes_inc: 10,
  166. cash_dec: 0,
  167. health_inc: $pc.pcs_health / 10,
  168. mood_inc: 20,
  169. fat_inc: 16,
  170. energy_inc: 20,
  171. cumclean: 2,
  172. breath: 0,
  173. image: "shared/food/crisps.jpg",
  174. $_eat: 0,
  175. hydra_dec: 10,
  176. }
  177. setup.beverages['onring'] = {
  178. frost: 0,
  179. minutes_inc: 10,
  180. cash_dec: 0,
  181. health_inc: 10,
  182. mood_inc: 5,
  183. fat_inc: 16,
  184. energy_inc: 40,
  185. cumclean: 2,
  186. breath: 0,
  187. image: "shared/food/onionrings.jpg",
  188. $_eat: 0,
  189. hydra_dec: 10,
  190. }
  191. setup.beverages['vegburg'] = {
  192. frost: 0,
  193. minutes_inc: 20,
  194. cash_dec: 0,
  195. health_inc: 20,
  196. mood_inc: 10,
  197. fat_inc: 8,
  198. energy_inc: 60,
  199. cumclean: 2,
  200. breath: 0,
  201. image: "shared/food/vegieburger.jpg",
  202. $_eat: 0,
  203. hydra_dec: 10,
  204. }
  205. setup.beverages['turburg'] = {
  206. frost: 0,
  207. minutes_inc: 20,
  208. cash_dec: 0,
  209. health_inc: 10,
  210. mood_inc: 10,
  211. fat_inc: 10,
  212. energy_inc: 60,
  213. cumclean: 2,
  214. breath: 0,
  215. image: "shared/food/turkeyburger.jpg",
  216. $_eat: 0,
  217. hydra_dec: 10,
  218. }
  219. setup.beverages['batfish'] = {
  220. frost: 0,
  221. minutes_inc: 20,
  222. cash_dec: 0,
  223. health_inc: 15,
  224. mood_inc: 15,
  225. fat_inc: 11,
  226. energy_inc: 80,
  227. cumclean: 2,
  228. breath: 0,
  229. image: "shared/food/batteredfish.jpg",
  230. $_eat: 0,
  231. hydra_dec: 10,
  232. }
  233. setup.beverages['cheburg'] = {
  234. frost: 0,
  235. minutes_inc: 25,
  236. cash_dec: 0,
  237. health_inc: 20,
  238. mood_inc: 20,
  239. fat_inc: 14,
  240. energy_inc: 120,
  241. cumclean: 2,
  242. breath: 0,
  243. image: "shared/food/cheeseburger.jpg",
  244. $_eat: 0,
  245. hydra_dec: 10,
  246. }
  247. setup.beverages['snack'] = {
  248. minutes_inc: 5,
  249. cash_dec: 0,
  250. health_inc: 10,
  251. mood_inc: 20,
  252. fat_inc: 6,
  253. energy_inc: 20,
  254. cumclean: 2,
  255. breath: 0,
  256. image: "shared/food/snack_1.jpg",
  257. $_eat: 0,
  258. }
  259. setup.beverages['f_food'] = {
  260. frost: 0,
  261. minutes_inc: 10,
  262. cash_dec: 0,
  263. health_inc: 10,
  264. fat_inc: 14,
  265. energy_inc: 70,
  266. cumclean: 2,
  267. breath: 0,
  268. image: "shared/food/fast_food.jpg",
  269. $_eat: 0,
  270. hydra_inc: 70,
  271. }
  272. setup.beverages['s_meal'] = {
  273. frost: 0,
  274. minutes_inc: 10,
  275. cash_dec: 0,
  276. health_inc: 10,
  277. fat_inc: 4,
  278. energy_inc: 40,
  279. cumclean: 2,
  280. breath: 0,
  281. imageRand: {template:"shared/food/food_#.jpg",min:1,max:4},
  282. $_eat: 0,
  283. hydra_inc: 40,
  284. }
  285. setup.beverages['m_meal'] = {
  286. frost: 0,
  287. minutes_inc: 15,
  288. cash_dec: 0,
  289. health_inc: 10,
  290. fat_inc: 8,
  291. energy_inc: 60,
  292. cumclean: 2,
  293. breath: 0,
  294. imageRand: {template:"shared/food/food_#.jpg",min:1,max:4},
  295. $_eat: 0,
  296. hydra_inc: 60,
  297. }
  298. setup.beverages['l_meal'] = {
  299. frost: 0,
  300. minutes_inc: 20,
  301. cash_dec: 0,
  302. health_inc: 10,
  303. fat_inc: 14,
  304. energy_inc: 100,
  305. cumclean: 2,
  306. breath: 0,
  307. imageRand: {template:"shared/food/food_#.jpg",min:1,max:4},
  308. $_eat: 0,
  309. hydra_inc: 100,
  310. }
  311. setup.beverages['bag_lunch'] = {
  312. frost: 0,
  313. minutes_inc: 15,
  314. cash_dec: 0,
  315. health_inc: 10,
  316. fat_inc: 5,
  317. energy_inc: 40,
  318. cumclean: 2,
  319. breath: 0,
  320. image: "shared/food/bagged_lunch.jpg",
  321. $_eat: 0,
  322. hydra_inc: 60,
  323. }
  324. setup.beverages['h_food'] = {
  325. frost: 0,
  326. minutes_inc: 25,
  327. cash_dec: 0,
  328. health_inc: 10,
  329. fat_inc: 7,
  330. cash_dec: 0,
  331. energy_inc: 60,
  332. cumclean: 2,
  333. breath: 0,
  334. image: "locations/pavlovsk/hotel/roomservice.jpg",
  335. $_eat: 0,
  336. hydra_inc: 60,
  337. }
  338. setup.beverages['h_meal'] = {
  339. frost: 0,
  340. minutes_inc: 25,
  341. cash_dec: 0,
  342. health_inc: 20,
  343. fat_inc: 1,
  344. energy_inc: 50,
  345. cumclean: 2,
  346. breath: 0,
  347. $_eat: 0,
  348. hydra_inc: 50,
  349. }
  350. setup.beverages['jerky'] = {
  351. frost: 0,
  352. minutes_inc: 10,
  353. cash_dec: 0,
  354. health_inc: 10,
  355. fat_inc: 1,
  356. energy_inc: 20,
  357. cumclean: 2,
  358. breath: 0,
  359. image: "locations/gadukino/hunters/jerky_mix.jpg",
  360. $_eat: 0,
  361. hydra_dec: 15,
  362. }
  363. setup.beverages['meat_stew'] = {
  364. frost: 0,
  365. minutes_inc: 30,
  366. cash_dec: 0,
  367. health_inc: 10,
  368. fat_inc: 3,
  369. energy_inc: 50,
  370. cumclean: 2,
  371. breath: 0,
  372. image: "locations/gadukino/hunters/soup.jpg",
  373. $_eat: 0,
  374. hydra_inc: 20,
  375. }
  376. setup.beverages['mush_soup'] = {
  377. frost: 0,
  378. minutes_inc: 30,
  379. cash_dec: 0,
  380. health_inc: 10,
  381. fat_inc: 3,
  382. energy_inc: 40,
  383. cumclean: 2,
  384. breath: 0,
  385. image: "locations/gadukino/hunters/soup.jpg",
  386. $_eat: 0,
  387. hydra_inc: 30,
  388. }
  389. setup.beverages['bilberry'] = {
  390. minutes_inc: 15,
  391. cash_dec: 0,
  392. health_inc: $pc.pcs_health / 10,
  393. mood_inc: 10,
  394. fat_inc: 1,
  395. energy_inc: 10,
  396. cumclean: 2,
  397. breath: 0,
  398. image: "locations/gadukino/forest/bilberry.jpg",
  399. $_eat: 0,
  400. hydra_inc: 10,
  401. }
  402. setup.beverages['family_meals'] = {
  403. frost: 0,
  404. minutes_inc: 20,
  405. health_inc: 10,
  406. mood_inc: 10,
  407. fat_inc: iif($ARGS[1] = 'dinner', 8, 6),
  408. energy_inc: 60,
  409. cumclean: 2,
  410. breath: 0,
  411. hydra_inc: 80,
  412. }
  413. setup.beverages['aftermeal'] = {
  414. $mtxt: ' you had to force yourself to finish and now you feel stuffed.',
  415. $mtxt: ' it was enough to leave you feeling full and satisfied.',
  416. $mtxt: ' while you no longer feel especially hungry, you don`t feel all that satisfied either.',
  417. $mtxt: ' while you no longer feel like you are starving, you are still quite hungry - in fact, you could probably eat the same amount again and still have room for dessert.',
  418. $mtxt: ' did nothing to appease your hunger, in fact, it only amde you want more.',
  419. }
  420. setup.beverages['watercooler'] = {
  421. frost: 0,
  422. minutes_inc: 2,
  423. health_inc: 10,
  424. energy_inc: 4,
  425. cumclean: 2,
  426. image: "locations/pavlovsk/community/bathroom/waterfountain.jpg",
  427. hydra_inc: 50,
  428. }
  429. setup.beverages['only_cost_snack'] = {
  430. cash_dec: 0,
  431. health_inc: 10,
  432. mood_inc: 20,
  433. fat_inc: 6,
  434. energy_inc: 20,
  435. cumclean: 2,
  436. breath: 0,
  437. $_eat: 0,
  438. }
  439. setup.beverages['only_cost_light_snack'] = {
  440. cash_dec: 0,
  441. health_inc: $pc.pcs_health / 10,
  442. mood_inc: 20,
  443. fat_inc: 3,
  444. energy_inc: 20,
  445. cumclean: 2,
  446. breath: 0,
  447. $_eat: 0,
  448. }
  449. setup.beverages['only_stats_fast_food'] = {
  450. health_inc: $pc.pcs_health / 10,
  451. mood_inc: 20,
  452. fat_inc: 14,
  453. energy_inc: 70,
  454. cumclean: 2,
  455. breath: 0,
  456. hydra_inc: 70,
  457. }
  458. setup.beverages['only_stats_small_meal'] = {
  459. health_inc: $pc.pcs_health / 5,
  460. mood_inc: 10,
  461. fat_inc: 4,
  462. energy_inc: 40,
  463. cumclean: 2,
  464. breath: 0,
  465. hydra_inc: 40,
  466. }
  467. setup.beverages['only_stats_medium_meal'] = {
  468. health_inc: $pc.pcs_health / 10,
  469. mood_inc: 15,
  470. fat_inc: 7,
  471. energy_inc: 70,
  472. cumclean: 2,
  473. breath: 0,
  474. hydra_inc: 70,
  475. }
  476. setup.beverages['only_stats_large_meal'] = {
  477. health_inc: $pc.pcs_health / 15,
  478. mood_inc: 20,
  479. fat_inc: 14,
  480. energy_inc: 100,
  481. cumclean: 2,
  482. breath: 0,
  483. hydra_inc: 100,
  484. }
  485. setup.beverages['only_stats_bagged_meal'] = {
  486. health_inc: $pc.pcs_health / 8,
  487. mood_inc: 5,
  488. fat_inc: 5,
  489. energy_inc: 40,
  490. cumclean: 2,
  491. breath: 0,
  492. hydra_inc: 40,
  493. }
  494. setup.beverages['only_stats_healthy_meal'] = {
  495. health_inc: $pc.pcs_health / 5,
  496. mood_inc: 5,
  497. fat_inc: 1,
  498. energy_inc: 50,
  499. cumclean: 2,
  500. breath: 0,
  501. hydra_inc: 50,
  502. }
  503. setup.beverages['only_cost_pirosh'] = {
  504. frost: 0,
  505. cash_dec: 0,
  506. health_inc: $pc.pcs_health / 10,
  507. mood_inc: 5,
  508. fat_inc: 4,
  509. energy_inc: 40,
  510. cumclean: 2,
  511. breath: 0,
  512. $_eat: 0,
  513. $uni_lunch_bought: 1,
  514. hydra_dec: 10,
  515. }
  516. setup.beverages['only_cost_golub'] = {
  517. frost: 0,
  518. cash_dec: 0,
  519. health_inc: 10,
  520. mood_inc: 5,
  521. fat_inc: 8,
  522. energy_inc: 60,
  523. cumclean: 2,
  524. breath: 0,
  525. $_eat: 0,
  526. $uni_lunch_bought: 1,
  527. hydra_inc: 20,
  528. }
  529. setup.beverages['only_cost_pozhar'] = {
  530. frost: 0,
  531. cash_dec: 0,
  532. health_inc: 15,
  533. mood_inc: 10,
  534. fat_inc: 6,
  535. energy_inc: 70,
  536. cumclean: 2,
  537. breath: 0,
  538. $_eat: 0,
  539. $uni_lunch_bought: 1,
  540. hydra_dec: 10,
  541. }
  542. setup.beverages['only_cost_reuben'] = {
  543. frost: 0,
  544. cash_dec: 0,
  545. health_inc: 20,
  546. mood_inc: 25,
  547. fat_inc: 12,
  548. energy_inc: 110,
  549. cumclean: 2,
  550. breath: 0,
  551. $_eat: 0,
  552. $uni_lunch_bought: 1,
  553. hydra_dec: 10,
  554. }
  555. setup.beverages['only_cost_bliny'] = {
  556. frost: 0,
  557. cash_dec: 0,
  558. health_inc: 10,
  559. mood_inc: 5,
  560. fat_inc: 8,
  561. energy_inc: 50,
  562. cumclean: 2,
  563. breath: 0,
  564. $_eat: 0,
  565. $uni_lunch_bought: 1,
  566. }