1
0

restoranM 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # restoranM
  2. $location_type = 'public_indoors'
  3. if $ARGS[0] = 'start':
  4. minut += 30
  5. 'You go into the restaurant and sit at a table. <<$boydescA>> orders a meal and good wine. You have to wait a little until the food arrives.<br>'
  6. if dayA > 15 and harakBoyA = 2:gs 'boylove', 'tits'
  7. if dayA > 20 and harakBoyA = 1:gs 'boylove', 'tits'
  8. if dayA > 25 and harakBoyA = 0:gs 'boylove', 'tits'
  9. if dayA > 20 and harakBoyA = 2:gs 'boylove', 'figure'
  10. if dayA > 25 and harakBoyA = 1:gs 'boylove', 'figure'
  11. if dayA > 30 and harakBoyA = 0:gs 'boylove', 'figure'
  12. '<<$boydescA>> tells you an anecdote:'
  13. gs 'anekdot'
  14. act 'Laugh':
  15. cla
  16. bfa += 1
  17. xgt 'restoranM', 'a'
  18. end
  19. act 'Smile':
  20. cla
  21. xgt 'restoranM', 'a'
  22. end
  23. act 'Its not funny':
  24. cla
  25. bfa -= 1
  26. xgt 'restoranM', 'a'
  27. end
  28. end
  29. if $ARGS[0] = 'a':
  30. minut += 30
  31. alko += 1
  32. 'Finally you get your food. <<$boydescA>> pours you some wine and proposes a toast to love.'
  33. act 'Eat':
  34. cla
  35. xgt 'restoranM', 'b'
  36. end
  37. end
  38. if $ARGS[0] = 'b':
  39. $metkaM = $ARGS[0]
  40. $locM = $CURLOC
  41. gs 'food', 'm_meal'
  42. alko += 2
  43. gs 'stat'
  44. 'After you finish your meal and empty the wine, <<$boydescA>> proposes to take you to his home.'
  45. act 'Go Home':gt 'sexm', 'start'
  46. end
  47. --- restoranM ---------------------------------