1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- # restoranM
- if $ARGS[0] = 'start':
- set minut += 30
- 'You came to the restaurant and sat at a table. <<$boyA>> ordered the waiter food and good wine. You have to wait when you bring the food.'
- if dayA > 15 and harakBoyA = 2:gs 'boylove', 'tits'
- if dayA > 20 and harakBoyA = 1:gs 'boylove', 'tits'
- if dayA > 25 and harakBoyA = 0:gs 'boylove', 'tits'
- if dayA > 20 and harakBoyA = 2:gs 'boylove', 'figure'
- if dayA > 25 and harakBoyA = 1:gs 'boylove', 'figure'
- if dayA > 30 and harakBoyA = 0:gs 'boylove', 'figure'
- gs 'anekdot'
- '<<$boyA>> anecdote tells you "<<$anek>>."'
- act 'Laugh.':
- cla
- set SUB += 1
- set bfa += 1
- xgt 'restoranM', 'a'
- end
- act 'Smile.':
- cla
- !!set bfa -= 1
- xgt 'restoranM', 'a'
- end
- act 'Not funny.':
- cla
- set DOM += 1
- set bfa -= 1
- xgt 'restoranM', 'a'
- end
- end
- if $ARGS[0] = 'a':
- set minut += 30
- set fat += 1
- 'Finally you brought food. <<$boyA>> pour you wine and proposed a toast to love.'
- act 'Eat':
- cla
- xgt 'restoranM', 'b'
- end
- end
- if $ARGS[0] = 'b':
- set minut += 30
- set fat += 1
- if energy >= 30:
- set fat += 5
- 'You can no longer have.'
- end
- if energy >= 20 and energy < 30:
- set fat += 3
- set energy += 10
- 'You pushed through the power of a meal.'
- end
- if energy < 20:
- set energy += 20
- set fat += 1
- 'You gladly ate the food.'
- end
- if water >= 20:'Tea in you no longer climbs.'
- if water < 20:
- 'You gladly drank a mug of tea.'
- set water += 20
- end
- alko += 2
- gs 'stat'
- 'After some time with food and wine, and was done with <<$boyA>> proposed to hold you.'
- act 'Home.':gt 'sexm', 'start'
- end
- --- restoranM ---------------------------------
|