restoranM 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # restoranM
  2. if $ARGS[0] = 'start':
  3. set 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. set SUB += 1
  16. set bfa += 1
  17. xgt 'restoranM', 'a'
  18. end
  19. act 'Smile.':
  20. cla
  21. !!set bfa -= 1
  22. xgt 'restoranM', 'a'
  23. end
  24. act 'Not funny.':
  25. cla
  26. set DOM += 1
  27. set bfa -= 1
  28. xgt 'restoranM', 'a'
  29. end
  30. end
  31. if $ARGS[0] = 'a':
  32. set minut += 30
  33. set 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. set minut += 30
  42. set fat += 1
  43. if energy >= 30:
  44. set fat += 5
  45. 'You can no longer have.'
  46. end
  47. if energy >= 20 and energy < 30:
  48. set fat += 3
  49. set energy += 10
  50. 'You pushed through the power of a meal.'
  51. end
  52. if energy < 20:
  53. set energy += 20
  54. set fat += 1
  55. 'You gladly ate the food.'
  56. end
  57. if water >= 20:'Tea in you no longer climbs.'
  58. if water < 20:
  59. 'You gladly drank a mug of tea.'
  60. set water += 20
  61. end
  62. alko += 2
  63. gs 'stat'
  64. 'After some time with food and wine, and was done with <<$boyA>> proposed to hold you.'
  65. act 'Home.':gt 'sexm', 'start'
  66. end
  67. --- restoranM ---------------------------------