sitrPar.qsrc 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # sitrPar
  2. CLOSE ALL
  3. act 'Leave the room':gt 'korrPar'
  4. $metka = ''
  5. $loc = 'sitrPar'
  6. $menu_loc = 'sitrPar'
  7. $menu_arg = ''
  8. menu_off = 0
  9. $location_type = 'private'
  10. $locclass = 'livingr'
  11. clr
  12. minut += 1
  13. gs 'stat'
  14. gs 'themes', 'indoors'
  15. '<center><b><font color="maroon">Living Room</font></b></center>'
  16. ! WD: Correct Image path ~ "images/qwest/alter/<<$loc>>.jpg"
  17. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/sitrpar.jpg"></center>'
  18. ''
  19. 'The living room has a <a href="exec:gt ''TV'',''pav''">TV</a>, which is near the window. In front of the TV is a <a href="exec:gt ''family'',''sofa''">sofa bed</a>, on which your brother sleeps at night. A large tapestry covers one wall, while the other wall has several shelves on it, stocked with books and other things.'
  20. *nl
  21. gs 'family'
  22. *nl
  23. gs 'subkid'
  24. if month = 12 and day >= 20:'A Christmas tree stands next to the TV, decorated with tinsel garlands and other ornaments.'
  25. if month = 12 and day = 31 and hour >= 20:
  26. act 'Celebrate the New Year with your family.':
  27. cls
  28. npc_rel['A29'] = 100
  29. npc_rel['A28'] = 100
  30. npc_rel['A33'] = 100
  31. npc_rel['A34'] = 100
  32. money += 5000
  33. hour = 23
  34. minut = 0
  35. minut += 120
  36. pcs_sleep = 0
  37. pcs_mood += 100
  38. wipo += 1000
  39. gs 'food', 'l_meal'
  40. gs 'stat'
  41. 'You sit at the festive table laid in front of the TV and celebrate the New Year with your family, the TV providing some background noise. At the table people strike up a conversation and common problems are forgotten for a while, everyone is having fun talking to each other. At midnight, everyone wishes one another a happy New Year and enjoys the champagne and fireworks outside. Your <<$npc_nickname[''A29'']>> gives you an envelope with a greeting card and 5000 <b>₽</b>. For a while you continue to watch TV, enjoying the champagne and company of your family, but after a while everyone is kind of tired and one by one they go to bed.'
  42. act 'Leave':gt $loc, $metka
  43. end
  44. elseif month = 1 and day = 1:
  45. act 'Eat some leftovers at the festive table.':
  46. cla
  47. *clr
  48. frost = 0
  49. minut += 15
  50. pcs_health += 10
  51. pcs_mood += 20
  52. fat += 2
  53. pcs_energy += 20
  54. pcs_hydra += 20
  55. cumspclnt = 2
  56. gs 'cum_cleanup'
  57. pcs_breath = 0
  58. gs 'stat'
  59. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  60. 'You have finished the leftovers remaining on the table from the holidays.'
  61. act 'Get up from the table':gt $loc, $metka
  62. end
  63. end
  64. if ocpd_room = 0 and breastpump = 1 and bp_unbox <= 0:
  65. '<a href="exec: gt ''lact_bp'', ''bp_unbox_event''">Unbox</a> your breast pump'
  66. elseif kid >= 1 and breastpump = 1 and bp_unbox <= 0:
  67. '<a href="exec: gt ''lact_bp'', ''bp_unbox_event''">Unbox</a> your breast pump'
  68. elseif ocpd_room = 0 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 40:
  69. '<a href="exec: gt ''lact_bp'', ''bp_unbox_event''">Try out</a> your breast pump'
  70. elseif kid >= 1 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 30:
  71. '<a href="exec: gt ''lact_bp'', ''bp_unbox_event''">Try out</a> your breast pump'
  72. end
  73. --- sitrPar ---------------------------------