1
0

sitrPar.qsrc 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. if night_mode = 1:
  15. fcolor = rgb(255, 255, 255)
  16. bcolor = rgb(0, 0, 0)
  17. lcolor = rgb(106, 90, 205)
  18. elseif night_mode = 2:
  19. fcolor = rgb(255, 255, 255)
  20. bcolor = rgb(20, 20, 20)
  21. lcolor = rgb(106, 90, 205)
  22. else
  23. fcolor = rgb(0, 0, 0)
  24. bcolor = rgb(255, 255, 255)
  25. lcolor = rgb(106, 90, 205)
  26. end
  27. '<center><b><font color="maroon">Living Room</font></b></center>'
  28. ! WD: Correct Image path ~ "images/qwest/alter/<<$loc>>.jpg"
  29. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/sitrpar.jpg"></center>'
  30. ''
  31. '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.'
  32. gs 'family'
  33. gs 'subkid'
  34. if month = 12 and day >= 20:'A Christmas tree stands next to the TV, decorated with tinsel garlands and other ornaments.'
  35. if month = 12 and day = 31 and hour >= 20:
  36. act 'Celebrate the New Year with your family.':
  37. cls
  38. npc_rel['A29'] = 100
  39. npc_rel['A28'] = 100
  40. npc_rel['A33'] = 100
  41. npc_rel['A34'] = 100
  42. money += 5000
  43. hour = 23
  44. minut = 0
  45. minut += 120
  46. pcs_sleep = 0
  47. pcs_mood += 100
  48. wipo += 1000
  49. gs 'food', 'l_meal'
  50. gs 'stat'
  51. '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.'
  52. act 'Leave':gt $loc, $metka
  53. end
  54. elseif month = 1 and day = 1:
  55. act 'Eat some leftovers at the festive table.':
  56. cla
  57. *clr
  58. frost = 0
  59. minut += 15
  60. pcs_health += 10
  61. pcs_mood += 20
  62. fat += 2
  63. pcs_energy += 20
  64. pcs_hydra += 20
  65. cumspclnt = 2
  66. gs 'cum_cleanup'
  67. pcs_breath = 0
  68. gs 'stat'
  69. '<center><img <<$set_imgh>> src="images/shared/food/food.jpg"></center>'
  70. 'You have finished the leftovers remaining on the table from the holidays.'
  71. act 'Get up from the table':gt $loc, $metka
  72. end
  73. end
  74. if ocpd_room = 0 and breastpump = 1 and bp_unbox <= 0:
  75. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
  76. elseif kid >= 1 and breastpump = 1 and bp_unbox <= 0:
  77. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Unbox</a> your breast pump'
  78. elseif ocpd_room = 0 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 40:
  79. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Try out</a> your breast pump'
  80. elseif kid >= 1 and breastpump = 1 and bp_unbox = 1 and pcs_inbition > 30:
  81. '<a href="exec: gt ''lact_lib'', ''bp_unbox_event''">Try out</a> your breast pump'
  82. end
  83. --- sitrPar ---------------------------------