restoranM.qsrc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # restoranM
  2. $location_type = 'public_indoors'
  3. menu_off = 1
  4. if $ARGS[0] = 'start':
  5. minut += 30
  6. 'You arrive at the restaurant and sit at a table. <<$loverdesc[lover_number]>> orders a meal and good wine. You have to wait a little until the food arrives.'
  7. '<<$loverdesc[lover_number]>> tells you an anecdote:<br>'
  8. gs 'anekdot'
  9. *nl
  10. if loverdays[lover_number] > 15 and haraklover[lover_number] = 2:gs 'boylove', 'tits'
  11. if loverdays[lover_number] > 20 and haraklover[lover_number] = 1:gs 'boylove', 'tits'
  12. if loverdays[lover_number] > 25 and haraklover[lover_number] = 0:gs 'boylove', 'tits'
  13. if loverdays[lover_number] > 20 and haraklover[lover_number] = 2:gs 'boylove', 'figure'
  14. if loverdays[lover_number] > 25 and haraklover[lover_number] = 1:gs 'boylove', 'figure'
  15. if loverdays[lover_number] > 30 and haraklover[lover_number] = 0:gs 'boylove', 'figure'
  16. act 'Laugh':
  17. cla
  18. loverrelation[lover_number] += 1
  19. xgt 'restoranM', 'a'
  20. end
  21. act 'Smile':
  22. cla
  23. xgt 'restoranM', 'a'
  24. end
  25. act 'Its not funny':
  26. cla
  27. loverrelation[lover_number] -= 1
  28. xgt 'restoranM', 'a'
  29. end
  30. end
  31. if $ARGS[0] = 'a':
  32. minut += 30
  33. alko += 2
  34. if pcs_hydra >= 100:
  35. pcs_hydra -= 5
  36. else
  37. pcs_hydra -= 10
  38. end
  39. 'When your food arrives, <<$loverdesc[lover_number]>> pours you a glass of wine and proposes a toast to love.'
  40. act 'Eat':
  41. cla
  42. xgt 'restoranM', 'b'
  43. end
  44. end
  45. if $ARGS[0] = 'b':
  46. $metka = 'b'
  47. $loc = 'restoranM'
  48. gs 'food', 'm_meal'
  49. alko += 2
  50. if pcs_hydra >= 100:
  51. pcs_hydra -= 5
  52. else
  53. pcs_hydra -= 10
  54. end
  55. gs 'stat'
  56. 'After you finish your meal and empty the wine, <<$loverdesc[lover_number]>> offers to take you to his home.'
  57. act 'Go Home':gt 'sexm', 'start'
  58. end
  59. --- restoranM ---------------------------------