1
0

portmirror 3.8 KB

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