therapist_reminder.qsrc 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # therapist_reminder
  2. cla
  3. if $ARGS[0] = '':
  4. reminderCount += 1
  5. '<center><img <<$set_imgh>> src="images/pc/reactions/forget.jpg"></center>'
  6. ''
  7. 'You remember that you have an appointment with your therapist today at 18:00. It''s already <<hour>>:<<minut>>. You should go now.'
  8. if reminderFreebee < 4:
  9. gs 'willpower', 'misc', 'resist', 'easy'
  10. will_cost += (hypnoTime * 2)
  11. if will_cost <= pcs_willpwr:
  12. act 'Return to what you were doing (<<will_cost>> Willpower)':
  13. cla
  14. pcs_mood -= rand(10,20)
  15. gs 'stat'
  16. '<center><img <<$set_imgh>> src="images/pc/reactions/sad.jpg"></center>'
  17. ''
  18. 'You feel bad about missing your appointment, but you have other things to do now. You tell yourself that you''ll see him again as soon as possible.'
  19. act 'Continue':
  20. gt '<<$menu_loc>>', '<<$menu_arg>>'
  21. end
  22. end
  23. else
  24. act 'Return to what you were doing (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  25. end
  26. else
  27. act 'Return to what you were doing (<<will_cost>> Willpower)':
  28. cla
  29. reminderMult = reminderCount
  30. if reminderCount > 10: reminderMult = 10
  31. reminderMoodCostLow = func('shortgs','sqrt', 30*reminderMult)
  32. reminderMoodCostHigh = func('shortgs','sqrt', 90*reminderMult)
  33. pcs_mood -= rand(reminderMoodCostLow, reminderMoodCostHigh)
  34. gs 'stat'
  35. '<center><img <<$set_imgh>> src="images/pc/reactions/sad.jpg"></center>'
  36. ''
  37. 'You feel bad about missing your appointment, but you have other things to do now. You tell yourself that you''ll see him again as soon as possible.'
  38. act 'Continue':
  39. gt '<<$menu_loc>>', '<<$menu_arg>>'
  40. end
  41. end
  42. end
  43. act 'Go see your therapist':
  44. if $region = 'city_center':
  45. minut += 30
  46. elseif $region = 'city_industrial':
  47. minut += 45
  48. elseif $region = 'city_island':
  49. minut += 45
  50. elseif $region = 'city_lake':
  51. minut += 45
  52. elseif $region = 'city_park':
  53. minut += 45
  54. elseif $region = 'city_redlight':
  55. minut += 45
  56. elseif $region = 'city_residential':
  57. minut += 45
  58. elseif $region = 'gad_forest':
  59. minut += 45
  60. elseif $region = 'gad_village':
  61. minut += 30
  62. elseif $region = 'puskin':
  63. minut += 35
  64. elseif $region = 'pav_commercial':
  65. minut += 5
  66. elseif $region = 'pav_lake':
  67. minut += 15
  68. elseif $region = 'pav_park':
  69. minut += 10
  70. elseif $region = 'pav_residential':
  71. minut += 10
  72. else
  73. minut += 5
  74. end
  75. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/clinic/therapist/schoolWalk.jpg"></center>'
  76. 'You walk to your therapist''s office.'
  77. act 'Continue':
  78. gt 'therapist'
  79. end
  80. end
  81. end
  82. --- therapist_reminder ---------------------------------