nichLivingroom.qsrc 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # nichLivingroom
  2. CLOSE ALL
  3. $metka = ''
  4. $loc = 'tanhousezal'
  5. $menu_loc = 'tanhousezal'
  6. $menu_arg = ''
  7. menu_off = 0
  8. $locclass = 'livingr'
  9. gs 'stat'
  10. sexpartkno = 1
  11. gs 'boyStat', 'A52'
  12. gs 'boyStat', 'A161', 'a'
  13. '<center><b>Nicholas'' Living Room</b></center>'
  14. '<center><img <<$set_imgh>> src="images/characters/city/nicholas/apartment/living.jpg"></center>'
  15. 'The living room is furnished with finest leather couches of modern design, a fireplace, a large TV on the wall, several side tables and a cabinet and fridge for various expensive alcoholic beverages.'
  16. 'Just like every other room in the apartment, it serves to convey to anybody who enters that Nicholas and his family are doing really well financially.'
  17. if nichWork = 1:
  18. if nichLastWorkDay ! daystart:
  19. gs 'nichUtil', 'startWorkday'
  20. end
  21. gs 'nichUtil', 'checkOutfit'
  22. end
  23. if nichWork = 1:
  24. ''
  25. if nichMaidLivingDust < 5 and nichMaidLivingFloor = 0 and nichMaidLivingItems = 0 and nichMaidLivingWindows = 0 :
  26. 'The living room is in pristine condition. There is no need to clean it.'
  27. else
  28. if nichMaidLivingDust < 5 :
  29. 'The furniture is completely free of dust.'
  30. act '(0:30) Wipe the dust':
  31. minut += 30
  32. nichMaidLivingDust = 0
  33. 'There is so little dust you can''t even see it. Neverthelesse you decide to remove it, even if it is impossible to tell the difference.'
  34. act 'Finish':
  35. gt $CURLOC
  36. end
  37. end
  38. elseif nichMaidLivingDust < 15 :
  39. 'There is a tiny amount of dust on the furniture, hardly enough to notice.'
  40. act '(0:30) Wipe the dust':
  41. minut += 30
  42. nichMaidLivingDust = 0
  43. 'You decide to remove the dust. It is a tiny amount but even a small improvement is an improvement.'
  44. act 'Finish':
  45. gt $CURLOC
  46. end
  47. end
  48. elseif nichMaidLivingDust <= 20 :
  49. 'There is a small amount of dust on the furniture.'
  50. act '(0:30) Wipe the dust':
  51. minut += 30
  52. nichMaidLivingDust = 0
  53. 'You decide to remove the dust. After you are done the furniture looks way cleaner.'
  54. act 'Finish':
  55. gt $CURLOC
  56. end
  57. end
  58. else
  59. 'There is an obvious amount of dust on the furniture.'
  60. act '(0:60) Wipe the dust diligently':
  61. minut += 60
  62. nichMaidLivingDust = 0
  63. 'You decide to remove the dust. There is so much dust you need to clean some spots several times to remove every last bit of it. After you are done everything looks way cleaner.'
  64. act 'Finish':
  65. gt $CURLOC
  66. end
  67. end
  68. act '(0:30) Wipe the dust quickly':
  69. minut += 30
  70. nichMaidLivingDust -= 15
  71. 'You decide to remove the dust. You hastily wish over the very dusty spots to the effect that some of the dust is distributed instead of removed. After you are done everything looks less dusty, but not clean.'
  72. act 'Finish':
  73. gt $CURLOC
  74. end
  75. end
  76. end
  77. if nichMaidLivingFloor = 0:
  78. ''
  79. 'The floor is spotless. There is no reason to clean it.'
  80. elseif nichMaidLivingFloor = 1:
  81. ''
  82. 'The floor is pretty clean. Only a close look would reveal some tiny amounts of dirt.'
  83. if nichOutfitState = 1:
  84. act '(0:15) Sweep dirt away':
  85. *clr & cla
  86. '<center><img <<$set_imgh>> src="images/characters/city/nicholas/maid/sweepDust_001.jpg"></center>'
  87. minut += 15
  88. act 'Finish':
  89. nichMaidLivingFloor = 0
  90. gt $CURLOC
  91. end
  92. end
  93. end
  94. else
  95. 'The floor is pretty dirty with quite some hair and dirt on it.'
  96. end
  97. if nichMaidLivingItems = 0 :
  98. 'All the items in this room are at their places and there is nothing that doesn''t belong here.'
  99. elseif nichMaidLivingItems = 1 :
  100. 'A nearly empty bottle of wine and some glasses are standing at the side table. The pillows on the couches could use some shaking up. And the remotes for the TV and the HiFi are not at their places.'
  101. elseif nichMaidLivingItems = 2 :
  102. 'A nearly empty bottle of wine and some glasses are standing at the side table. The pillows on the couches could use some shaking up. And the remotes for the TV and the HiFi are not at their places.'
  103. 'There are also some clothes distributed throughout the room. You see a shirt, pumps, a dress, a bra and black socks.'
  104. end
  105. if nichMaidLivingWindows < 30 :
  106. 'The windows are spotless clean.'
  107. elseif nichMaidLivingWindows < 60 :
  108. 'The windows are a little dirty. It is only recognizable when the sun directly shines at them.'
  109. else
  110. 'The windows are dirty. Looking through them feels like looking through grey fog.'
  111. end
  112. end
  113. end
  114. act 'Return to the hallway':
  115. minut += 1
  116. gt 'nichApartment'
  117. end
  118. --- tanhousezal ---------------------------------