# Patron reward characters!
list_of_unique_characters = []
dinah_wardrobe = wardrobe_from_xml("Dinah_Wardrobe")
person_dinah = create_random_person(name = "Dinah", last_name = "Midari", body_type = "standard_body", height=0.99, skin="black", tits="D", hair_colour="black", hair_style=short_hair, starting_wardrobe = dinah_wardrobe)
list_of_unique_characters.append(person_dinah)
sylvia_wardrobe = wardrobe_from_xml("Sylvia_Wardrobe")
person_sylvia = create_random_person(name = "Sylvia", last_name = "Weissfeldt", body_type = "curvy_body", height=0.96, skin="white", tits="C", hair_colour="blond", hair_style = long_hair, starting_wardrobe = sylvia_wardrobe,
personality = reserved_personality)
list_of_unique_characters.append(person_sylvia)
paige_wardrobe = wardrobe_from_xml("Paige_Wardrobe")
# Well educated and raised in a very middle-class family.
# Paige is a cool-headed young woman who has confidence without exuberance or extraversion.
# her favourite activities are generally calm and solitary: reading, playing musical instruments, watching TV, etc.
# She doesn't make friends quickly, but she is pleasant and easy to get along with, and the bonds she does cultivate are likely to last for life.
# She has no passion for her work, but she is good at it and takes pride in that fact.
person_paige = create_random_person(name = "Paige", last_name = "Sallow", body_type = "thin_body", height = 0.98, skin = "white", tits="A", hair_colour="brown", hair_style = messy_ponytail, starting_wardrobe = paige_wardrobe,
personality = reserved_personality, stat_array = [1,4,3], skill_array = [5,1,2,3,2], sex_array = [2,1,4,2])
list_of_unique_characters.append(person_paige)
kendra_wardrobe = wardrobe_from_xml("Kendra_Wardrobe")
# Kendra's family owns one of the largest pharmaceutical companies in the country. All of the Rivera children went to the finest prep schools.
# Unlike her siblings, Kendra didn't inherit her parent's good looks or their general attitudes. She also disagreed with her families' viewpoint that being rich makes you better than everyone else.
# This point of view put her at odds with everyone in her social class so she mostly hung out with the outcasts of her school.
# By the time Kendra turned 16, she had grown into a stunningly beautiful woman and enjoyed the newfound attention she was receiving from boys. She was a free spirit, who just wanted to enjoy life.
# When she graduated High School, she decided that college was not for her and pursued a career as glamor model. Kendra's parents were not pleased and cut her off financially but Kendra didn't care.
# She was ready to be free and live her life.
person_kendra = create_random_person(name = "Kendra", last_name = "Rivera", age = 18, body_type = "curvy_body", height = 0.94, skin = "tan", hair_colour = "chestnut", hair_style = shaved_side_hair, starting_wardrobe = kendra_wardrobe,
personality = relaxed_personality, stat_array = [4,3,1], skill_array = [5,3,1,2,2], sex_array = [2,2,4,1], face_style = "Face_4")
list_of_unique_characters.append(person_kendra)
svetlanna_wardrobe = wardrobe_from_xml("Svetlanna_Wardrobe")
# Svetlanna moved to the fictional city from a fictional Russian land at the age of 16. She was always fascinated with biochemistry and when her mother became ill, she dove even deeper into her studies.
# After graduating from public education, she immediately moved to higher studies. She was hell-bent to learn all she could to help her mother.
# Unfortunately, her mother died before Svetlanna could find a cure for her mysterious disease, which put her into a deep depression.
# After some time, she met a woman that rekindled her love for biotechnology and put her on the path of a wild woman, never tied down with any one man or woman.
person_svetlanna = create_random_person(name = "Svetlanna", last_name = "Ivanova", body_type= "thin_body", height = 1.00, skin = "white", tits="E", hair_colour = "blond", hair_style = long_hair, starting_wardrobe = svetlanna_wardrobe,
personality = wild_personality, stat_array = [3,1,4], skill_array = [1,3,5,2,2], sex_array = [2,1,2,4])
person_svetlanna.opinions["research work"] = [2, False] # Patron reward
list_of_unique_characters.append(person_svetlanna)
kelly_wardrobe = wardrobe_from_xml("Kelly_Wardrobe")
#
person_kelly = create_random_person(name = "Kelly", last_name = "Uhls", body_type = "curvy_body", height = 0.98, skin = "white", eyes = "dark blue", tits = "E", hair_colour = "chestnut", hair_style = ponytail, starting_wardrobe = kelly_wardrobe,
personality = reserved_personality, stat_array = [2,2,4], skill_array = [2,1,2,1,5], sex_array = [3,4,2,1])
list_of_unique_characters.append(person_kelly)
#sativa_wardrobe = wardrobe_from_xml("Sativa_Wardrobe") #TODO: Give her a wardrobe if the patron responds
# Sativa's parents are very strict and traditional. They were determined to protect her from all the bad things in life, such as boys and booze.
#When she turned 18, Sativa moved out on her own. Now she is determined to experience everything that she was previously denied.
person_sativa = create_random_person(name = "Sativa", last_name = "Menendez", body_type = "curvy_body", face_style = "Face_7", height = 0.90, skin = "tan", eyes = "green", tits = "FF", hair_colour = "black", hair_style = bobbed_hair,
personality = wild_personality, stat_array = [3,1,4], skill_array = [2,2,1,1,5], sex_array = [4,3,2,1])
list_of_unique_characters.append(person_sativa)
#nuoyi_wardrobe = wardrobe_from_xml("Nuoyi_Wardrobe") #NOTE: Patron did not want a specific wardrobe, she'll draw her wardrobe randomly as normal.
person_nuyoi = create_random_person(name = "Nuoyi", last_name = "Pan", body_type = "thin_body", height = 0.96, skin = "white", eyes = "dark blue", tits = "FF", hair_colour = "black", hair_style = long_hair,
personality = wild_personality, stat_array = [4,3,1], skill_array = [5,2,2,1,1], sex_array = [1,3,4,2])