29 lines
439 B
Python
29 lines
439 B
Python
|
from Texte import *
|
||
|
from Toolbox import *
|
||
|
from user import User
|
||
|
|
||
|
print(welcome_message)
|
||
|
|
||
|
user = User()
|
||
|
|
||
|
interest = RomanticInterest(user.preference)
|
||
|
|
||
|
meet_cute()
|
||
|
pressForward()
|
||
|
|
||
|
interest.introduce()
|
||
|
|
||
|
pressForward()
|
||
|
|
||
|
print(situation_head_over_heels)
|
||
|
|
||
|
pressForward()
|
||
|
|
||
|
print(ask_what_you_do)
|
||
|
action = wähleAusListe([action_throw_book, action_introduce_self, action_ask_age])
|
||
|
|
||
|
user.do_action(action)
|
||
|
|
||
|
pressForward()
|
||
|
|
||
|
interest.react_to(action)
|