92 lines
4.8 KiB
Plaintext
92 lines
4.8 KiB
Plaintext
|
|
label susan_chitchat:
|
|
|
|
if susan_chatted:
|
|
return
|
|
|
|
$ susan_chatted = True
|
|
|
|
# Note: Susan does not have Tiers yet.
|
|
|
|
# if ast_tier == 1:
|
|
# # $ random_number = renpy.random.randint(MIN, MAX)
|
|
|
|
# pass
|
|
# elif ast_tier == 2:
|
|
# # $ random_number = renpy.random.randint(MIN, MAX)
|
|
|
|
# pass
|
|
# elif ast_tier == 3:
|
|
# # $ random_number = renpy.random.randint(MIN, MAX)
|
|
|
|
# pass
|
|
# elif ast_tier == 4:
|
|
# $ random_number = renpy.random.randint(1, 11)
|
|
|
|
$ random_number = renpy.random.randint(1, 15)
|
|
|
|
if random_number == 1:
|
|
sus "My favourite subject is Herbology..." ("open", "base", "base", "mid")
|
|
sus "But when we're working in groups the other students usually talk over me..." ("base", "closed", "worried", "mid")
|
|
|
|
elif random_number == 2:
|
|
sus "The Hufflepuff house entrance is hidden in the kitchen corridor." ("open", "base", "base", "mid")
|
|
sus "Even though we're so close, I've only seen a house elf once." ("upset", "base", "base", "R")
|
|
|
|
elif random_number == 3:
|
|
sus "Care for magical creatures is a bit scary sometimes..." ("open", "base", "worried", "mid")
|
|
sus "When we were taught how to properly approach Hippogriffs, I was shaking the entire time." ("upset", "base", "worried", "R")
|
|
sus "After bowing and letting it approach me, I only pet it a couple of times. I wouldn't dare to ride the thing." ("open", "base", "worried", "mid")
|
|
|
|
elif random_number == 4:
|
|
sus "Sir, could you... Could you please tell professor Snape not to..." ("open", "base", "worried", "mid")
|
|
sus "Never mind..." ("upset", "base", "worried", "down")
|
|
|
|
elif random_number == 5:
|
|
sus "Does flying have to be mandatory?" ("open", "base", "worried", "mid")
|
|
sus "Surely only a piece of wood between you, and falling from the sky can't be safe..." ("upset", "base", "worried", "down")
|
|
|
|
elif random_number == 6:
|
|
sus "Madame Hooch was keeping a close eye on me during the last flying lesson." ("open", "base", "base", "down")
|
|
sus "I hope I'm not disappointing her too much..." ("upset", "base", "base", "R")
|
|
|
|
elif random_number == 7:
|
|
sus "Madame Pomfrey once prescribed me a \"Draught of peace\" to drink the night before exams so I could get some sleep." ("open", "base", "base", "mid")
|
|
sus "But even with her prescription, Snape wouldn't give one to me." ("upset", "base", "base", "R")
|
|
|
|
elif random_number == 8:
|
|
sus "Why does everyone assume I'm a Weasley just because I've got red hair?" ("upset", "base", "base", "mid")
|
|
sus "Some Slytherin boys keep mocking... even though I'm clearly wearing Hufflepuff robes." ("open", "base", "worried", "down")
|
|
|
|
elif random_number == 9:
|
|
sus "I used to be scared of ghosts before I got to Hogwarts, but the \"Fat Friar\" is so nice it's hard to stay scared of them." ("grin", "base", "base", "mid")
|
|
sus "Poltergeists on the other hand..." ("open", "base", "angry", "mid")
|
|
|
|
elif random_number == 10:
|
|
sus "The \"Defence against the dark arts\" lesson when we had to confront a Boggart was one of my worst days here..." ("upset", "base", "worried", "down")
|
|
sus "Professor Tonks had me stay behind after class to make sure I was okay." ("base", "base", "worried", "R")
|
|
sus "Once I got back to my dorm, some of the other students were whistling at me for some reason..." ("open", "base", "worried", "R")
|
|
|
|
elif random_number == 11:
|
|
sus "Whilst most students go home during winter break, I usually stay at Hogwarts." ("open", "base", "base", "R")
|
|
sus "The castle is a lot quieter than usual, but I don't really mind." ("base", "base", "base", "mid")
|
|
|
|
elif random_number == 12:
|
|
sus "How come Professor Snape is allowed to ask us to gather ingredients in the forbidden forest?" ("upset", "base", "worried", "mid")
|
|
sus "The students that didn't go got a bad grade and the ones that did got detention..." ("open", "base", "worried", "mid")
|
|
sus "How is that fair?" ("upset", "base", "base", "down")
|
|
|
|
elif random_number == 13:
|
|
sus "I think my school robes must've shrunk in the wash." ("upset", "base", "base", "down")
|
|
sus "They're a lot tighter than when I bought them..." ("open", "base", "base", "down")
|
|
|
|
elif random_number == 14:
|
|
sus "Just because the Hufflepuff house is next to the kitchen, doesn't mean we can get food whenever we like." ("open", "base", "base", "mid")
|
|
sus "So why does the Slytherin students keep asking me to show where I hide my melons?" ("upset", "base", "base", "R")
|
|
|
|
elif random_number == 15:
|
|
sus "Why do people seem to find my surname so funny?" ("open", "base", "angry", "R")
|
|
sus "I mean, I guess it's a bit unusual..." ("upset", "base", "base", "mid")
|
|
|
|
return
|