There's a couple other things you can do with the console.
First off,
dtype is the main variable that defines your affinity. Positive is dick affinity, from 1 to 3, and negative is chick affinity.
You can get a list of all in-scope variables with
dir(), which will produce an array. Unfortunately, it's going to be too long to view in its entirety, but you can define a search function:
Python:
def search(term, var_list):
return [x for x in var_list if term.lower() in x.lower()]
>>> search('quinn', dir())
['afterQuinnShopLabel', 'bios_history_quinn', 'bios_name_quinn', 'bios_quinn',
'bios_text_quinn', 'chat_append_reply_quinn', ...]
And get a slightly more manageable list of all variables containing your search term. Just be wary that messing around with these variables might break your game, so save beforehand. There are a couple of bool values that can change the way the game progresses, like
ep1_accepted_quinn_offer or
ep2QuinnSawYouAndSage.