portmirror 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # portmirror
  2. $portmirror = {
  3. cla
  4. *clr
  5. '<center><img src="<<FUNC(''$face_image'')>>"></center>'
  6. '<<$hair>> <<$mop>> <<$skin>> <<$vnesh>>'
  7. if daystart < 10 and StoryLine = 0:'In the mirror, you looked quite strange woman''s face which is exactly copied all your actions. You hardly get to accept the idea that it is now is you.'
  8. if daystart >= 10 and daystart < 30 and StoryLine = 0:'From the mirror looks at you a woman''s face, to which you have become accustomed to, but sometimes, no, no and yes flash the idea that it is not your face.'
  9. if curly > 0: '<br>Your curly hair will last for another <<curly>> days.'
  10. if hbraids > 0: '<br>Your braided hair will last for another <<hbraids>> days.'
  11. set $makeUpString = '<br>'
  12. if kosmetica > 0: $makeUpString += 'Cosmetics: <<kosmetica>>'
  13. if kosmetica = 0: $makeUpString += 'You have no makeup'
  14. if lipbalm > 0: $makeUpString += ' | Lip Balm: <<lipbalm>>'
  15. if lipbalm = 0: $makeUpString += ' | You have no lip balm left'
  16. *pl $makeUpString
  17. if hapri = 0 and AutoHapri = 1:
  18. minut += 3
  19. hapri = 1
  20. 'You brush your hair'
  21. end
  22. if mop = 1 and kosmetica > 0 and AutoMakeup = 1:
  23. mop = AutoMakeupType
  24. if kosmetica < 3 and mop = 4:mop = 3
  25. if kosmetica < 2 and mop = 3:mop = 2
  26. if kosmetica < 1 and mop ! 1:
  27. mop = 1
  28. 'You have no make-up left'
  29. else
  30. if mop = 2:
  31. 'Applied light make-up'
  32. minut -= 3
  33. kosmetica -= 1
  34. end
  35. if mop = 3:
  36. 'Applied natural make-up'
  37. minut -= 5
  38. kosmetica -= 2
  39. end
  40. if mop = 4:
  41. 'Applied heavy make-up'
  42. minut -= 10
  43. vidageday -= 1
  44. kosmetica -= 3
  45. end
  46. end
  47. end
  48. if lipbalm > 0 and lipbalmstat <= 0 and AutoLipBalm = 1:
  49. minut -= 10
  50. lipbalm -= 1
  51. lipkoef += rand(5, 15)
  52. if lipkoef > 50:
  53. lipkoef = 0
  54. lip += 1
  55. end
  56. lipbalmstat += 8
  57. 'You smeared lip moisturizing balm'
  58. end
  59. if hapri = 0:
  60. act 'Brush your hair':
  61. cla
  62. minut += 3
  63. hapri = 1
  64. act 'View results':dynamic $portmirror
  65. end
  66. end
  67. if mop = 1 and kosmetica > 0:
  68. act 'Apply makeup':
  69. cla
  70. *clr
  71. '<center><img src="images/etogame/mop.jpg"></center>'
  72. act 'Light make-up':
  73. cla
  74. minut += 3
  75. kosmetica -= 1
  76. mop = 2
  77. recmop = mop
  78. 'You legonechko summed eyes and lips a little tint.'
  79. act 'View results':dynamic $portmirror
  80. end
  81. if kosmetica >= 2:
  82. act 'Natural makeup':
  83. cla
  84. minut += 5
  85. kosmetica -= 2
  86. mop = 3
  87. recmop = mop
  88. 'You lipstick, summed up his eyes and eyelids.'
  89. act 'View results':dynamic $portmirror
  90. end
  91. end
  92. if kosmetica >= 3:
  93. act 'Heavy makeup':
  94. cla
  95. minut += 10
  96. kosmetica -= 3
  97. vidageday -= 1
  98. mop = 4
  99. recmop = mop
  100. 'You densely nakrasili eyes, eyelids and mascara, lip contour nakrasili pencil and lipstick.'
  101. act 'View results':dynamic $portmirror
  102. end
  103. end
  104. end
  105. end
  106. if lipbalm > 0 and lipbalmstat <= 0:
  107. act 'Smear lip balm moisturizing':
  108. cla
  109. minut += 10
  110. lipbalm -= 1
  111. lipkoef += rand(5, 15)
  112. if lipkoef > 50:
  113. lipkoef = 0
  114. lip += 1
  115. end
  116. lipbalmstat += 8
  117. 'You smeared lip moisturizing balm.'
  118. act 'View results':dynamic $portmirror
  119. end
  120. end
  121. act 'Move away from the mirror':
  122. cla
  123. if $gt2 = '':
  124. if $gt1 = 'stwork':dynamic $striptoilet
  125. if $gt1 = 'kafedinamic':dynamic $kafetualet
  126. if $gt1 = 'vokzalGin':
  127. if vokzalToilet = 1:dynamic $din_vokzalg_toilet_f
  128. if vokzalToilet = 2:dynamic $din_vokzalg_toilet_m
  129. end
  130. if $gt1 ! 'stwork' and $gt1 ! 'kafedinamic' and $gt1 ! 'vokzalGin':gt '<<$gt1>>'
  131. else
  132. gt '<<$gt1>>', '<<$gt2>>'
  133. end
  134. end
  135. }
  136. --- portmirror ---------------------------------