sitrPar.qsrc 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. gs 'family'
  21. gs 'subkid'
  22. if month = 12 and day >= 20:'A Christmas tree stands next to the TV, decorated with tinsel garlands and other ornaments.'
  23. if month = 12 and day = 31 and hour >= 20:
  24. act 'Celebrate the New Year with your family.':
  25. cls
  26. npc_rel['A29'] = 100
  27. npc_rel['A28'] = 100
  28. npc_rel['A33'] = 100
  29. npc_rel['A34'] = 100
  30. money += 5000
  31. hour = 23
  32. minut = 0
  33. minut += 120
  34. pcs_sleep = 0
  35. pcs_mood += 100
  36. wipo += 1000
  37. gs 'food', 'l_meal'
  38. gs 'stat'
  39. '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.'
  40. act 'Leave':gt $loc, $metka
  41. end
  42. elseif month = 1 and day = 1:
  43. act 'Eat some leftovers at the festive table.':
  44. cla
  45. *clr
  46. frost = 0
  47. minut += 15
  48. pcs_health += 10
  49. pcs_mood += 20
  50. fat += 2
  51. pcs_energy += 20
  52. pcs_hydra += 20
  53. cumspclnt = 2
  54. gs 'cum_cleanup'
  55. pcs_breath = 0
  56. gs 'stat'
  57. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  58. 'You have finished the leftovers remaining on the table from the holidays.'
  59. act 'Get up from the table':gt $loc, $metka
  60. end
  61. end
  62. if ocpd_room = 0 and breastpump = 1 and bp_unbox <= 0:
  63. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
  64. elseif kid >= 1 and breastpump = 1 and bp_unbox <= 0:
  65. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
  66. elseif ocpd_room = 0 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 40:
  67. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Try out</a> your breast pump'
  68. elseif kid >= 1 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 30:
  69. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Try out</a> your breast pump'
  70. end
  71. --- sitrPar ---------------------------------