1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- # danceclass
- clr
- minut += 5
- razdtumbler = 0
- gs 'stat'
- fcolor = rgb(0, 0, 0)
- bcolor = rgb(255, 255, 255)
- lcolor = rgb(106, 90, 205)
- '<center><b><font color="maroon">Dance Class</font></b></center>'
- '<center><img src="images/etogame/danceclass.jpg"></center>'
- 'Modern room with good lighting and mirrors for the development of dance skills.'
- act 'Modern club dancing (2:00)':
- cla
- *clr
- minut += 120
- fat -= 5
- speed+= rand(1, 3)
- manna -= 5
- sweat += 3
- dance += rand(5, 15)
- '<center><img src="images/etogame/fit1.jpg"></center>'
- if dance < 100:'You studied modern dance, which is very popular in clubs.'
- if dance >= 100:'Though you worked hard, you realize there is nothing more you can learn here.'
- act 'Leave':gt 'fit', 'dressing room'
- end
- act 'Striptease (2:00)':
- cla
- *clr
- minut += 120
- fat -= 5
- agil+= rand(1, 3)
- manna -= 8
- sweat += 3
- !!stripdance += 1
- '<center><img src="images/etogame/stripdance.jpg"></center>'
- if dance >= 100:
- stripdance += rand(2, 10)
- 'You studied the art of burlesque, imaging yourself stripping to the music.'
- if stripdance >= 100:'But you could not learn anything new, since you have already mastered the art.'
- elseif dance < 100:
- dance += rand(5, 15)
- 'You find it impossible to combine dancing and stripping into an erotic act. The teacher recommends that you first learn modern club dancing.'
- end
- act 'Leave':gt 'fit', 'dressing room'
- end
- act 'Dancing on a pole (2:00)':
- cla
- *clr
- minut += 120
- fat -= 10
- stren+= rand(1, 3)
- vital += rand(1, 3)
- manna -= 5
- sweat += 3
- !!poledance += 1
- '<center><img src="images/etogame/poledance.jpg"></center>'
- if dance >= 100 and stripdance >= 100 and stren >= 80:
- poledance += rand(2, 5)
- 'You studied various acrobatics on the pole.'
- if poledance >= 100:'But you could not learn anything new, you''re already a master of the art.'
- elseif dance < 100 or stripdance < 100 or stren < 80:
- 'It took hitting your head on the pole the first time to realize you are out of your league. Maybe you should pick up modern dancing or striptease first.'
- if stren < 80:'The instructor tries to be patient while making it clear that you are far too weak for this sort of dance.'
- end
- act 'Leave':gt 'fit', 'dressing room'
- end
- --- danceclass ---------------------------------
|