gor_mirror 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # gor_mirror
  2. if $ARGS[0] = 'start':
  3. cla
  4. clr
  5. if player_avatar = 1:
  6. '<center><img src="avatar.jpg"></center>'
  7. else
  8. '<center><img src="<<FUNC(''$face_image'')>>"></center>'
  9. '<<$hair>> <<$mop>> <<$skin>> <<$vnesh>>'
  10. end
  11. if kosmetica > 0:'Cosmetics <<kosmetica>>'
  12. if kosmetica = 0:'You have no makeup.'
  13. if hapri = 0:
  14. act 'coiffured':
  15. cla
  16. minut += 3
  17. hapri = 1
  18. act 'View results':gt 'gor_mirror', 'start'
  19. end
  20. end
  21. if mop = 1 and kosmetica > 0:
  22. act 'Apply makeup':
  23. cla
  24. *clr
  25. '<center><img src="images/etogame/mop.jpg"></center>'
  26. act 'Light make-up':
  27. cla
  28. minut += 3
  29. kosmetica -= 1
  30. mop = 2
  31. 'You legonechko summed eyes and lips a little tint.'
  32. act 'View results':gt 'gor_mirror', 'start'
  33. end
  34. if kosmetica >= 2:
  35. act 'normal makeup':
  36. cla
  37. minut += 5
  38. kosmetica -= 2
  39. mop = 3
  40. 'You lipstick, summed up his eyes and eyelids.'
  41. act 'View results':gt 'gor_mirror', 'start'
  42. end
  43. end
  44. if kosmetica >= 3:
  45. act 'calling makeup':
  46. cla
  47. minut += 10
  48. kosmetica -= 3
  49. vidageday -= 1
  50. mop = 4
  51. 'You heavily nakrasili eyes, eyelids and mascara, lip contour nakrasili pencil and lipstick.'
  52. act 'View results':gt 'gor_mirror', 'start'
  53. end
  54. end
  55. end
  56. end
  57. if lipbalm > 0 and lipbalmstat <= 0:
  58. act 'Smear lip balm moisturizing':
  59. cla
  60. minut += 10
  61. lipbalm -= 1
  62. lipbalmstat += 8
  63. lipkoef += rand(5, 15)
  64. if lipkoef > 50:
  65. lipkoef = 0
  66. lip += 1
  67. end
  68. 'You smeared lip moisturizing balm.'
  69. act 'View results':gt 'gor_mirror', 'start'
  70. end
  71. end
  72. act 'Move away from the mirror':
  73. cla
  74. gt 'dom_gor'
  75. end
  76. end
  77. --- gor_mirror ---------------------------------