portmirror 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # portmirror
  2. cla
  3. clr
  4. gs 'stat'
  5. *pl '<center><img src="<<FUNC(''$face_image'')>>"></center>'
  6. *nl
  7. if daystart < 10 and StoryLine = 0:'In the mirror, you see a strange woman''s face looking back at you that exactly copies all your actions. You can hardly accept the idea that this is now you.'
  8. if daystart >= 10 and daystart < 30 and StoryLine = 0:'In the mirror you see a woman''s face to which you have become accustomed to. But sometimes, you get the feel that this is not your face.'
  9. *pl '<<$hair>>'
  10. *pl '<<$mop>>. <<$lip>>'
  11. *pl '<<$skin>>'
  12. *pl '<<$vnesh>>'
  13. if curly > 0 and defcurly = 0: '<br>Your curly hair will last for another <<curly>> days.'
  14. if straight > 0 and defcurly = 1: '<br>Your straightened hair will last for another <<straight>> days.'
  15. if hbraids > 0: '<br>Your braided hair will last for another <<hbraids>> days.'
  16. if pcs_haircol ! nathcol:
  17. if dyefade > 0 and dyefade < 7: '<br>Your hair dye is beginning to fade and your roots are showing.'
  18. if dyefade = 0: '<br>Your hair dye has faded and looks terrible.'
  19. end
  20. set $makeUpString = '<br>'
  21. if kosmetica > 0: $makeUpString += 'Cosmetics: <<kosmetica>>'
  22. if kosmetica = 0: $makeUpString += 'You have no makeup'
  23. if lipbalm > 0: $makeUpString += ' | Lip Balm: <<lipbalm>>'
  24. if lipbalm = 0: $makeUpString += ' | You have no lip balm left'
  25. *pl $makeUpString
  26. *nl
  27. set $makeupLight = 'You subtly apply some neutral tones, with a light application of makeup to bring out your natural beauty.'
  28. set $makeupNatural = 'You apply some mildly vibrant tones and colors of makeup to cover your minor imperfections and enhance your best features.'
  29. set $makeupHeavy = 'You apply some deeper, richer shades of makeup, thick enough to cover most imperfections, while drawing attention to your eyes and lips.'
  30. set $brushHair = 'You brush your hair.'
  31. set $applyLipbalm = 'You apply some moisturizing balm on your lips.'
  32. ! WD: Cheat Unused ~ 'AutoHapri'
  33. if hapri = 0 and AutoHapri = 1:
  34. minut += 3
  35. hapri = 1
  36. *pl $brushHair
  37. end
  38. ! WD: Cheat Unused ~ 'AutoMakeup'
  39. if mop = 1 and kosmetica > 0 and AutoMakeup = 1:
  40. mop = AutoMakeupType
  41. if kosmetica < 3 and mop = 4:mop = 3
  42. if kosmetica < 2 and mop = 3:mop = 2
  43. if kosmetica < 1 and mop ! 1:
  44. mop = 1
  45. 'You have no make-up left.'
  46. else
  47. if mop = 2:
  48. *pl $makeupLight
  49. minut -= 3
  50. kosmetica -= 1
  51. end
  52. if mop = 3:
  53. *pl $makeupNatural
  54. minut -= 5
  55. kosmetica -= 2
  56. end
  57. if mop = 4:
  58. *pl $makeupHeavy
  59. minut -= 10
  60. vidageday -= 1
  61. kosmetica -= 3
  62. end
  63. end
  64. end
  65. ! WD: Cheat Unused ~ 'AutoLipBalm'
  66. if lipbalm > 0 and lipbalmstat <= 0 and AutoLipBalm = 1:
  67. minut -= 10
  68. lipbalm -= 1
  69. lipkoef += rand(0, 1)
  70. if lipkoef > 50:
  71. lipkoef = 0
  72. lip += 1
  73. end
  74. lipbalmstat += 8
  75. *pl $applyLipbalm
  76. end
  77. if hapri = 0:
  78. act 'Brush your hair':
  79. cla
  80. minut += 3
  81. hapri = 1
  82. *pl $brushHair
  83. act 'View results':gt 'portmirror'
  84. end
  85. end
  86. if mop = 1 and kosmetica > 0:
  87. act 'Apply makeup':
  88. cla
  89. *clr
  90. '<center><img src="images/etogame/mop.jpg"></center>'
  91. *nl
  92. *pl 'You consider for a moment which look you want to gor for.'
  93. *nl
  94. act 'Light make-up':
  95. cla
  96. minut += 3
  97. kosmetica -= 1
  98. mop = 2
  99. recmop = mop
  100. *pl $makeupLight
  101. act 'View results':gt 'portmirror'
  102. end
  103. if kosmetica >= 2:
  104. act 'Natural makeup':
  105. cla
  106. minut += 5
  107. kosmetica -= 2
  108. mop = 3
  109. recmop = mop
  110. *pl $makeupNatural
  111. act 'View results':gt 'portmirror'
  112. end
  113. end
  114. if kosmetica >= 3:
  115. act 'Heavy makeup':
  116. cla
  117. minut += 10
  118. kosmetica -= 3
  119. vidageday -= 1
  120. mop = 4
  121. recmop = mop
  122. *pl $makeupHeavy
  123. act 'View results':gt 'portmirror'
  124. end
  125. end
  126. end
  127. end
  128. if lipbalm > 0 and lipbalmstat <= 0:
  129. act 'Apply lip balm':
  130. cla
  131. minut += 10
  132. lipbalm -= 1
  133. lipkoef += rand(0, 1)
  134. if lipkoef > 50:
  135. lipkoef = 0
  136. lip += 1
  137. end
  138. lipbalmstat += 8
  139. *pl $applyLipbalm
  140. act 'View results':gt 'portmirror'
  141. end
  142. end
  143. act 'Move away from the mirror':gt '<<$gt1>>', '<<$gt2>>'
  144. --- portmirror ---------------------------------