restoranM 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # restoranM
  2. if $ARGS[0] = 'start':
  3. minut += 30
  4. 'You came to the restaurant and sat at a table. <<$boyA>> ordered the waiter food and good wine. You have to wait when you bring the food.'
  5. if dayA > 15 and harakBoyA = 2:gs 'boylove', 'tits'
  6. if dayA > 20 and harakBoyA = 1:gs 'boylove', 'tits'
  7. if dayA > 25 and harakBoyA = 0:gs 'boylove', 'tits'
  8. if dayA > 20 and harakBoyA = 2:gs 'boylove', 'figure'
  9. if dayA > 25 and harakBoyA = 1:gs 'boylove', 'figure'
  10. if dayA > 30 and harakBoyA = 0:gs 'boylove', 'figure'
  11. gs 'anekdot'
  12. '<<$boyA>> anecdote tells you "<<$anek>>."'
  13. act 'Laugh':
  14. cla
  15. SUB += 1
  16. bfa += 1
  17. xgt 'restoranM', 'a'
  18. end
  19. act 'Smile':
  20. cla
  21. !!bfa -= 1
  22. xgt 'restoranM', 'a'
  23. end
  24. act 'Not funny':
  25. cla
  26. DOM += 1
  27. bfa -= 1
  28. xgt 'restoranM', 'a'
  29. end
  30. end
  31. if $ARGS[0] = 'a':
  32. minut += 30
  33. fat += 1
  34. 'Finally you brought food. <<$boyA>> pour you wine and proposed a toast to love.'
  35. act 'Eat':
  36. cla
  37. xgt 'restoranM', 'b'
  38. end
  39. end
  40. if $ARGS[0] = 'b':
  41. minut += 30
  42. fat += 1
  43. if energy >= 30:
  44. fat += 5
  45. 'You can no longer eat.'
  46. elseif energy >= 20 and energy < 30:
  47. fat += 3
  48. energy += 10
  49. 'You pushed through the power of a meal.'
  50. elseif energy < 20:
  51. energy += 20
  52. fat += 1
  53. 'You gladly ate the food.'
  54. end
  55. if water >= 20:
  56. 'You don''t need any more tea.'
  57. elseif water < 20:
  58. water += 20
  59. 'You gladly drank a mug of tea.'
  60. end
  61. alko += 2
  62. gs 'stat'
  63. 'After some time with food and wine, and was done with <<$boyA>> proposed to hold you.'
  64. act 'Go Home':gt 'sexm', 'start'
  65. end
  66. --- restoranM ---------------------------------