1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # restoranM
- if $ARGS[0] = 'start':
- 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
- SUB += 1
- bfa += 1
- xgt 'restoranM', 'a'
- end
- act 'Smile':
- cla
- !!bfa -= 1
- xgt 'restoranM', 'a'
- end
- act 'Not funny':
- cla
- DOM += 1
- bfa -= 1
- xgt 'restoranM', 'a'
- end
- end
- if $ARGS[0] = 'a':
- minut += 30
- alko += 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':
- $metkaM = $ARGS[0]
- $locM = $CURLOC
- gs 'food', 'dyn_meal'
- alko += 2
- gs 'stat'
- 'After some time with food and wine, and was done with <<$boyA>> proposed to hold you.'
- act 'Go Home':gt 'sexm', 'start'
- end
- --- restoranM ---------------------------------
|