food.qsrc 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906
  1. # food
  2. !2021/05/06
  3. ! Snacks: +20 pcs_energy, +7 fat (most cases has water available separately)
  4. ! Fast Food: +70 pcs_energy +70 pcs_hydra, +14 fat (hamburgers, fried food, like the downtown diner)
  5. ! Small Meal: +40 pcs_energy +40 pcs_hydra, +4 fat (soup and sandwiches, cafe light lunches, etc)
  6. ! Medium Meal and Hotel Food: +60 pcs_energy +60 pcs_hydra, +7 fat (home cooked dinners and room service equivalent)
  7. ! Large Meal: +100 pcs_energy +100 pcs_hydra, +14 fat (steak dinners, new years party dinner, etc)
  8. ! Bagged Lunch: +40 pcs_energy +40 pcs_hydra, +5 fat (sandwich, cold leftovers, etc)
  9. ! Health Meal: +50 pcs_energy +50 pcs_hydra, +1 fat (Diet food, Salads, rice cakes with peanut butter)
  10. menu_off = 1
  11. if $ARGS[0] = 'pirosh':
  12. *clr & cla
  13. frost = 0
  14. minut += 15
  15. money -= val($_eat['<<args[1]>>,price'])
  16. pcs_health += 5
  17. pcs_mood += 5
  18. fat += 4
  19. pcs_energy += 40
  20. if pcs_hydra >= 100:
  21. pcs_hydra -= 5
  22. else
  23. pcs_hydra -= 10
  24. end
  25. cumspclnt = 2
  26. gs 'cum_cleanup'
  27. pcs_breath = 0
  28. gs 'food', 'aftermeal'
  29. '<center><img <<$set_imgh>> src="images/shared/food/pirozhki.jpg"></center>'
  30. 'You enjoy some vegetarian Piroshki, and <<$mtxt>>'
  31. gs 'stat'
  32. killvar '$_eat'
  33. if food_loc = 1:
  34. act 'Finish': gt 'food_menu'
  35. else
  36. act 'Finish':gt $loc, $loc_arg
  37. end
  38. end
  39. if $ARGS[0] = 'golub':
  40. *clr & cla
  41. frost = 0
  42. minut += 20
  43. money -= val($_eat['<<args[1]>>,price'])
  44. pcs_health += 10
  45. pcs_mood += 5
  46. fat += 8
  47. pcs_energy += 60
  48. if pcs_hydra >= 100:
  49. pcs_hydra += 10
  50. else
  51. pcs_hydra += 20
  52. end
  53. cumspclnt = 2
  54. gs 'cum_cleanup'
  55. pcs_breath = 0
  56. gs 'food', 'aftermeal'
  57. '<center><img <<$set_imgh>> src="images/shared/food/golubtsy.jpg"></center>'
  58. 'You enjoy some well made Golubtsy in a tomato sauce. The portions were moderate and<<$mtxt>>'
  59. gs 'stat'
  60. killvar '$_eat'
  61. if food_loc = 1:
  62. act 'Finish': gt 'food_menu'
  63. else
  64. act 'Finish':gt $loc, $loc_arg
  65. end
  66. end
  67. if $ARGS[0] = 'pozhar':
  68. *clr & cla
  69. frost = 0
  70. minut += 20
  71. money -= val($_eat['<<args[1]>>,price'])
  72. pcs_health += 15
  73. pcs_mood += 10
  74. fat += 6
  75. pcs_energy += 70
  76. if pcs_hydra >= 100:
  77. pcs_hydra -= 5
  78. else
  79. pcs_hydra -= 10
  80. end
  81. cumspclnt = 2
  82. gs 'cum_cleanup'
  83. pcs_breath = 0
  84. gs 'food', 'aftermeal'
  85. '<center><img <<$set_imgh>> src="images/shared/food/pozharsky.jpg"></center>'
  86. 'You thoroughly enjoy the nicely cooked Pozharsky Cutlets. The portions were moderate and<<$mtxt>>'
  87. gs 'stat'
  88. killvar '$_eat'
  89. if food_loc = 1:
  90. act 'Finish': gt 'food_menu'
  91. else
  92. act 'Finish':gt $loc, $loc_arg
  93. end
  94. end
  95. if $ARGS[0] = 'reuben':
  96. *clr & cla
  97. frost = 0
  98. minut += 25
  99. money -= val($_eat['<<args[1]>>,price'])
  100. pcs_health += 20
  101. pcs_mood += 25
  102. fat += 12
  103. pcs_energy += 110
  104. if pcs_hydra >= 100:
  105. pcs_hydra -= 5
  106. else
  107. pcs_hydra -= 10
  108. end
  109. cumspclnt = 2
  110. gs 'cum_cleanup'
  111. pcs_breath = 0
  112. gs 'food', 'aftermeal'
  113. '<center><img <<$set_imgh>> src="images/shared/food/reuben.jpg"></center>'
  114. 'You had trouble finishing the Rueben Sandwich, but you enjoyed it immensely. The portion was fairly large and<<$mtxt>>'
  115. gs 'stat'
  116. killvar '$_eat'
  117. if food_loc = 1:
  118. act 'Finish': gt 'food_menu'
  119. else
  120. act 'Finish':gt $loc, $loc_arg
  121. end
  122. end
  123. if $ARGS[0] = 'bliny':
  124. *clr & cla
  125. frost = 0
  126. minut += 15
  127. money -= val($_eat['<<args[1]>>,price'])
  128. pcs_health += 10
  129. pcs_mood += 5
  130. fat += 8
  131. pcs_energy += 50
  132. if pcs_hydra >= 100:
  133. pcs_hydra -= 5
  134. else
  135. pcs_hydra -= 10
  136. end
  137. cumspclnt = 2
  138. gs 'cum_cleanup'
  139. pcs_breath = 0
  140. gs 'food', 'aftermeal'
  141. '<center><img <<$set_imgh>> src="images/shared/food/blini.jpg"></center>'
  142. 'You eat some bliny. The portions are fairly small and<<$mtxt>>'
  143. gs 'stat'
  144. killvar '$_eat'
  145. if food_loc = 1:
  146. act 'Finish': gt 'food_menu'
  147. else
  148. act 'Finish':gt $loc, $loc_arg
  149. end
  150. end
  151. if $ARGS[0] = 'varenfan':
  152. *clr & cla
  153. frost = 0
  154. minut += 25
  155. money -= val($_eat['<<args[1]>>,price'])
  156. pcs_health += 15
  157. pcs_mood += 15
  158. fat += 10
  159. pcs_energy += 40
  160. if pcs_hydra >= 100:
  161. pcs_hydra -= 5
  162. else
  163. pcs_hydra -= 10
  164. end
  165. cumspclnt = 2
  166. gs 'cum_cleanup'
  167. pcs_breath = 0
  168. '<center><img <<$set_imgh>> src="images/shared/food/varenikifancy.jpg"></center>'
  169. 'You sit and eat a plate of yummy Vareniki with potatoes. The portions are fairly moderate and<<$mtxt>>'
  170. gs 'stat'
  171. killvar '$_eat'
  172. if food_loc = 1:
  173. act 'Finish': gt 'food_menu'
  174. else
  175. act 'Finish':gt $loc, $loc_arg
  176. end
  177. end
  178. if $ARGS[0] = 'salfan':
  179. *clr & cla
  180. frost = 0
  181. minut += 40
  182. money -= val($_eat['<<args[1]>>,price'])
  183. pcs_health += 20
  184. pcs_mood += 20
  185. fat += 12
  186. pcs_energy += 80
  187. if pcs_hydra >= 100:
  188. pcs_hydra -= 5
  189. else
  190. pcs_hydra -= 10
  191. end
  192. cumspclnt = 2
  193. gs 'cum_cleanup'
  194. pcs_breath = 0
  195. gs 'food', 'aftermeal'
  196. '<center><img <<$set_imgh>> src="images/shared/food/salmonfancy.jpg"></center>'
  197. 'You thoroughly enjoy the massive fresh salmon steak. The meal was simply colossal and<<$mtxt>>'
  198. gs 'stat'
  199. killvar '$_eat'
  200. if food_loc = 1:
  201. act 'Finish': gt 'food_menu'
  202. else
  203. act 'Finish':gt $loc, $loc_arg
  204. end
  205. end
  206. if $ARGS[0] = 'strofan':
  207. *clr & cla
  208. frost = 0
  209. minut += 35
  210. money -= val($_eat['<<args[1]>>,price'])
  211. pcs_health += 20
  212. pcs_mood += 30
  213. fat += 6
  214. pcs_energy += 120
  215. if pcs_hydra >= 100:
  216. pcs_hydra -= 5
  217. else
  218. pcs_hydra -= 10
  219. end
  220. cumspclnt = 2
  221. gs 'cum_cleanup'
  222. pcs_breath = 0
  223. gs 'food', 'aftermeal'
  224. '<center><img <<$set_imgh>> src="images/shared/food/stroganofffancy.jpg"></center>'
  225. 'You are loving the delicious Beef Stroganoff. You enjoy it immensely. The portion was fairly moderate and<<$mtxt>>'
  226. gs 'stat'
  227. killvar '$_eat'
  228. if food_loc = 1:
  229. act 'Finish': gt 'food_menu'
  230. else
  231. act 'Finish':gt $loc, $loc_arg
  232. end
  233. end
  234. if $ARGS[0] = 'borfan':
  235. *clr & cla
  236. frost = 0
  237. minut += 25
  238. money -= val($_eat['<<args[1]>>,price'])
  239. pcs_health += 10
  240. pcs_mood += 25
  241. fat += 4
  242. pcs_energy += 60
  243. if pcs_hydra >= 100:
  244. pcs_hydra += 20
  245. else
  246. pcs_hydra += 40
  247. end
  248. cumspclnt = 2
  249. gs 'cum_cleanup'
  250. pcs_breath = 0
  251. gs 'food', 'aftermeal'
  252. '<center><img <<$set_imgh>> src="images/shared/food/borschtfancy.jpg"></center>'
  253. 'You a steaming hot bowel of Borscht. The portions are fairly small and<<$mtxt>>'
  254. gs 'stat'
  255. killvar '$_eat'
  256. if food_loc = 1:
  257. act 'Finish': gt 'food_menu'
  258. else
  259. act 'Finish':gt $loc, $loc_arg
  260. end
  261. end
  262. if $ARGS[0] = 'blifan':
  263. *clr & cla
  264. frost = 0
  265. minut += 20
  266. money -= val($_eat['<<args[1]>>,price'])
  267. pcs_health += 30
  268. pcs_mood += 40
  269. fat += 6
  270. pcs_energy += 50
  271. if pcs_hydra >= 100:
  272. pcs_hydra -= 5
  273. else
  274. pcs_hydra -= 10
  275. end
  276. cumspclnt = 2
  277. gs 'cum_cleanup'
  278. pcs_breath = 0
  279. gs 'food', 'aftermeal'
  280. '<center><img <<$set_imgh>> src="images/shared/food/blinifancy.jpg"></center>'
  281. 'You eat a petite caviar bliny appetiser. The portions are fairly small and<<$mtxt>>'
  282. gs 'stat'
  283. killvar '$_eat'
  284. if food_loc = 1:
  285. act 'Finish': gt 'food_menu'
  286. else
  287. act 'Finish':gt $loc, $loc_arg
  288. end
  289. end
  290. if $ARGS[0] = 'ryesna':
  291. *clr & cla
  292. frost = 0
  293. minut += 10
  294. money -= val($_eat['<<args[1]>>,price'])
  295. pcs_health += 5
  296. pcs_mood += 10
  297. fat += 4
  298. pcs_energy += 20
  299. if pcs_hydra >= 100:
  300. pcs_hydra -= 5
  301. else
  302. pcs_hydra -= 10
  303. end
  304. cumspclnt = 2
  305. gs 'cum_cleanup'
  306. pcs_breath = 0
  307. gs 'food', 'aftermeal'
  308. '<center><img <<$set_imgh>> src="images/shared/food/ryesnack.jpg"></center>'
  309. 'You have a tasty bowel of toasted rye snacks. The portions are fairly small and<<$mtxt>>'
  310. gs 'stat'
  311. killvar '$_eat'
  312. if food_loc = 1:
  313. act 'Finish': gt 'food_menu'
  314. else
  315. act 'Finish':gt $loc, $loc_arg
  316. end
  317. end
  318. if $ARGS[0] = 'crisps':
  319. *clr & cla
  320. frost = 0
  321. minut += 10
  322. money -= val($_eat['<<args[1]>>,price'])
  323. pcs_health += 5
  324. pcs_mood += 20
  325. fat += 16
  326. pcs_energy += 20
  327. if pcs_hydra >= 100:
  328. pcs_hydra -= 5
  329. else
  330. pcs_hydra -= 10
  331. end
  332. cumspclnt = 2
  333. gs 'cum_cleanup'
  334. pcs_breath = 0
  335. gs 'food', 'aftermeal'
  336. '<center><img <<$set_imgh>> src="images/shared/food/crisps.jpg"></center>'
  337. 'You enjoy the salty flavour of a bowl of crisps. The portions are fairly small and<<$mtxt>>'
  338. gs 'stat'
  339. killvar '$_eat'
  340. if food_loc = 1:
  341. act 'Finish': gt 'food_menu'
  342. else
  343. act 'Finish':gt $loc, $loc_arg
  344. end
  345. end
  346. if $ARGS[0] = 'onring':
  347. *clr & cla
  348. frost = 0
  349. minut += 10
  350. money -= val($_eat['<<args[1]>>,price'])
  351. pcs_health += 10
  352. pcs_mood += 5
  353. fat += 16
  354. pcs_energy += 40
  355. if pcs_hydra >= 100:
  356. pcs_hydra -= 5
  357. else
  358. pcs_hydra -= 10
  359. end
  360. cumspclnt = 2
  361. gs 'cum_cleanup'
  362. pcs_breath = 0
  363. gs 'food', 'aftermeal'
  364. '<center><img <<$set_imgh>> src="images/shared/food/onionrings.jpg"></center>'
  365. 'You push yourself to eat the dry fatty onion rings. The portions are fairly small and<<$mtxt>>'
  366. gs 'stat'
  367. killvar '$_eat'
  368. if food_loc = 1:
  369. act 'Finish': gt 'food_menu'
  370. else
  371. act 'Finish':gt $loc, $loc_arg
  372. end
  373. end
  374. if $ARGS[0] = 'vegburg':
  375. *clr & cla
  376. frost = 0
  377. minut += 20
  378. money -= val($_eat['<<args[1]>>,price'])
  379. pcs_health += 20
  380. pcs_mood += 10
  381. fat += 8
  382. pcs_energy += 60
  383. if pcs_hydra >= 100:
  384. pcs_hydra -= 5
  385. else
  386. pcs_hydra -= 10
  387. end
  388. cumspclnt = 2
  389. gs 'cum_cleanup'
  390. pcs_breath = 0
  391. gs 'food', 'aftermeal'
  392. '<center><img <<$set_imgh>> src="images/shared/food/vegieburger.jpg"></center>'
  393. 'You eat the delicious vegieburger. The portions are fairly small and<<$mtxt>>'
  394. gs 'stat'
  395. killvar '$_eat'
  396. if food_loc = 1:
  397. act 'Finish': gt 'food_menu'
  398. else
  399. act 'Finish':gt $loc, $loc_arg
  400. end
  401. end
  402. if $ARGS[0] = 'turburg':
  403. *clr & cla
  404. frost = 0
  405. minut += 20
  406. money -= val($_eat['<<args[1]>>,price'])
  407. pcs_health += 10
  408. pcs_mood += 10
  409. fat += 10
  410. pcs_energy += 60
  411. if pcs_hydra >= 100:
  412. pcs_hydra -= 5
  413. else
  414. pcs_hydra -= 10
  415. end
  416. cumspclnt = 2
  417. gs 'cum_cleanup'
  418. pcs_breath = 0
  419. gs 'food', 'aftermeal'
  420. '<center><img <<$set_imgh>> src="images/shared/food/turkeyburger.jpg"></center>'
  421. 'You enjoy the turkey burger. The portions are fairly small and<<$mtxt>>'
  422. gs 'stat'
  423. killvar '$_eat'
  424. if food_loc = 1:
  425. act 'Finish': gt 'food_menu'
  426. else
  427. act 'Finish':gt $loc, $loc_arg
  428. end
  429. end
  430. if $ARGS[0] = 'batfish':
  431. *clr & cla
  432. frost = 0
  433. minut += 20
  434. money -= val($_eat['<<args[1]>>,price'])
  435. pcs_health += 15
  436. pcs_mood += 15
  437. fat += 11
  438. pcs_energy += 80
  439. if pcs_hydra >= 100:
  440. pcs_hydra -= 5
  441. else
  442. pcs_hydra -= 10
  443. end
  444. cumspclnt = 2
  445. gs 'cum_cleanup'
  446. pcs_breath = 0
  447. gs 'food', 'aftermeal'
  448. '<center><img <<$set_imgh>> src="images/shared/food/batteredfish.jpg"></center>'
  449. 'You eat the fish, but it has little flavour. The portions were moderate and<<$mtxt>>'
  450. gs 'stat'
  451. killvar '$_eat'
  452. if food_loc = 1:
  453. act 'Finish': gt 'food_menu'
  454. else
  455. act 'Finish':gt $loc, $loc_arg
  456. end
  457. end
  458. if $ARGS[0] = 'cheburg':
  459. *clr & cla
  460. frost = 0
  461. minut += 25
  462. money -= val($_eat['<<args[1]>>,price'])
  463. pcs_health += 20
  464. pcs_mood += 20
  465. fat += 14
  466. pcs_energy += 120
  467. if pcs_hydra >= 100:
  468. pcs_hydra -= 5
  469. else
  470. pcs_hydra -= 10
  471. end
  472. cumspclnt = 2
  473. gs 'cum_cleanup'
  474. pcs_breath = 0
  475. gs 'food', 'aftermeal'
  476. '<center><img <<$set_imgh>> src="images/shared/food/cheeseburger.jpg"></center>'
  477. 'You are a little sickened by the greasy looking cheeseburger and fries in front of you. The meal was simply colossal and<<$mtxt>>'
  478. gs 'stat'
  479. killvar '$_eat'
  480. if food_loc = 1:
  481. act 'Finish': gt 'food_menu'
  482. else
  483. act 'Finish':gt $loc, $loc_arg
  484. end
  485. end
  486. if $ARGS[0] = 'snack':
  487. *clr & cla
  488. gs 'stat'
  489. minut += 15
  490. money -= val($_eat['<<args[1]>>,price'])
  491. pcs_health += 10
  492. pcs_mood += 20
  493. fat += 6
  494. pcs_energy += 20
  495. cumspclnt = 2
  496. gs 'cum_cleanup'
  497. pcs_breath = 0
  498. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  499. 'You enjoy a small tasty, but somewhat fattening, snack. It wasn''t very much food, and<<$mtxt>>'
  500. gs 'stat'
  501. killvar '$_eat'
  502. if food_loc = 1:
  503. act 'Finish': gt 'food_menu'
  504. else
  505. act 'Finish':gt $loc, $loc_arg
  506. end
  507. end
  508. if $ARGS[0] = 'f_food':
  509. *clr & cla
  510. frost = 0
  511. minut += 20
  512. money -= val($_eat['<<args[1]>>,price'])
  513. pcs_health += 10
  514. fat += 14
  515. pcs_energy += 70
  516. if pcs_hydra >= 100:
  517. pcs_hydra += 35
  518. else
  519. pcs_hydra += 70
  520. end
  521. cumspclnt = 2
  522. gs 'cum_cleanup'
  523. pcs_breath = 0
  524. gs 'food', 'aftermeal'
  525. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  526. 'You happily eat some fast food. The portions are quite generous and<<$mtxt>>'
  527. gs 'stat'
  528. killvar '$_eat'
  529. if food_loc = 1:
  530. act 'Finish': gt 'food_menu'
  531. else
  532. act 'Finish':gt $loc, $loc_arg
  533. end
  534. end
  535. if $ARGS[0] = 's_meal':
  536. *clr & cla
  537. frost = 0
  538. minut += 25
  539. money -= val($_eat['<<args[1]>>,price'])
  540. pcs_health += 10
  541. fat += 4
  542. pcs_energy += 40
  543. if pcs_hydra >= 100:
  544. pcs_hydra += 20
  545. else
  546. pcs_hydra += 40
  547. end
  548. cumspclnt = 2
  549. gs 'cum_cleanup'
  550. pcs_breath = 0
  551. gs 'food', 'aftermeal'
  552. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  553. 'You happily eat your meal. The portions are fairly small and<<$mtxt>>'
  554. gs 'stat'
  555. killvar '$_eat'
  556. if food_loc = 1:
  557. act 'Finish': gt 'food_menu'
  558. else
  559. act 'Finish':gt $loc, $loc_arg
  560. end
  561. end
  562. if $ARGS[0] = 'm_meal':
  563. *clr & cla
  564. frost = 0
  565. minut += 30
  566. money -= val($_eat['<<args[1]>>,price'])
  567. pcs_health += 10
  568. fat += 8
  569. pcs_energy += 60
  570. if pcs_hydra >= 100:
  571. pcs_hydra += 30
  572. else
  573. pcs_hydra += 60
  574. end
  575. cumspclnt = 2
  576. gs 'cum_cleanup'
  577. pcs_breath = 0
  578. gs 'food', 'aftermeal'
  579. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  580. 'You thoroughly enjoy the nicely cooked meal. The portions were moderate and<<$mtxt>>'
  581. 'You accompany it with a mug of tea.'
  582. gs 'stat'
  583. killvar '$_eat'
  584. if food_loc = 1:
  585. act 'Finish': gt 'food_menu'
  586. else
  587. act 'Finish':gt $loc, $loc_arg
  588. end
  589. end
  590. if $ARGS[0] = 'l_meal':
  591. *clr & cla
  592. frost = 0
  593. minut += 35
  594. money -= val($_eat['<<args[1]>>,price'])
  595. pcs_health += 10
  596. fat += 14
  597. pcs_energy += 100
  598. if pcs_hydra >= 100:
  599. pcs_hydra += 50
  600. else
  601. pcs_hydra += 100
  602. end
  603. cumspclnt = 2
  604. gs 'cum_cleanup'
  605. pcs_breath = 0
  606. gs 'food', 'aftermeal'
  607. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  608. 'You are almost overwhelmed by the delicious meal laid before you and enjoy it immensely. The meal was simply colossal and<<$mtxt>>'
  609. gs 'stat'
  610. killvar '$_eat'
  611. if plcooked = 1: killvar 'plcooked'
  612. if food_loc = 1:
  613. act 'Finish': gt 'food_menu'
  614. else
  615. act 'Finish':gt $loc, $loc_arg
  616. end
  617. end
  618. if $ARGS[0] = 'bag_lunch':
  619. *clr & cla
  620. frost = 0
  621. minut += 15
  622. money -= val($_eat['<<args[1]>>,price'])
  623. pcs_health += 10
  624. fat += 5
  625. pcs_energy += 40
  626. if pcs_hydra >= 100:
  627. pcs_hydra += 30
  628. else
  629. pcs_hydra += 60
  630. end
  631. cumspclnt = 2
  632. gs 'cum_cleanup'
  633. pcs_breath = 0
  634. gs 'food', 'aftermeal'
  635. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  636. 'You eat the lunch you packed from home. There was nothing fancy about it and<<$mtxt>>'
  637. gs 'stat'
  638. killvar '$_eat'
  639. end
  640. if $ARGS[0] = 'h_food':
  641. *clr & cla
  642. frost = 0
  643. minut += 25
  644. money -= val($_eat['<<args[1]>>,price'])
  645. pcs_health += 10
  646. fat += 7
  647. money -= 100
  648. pcs_energy += 60
  649. if pcs_hydra >= 100:
  650. pcs_hydra += 30
  651. else
  652. pcs_hydra += 60
  653. end
  654. cumspclnt = 2
  655. gs 'cum_cleanup'
  656. pcs_breath = 0
  657. gs 'food', 'aftermeal'
  658. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/roomservice.jpg"></center>'
  659. 'The maid brings you a decent meal,<<$mtxt>>'
  660. 'You accompany it with a mug of tea.'
  661. gs 'stat'
  662. killvar '$_eat'
  663. if food_loc = 1:
  664. act 'Finish': gt 'food_menu'
  665. else
  666. act 'Finish':gt $loc, $loc_arg
  667. end
  668. end
  669. if $ARGS[0] = 'h_meal':
  670. *clr & cla
  671. frost = 0
  672. minut += 25
  673. money -= val($_eat['<<args[1]>>,price'])
  674. pcs_health += 20
  675. fat += 1
  676. pcs_energy += 50
  677. if pcs_hydra >= 100:
  678. pcs_hydra += 25
  679. else
  680. pcs_hydra += 50
  681. end
  682. cumspclnt = 2
  683. gs 'cum_cleanup'
  684. pcs_breath = 0
  685. gs 'food', 'aftermeal'
  686. '<center><img <<$set_imgh>> src="images/shared/food/eating-salad.jpg"></center>'
  687. 'You enjoy a crisp salad of fresh greens and<<$mtxt>>'
  688. gs 'stat'
  689. killvar '$_eat'
  690. if food_loc = 1:
  691. act 'Finish': gt 'food_menu'
  692. else
  693. act 'Finish':gt $loc, $loc_arg
  694. end
  695. end
  696. if $ARGS[0] = 'jerky':
  697. *clr & cla
  698. frost = 0
  699. minut += 10
  700. money -= val($_eat['<<args[1]>>,price'])
  701. pcs_health += 10
  702. fat += 1
  703. pcs_hydra -= 15
  704. pcs_energy += 20
  705. cumspclnt = 2
  706. gs 'cum_cleanup'
  707. pcs_breath = 0
  708. gs 'food', 'aftermeal'
  709. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/jerky_mix.jpg"></center>'
  710. 'You munch on some dried meat and trail mix. Not a full hot meal by any means but it''s better than nothing, and<<$mtxt>>'
  711. gs 'stat'
  712. killvar '$_eat'
  713. if food_loc = 1:
  714. act 'Finish': gt 'food_menu'
  715. else
  716. act 'Finish':gt $loc, $loc_arg
  717. end
  718. end
  719. if $ARGS[0] = 'meat_stew':
  720. *clr & cla
  721. frost = 0
  722. minut += 30
  723. money -= val($_eat['<<args[1]>>,price'])
  724. pcs_health += 10
  725. fat += 3
  726. pcs_energy += 50
  727. if pcs_hydra >= 100:
  728. pcs_hydra += 10
  729. else
  730. pcs_hydra += 20
  731. end
  732. cumspclnt = 2
  733. gs 'cum_cleanup'
  734. pcs_breath = 0
  735. gs 'food', 'aftermeal'
  736. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/soup.jpg"></center>'
  737. 'You thoroughly enjoy the nicely cooked meat stew, and <<$mtxt>>'
  738. 'You accompany it with a mug of tea.'
  739. gs 'stat'
  740. killvar '$_eat'
  741. if food_loc = 1:
  742. act 'Finish': gt 'food_menu'
  743. else
  744. act 'Finish':gt $loc, $loc_arg
  745. end
  746. end
  747. if $ARGS[0] = 'mush_soup':
  748. *clr & cla
  749. frost = 0
  750. minut += 30
  751. money -= val($_eat['<<args[1]>>,price'])
  752. pcs_health += 10
  753. fat += 3
  754. pcs_energy += 40
  755. if pcs_hydra >= 100:
  756. pcs_hydra += 20
  757. else
  758. pcs_hydra += 30
  759. end
  760. cumspclnt = 2
  761. gs 'cum_cleanup'
  762. pcs_breath = 0
  763. gs 'food', 'aftermeal'
  764. '<center><img <<$set_imgh>> src="images/locations/gadukino/hunters/soup.jpg"></center>'
  765. 'You thoroughly enjoy some warm mushroom soup, and <<$mtxt>>'
  766. 'You accompany it with a mug of tea.'
  767. gs 'stat'
  768. killvar '$_eat'
  769. if food_loc = 1:
  770. act 'Finish': gt 'food_menu'
  771. else
  772. act 'Finish':gt $loc, $loc_arg
  773. end
  774. end
  775. if $ARGS[0] = 'bilberry':
  776. *clr & cla
  777. gs 'stat'
  778. minut += 15
  779. money -= val($_eat['<<args[1]>>,price'])
  780. pcs_health += 5
  781. pcs_mood += 10
  782. fat += 1
  783. pcs_energy += 10
  784. pcs_hydra += 10
  785. cumspclnt = 2
  786. gs 'cum_cleanup'
  787. pcs_breath = 0
  788. '<center><img <<$set_imgh>> src="images/locations/gadukino/forest/bilberry.jpg"></center>'
  789. 'You ate a few berries, and<<$mtxt>>'
  790. gs 'stat'
  791. killvar '$_eat'
  792. if food_loc = 1:
  793. act 'Finish': gt 'food_menu'
  794. else
  795. act 'Finish':gt $loc, $loc_arg
  796. end
  797. end
  798. if $ARGS[0] = 'family_meals':
  799. frost = 0
  800. minut += 20
  801. pcs_health += 10
  802. pcs_mood += 10
  803. fat += iif($ARGS[1] = 'dinner', 8, 6)
  804. pcs_energy += 60
  805. if pcs_hydra >= 100:
  806. pcs_hydra += 30
  807. else
  808. pcs_hydra += 60
  809. end
  810. cumspclnt = 2
  811. gs 'cum_cleanup'
  812. pcs_breath = 0
  813. end
  814. if $ARGS[0] = 'breakfast':
  815. frost = 0
  816. pcs_health += 10
  817. pcs_mood += 10
  818. pcs_energy += 60
  819. if pcs_hydra >= 100:
  820. pcs_hydra += 30
  821. else
  822. pcs_hydra += 60
  823. end
  824. cumspclnt = 2
  825. gs 'cum_cleanup'
  826. pcs_breath = 0
  827. end
  828. if $ARGS[0] = 'aftermeal':
  829. if pcs_energy > 100:
  830. $mtxt = ' you had to force yourself to finish and now you feel stuffed.'
  831. elseif pcs_energy >= 80:
  832. $mtxt = ' it was enough to leave you feeling full and satisfied.'
  833. elseif pcs_energy >= 60:
  834. $mtxt = ' while you no longer feel especially hungry, you don''t feel all that satisfied either.'
  835. elseif pcs_energy >= 40:
  836. $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.'
  837. else
  838. $mtxt = ' did nothing to appease your hunger, in fact, it only amde you want more.'
  839. end
  840. end
  841. --- food ---------------------------------