restoranM.qsrc 1.7 KB

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