diff --git a/game/scripts/characters.rpy b/game/scripts/characters.rpy index ab0ae54c..78d567f3 100644 --- a/game/scripts/characters.rpy +++ b/game/scripts/characters.rpy @@ -74,8 +74,8 @@ define nar = Character("Narrator", show_side_image=Image("characters/misc/narrat define anon = Character("???") # Dumbledore -define dum1 = Character("[dumbledore_name]", show_side_image=Image("characters/misc/dumbledore/dum_1.webp"), show_icon="dumbledore") -define dum2 = Character("[dumbledore_name]", show_side_image=Image("characters/misc/dumbledore/dum_2.webp"), show_icon="dumbledore") -define dum3 = Character("[dumbledore_name]", show_side_image=Image("characters/misc/dumbledore/dum_3.webp"), show_icon="dumbledore") -define dum4 = Character("[dumbledore_name]", show_side_image=Image("characters/misc/dumbledore/dum_4.webp"), show_icon="dumbledore") -define dum5 = Character("[dumbledore_name]", show_side_image=Image("characters/misc/dumbledore/dum_5.webp"), show_icon="dumbledore") +define dum1 = Character("name_dumbledore_genie", show_side_image=Image("characters/misc/dumbledore/dum_1.webp"), show_icon="dumbledore", dynamic=True) +define dum2 = Character("name_dumbledore_genie", show_side_image=Image("characters/misc/dumbledore/dum_2.webp"), show_icon="dumbledore", dynamic=True) +define dum3 = Character("name_dumbledore_genie", show_side_image=Image("characters/misc/dumbledore/dum_3.webp"), show_icon="dumbledore", dynamic=True) +define dum4 = Character("name_dumbledore_genie", show_side_image=Image("characters/misc/dumbledore/dum_4.webp"), show_icon="dumbledore", dynamic=True) +define dum5 = Character("name_dumbledore_genie", show_side_image=Image("characters/misc/dumbledore/dum_5.webp"), show_icon="dumbledore", dynamic=True) diff --git a/game/scripts/characters/astoria/common.rpy b/game/scripts/characters/astoria/common.rpy index 80a077bb..5b66fabf 100644 --- a/game/scripts/characters/astoria/common.rpy +++ b/game/scripts/characters/astoria/common.rpy @@ -44,11 +44,11 @@ label update_astoria: $ random_number = renpy.random.randint(0, 5) if random_number in [1,5]: - $ ast_susan_name = renpy.random.choice(["Suzy","Cow","Cow Tits","Milk Bag","Slut","Whore","Piggy","Pig","Bessie","Moo Moo"]) + $ name_susan_astoria = renpy.random.choice(["Suzy","Cow","Cow Tits","Milk Bag","Slut","Whore","Piggy","Pig","Bessie","Moo Moo"]) if random_number in [2,5]: - $ ast_tonks_name = renpy.random.choice(["Hag","Old Hag","Punk","Dyke","Lesbo"]) + $ name_tonks_astoria = renpy.random.choice(["Hag","Old Hag","Punk","Dyke","Lesbo"]) if random_number in [3,5]: - $ ton_astoria_name = renpy.random.choice(["Cutie","Kitty","Princess","Cupcake","Honey"]) + $ name_astoria_tonks = renpy.random.choice(["Cutie","Kitty","Princess","Cupcake","Honey"]) # Chibi Update $ astoria_chibi.update() @@ -73,7 +73,7 @@ label end_astoria_event: call music_block jump main_room_menu -define character.astoria_say = Character("astoria_name", show_icon="astoria", dynamic=True) +define character.astoria_say = Character("name_astoria_genie", show_icon="astoria", dynamic=True) init python: def ast(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, diff --git a/game/scripts/characters/astoria/events/clothing.rpy b/game/scripts/characters/astoria/events/clothing.rpy index 893d6dd9..aa0b6a5f 100644 --- a/game/scripts/characters/astoria/events/clothing.rpy +++ b/game/scripts/characters/astoria/events/clothing.rpy @@ -21,13 +21,13 @@ label astoria_summon_setup: if ast_mood > 0: if 5 > ast_mood >= 1: - ast "[ast_genie_name]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + ast "[name_genie_astoria]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) elif 10 > ast_mood >= 5: ast "What now?" ("annoyed", "base", "worried", "mid", xpos="base", ypos="base", trans=d3) elif 20 > ast_mood >= 10: - ast "What is it, [ast_genie_name]?" ("annoyed", "base", "angry", "R", xpos="base", ypos="base", trans=d3) + ast "What is it, [name_genie_astoria]?" ("annoyed", "base", "angry", "R", xpos="base", ypos="base", trans=d3) elif 30 > ast_mood >= 20: - ast "What do you want, [ast_genie_name]?" ("angry", "base", "angry", "mid", xpos="base", ypos="base", trans=d3) + ast "What do you want, [name_genie_astoria]?" ("angry", "base", "angry", "mid", xpos="base", ypos="base", trans=d3) elif 40 > ast_mood >= 30: ast "*Hmph*..." ("annoyed", "narrow", "worried", "L", xpos="base", ypos="base", trans=d3) elif 50 > ast_mood >= 40: @@ -40,7 +40,7 @@ label astoria_summon_setup: call tutorial("moodngifts") else: if game.daytime: - ast "Mornin', [ast_genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + ast "Mornin', [name_genie_astoria]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) else: - ast "Evenin', [ast_genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + ast "Evenin', [name_genie_astoria]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) return diff --git a/game/scripts/characters/astoria/events/imperio_practice.rpy b/game/scripts/characters/astoria/events/imperio_practice.rpy index 7ee0862e..69744e06 100644 --- a/game/scripts/characters/astoria/events/imperio_practice.rpy +++ b/game/scripts/characters/astoria/events/imperio_practice.rpy @@ -98,7 +98,7 @@ label ag_se_imperio_sb_E1: call play_music("astoria") - ast "Hey [ast_susan_name]!" ("grin", "narrow", "base", "L", xpos="right", ypos="base") + ast "Hey [name_susan_astoria]!" ("grin", "narrow", "base", "L", xpos="right", ypos="base") sus "Astoria? What are you doing here?" ("angry", "wide", "shocked", "left", xpos="base", ypos="base") ast "Oh, don't mind me..." ("base", "base", "base", "R") @@ -142,7 +142,7 @@ label ag_se_imperio_sb_E1: ast "Finally..." ("grin", "base", "angry", "mid") ast "So what should we do now?" ("open", "base", "base", "R") - ast "We could do whatever we want [ast_genie_name]!" ("open", "base", "base", "R") + ast "We could do whatever we want [name_genie_astoria]!" ("open", "base", "base", "R") gen "How about we have her take her clothes off?" ("base", xpos="far_left", ypos="head") ast "All of them?!" ("clench", "base", "worried", "mid") gen "What? Didn't that work last time?" ("base", xpos="far_left", ypos="head") @@ -156,7 +156,7 @@ label ag_se_imperio_sb_E1: sus "..." ("soft", "narrow", "base", "stare") ast "I want you to...{w} to..." ("open", "base", "base", "L") gen "Tell her to take off her top!" ("base", xpos="far_left", ypos="head") - ast "Very well, [ast_genie_name]..." ("clench", "base", "base", "L") + ast "Very well, [name_genie_astoria]..." ("clench", "base", "base", "L") ast "Susan, I want you to take off your...{w} your...{w} Take your top off!" ("clench", "base", "base", "L") sus "..." ("soft", "wide", "shocked", "stare", cheeks="blush") @@ -181,7 +181,7 @@ label ag_se_imperio_sb_E1: pause.5 sus "..." ("angry", "wide", "sad", "stare", cheeks="blush") - ast "Speak, [ast_susan_name]!" ("annoyed", "narrow", "base", "mid") + ast "Speak, [name_susan_astoria]!" ("annoyed", "narrow", "base", "mid") sus "I-I-I'm sorry, Professor Dumbledore, I don't know what's come over me..." ("open", "wide", "sad", "stare", cheeks="blush") sus "I'm Sorry you have to see this..." ("angry", "narrow", "sad", "stare", cheeks="blush") ast "See what Suzy?" ("grin", "narrow", "angry", "mid") @@ -394,7 +394,7 @@ label ag_se_imperio_sb_E2: ast "Of course! Anything to bring Bessy here down a peg." ("smile", "base", "base", "L") call ast_chibi("wand",530,"base") - ast "So what should we make her do today, [ast_genie_name]?" ("smile", "base", "base", "mid") + ast "So what should we make her do today, [name_genie_astoria]?" ("smile", "base", "base", "mid") gen "Something fun, perhaps?" ("base", xpos="far_left", ypos="head") ast "*Hmm*..." ("annoyed", "narrow", "base", "R") gen "Maybe something a little more... adventurous?" ("base", xpos="far_left", ypos="head") @@ -404,7 +404,7 @@ label ag_se_imperio_sb_E2: gen "We can do something else if you--" ("base", xpos="far_left", ypos="head") ast "I didn't say no..." ("upset", "closed", "base", "mid") gen "Oh... well how about you make it so--" ("base", xpos="far_left", ypos="head") - ast "I get to choose, [ast_genie_name]!" ("scream", "closed", "angry", "mid") + ast "I get to choose, [name_genie_astoria]!" ("scream", "closed", "angry", "mid") gen "What? Why?" ("base", xpos="far_left", ypos="head") ast "Because it's my spell and my wand!" ("open", "narrow", "angry", "mid") ast "Not to mention you'd probably do something over the top and gross..." ("open", "narrow", "angry", "R") @@ -415,7 +415,7 @@ label ag_se_imperio_sb_E2: sus "Yes..." ("open", "happy", "base", "stare") ast "You now have an uncontrollable urge to take your top off, okay?" ("open", "closed", "base", "mid") sus "Okay..." ("soft", "happy", "base", "stare") - ast "Awesome! Now act like you normally would, [ast_susan_name]!" ("grin", "base", "angry", "L") + ast "Awesome! Now act like you normally would, [name_susan_astoria]!" ("grin", "base", "angry", "L") sus "..." ("normal", "base", "base", "stare") call nar(">The blank expression slowly fades from Susan's eyes...") @@ -431,7 +431,7 @@ label ag_se_imperio_sb_E2: ast "Quiet sir... don't ruin my fun!" ("clench", "narrow", "angry", "mid") gen "Fine..." ("base", xpos="far_left", ypos="head") sus "I-I'm not a slut..." ("angry", "happyCl", "base", "down") - ast "Well I'm sure you'll be able to keep your top on then, [ast_susan_name]." ("open", "closed", "base", "mid") + ast "Well I'm sure you'll be able to keep your top on then, [name_susan_astoria]." ("open", "closed", "base", "mid") sus "I... There's something wrong sir!" ("angry", "happyCl", "low", "mid", cheeks="blush") sus "I can't help it..." ("angry", "happy", "worried", "down", cheeks="blush") ast "" ("grin", "base", "angry", "L") @@ -450,7 +450,7 @@ label ag_se_imperio_sb_E2: call gen_chibi("jerk_off_behind_desk") pause.8 - ast "[ast_genie_name]! Are you touching yourself?" ("scream", "base", "base", "mid") + ast "[name_genie_astoria]! Are you touching yourself?" ("scream", "base", "base", "mid") gen "*Ugh*... can you blame me?" ("base", xpos="far_left", ypos="head") gen "It's not every day you get to see a rack like this..." ("angry", xpos="far_left", ypos="head") ast "Well stop it! It's gross!" ("clench", "narrow", "angry", "mid") @@ -607,10 +607,10 @@ label ag_se_imperio_sb_E2: call sus_walk(action="leave") if game.daytime: - ast "See you, [ast_genie_name]!" ("grin", "closed", "base", "mid") + ast "See you, [name_genie_astoria]!" ("grin", "closed", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") else: - ast "Smell yah later, [ast_genie_name]!" ("grin", "closed", "base", "mid") + ast "Smell yah later, [name_genie_astoria]!" ("grin", "closed", "base", "mid") gen "Good night." ("base", xpos="far_left", ypos="head") call play_sound("door") @@ -633,7 +633,7 @@ label ag_se_imperio_sb_E3: ast "" ("smile", "base", "base", "mid",xpos="close",ypos="base",trans=fade) gen "Ready for another go with the curse?" ("base", xpos="far_left", ypos="head") - ast "You bet [ast_genie_name]! I can't wait to see the look on Suzy's stupid face!" ("grin", "narrow", "angry", "down") + ast "You bet [name_genie_astoria]! I can't wait to see the look on Suzy's stupid face!" ("grin", "narrow", "angry", "down") gen "Shall I bring her up here?" ("base", xpos="far_left", ypos="head") ast "Do you even need to ask?" ("smile", "narrow", "base", "mid") gen "I suppose not..." ("base", xpos="far_left", ypos="head") @@ -745,7 +745,7 @@ label ag_se_imperio_sb_E3: sus "To...{w=0.5} Azkaban..." ("soft", "narrow", "annoyed", "stare") sus "..." ("soft", "narrow", "base", "stare") - ast "Alright... that'll shut her up...{w} what should we make her do this time, [ast_genie_name]?" ("open", "closed", "base", "mid") + ast "Alright... that'll shut her up...{w} what should we make her do this time, [name_genie_astoria]?" ("open", "closed", "base", "mid") gen "*Hmm*... Are you actually going to let me choose this time or are you just asking to be annoying?" ("base", xpos="far_left", ypos="head") ast "Hey! I am not annoying!" ("scream", "narrow", "angry", "mid", trans=vpunch) gen "So, are you going to let me pick then?" ("base", xpos="far_left", ypos="head") @@ -775,7 +775,7 @@ label ag_se_imperio_sb_E3: gen "I thought you didn't want her to suck me off?" ("base", xpos="far_left", ypos="head") ast "Shut it, and stop being so disgusting!" ("scream", "closed", "angry", "mid") sus "..." ("base", "base", "base", "mid") - ast "Now go, [ast_susan_name]!" ("grin", "narrow", "angry", "mid") + ast "Now go, [name_susan_astoria]!" ("grin", "narrow", "angry", "mid") call hide_characters call sus_chibi("hide") @@ -913,14 +913,14 @@ label ag_se_imperio_sb_E3: call cum_block sus "..." - ast "That's it, [ast_genie_name]! Make sure you get it all out..." ("grin", "narrow", "angry", "mid") + ast "That's it, [name_genie_astoria]! Make sure you get it all out..." ("grin", "narrow", "angry", "mid") gen "*Ahhh*... don't worry about that..." ("angry", xpos="far_left", ypos="head") call nar(">You give your cock a few final pumps, working out the last of your load onto Susan's waiting face...") call gen_chibi("cum_behind_desk_done") pause.5 gen "There we go..." ("angry", xpos="far_left", ypos="head") - ast "Nice work, [ast_genie_name]..." ("open", "closed", "base", "mid") + ast "Nice work, [name_genie_astoria]..." ("open", "closed", "base", "mid") ast "You can come out now, Suzy..." ("smile", "narrow", "base", "down") sus "..." @@ -984,12 +984,12 @@ label ag_se_imperio_sb_E3: ast "Let's head to Tonks' study, shall we." ("smile", "narrow", "base", "R") sus "Yes..." ("open", "narrow", "base", "stare") gen "..." ("base", xpos="far_left", ypos="head") - ast "Until next time, [ast_genie_name]!" ("grin", "closed", "base", "mid") + ast "Until next time, [name_genie_astoria]!" ("grin", "closed", "base", "mid") else: ast "It's getting a bit late Suzy, let's head to Tonks' study..." ("annoyed", "narrow", "base", "R") sus "Yes..." ("open", "narrow", "base", "stare") gen "..." ("base", xpos="far_left", ypos="head") - ast "Good night, [ast_genie_name]!" ("grin", "closed", "base", "mid") + ast "Good night, [name_genie_astoria]!" ("grin", "closed", "base", "mid") call play_music("stop") diff --git a/game/scripts/characters/astoria/events/imperio_training.rpy b/game/scripts/characters/astoria/events/imperio_training.rpy index dd38d460..ab408560 100644 --- a/game/scripts/characters/astoria/events/imperio_training.rpy +++ b/game/scripts/characters/astoria/events/imperio_training.rpy @@ -810,7 +810,7 @@ label ag_st_imperio_E3: gen "That I do!" ("grin", xpos="far_left", ypos="head") ton "I should get going. It's getting late..." ("normal", "base", "shocked", "down") gen "Until next time..." ("base", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]." ("soft", "base", "base", "mid") + ton "Have a good night, [name_genie_tonks]." ("soft", "base", "base", "mid") # Tonks leaves. call ton_walk(action="leave") @@ -1126,7 +1126,7 @@ label ag_st_imperio_E4: gen "A very \"talented\" one at that!" ("base", xpos="far_left", ypos="head") ton "Are you just praising my tits, Sir?" ("soft", "narrow", "annoyed", "mid") gen "Every part of your body is worthy of praise!" ("grin", xpos="far_left", ypos="head") - ton "Well... thank you, [ton_genie_name]." ("base", "happyCl", "shocked", "mid") + ton "Well... thank you, [name_genie_tonks]." ("base", "happyCl", "shocked", "mid") # Screenshake with hpunch @@ -1141,7 +1141,7 @@ label ag_st_imperio_E4: gen "Are we going to see more of your... talents?" ("grin", xpos="far_left", ypos="head") ton "How would you like to see {b}all{/b} this Auror has to offer?" ("horny", "closed", "annoyed", "mid") # horny gen "Looking forward to it!" ("grin", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]!" ("base", "base", "angry", "mid") + ton "Have a good night, [name_genie_tonks]!" ("base", "base", "angry", "mid") # Tonks leaves. call ton_walk(action="leave") @@ -1319,7 +1319,7 @@ label ag_st_imperio_E5: ast "Look, Professor!" ("smile", "narrow", "angry", "L") ast "I got her to be completely naked!" ("smile", "base", "angry", "mid") - gen "Excellent work, [astoria_name]!" ("grin", xpos="far_left", ypos="head") + gen "Excellent work, [name_astoria_genie]!" ("grin", xpos="far_left", ypos="head") ast "Thank you, Sir!" ("smile", "closed", "base", "mid") ton "............." ("silly", "happyCl", "base", "stare", cheeks="blush") @@ -1640,7 +1640,7 @@ label ag_st_imperio_E5: ton "She's such an uptight and oppressed cute little...{w=0.4} girl." ("upset", "closed", "raised", "down", cheeks="blush") ton "..." ("mad", "narrow", "base", "downR", cheeks="blush") ton "How can I not help her, even if she's a Slytherin." ("upset", "closed", "base", "mid", cheeks="blush") - gen "[tonks_name]... You aren't convincing anyone." ("base", xpos="far_left", ypos="head") + gen "[name_tonks_genie]... You aren't convincing anyone." ("base", xpos="far_left", ypos="head") ton "To think such an innocent girl could be the victim of such an--" ("open", "closed", "base", "down", cheeks="blush") gen "Tonks!" ("base", xpos="far_left", ypos="head") ton "Alright..." ("annoyed", "base", "annoyed", "down") #exasperated @@ -1763,7 +1763,7 @@ label ag_st_imperio_E5: ton "If you know what I mean..." ("grin", "narrow", "raised", "down", hair="horny") ton "I suppose I should wish you good luck with the training..." ("soft", "base", "shocked", "L") gen "Have a good night." ("grin", xpos="far_left", ypos="head") - ton "Oh - I will, [ton_genie_name]!" ("base", "base", "raised", "R") + ton "Oh - I will, [name_genie_tonks]!" ("base", "base", "raised", "R") ton "I sure will!" ("horny", "base", "raised", "downR") call ton_walk(action="leave") diff --git a/game/scripts/characters/astoria/events/intro.rpy b/game/scripts/characters/astoria/events/intro.rpy index 2eadaecd..c8d8ec1f 100644 --- a/game/scripts/characters/astoria/events/intro.rpy +++ b/game/scripts/characters/astoria/events/intro.rpy @@ -14,7 +14,7 @@ label astoria_intro_E1: call play_sound("knocking") "*knock-knock-knock*" - ton "[ton_genie_name], may I come in?" + ton "[name_genie_tonks], may I come in?" ton "We have to talk about some recent events that happened..." ton "It's quite urgent..." @@ -31,21 +31,21 @@ label astoria_intro_E1: call ton_walk(action="enter", xpos="desk", ypos="base") call play_music("tonks") - ton "Good evening, [ton_genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base") - gen "[tonks_name]..." ("base", xpos="far_left", ypos="head") + ton "Good evening, [name_genie_tonks]." ("base", "base", "base", "mid", xpos="mid", ypos="base") + gen "[name_tonks_genie]..." ("base", xpos="far_left", ypos="head") ton "I'm terribly sorry for bursting in like this!" ("open", "base", "raised", "R") gen "What in the world got you so flustered?" ("base", xpos="far_left", ypos="head") - ton "We might be in big trouble, [ton_genie_name]!" ("open", "base", "worried", "mid") + ton "We might be in big trouble, [name_genie_tonks]!" ("open", "base", "worried", "mid") call play_music("playful_tension") gen "Miss Tonks... Have you been a bad girl?" ("grin", xpos="far_left", ypos="head") - ton "I'm not joking, [ton_genie_name]!" ("soft", "base", "annoyed", "mid") + ton "I'm not joking, [name_genie_tonks]!" ("soft", "base", "annoyed", "mid") ton "Something terrible has happened at school today!" ("open", "closed", "annoyed", "R") ton "I believe one of our students has conducted some highly illegal activities against another student!" ("normal", "base", "annoyed", "downR") ton "We have to take action!{w=0.6} The last thing we need is for this to reach the Ministry's attention!" ("open", "base", "angry", "mid") gen "So? Isn't it your task to cover up that sort of stuff?" ("base", xpos="far_left", ypos="head") ton "Yes, but..." ("upset", "base", "worried", "down") - ton "Please, [ton_genie_name]! I can't cover this up all on my own!" ("open", "base", "worried", "mid") + ton "Please, [name_genie_tonks]! I can't cover this up all on my own!" ("open", "base", "worried", "mid") ton "I require your help..." ("upset", "base", "worried", "mid") gen "My help, you say?" ("base", xpos="far_left", ypos="head") ton "Yes..." ("base", "base", "worried", "down") @@ -58,7 +58,7 @@ label astoria_intro_E1: "\"I'm busy right now...\"": ton "Busy with what exactly?" ("open", "base", "raised", "mid") gen "...................." ("base", xpos="far_left", ypos="head") - ton "[ton_genie_name]?" ("mad", "base", "angry", "mid") + ton "[name_genie_tonks]?" ("mad", "base", "angry", "mid") gen "Please give me a minute... I'm still thinking..." ("base", xpos="far_left", ypos="head") ton "We don't have time for this!" ("normal", "base", "angry", "mid") gen "I have all the time in the world, darling..." ("base", xpos="far_left", ypos="head") @@ -168,11 +168,11 @@ label astoria_intro_E1: # gen "......................" ("base", xpos="far_left", ypos="head") # ton "Now, could we get back to discuss what I came here for in the first place?" ("base", "base", "base", "mid") # gen "Fine. I know when I'm outwitted..." ("base", xpos="far_left", ypos="head") - # ton "I will suck your delicious cock some other time, [ton_genie_name]... I promise!" ("base", "base", "base", "mid") + # ton "I will suck your delicious cock some other time, [name_genie_tonks]... I promise!" ("base", "base", "base", "mid") # ton "But right now we simply don't have time to fool around I'm afraid..." ("base", "base", "base", "mid") "\"Send Nudes.\"": - ton "Nudes, [ton_genie_name]?" ("annoyed", "base", "raised", "mid") + ton "Nudes, [name_genie_tonks]?" ("annoyed", "base", "raised", "mid") gen "Yes! Send me some nude pictures of yourself!" ("grin", xpos="far_left", ypos="head") gen "A poster, maybe?" ("grin", xpos="far_left", ypos="head") ton "Oh..." ("upset", "base", "base", "down") @@ -186,7 +186,7 @@ label astoria_intro_E1: ton "(Only you will be able to see it's true form, everyone else...)" ("open", "base", "base", "mid") ton "(Well they'll just see some dull landscape or another...)" ("normal", "base", "base", "downR") gen "So, I've got this wart on my--" ("base", xpos="far_left", ypos="head") - ton "I shall send you an owl with it tomorrow morning, [ton_genie_name]." ("base", "base", "base", "mid") + ton "I shall send you an owl with it tomorrow morning, [name_genie_tonks]." ("base", "base", "base", "mid") gen "Sweet!" ("grin", xpos="far_left", ypos="head") ton "Now, here is what I'll require your help with..." ("open", "closed", "base", "mid") @@ -260,7 +260,7 @@ label astoria_intro_E1: gen "Yes. Yes..." ("base", xpos="far_left", ypos="head") ton "Well, I should get going... there are a couple of students I'd like to question." ("open", "base", "worried", "R") gen "Good luck, then." ("base", xpos="far_left", ypos="head") - ton "Talk to you soon, [ton_genie_name]." ("normal", "base", "base", "mid") + ton "Talk to you soon, [name_genie_tonks]." ("normal", "base", "base", "mid") # Tonks leaves. call ton_walk(action="leave") @@ -298,7 +298,7 @@ label astoria_intro_E2_hermione: gen "Expelled?" ("base", xpos="far_left", ypos="head") her "Exploited!" ("angry", "squint", "worried", "mid") gen "really?" ("base", xpos="far_left", ypos="head") - her "Those are the only things that can happen with an unforgivable curse, [genie_name]!" ("open", "base", "worried", "mid") + her "Those are the only things that can happen with an unforgivable curse, [name_genie_hermione]!" ("open", "base", "worried", "mid") gen "Of course... I'm just making sure you were aware of them..." ("base", xpos="far_left", ypos="head") gen "So, how does it work exactly?" ("base", xpos="far_left", ypos="head") her "You're asking me?" ("open", "base", "base", "mid") @@ -323,7 +323,7 @@ label astoria_intro_E2_hermione: gen "so I'll need you to go undercover to find out who." ("base", xpos="far_left", ypos="head") her "Really? You're depending on me to find a criminal within our school?" ("soft", "narrow", "base", "down",cheeks="blush") gen "If it's not too much troub--" ("base", xpos="far_left", ypos="head") - her "I'd be honoured, [genie_name]!" ("scream", "closed", "base", "mid") + her "I'd be honoured, [name_genie_hermione]!" ("scream", "closed", "base", "mid") her "It's no doubt the work of one of those despicable Slytherins..." ("open", "closed", "angry", "mid") gen "I'm sure she--" ("base", xpos="far_left", ypos="head") her "She? So it's one of those Slytherin sluts?" ("open", "base", "angry", "mid") @@ -348,8 +348,8 @@ label astoria_intro_E2_hermione: her "Very well, Sir..." ("soft", "base", "base", "R") "\"No one's getting sent to Azkaban...\"": - gen "By the gods, [hermione_name], what's wrong with you?" ("base", xpos="far_left", ypos="head") - her "What are you talking about, [genie_name]?" ("open", "base", "base", "R",cheeks="blush") + gen "By the gods, [name_hermione_genie], what's wrong with you?" ("base", xpos="far_left", ypos="head") + her "What are you talking about, [name_genie_hermione]?" ("open", "base", "base", "R",cheeks="blush") her "Everyone knows that life in Azkaban is the punishment for casting an unforgivable curse..." ("open", "closed", "base", "mid") gen "I've been given special permission to punish them as I see fit." ("base", xpos="far_left", ypos="head") her "Oh..." ("annoyed", "base", "base", "mid") @@ -359,7 +359,7 @@ label astoria_intro_E2_hermione: gen "Only if you find a body..." ("base", xpos="far_left", ypos="head") her "Yay!" ("smile", "happyCl", "base", "mid") - her "Consider it done, [genie_name]!" ("open", "closed", "base", "mid") + her "Consider it done, [name_genie_hermione]!" ("open", "closed", "base", "mid") call her_walk(action="leave") @@ -829,7 +829,7 @@ label astoria_intro_E3: gen "For what you previously described as a serious crime?" ("angry", xpos="far_left", ypos="head") ton "I know! I shouldn't have rewarded her, but..." ("upset", "closed", "worried", "mid") ton "Did you see how her face lit up!" ("grin", "narrow", "raised", "mid") - ton "I thought we were supposed to encourage our students, [ton_genie_name]." ("upset", "base", "shocked", "down") + ton "I thought we were supposed to encourage our students, [name_genie_tonks]." ("upset", "base", "shocked", "down") gen "Don't put this on me..." ("base", xpos="far_left", ypos="head") ton "Fine, maybe I got a bit too excited..." ("mad", "base", "worried", "mid") @@ -843,10 +843,10 @@ label astoria_intro_E3: gen "We should have a chat about Astoria again..." ("base", xpos="far_left", ypos="head") gen "Discuss the severity of her... \"detention\"." ("base", xpos="far_left", ypos="head") - ton "Of course, [ton_genie_name]." ("annoyed", "base", "raised", "downR") + ton "Of course, [name_genie_tonks]." ("annoyed", "base", "raised", "downR") ton "Let's discuss it over a drink...{heart}" ("grin", "closed", "base", "mid") gen "Naturally..." ("base", xpos="far_left", ypos="head") - gen "Until next time, [tonks_name]." ("base", xpos="far_left", ypos="head") + gen "Until next time, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") ton "Until next time!{heart}" ("base", "happyCl", "base", "mid") call play_music("stop") diff --git a/game/scripts/characters/astoria/gifts.rpy b/game/scripts/characters/astoria/gifts.rpy index dfa56f3a..1134bfcb 100644 --- a/game/scripts/characters/astoria/gifts.rpy +++ b/game/scripts/characters/astoria/gifts.rpy @@ -36,7 +36,7 @@ label give_ast_gift(gift_item): elif ast_whoring > 5 and ast_whoring < 12: ast "Some chocolate?" (mouth="open", face="neutral") call give_gift(">You give the chocolate to Astoria...", gift_item) - ast "Thank you, [ast_genie_name]." (mouth="open", face="neutral") + ast "Thank you, [name_genie_astoria]." (mouth="open", face="neutral") ast "I don't know what I did to deserve it." (mouth="annoyed", pupils="R", face="neutral") ast "But I'm not going to say no..." (face="happy") call ast_mood(-1) @@ -109,7 +109,7 @@ label give_ast_gift(gift_item): ast "(...)" (pupils="down", face="annoyed") ast "Creating your own itch powder using household ingredients?" (mouth="open", pupils="down", face="annoyed") ast "Is the kitchen even open to students?" (pupils="down", face="annoyed") - ast "What am I supposed to do with this, [ast_genie_name]?" (face="annoyed") + ast "What am I supposed to do with this, [name_genie_astoria]?" (face="annoyed") call ast_mood(0) elif ast_whoring > 5 and ast_whoring < 12: ast "Magazines?" (mouth="open", face="annoyed") @@ -147,7 +147,7 @@ label give_ast_gift(gift_item): else: ast "Girl magazines?" (face="annoyed") call give_gift(">You give an assortment of rather girly magazines to Astoria...", gift_item) - ast "Don't I look hot enough for you [ast_genie_name]?" (mouth="open", eyes="closed", face="annoyed") + ast "Don't I look hot enough for you [name_genie_astoria]?" (mouth="open", eyes="closed", face="annoyed") ast "I'm just teasing you, I'll have it." (face="happy") call ast_mood(-1) @@ -174,7 +174,7 @@ label give_ast_gift(gift_item): call give_gift(">You give an assortment of pornographic magazines to Astoria...", gift_item) ast "I'll take it!" (mouth="grin", face="happy") ast "I'll put one in Susan's bag when she's not looking. Can't wait to see that cows face when her friends notice." (mouth="open", face="angry") - ast "Thank you, [ast_genie_name]." (face="happy") + ast "Thank you, [name_genie_astoria]." (face="happy") call ast_mood(-1) elif ast_whoring > 5 and ast_whoring < 12: ast "Porn magazines?" (face="annoyed") @@ -267,7 +267,7 @@ label give_ast_gift(gift_item): ast "Yeah, no... I'll take them but there's not going to be any dick going near these bad boys..." (face="annoyed") ast "These will be the perfect thing to fill with water and drop down the staircase..." (mouth="smile", face="angry") call give_gift(">You give the pack of Condoms to Astoria...", gift_item) - ast "Cheers for the ammo, [ast_genie_name]." (face="happy") + ast "Cheers for the ammo, [name_genie_astoria]." (face="happy") call ast_mood(-2) elif ast_whoring > 5 and ast_whoring < 12: ast "Condoms?" (face="neutral") @@ -315,7 +315,7 @@ label give_ast_gift(gift_item): ast "Lube?" (mouth="open", face="neutral") ast "I know the perfect staircase for this!" (face="happy") call give_gift(">You give the jar of lube to Astoria...", gift_item) - ast "Thank you, [ast_genie_name]." (face="happy") + ast "Thank you, [name_genie_astoria]." (face="happy") call ast_mood(-1) elif ast_whoring > 5 and ast_whoring < 12: ast "Anal Lube?" (mouth="smile", face="happy") @@ -431,7 +431,7 @@ label give_ast_gift(gift_item): elif gift_item == sexdoll_ITEM: if ast_whoring < 6: ast "A sex doll?" (face="disgusted") - ast "That's gross [ast_genie_name]!" (face="angry") + ast "That's gross [name_genie_astoria]!" (face="angry") ast "Yuck, it smells gross too!" (face="angry") call ast_mood(2) elif ast_whoring > 5 and ast_whoring < 12: diff --git a/game/scripts/characters/astoria/summon.rpy b/game/scripts/characters/astoria/summon.rpy index 52320fc2..9851fbde 100644 --- a/game/scripts/characters/astoria/summon.rpy +++ b/game/scripts/characters/astoria/summon.rpy @@ -63,9 +63,9 @@ label summon_astoria: stop music fadeout 3.0 if game.daytime: - ast "I will go back to classes then, [ast_genie_name]." ( face="neutral") + ast "I will go back to classes then, [name_genie_astoria]." ( face="neutral") else: - ast "Oh, alright. Good night, [ast_genie_name]." ( face="neutral") + ast "Oh, alright. Good night, [name_genie_astoria]." ( face="neutral") call play_sound("door") @@ -155,45 +155,45 @@ label astoria_talk: menu: "-Sir-": label .sir: - $ ast_genie_name = "Sir" - ast "Very well, [ast_genie_name]." ( face="neutral") + $ name_genie_astoria = "Sir" + ast "Very well, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Dumbledore-": label .dumbledore: - $ ast_genie_name = "Dumbledore" - ast "Of course, [ast_genie_name]." ( face="neutral") + $ name_genie_astoria = "Dumbledore" + ast "Of course, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Professor-": label .professor: - $ ast_genie_name = "Professor" - ast "Of course, [ast_genie_name]." ( face="neutral") + $ name_genie_astoria = "Professor" + ast "Of course, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Old man-": label .old_man: - $ ast_genie_name = "Old man" - ast "Alrighty, [ast_genie_name]." ( face="neutral") + $ name_genie_astoria = "Old man" + ast "Alrighty, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Genie-": label .genie: - $ ast_genie_name = "Genie" + $ name_genie_astoria = "Genie" ast "What?! You are a genie? For real?" ( face="happy") ast "That's so cool!" ( face="happy") gen "(Oh right. Nobody is supposed to know that.)" ("base", xpos="far_left", ypos="head") - gen "It's just my name, [astoria_name]..." ("base", xpos="far_left", ypos="head") - ast "Oh... okay, [ast_genie_name]." ( face="neutral") + gen "It's just my name, [name_astoria_genie]..." ("base", xpos="far_left", ypos="head") + ast "Oh... okay, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Lord Voldemort-": label .lord_voldemort: - $ ast_genie_name = "Lord Voldemort" + $ name_genie_astoria = "Lord Voldemort" ast "Voldemort? Like that mean, evil wizard?" ( face="disgusted") ast "You aren't him, are you?" ( face="disgusted") gen "No, just role-playing..." ("base", xpos="far_left", ypos="head") ast "Oh, alrighty then!" ( face="happy") - ast "[ast_genie_name]." ( face="happy") + ast "[name_genie_astoria]." ( face="happy") jump astoria_talk "-Daddy-": label .daddy: - $ ast_genie_name = "Daddy" + $ name_genie_astoria = "Daddy" ast "Daddy? Don't you think that's a little weird?" ( face="disgusted") gen "Not at all!" ("base", xpos="far_left", ypos="head") ast "*Hmph*..." ( face="angry") @@ -201,7 +201,7 @@ label astoria_talk: jump astoria_talk "-Master-" (style="disabled") if ast_whoring < 18: label .master_fail: - $ ast_genie_name = "Dumby" # Tricked + $ name_genie_astoria = "Dumby" # Tricked ast "*Ha-ha-ha-ha*-- you want me to call you master?" ( face="happy") ast "That's so dumb!" ( face="happy") ast "Oh I know!" ( face="happy") @@ -214,7 +214,7 @@ label astoria_talk: jump astoria_talk "-Master-" if ast_whoring >= 18: label .master: - $ ast_genie_name = "Master" + $ name_genie_astoria = "Master" ast "*Ha-ha-ha-ha*-- you want me to call you master?" ( face="happy") ast "That's so silly!" ( face="happy") gen "(...)" ("base", xpos="far_left", ypos="head") @@ -229,7 +229,7 @@ label astoria_talk: jump astoria_talk "-Custom Input-" if ast_whoring >= 18: - $ temp_name = renpy.input("(Please enter the name.)", ast_genie_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_genie_astoria, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name.lower() in ("sir", "dumbledore", "professor", "old man", "genie", "lord voldemort", "daddy", "master"): @@ -239,8 +239,8 @@ label astoria_talk: elif temp_name == "": jump astoria_talk else: - $ ast_genie_name = temp_name - ast "*Uhm*... ok. I will call you [ast_genie_name]." ( face="neutral") + $ name_genie_astoria = temp_name + ast "*Uhm*... ok. I will call you [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Never mind-": jump astoria_talk @@ -250,41 +250,41 @@ label astoria_talk: menu: "-Miss Greengrass-": label .miss_greengrass: - $ astoria_name = "Miss Greengrass" - ast "Sure, [ast_genie_name]." ( face="happy") + $ name_astoria_genie = "Miss Greengrass" + ast "Sure, [name_genie_astoria]." ( face="happy") jump astoria_talk "-Astoria-": label .Astoria: - $ astoria_name = "Astoria" + $ name_astoria_genie = "Astoria" ast "Finally getting rid of this formal bullshit? I approve!" ( face="happy") jump astoria_talk "-Girl-": label .girl: - $ astoria_name = "Girl" - ast "Okay, [ast_genie_name]." ( face="neutral") + $ name_astoria_genie = "Girl" + ast "Okay, [name_genie_astoria]." ( face="neutral") jump astoria_talk "-Princess-": label .princess: - $ astoria_name = "Princess" + $ name_astoria_genie = "Princess" ast "I really do feel like a princess!" ( face="happy") ast "After all, I can do whatever I want!" ( face="angry") jump astoria_talk "-Cutie-": label .cutie: - $ astoria_name = "Cutie" - ast "Fine... If you really have to, [ast_genie_name]." ( face="disgusted") + $ name_astoria_genie = "Cutie" + ast "Fine... If you really have to, [name_genie_astoria]." ( face="disgusted") jump astoria_talk "-Slave-" (style="disabled") if ast_whoring < 18: label .slave_fail: - ast "I'm not your slave, [ast_genie_name]!" ( face="angry") + ast "I'm not your slave, [name_genie_astoria]!" ( face="angry") gen "Of course you aren't! We are just playing a game, that's all..." ("base", xpos="far_left", ypos="head") ast "Well, I don't like your games!" ( face="angry") ast "Forget it!" ( face="angry") jump astoria_talk "-Slave-" if ast_whoring >= 18: label .slave: - $ astoria_name = "Slave" - ast "I'm not your slave, [ast_genie_name]!" ( face="angry") + $ name_astoria_genie = "Slave" + ast "I'm not your slave, [name_genie_astoria]!" ( face="angry") gen "Of course you aren't! We are just playing a game, that's all..." ("base", xpos="far_left", ypos="head") ast "Oh I like games!" ( face="happy") ast "Alrighty then!" ( face="happy") @@ -295,7 +295,7 @@ label astoria_talk: jump astoria_talk "-Custom Input-" if ast_whoring >= 18: - $ temp_name = renpy.input("(Please enter the name.)", astoria_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_astoria_genie, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name.lower() in ("miss greengrass", "girl", "princess", "cutie", "slave"): @@ -305,8 +305,8 @@ label astoria_talk: elif temp_name == "": jump astoria_talk else: - $ astoria_name = temp_name - ast "That's a bit much, don't you think, [ast_genie_name]?" ( face="disgusted") + $ name_astoria_genie = temp_name + ast "That's a bit much, don't you think, [name_genie_astoria]?" ( face="disgusted") gen "Not at all!" ("base", xpos="far_left", ypos="head") gen "I will only call you that when we are alone, promised!" ("base", xpos="far_left", ypos="head") ast "Well... Okay then..." ( face="neutral") diff --git a/game/scripts/characters/astoria/vars.rpy b/game/scripts/characters/astoria/vars.rpy index 0473124d..b3080db4 100644 --- a/game/scripts/characters/astoria/vars.rpy +++ b/game/scripts/characters/astoria/vars.rpy @@ -7,10 +7,10 @@ default astoria_chatted = False default astoria_outfits_schedule = True # Names -default astoria_name = "Astoria" -default ast_genie_name = "Sir" -default ast_susan_name = "Cow" -default ast_tonks_name = "Old Hag" +default name_astoria_genie = "Astoria" +default name_genie_astoria = "Sir" +default name_susan_astoria = "Cow" +default name_tonks_astoria = "Old Hag" # Stats default ast_whoring = 0 # Affection level diff --git a/game/scripts/characters/astoria/wardrobe_reactions.rpy b/game/scripts/characters/astoria/wardrobe_reactions.rpy index 3273e399..b2ecfb10 100644 --- a/game/scripts/characters/astoria/wardrobe_reactions.rpy +++ b/game/scripts/characters/astoria/wardrobe_reactions.rpy @@ -93,7 +93,7 @@ label ast_reaction_touch_fail(what): if random_number == 1: ast "Hey!" ("annoyed", "base", "angry", "mid") elif random_number == 2: - ast "I'm not your pet, [ast_genie_name]..." ("clench", "base", "base", "mid") + ast "I'm not your pet, [name_genie_astoria]..." ("clench", "base", "base", "mid") elif random_number == 3: ast "Oh sorry, my hand slipped." ("annoyed", "closed", "angry", "mid") elif random_number == 4: @@ -140,7 +140,7 @@ label ast_reaction_touch_fail(what): if random_number == 1: ast "Hey, that's private property." ("base", "narrow", "angry", "down") elif random_number == 2: - ast "Get your filthy hands off me, [ast_genie_name]." ("upset", "narrow", "base", "mid") + ast "Get your filthy hands off me, [name_genie_astoria]." ("upset", "narrow", "base", "mid") elif random_number == 3: ast "Stop it, you creep." ("annoyed", "narrow", "angry", "R") elif random_number == 4: @@ -148,7 +148,7 @@ label ast_reaction_touch_fail(what): elif random_number == 5: ast "Don't touch me..." ("clench", "base", "base", "mid") elif random_number == 6: - ast "Don't be gross, [ast_genie_name]." ("base", "base", "base", "mid") + ast "Don't be gross, [name_genie_astoria]." ("base", "base", "base", "mid") elif random_number == 7: ast "..." ("clench", "closed", "base", "mid") return @@ -182,7 +182,7 @@ label ast_reaction_unequip(item): # if item.type == "panties": # if ast_whoring > 15: # ast "You want to see my snatch?" - # ast "You got it [genie_name]!" + # ast "You got it [name_genie_hermione]!" # return @@ -245,7 +245,7 @@ label ast_reaction_equip_outfit_fail(item): return label ast_reaction_blacklist(item): - ast "Aren't you demanding too much, [ast_genie_name]?" ("annoyed", "narrow", "base", "R") + ast "Aren't you demanding too much, [name_genie_astoria]?" ("annoyed", "narrow", "base", "R") if "top" in item.blacklist and astoria.is_worn("top"): ast "My topmost garment won't work with that." ("upset", "base", "base", "mid") diff --git a/game/scripts/characters/cho/chitchats.rpy b/game/scripts/characters/cho/chitchats.rpy index aee8704b..ba365cd8 100644 --- a/game/scripts/characters/cho/chitchats.rpy +++ b/game/scripts/characters/cho/chitchats.rpy @@ -35,11 +35,11 @@ label cho_chitchat: elif random_number == 6: cho "I wish I would've been born when the Tutshill Tornadoes won the British and Irish league five times in a row." ("soft", "narrow", "base", "down") cho "Hold on, you were alive when--" ("angry", "base", "base", "down") - cho "[cho_genie_name], please tell me all you know about it!" ("smile", "wide", "base", "mid") + cho "[name_genie_cho], please tell me all you know about it!" ("smile", "wide", "base", "mid") cho "" ("base", "base", "base", "mid") elif random_number == 7: - cho "[cho_genie_name], could you please have a talk with Professor McGonagall." ("annoyed", "base", "base", "mid") + cho "[name_genie_cho], could you please have a talk with Professor McGonagall." ("annoyed", "base", "base", "mid") cho "She took ten points off Ravenclaw when I arrived late to her class after practice the other day." ("disgust", "base", "base", "R") cho "But she's never taken any points off Gryffindor even though some of their team members have arrived late multiple times." ("annoyed", "narrow", "base", "mid") @@ -115,7 +115,7 @@ label cho_chitchat: cho "*Hmph*... Jealousy, no doubt." ("open", "closed", "base", "mid", cheeks="blush") elif random_number == 2: - cho "[cho_genie_name], can you do anything about those Slytherins?" ("angry", "closed", "base", "mid") + cho "[name_genie_cho], can you do anything about those Slytherins?" ("angry", "closed", "base", "mid") cho "Ever since my match against them they don't seem to be able to take their eyes off my ass!" ("disgust", "narrow", "base", "mid") elif random_number == 3: diff --git a/game/scripts/characters/cho/common.rpy b/game/scripts/characters/cho/common.rpy index 00f6881f..d6048221 100644 --- a/game/scripts/characters/cho/common.rpy +++ b/game/scripts/characters/cho/common.rpy @@ -66,7 +66,7 @@ label end_cho_event: call music_block jump main_room_menu -define character.cho_say = Character("cho_name", show_icon="cho", dynamic=True) +define character.cho_say = Character("name_cho_genie", show_icon="cho", dynamic=True) init python in character: # Cho's name is short, therefore it needs to be initialised in character scope, diff --git a/game/scripts/characters/cho/events/favors/inspect_her_body_tier2.rpy b/game/scripts/characters/cho/events/favors/inspect_her_body_tier2.rpy index 6da0e1c7..61def0b9 100644 --- a/game/scripts/characters/cho/events/favors/inspect_her_body_tier2.rpy +++ b/game/scripts/characters/cho/events/favors/inspect_her_body_tier2.rpy @@ -25,8 +25,8 @@ label cc_pf_strip: ### Tier 2 (pre Slytherin) ### label cc_pf_strip_T2_intro_E1: - gen "It's time for your next favour, [cho_name]." ("base", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]." ("base", "base", "base", "mid") + gen "It's time for your next favour, [name_cho_genie]." ("base", xpos="far_left", ypos="head") + cho "Of course, [name_genie_cho]." ("base", "base", "base", "mid") cho "What would you like me to do?" ("soft", "base", "base", "mid") gen "First, come a bit closer..." ("base", xpos="far_left", ypos="head") cho "Very well, Sir." ("base", "base", "base", "mid") @@ -37,7 +37,7 @@ label cc_pf_strip_T2_intro_E1: call ctc gen "How often do you typically exercise, Miss Chang?" ("base", xpos="far_left", ypos="head") - cho "As often as I can, [cho_genie_name]!" ("soft", "base", "base", "mid") + cho "As often as I can, [name_genie_cho]!" ("soft", "base", "base", "mid") gen "Which is... how often, exactly? Twice a week?" ("base", xpos="far_left", ypos="head") cho "Three times a day, Sir!" ("base", "narrow", "base", "mid") with hpunch @@ -48,7 +48,7 @@ label cc_pf_strip_T2_intro_E1: cho "I wake up every morning before dawn, then run around the Quidditch pitch until the sun rises!" ("open", "narrow", "angry", "mid") cho "My body's at the absolute peak of human condition!" ("open", "narrow", "angry", "R") gen "It is quite impressive..." ("angry", xpos="far_left", ypos="head") - cho "Glad to hear it, [cho_genie_name]." ("base", "happyCl", "base", "mid") + cho "Glad to hear it, [name_genie_cho]." ("base", "happyCl", "base", "mid") gen "I assume you get complimented often?" ("base", xpos="far_left", ypos="head") cho "Sometimes..." ("soft", "base", "base", "R") gen "And I suspect you have many admirers?" ("grin", xpos="far_left", ypos="head") @@ -99,7 +99,7 @@ label cc_pf_strip_T2_intro_E1: cho "(...)" ("annoyed", "narrow", "angry", "mid") gen "Your strong advisor..." ("base", xpos="far_left", ypos="head") gen "Your guardian angel!" ("grin", xpos="far_left", ypos="head") - cho "I don't think taking off my clothes will be necessary for our training, [cho_genie_name]." ("annoyed", "narrow", "angry", "R") + cho "I don't think taking off my clothes will be necessary for our training, [name_genie_cho]." ("annoyed", "narrow", "angry", "R") gen "I'm very disappointed I've got to say..." ("base", xpos="far_left", ypos="head") gen "You aren't this shy about undressing in front of your team, are you?" ("base", xpos="far_left", ypos="head") cho "That's entirely different!" ("soft", "narrow", "angry", "mid") @@ -120,7 +120,7 @@ label cc_pf_strip_T2_intro_E1: gen "Well, yes.{w=0.3} Several.{w} But we'll get to those later..." ("base", xpos="far_left", ypos="head") cho "Later, Sir?" ("soft", "base", "raised", "mid") gen "Girl, I wouldn't be asking you this if it wasn't absolutely necessary for your training!" ("angry", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]." ("annoyed", "base", "base", "down") + cho "Of course, [name_genie_cho]." ("annoyed", "base", "base", "down") gen "All that's required of you is to co-operate..." ("base", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "base", "worried", "mid", cheeks="blush") gen "Now take off your top..." ("base", xpos="far_left", ypos="head") @@ -128,8 +128,8 @@ label cc_pf_strip_T2_intro_E1: cho "Only my top?" ("soft", "narrow", "worried", "mid") gen "Would you like to take off {b}more?{/b}" ("grin", xpos="far_left", ypos="head") cho "I didn't mean it like that!" ("angry", "narrow", "angry", "mid") - gen "[cho_name], it's only the two of us in here. No need to worry." ("base", xpos="far_left", ypos="head") - cho "I'm not worried about others, [cho_genie_name]!" ("annoyed", "narrow", "angry", "mid") + gen "[name_cho_genie], it's only the two of us in here. No need to worry." ("base", xpos="far_left", ypos="head") + cho "I'm not worried about others, [name_genie_cho]!" ("annoyed", "narrow", "angry", "mid") cho "For as long as nobody else will find out...{w} You have to promise me that, Sir!" ("soft", "narrow", "angry", "R") gen "Promised! Now take it off!" ("grin", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "mid") @@ -183,7 +183,7 @@ label cc_pf_strip_T2_intro_E1: gen "None of the other girls I get to see here has such fine...{w=1.0} contours." ("base", xpos="far_left", ypos="head") cho "Other girls?" ("soft", "wide", "base", "mid") - cho "[cho_genie_name], you aren't training anybody else in Quidditch besides me, are you?" ("soft", "narrow", "angry", "mid") + cho "[name_genie_cho], you aren't training anybody else in Quidditch besides me, are you?" ("soft", "narrow", "angry", "mid") gen "What? Of course not..." ("base", xpos="far_left", ypos="head") cho "Then which other girls are you talking about?" ("annoyed", "narrow", "angry", "mid") gen "(Shit! I better just tell her the truth.)" ("angry", xpos="far_left", ypos="head") @@ -193,7 +193,7 @@ label cc_pf_strip_T2_intro_E1: cho "Please. Why should I care what Granger does for you in here?" ("soft", "narrow", "angry", "R") cho "All she seems to care about is winning the house cup." ("open", "narrow", "angry", "R") cho "As long as you don't help any Gryffindor or Slytherin sluts win the Quidditch cup, everything will be fine." ("base", "narrow", "base", "mid") - gen "No worries, [cho_name]. I don't have plans to train other {i}sluts{/i} in quidditch." ("grin", xpos="far_left", ypos="head") + gen "No worries, [name_cho_genie]. I don't have plans to train other {i}sluts{/i} in quidditch." ("grin", xpos="far_left", ypos="head") cho "That's a relief..." ("open", "closed", "base", "mid") cho "Besides, she clearly doesn't hold a candle against me!" ("open", "narrow", "base", "R") @@ -304,7 +304,7 @@ label cc_pf_strip_T2_intro_E1: $ cho_mad_about_stripping = True # Flag that enables different dialogue that is a bit more "lewd" in the next favour repeat. cho "" ("angry", "wide", "base", "mid") # Shock gen "Now take off that bra of yours and show me those titties!" ("grin", xpos="far_left", ypos="head") - cho "[cho_genie_name], how can you talk to me like that!" ("scream", "closed", "angry", "mid", trans=hpunch) + cho "[name_genie_cho], how can you talk to me like that!" ("scream", "closed", "angry", "mid", trans=hpunch) cho "I'm your student!" ("clench", "narrow", "angry", "mid") gen "And a very pretty one at that!" ("grin", xpos="far_left", ypos="head") cho "You disgust me, sir..." ("soft", "narrow", "angry", "mid") @@ -343,13 +343,13 @@ label cc_pf_strip_T2_intro_E1: label cc_pf_strip_T2_intro_E2: cho "" ("upset", "base", "base", "R") - gen "[cho_name], to continue your training where we left off..." ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie], to continue your training where we left off..." ("base", xpos="far_left", ypos="head") gen "I'd like you to, once again, undress!" ("grin", xpos="far_left", ypos="head") cho "Of course, Sir." ("annoyed", "base", "angry", "downR") call cho_walk("desk", "base") - cho "Down to my undergarments, [cho_genie_name]?" ("soft", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) + cho "Down to my undergarments, [name_genie_cho]?" ("soft", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) cho "Or would you like me to take off all of it?" ("soft", "narrow", "base", "mid") gen "*Ehm*... All of it?" ("base", xpos="far_left", ypos="head") cho "Very well, Sir." ("soft", "closed", "base", "mid") @@ -370,7 +370,7 @@ label cc_pf_strip_T2_intro_E2: cho "" ("upset", "narrow", "angry", "mid") call ctc - cho "I'm a very good trainee, [cho_genie_name]!" ("soft", "narrow", "angry", "mid") + cho "I'm a very good trainee, [name_genie_cho]!" ("soft", "narrow", "angry", "mid") gen "Yes you are!" ("grin", xpos="far_left", ypos="head") cho "If my trainer requires me to take off my clothing and strip for him..." ("soft", "closed", "base", "mid") cho "Then I have no other choice but to indulge..." ("soft", "narrow", "base", "R") @@ -393,7 +393,7 @@ label cc_pf_strip_T2_intro_E2: # You saw Hermione strip before. if hg_strip.trigger: gen "If it's not too much trouble..." ("base", xpos="far_left", ypos="head") - cho "Of course not, [cho_genie_name]." ("soft", "closed", "base", "mid") + cho "Of course not, [name_genie_cho]." ("soft", "closed", "base", "mid") gen "(I'm having a bit of a deja vu!)" ("angry", xpos="far_left", ypos="head") # In-game font doesn't support special characters. déjà vu! else: gen "Yes please!" ("grin", xpos="far_left", ypos="head") @@ -456,7 +456,7 @@ label cc_pf_strip_T2_intro_E2: cho "Failure, and embarrassment..." ("soft", "closed", "base", "mid") cho "(Come on Cho, you can do it!!!)" ("horny", "happyCl", "worried", "mid", cheeks="blush") cho "*Ehm*..." ("horny", "narrow", "worried", "down", cheeks="blush") - cho "What would you like me to do first, [cho_genie_name]?" ("soft", "narrow", "worried", "mid", cheeks="blush") + cho "What would you like me to do first, [name_genie_cho]?" ("soft", "narrow", "worried", "mid", cheeks="blush") cho "Remove my bra..." ("soft", "narrow", "base", "mid", cheeks="blush") cho "Or take off my panties?" ("horny", "narrow", "worried", "down", cheeks="blush") @@ -481,7 +481,7 @@ label cc_pf_strip_T2_intro_E2: cho "(...)" ("annoyed", "narrow", "angry", "R") # Annoyed call play_music("stop") gen "Very well then..." ("base", xpos="far_left", ypos="head") - gen "Take off your clothes, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Take off your clothes, [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "Yes, Sir!" ("soft", "closed", "base", "mid") cho "Would you like me to take off my bra first?" ("soft", "narrow", "angry", "mid") cho "Or pull down my panties so you can get a nice look at my lower half?" ("soft", "narrow", "base", "mid") @@ -620,8 +620,8 @@ label cc_pf_strip_T2_intro_E2: cho "" ("base", "narrow", "worried", "mid", cheeks="blush") gen "Don't you think so too?{w} After all the work you put into it?" ("base", xpos="far_left", ypos="head") gen "It should be celebrated! And seen by everyone!" ("angry", xpos="far_left", ypos="head") - cho "You're making me blush, [cho_genie_name]..." ("horny", "narrow", "worried", "downR", cheeks="heavy_blush") - gen "You can do it, [cho_name]! Show me the goods!" ("grin", xpos="far_left", ypos="head") + cho "You're making me blush, [name_genie_cho]..." ("horny", "narrow", "worried", "downR", cheeks="heavy_blush") + gen "You can do it, [name_cho_genie]! Show me the goods!" ("grin", xpos="far_left", ypos="head") cho "Yes, Sir!" ("angry", "closed", "worried", "mid", cheeks="blush") cho "" ("base", "narrow", "worried", "mid", cheeks="blush") pause .4 @@ -661,7 +661,7 @@ label cc_pf_strip_T2_intro_E2: gen "*Gulp!*" ("angry", xpos="far_left", ypos="head") gen "I don't doubt it." ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]." ("base", "closed", "base", "mid") + cho "Thank you, [name_genie_cho]." ("base", "closed", "base", "mid") gen "For what?" ("base", xpos="far_left", ypos="head") cho "For teaching me." ("soft", "narrow", "worried", "downR") cho "I couldn't have imagined showing myself off like this before... but." ("horny", "narrow", "worried", "downR", cheeks="blush") @@ -689,7 +689,7 @@ label cc_pf_strip_T2_intro_E2: gen "Yes Miss Chang, great work today..." ("base", xpos="far_left", ypos="head") gen "I doubt you'll have any problems distracting anyone with a body like that." ("base", xpos="far_left", ypos="head") gen "You're dismissed." ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]." ("base", "happyCl", "base", "mid") + cho "Thank you, [name_genie_cho]." ("base", "happyCl", "base", "mid") call hide_characters hide screen bld1 with d3 @@ -743,7 +743,7 @@ label cc_pf_strip_T2_intro_E2: jump end_cho_strip_event label cc_pf_strip_T2_intro_E3: - gen "[cho_name], how would you like to do another striptease for me?" ("grin", xpos="far_left", ypos="head") + gen "[name_cho_genie], how would you like to do another striptease for me?" ("grin", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "mid") gen "You did such a phenomenal job last time!" ("grin", xpos="far_left", ypos="head") cho "Another strip show?" ("soft", "narrow", "angry", "R") @@ -917,7 +917,7 @@ label cc_pf_strip_T2_intro_E3: call ctc gen "I've got to say, once again I'm very impressed by you!" ("angry", xpos="far_left", ypos="head") - cho "Glad to hear it, [cho_genie_name]." ("smile", "narrow", "base", "mid") + cho "Glad to hear it, [name_genie_cho]." ("smile", "narrow", "base", "mid") cho "Catch!" ("base", "base", "base", "L") call nar(">Cho throws her panties onto your desk.") cho "You can keep them, for now..." ("soft", "narrow", "base", "R") @@ -981,8 +981,8 @@ label cc_pf_strip_T2_intro_E3: jump end_cho_strip_event label cc_pf_strip_T2_E3_repeat: - gen "[cho_name], why don't you come a bit closer?" ("base", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]..." ("base", "narrow", "base", "mid") + gen "[name_cho_genie], why don't you come a bit closer?" ("base", xpos="far_left", ypos="head") + cho "Of course, [name_genie_cho]..." ("base", "narrow", "base", "mid") call cho_walk("desk", "base") @@ -1045,7 +1045,7 @@ label cc_pf_strip_T2_E3_repeat: cho "" (trans=d3) call ctc - cho "Catch, [cho_genie_name]!" ("soft", "base", "base", "mid") + cho "Catch, [name_genie_cho]!" ("soft", "base", "base", "mid") call nar(">Cho throws her panties at you.") # Panties Acquired @@ -1062,7 +1062,7 @@ label cc_pf_strip_T2_E3_repeat: "\"Hop on my desk!\"": $ d_flag_01 = True - cho "Good idea, [cho_genie_name]!" ("base", "happyCl", "base", "mid") + cho "Good idea, [name_genie_cho]!" ("base", "happyCl", "base", "mid") call hide_characters show screen blkfade with d3 diff --git a/game/scripts/characters/cho/events/favors/inspect_her_body_tier2_hermione.rpy b/game/scripts/characters/cho/events/favors/inspect_her_body_tier2_hermione.rpy index f3507da0..97a02223 100644 --- a/game/scripts/characters/cho/events/favors/inspect_her_body_tier2_hermione.rpy +++ b/game/scripts/characters/cho/events/favors/inspect_her_body_tier2_hermione.rpy @@ -282,7 +282,7 @@ label cc_pf_strip_T2_E3_hermione_choices: gen "There." ("angry", xpos="far_left", ypos="head") cho "(Pervert...)" ("annoyed", "narrow", "angry", "R", cheeks="blush") cho "I think it's time for me to go now." ("soft", "closed", "angry", "mid") - cho "Until next time, [cho_genie_name]." ("soft", "narrow", "angry", "mid") + cho "Until next time, [name_genie_cho]." ("soft", "narrow", "angry", "mid") # Cho leaves. call cho_walk(action="leave") @@ -367,7 +367,7 @@ label cc_pf_strip_T2_E3_hermione_choices: with d3 hide screen blkfade - cho "I have to say, [cho_genie_name], doing these favours is fun!" ("smile", "narrow", "base", "mid", xpos="mid", ypos="base", flip=False, trans=fade) + cho "I have to say, [name_genie_cho], doing these favours is fun!" ("smile", "narrow", "base", "mid", xpos="mid", ypos="base", flip=False, trans=fade) gen "I'm glad you're enjoying yourself." ("base", xpos="far_left", ypos="head") cho "Believe me, Sir. I am." ("smile", "narrow", "angry", "mid") cho "" ("horny", "narrow", "angry", "mid") @@ -385,11 +385,11 @@ label cc_pf_strip_T2_E3_hermione_choices: if game.daytime: cho "I have to head back to classes." ("soft", "base", "base", "R") gen "I still got your--" ("base", xpos="far_left", ypos="head") - cho "See ya next time, [cho_genie_name]!" ("smile", "narrow", "angry", "mid") + cho "See ya next time, [name_genie_cho]!" ("smile", "narrow", "angry", "mid") else: cho "I have to head back to my dorms." ("soft", "base", "base", "R") gen "Don't you want your--" ("base", xpos="far_left", ypos="head") - cho "Sweet dreams, [cho_genie_name]!" ("smile", "narrow", "angry", "mid") + cho "Sweet dreams, [name_genie_cho]!" ("smile", "narrow", "angry", "mid") call cho_walk(action="leave") @@ -432,7 +432,7 @@ label cc_pf_strip_T2_E3_hermione_repeat: her "*glare*" ("angry", "base", "angry", "mid") cho "Maybe then you'd have a chance to win against me!{w} And earn some useless Gryffindor points while you're at it." ("soft", "base", "base", "L") her "I don't think that will be necessary..." ("soft", "closed", "base", "mid") - cho "Well, we all already know how this is going to turn out don't we, [cho_genie_name]?" ("soft", "base", "base", "mid") + cho "Well, we all already know how this is going to turn out don't we, [name_genie_cho]?" ("soft", "base", "base", "mid") cho "My body is still better than Miss Granger's, isn't it?" ("smile", "narrow", "angry", "L") her "" ("annoyed", "base", "angry", "mid") call ctc diff --git a/game/scripts/characters/cho/events/favors/inspect_her_body_tier3.rpy b/game/scripts/characters/cho/events/favors/inspect_her_body_tier3.rpy index 07d51fd9..1164ea81 100644 --- a/game/scripts/characters/cho/events/favors/inspect_her_body_tier3.rpy +++ b/game/scripts/characters/cho/events/favors/inspect_her_body_tier3.rpy @@ -7,8 +7,8 @@ # Notes: Cho could be naked at this point so some sounds/effects like cloth pile has been moved. label cc_pf_strip_T3_intro_E1: - gen "Come closer, [cho_name]." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]..." ("base", "narrow", "base", "mid") + gen "Come closer, [name_cho_genie]." ("base", xpos="far_left", ypos="head") + cho "Yes, [name_genie_cho]..." ("base", "narrow", "base", "mid") call cho_chibi("stand", "desk", "base") @@ -20,7 +20,7 @@ label cc_pf_strip_T3_intro_E1: menu: "\"Of course...\"": - cho "[cho_genie_name], no need to continue the pretence..." ("open", "closed", "base", "mid") + cho "[name_genie_cho], no need to continue the pretence..." ("open", "closed", "base", "mid") cho "We both know you don't really care about that stuff." ("open", "narrow", "base", "mid") cho "All you want to do is ogle at my naked body." ("soft", "narrow", "angry", "mid") cho "You're just like all the other teachers..." ("annoyed", "narrow", "base", "R") @@ -38,7 +38,7 @@ label cc_pf_strip_T3_intro_E1: cho "And I'm simply irresistible." ("smile", "narrow", "angry", "mid") gen "That you are, you little slut!" ("grin", xpos="far_left", ypos="head") gen "Now hop onto my desk so I can have a good look at you." ("grin", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "narrow", "angry", "mid") + cho "Yes, [name_genie_cho]." ("base", "narrow", "angry", "mid") # Cho hops on your desk. @@ -80,7 +80,7 @@ label cc_pf_strip_T3_intro_E1: call ctc gen "Marvellous as always." ("grin", xpos="far_left", ypos="head") - cho "I'm glad you're enjoying yourself, [cho_genie_name]..." ("base", "narrow", "angry", "down") + cho "I'm glad you're enjoying yourself, [name_genie_cho]..." ("base", "narrow", "angry", "down") gen "That I do!" ("grin", xpos="far_left", ypos="head") pause .2 @@ -92,7 +92,7 @@ label cc_pf_strip_T3_intro_E1: pause .5 gen "Such a tease, just take it all off already!" ("base", xpos="far_left", ypos="head") - cho "Patience, [cho_genie_name]..." ("base", "narrow", "base", "mid") + cho "Patience, [name_genie_cho]..." ("base", "narrow", "base", "mid") # Remove bra. if cho.is_worn("bra"): @@ -108,7 +108,7 @@ label cc_pf_strip_T3_intro_E1: if cho.is_equipped("panties"): gen "And now your panties!" ("grin", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]..." ("smile", "narrow", "base", "mid") + cho "Of course, [name_genie_cho]..." ("smile", "narrow", "base", "mid") pause .2 $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -125,7 +125,7 @@ label cc_pf_strip_T3_intro_E1: pause .5 cho "..." ("soft", "narrow", "base", "downR", cheeks="blush") - cho "Here, [cho_genie_name]... You can have them." ("horny", "narrow", "angry", "mid", cheeks="blush") + cho "Here, [name_genie_cho]... You can have them." ("horny", "narrow", "angry", "mid", cheeks="blush") pause .5 # Panties acquired message! @@ -143,7 +143,7 @@ label cc_pf_strip_T3_intro_E1: cho "" ("horny", "narrow", "base", "mid", cheeks="blush") call ctc - cho "Do you like watching me, [cho_genie_name]?" ("soft", "narrow", "base", "mid") + cho "Do you like watching me, [name_genie_cho]?" ("soft", "narrow", "base", "mid") cho "You should know, Sir, I'm {b}incredibly{/b} thankful for your help." ("open", "closed", "base", "mid") cho "Thanks to you, I get to do what I love..." ("smile", "narrow", "base", "mid") gen "Showing yourself off?" ("base", xpos="far_left", ypos="head") @@ -215,7 +215,7 @@ label cc_pf_strip_T3_intro_E1: $ cc_strip_no_snape = True # throwaway var used only in the next event. cho "What?!" ("clench", "wide", "base", "mid", cheeks="blush") cho "You can't be serious!" ("angry", "base", "angry", "mid") # angry - cho "[cho_genie_name], thanks to him we almost lost the match!" ("open", "narrow", "angry", "mid") + cho "[name_genie_cho], thanks to him we almost lost the match!" ("open", "narrow", "angry", "mid") cho "He gave those idiots a luck potion, remember?" ("open", "closed", "angry", "mid") cho "You should have thrown him out for that!" ("clench", "narrow", "angry", "mid") gen "All I care about is that he and his band of greenhorns lost the match against us..." ("base", xpos="far_left", ypos="head") @@ -246,9 +246,9 @@ label cc_pf_strip_T3_intro_E1: gen "How about we call her on your next visit, then you can ask her yourself..." ("base", xpos="far_left", ypos="head") cho "I suppose we could do that..." ("normal", "base", "base", "downR", cheeks="blush") gen "Splendid!" ("grin", xpos="far_left", ypos="head") - gen "That should be all for today, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "That should be all for today, [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "You're dismissed..." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "happyCl", "base", "mid") + cho "Yes, [name_genie_cho]." ("base", "happyCl", "base", "mid") # Cho hops off your desk. call hide_characters @@ -274,7 +274,7 @@ label cc_pf_strip_T3_intro_E1: else: cho "I'll head back to our dorms, then." ("soft", "narrow", "base", "mid") - cho "Until next time, [cho_genie_name]." ("base", "narrow", "base", "mid", cheeks="blush") + cho "Until next time, [name_genie_cho]." ("base", "narrow", "base", "mid", cheeks="blush") # Cho leaves. call cho_walk(action="leave") @@ -290,7 +290,7 @@ label cc_pf_strip_T3_intro_E1: label cc_pf_strip_T3_intro_E2: gen "Alright, let's do this again." ("base", xpos="far_left", ypos="head") gen "We're gonna get your teacher up here -- and you'll strip for us, understood?" ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "Yes, [name_genie_cho]." ("smile", "base", "base", "mid") gen "You might want to change into your school clothing before she gets here..." ("base", xpos="far_left", ypos="head") cho "Of course." ("base", "happyCl", "base", "mid") @@ -310,22 +310,22 @@ label cc_pf_strip_T3_intro_E2: hide screen blkfade cho "*Ehm*..." ("quiver", "narrow", "base", "downR", xpos="mid", ypos="base", trans=fade) - cho "The teacher you're about to summon, [cho_genie_name]..." ("open", "narrow", "base", "mid") + cho "The teacher you're about to summon, [name_genie_cho]..." ("open", "narrow", "base", "mid") cho "You're talking about Professor Tonks, right?" ("soft", "narrow", "base", "mid") # suspicious gen "Oh... of course." ("base", xpos="far_left", ypos="head") cho "Well then, I'm ready." ("base", "base", "base", "mid") gen "Ready to strip for your teacher?" ("grin", xpos="far_left", ypos="head") - cho "I'm well aware of what I'm about to do, [cho_genie_name], and I'm not going to falter." ("annoyed", "narrow", "angry", "mid") + cho "I'm well aware of what I'm about to do, [name_genie_cho], and I'm not going to falter." ("annoyed", "narrow", "angry", "mid") cho "Besides, it's not like I have any bits that she doesn't..." ("open", "closed", "base", "mid") gen "Not even trying to play coy anymore, are you?" ("base", xpos="far_left", ypos="head") cho "Why should I? It's good practice." ("open", "narrow", "raised", "down") # confident - gen "Great positive thinking, [cho_name].{w=0.8} You'll make it far with that mindset." ("grin", xpos="far_left", ypos="head") - cho "It's no big deal for me, [cho_genie_name]." ("base", "narrow", "base", "mid") + gen "Great positive thinking, [name_cho_genie].{w=0.8} You'll make it far with that mindset." ("grin", xpos="far_left", ypos="head") + cho "It's no big deal for me, [name_genie_cho]." ("base", "narrow", "base", "mid") cho "I'm not as prude and buttoned up as Hermione, you know..." ("soft", "narrow", "base", "mid") cho "And I'll finally get to know how Professor Tonks helped us during the Slytherin match!" ("base", "happyCl", "base", "mid") gen "Oh boy, you're in for a treat!" ("grin", xpos="far_left", ypos="head") gen "Just wait here at my desk while I summon her..." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "narrow", "base", "mid") + cho "Yes, [name_genie_cho]." ("base", "narrow", "base", "mid") call play_music("stop") call hide_characters @@ -1045,8 +1045,8 @@ label cc_pf_strip_T3_intro_E2: # Tonks gives Cho a demonstration of her Metamorphmagi ability. label cc_pf_strip_T3_intro_E3: - gen "[cho_name], why don't we summon your teacher again?" ("base", xpos="far_left", ypos="head") - cho "So we can give you another show, [cho_genie_name]?" ("soft", "narrow", "angry", "mid") # annoyed + gen "[name_cho_genie], why don't we summon your teacher again?" ("base", xpos="far_left", ypos="head") + cho "So we can give you another show, [name_genie_cho]?" ("soft", "narrow", "angry", "mid") # annoyed gen "Well, if you insist on it..." ("grin", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "angry", "mid", cheeks="blush") gen "Surely you haven't forgotten the actual reason we summoned her..." ("base", xpos="far_left", ypos="head") @@ -1059,7 +1059,7 @@ label cc_pf_strip_T3_intro_E3: gen "No more Snivellus... got it..." ("base", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "angry", "mid") gen "Wait here at my desk while I summon your Teacher." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("soft", "narrow", "worried", "R", cheeks="blush") + cho "Yes, [name_genie_cho]." ("soft", "narrow", "worried", "R", cheeks="blush") call hide_characters hide screen bld1 @@ -2449,7 +2449,7 @@ label cc_pf_strip_T3_intro_E3: show cho_strip_personal_t3_e3_on_knees cho_eyes_wide_down cho_mouth_open as cg with d3 - cho "C-cum for me, [cho_genie_name]!" # Deliberate; Tonks will mention Cho's choice of calling him by nickname later + cho "C-cum for me, [name_genie_cho]!" # Deliberate; Tonks will mention Cho's choice of calling him by nickname later gen "Aaargh!!" @@ -2793,20 +2793,20 @@ label cc_pf_strip_T3_intro_E3: ton "Great job Miss Chang... I'm sure no man will be able to resist you now...{nw}" ("grin", "narrow", "base", "L", cheeks="blush") ton "Great job Miss Chang... I'm sure no man will be able to resist you now...{fast} Wouldn't you agree, professor?" ("grin", "narrow", "base", "mid", cheeks="blush") gen "What? Oh yes, sure! Nice job!" ("grin", xpos="far_left", ypos="head") - cho "Thanks, [cho_genie_name]..." ("base", "narrow", "base", "down", cheeks="blush") + cho "Thanks, [name_genie_cho]..." ("base", "narrow", "base", "down", cheeks="blush") - if cho_genie_name in ("Sir", "Professor"): #Acceptable names that she should be using + if name_genie_cho in ("Sir", "Professor"): #Acceptable names that she should be using ton "If you ever have any questions about men, you know where my door is..." ("base", "narrow", "base", "L", cheeks="blush", hair="neutral") gen "Got it." ("base", xpos="far_left", ypos="head") ton "I was referring to Miss Chang." ("soft", "narrow", "base", "mid", cheeks="blush") gen "Oh... Yeah, me too." ("base", xpos="far_left", ypos="head") - elif cho_genie_name == "Dumbledore": + elif name_genie_cho == "Dumbledore": ton "Using first names already, I see..." ("soft", "base", "raised", "L", cheeks="blush") cho "I mean, Sir!" ("angry", "base", "base", "stare", cheeks="heavy_blush") ton "Don't worry Miss Chang, if that's what he would like you to call him, then I won't tell anyone." ("base", "wink", "base", "L", cheeks="blush") ton "" ("base", "base", "base", "L", cheeks="blush") cho "*Ehm*... Thank you, Professor." ("disgust", "narrow", "base", "down", cheeks="heavy_blush") - elif cho_genie_name == "Coach": + elif name_genie_cho == "Coach": ton "So you do call him coach!" ("grin", "narrow", "shocked", "L", cheeks="blush") cho "Oh, *Ehm*... Well..." ("angry", "narrow", "base", "L", cheeks="heavy_blush") ton "Well, seeing that he's helping you, it's only appropriate." ("base", "narrow", "base", "L", cheeks="blush") @@ -3055,8 +3055,8 @@ label cc_pf_strip_T3_intro_E3: jump end_cho_strip_event label cc_pf_strip_T3_repeat: - gen "I'm in the mood for another strip-show, [cho_name]." ("base", xpos="far_left", ypos="head") - cho "Of course you are, [cho_genie_name]." ("base", "narrow", "raised", "mid") + gen "I'm in the mood for another strip-show, [name_cho_genie]." ("base", xpos="far_left", ypos="head") + cho "Of course you are, [name_genie_cho]." ("base", "narrow", "raised", "mid") cho "Who's going to watch me this time?" ("soft", "narrow", "base", "mid") gen "*Hmm*... how about--" ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/cho/events/favors/inspect_her_body_tier3_tonks.rpy b/game/scripts/characters/cho/events/favors/inspect_her_body_tier3_tonks.rpy index 13db40c0..2ee16f58 100644 --- a/game/scripts/characters/cho/events/favors/inspect_her_body_tier3_tonks.rpy +++ b/game/scripts/characters/cho/events/favors/inspect_her_body_tier3_tonks.rpy @@ -10,7 +10,7 @@ label cc_pf_strip_T3_tonks: with d5 pause 1 - $ tonks_cho_name = renpy.random.choice( ("Sweetie", "babe", "Honey") ) + $ name_cho_tonks = renpy.random.choice( ("Sweetie", "babe", "Honey") ) # All character's clothes get saved in case we need to change any. # Cho and Tonks won't change their clothes. @@ -46,7 +46,7 @@ label cc_pf_strip_T3_tonks: cho "Though I'd suggest to keep it a secret from Granger at all cost!" ("mad", "narrow", "angry", "mid") cho "I'm confident she'd come up with some annoying rule to try and keep her teacher in check..." ("annoyed", "narrow", "angry", "mid") gen "Right..." ("base", xpos="far_left", ypos="head") - cho "Well, I'm glad to know that you trust me with something like this, [cho_genie_name]." ("smile", "happyCl", "base", "mid") + cho "Well, I'm glad to know that you trust me with something like this, [name_genie_cho]." ("smile", "happyCl", "base", "mid") cho "It'd be quite difficult for her to pretend to be someone else, if everybody knew about it." ("annoyed", "base", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") cho "I sure am glad there isn't another student with her abilities..." ("annoyed", "narrow", "base", "R") @@ -58,12 +58,12 @@ label cc_pf_strip_T3_tonks: cho "..." ("annoyed", "narrow", "base", "mid") gen "Let's just call her up here for now..." ("base", xpos="far_left", ypos="head") gen "I'm sure she'll make it well worth it for you to continue keeping her secret safe." ("grin", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]..." ("smile", "narrow", "base", "mid", cheeks="blush") #glancing away #blush + cho "Yes, [name_genie_cho]..." ("smile", "narrow", "base", "mid", cheeks="blush") #glancing away #blush # Repeat else: gen "Let me summon her real quick." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "base", "base", "mid") + cho "Yes, [name_genie_cho]." ("base", "base", "base", "mid") call play_music("stop") call hide_characters @@ -136,7 +136,7 @@ label cc_pf_strip_T3_tonks: ton "But I'll give you a good view at the very least...{heart}" ("horny", "narrow", "base", "mid", hair="horny") ton "Well in that case we shouldn't keep him waiting, should we?" ("horny", "narrow", "base", "L", hair="horny") - ton "After you, [tonks_cho_name]." ("horny", "narrow", "base", "L", hair="horny") + ton "After you, [name_cho_tonks]." ("horny", "narrow", "base", "L", hair="horny") call play_music("stop") # Cho and Tonks hop onto the desk. @@ -396,7 +396,7 @@ label .spank_cho: gen "Miss Tonks, If you may..." ("grin", xpos="far_left", ypos="head") ton "With pleasure!" ("grin", "narrow", "angry", "mid", hair="horny") cho "But-- Professor Tonks!" ("clench", "base", "worried", "L", cheeks="heavy_blush") - ton "Don't worry, [tonks_cho_name]. You'll learn to love it! {heart}" ("horny", "narrow", "base", "L", hair="horny") + ton "Don't worry, [name_cho_tonks]. You'll learn to love it! {heart}" ("horny", "narrow", "base", "L", hair="horny") cho "" ("horny", "narrow", "worried", "mid", cheeks="heavy_blush") ton "Now, turn around for me, please." ("soft", "narrow", "base", "L", hair="horny") cho "..." ("clench", "narrow", "worried", "down", cheeks="heavy_blush") @@ -439,7 +439,7 @@ label .spank_cho: call slap_her ton "Surely a bit of a spanking isn't enough for you to..." ("horny", "narrow", "base", "mid", hair="horny") cho "..." ("clench", "narrow", "worried", "down", cheeks="blush") - ton "Ask me nicely and I'll do it again, [tonks_cho_name]." ("crooked_smile", "narrow", "base", "mid", hair="horny") + ton "Ask me nicely and I'll do it again, [name_cho_tonks]." ("crooked_smile", "narrow", "base", "mid", hair="horny") gen "Go on, Cho... Ask your teacher to spank you." ("grin", xpos="far_left", ypos="head") cho "..." ("disgust", "narrow", "worried", "downR", cheeks="heavy_blush") cho "Please spank me again, Professor." ("soft", "narrow", "worried", "R", cheeks="heavy_blush") @@ -487,7 +487,7 @@ label .strip_tonks: ton "Cho, would you mind if I stood between you two?" ("open", "narrow", "base", "L", hair="horny") ton "I'd like to give the headmaster a better view of my body." ("base", "narrow", "base", "mid", hair="horny") cho "Not at all, Professor." ("smile", "narrow", "base", "L", cheeks="blush") - ton "Thank you, [tonks_cho_name]." ("soft", "narrow", "shocked", "L", hair="horny") + ton "Thank you, [name_cho_tonks]." ("soft", "narrow", "shocked", "L", hair="horny") call hide_characters hide screen bld1 with d5 @@ -570,7 +570,7 @@ label .strip_tonks: # Remove Bra and Panties. if tonks.is_worn("bra") or tonks.is_worn("panties"): ton "*Hmm*... It's been a while since I had to remove underwear." ("annoyed", "narrow", "base", "down", hair="horny") - ton "Help me take them off, [tonks_cho_name]." ("base", "narrow", "base", "down", hair="horny") + ton "Help me take them off, [name_cho_tonks]." ("base", "narrow", "base", "down", hair="horny") cho "Of course..." ("smile", "narrow", "base", "down", cheeks="blush") cho "" ("horny", "narrow", "base", "down", cheeks="blush", xpos=315, ypos="base", flip=False, trans=d5) # Cho moves closer to Tonks. @@ -680,7 +680,7 @@ label .spank_tonks: gen "Miss Chang, would you be so kind and slap your teacher's ass for me?" ("grin", xpos="far_left", ypos="head") ton "" ("base", "narrow", "base", "mid", hair="horny") cho "Yes, Sir." ("open", "narrow", "angry", "mid", cheeks="blush") - ton "Do it, [tonks_cho_name]!" ("base", "narrow", "base", "L", hair="horny") + ton "Do it, [name_cho_tonks]!" ("base", "narrow", "base", "L", hair="horny") pause .2 # Tonks turns around. @@ -708,7 +708,7 @@ label .spank_tonks: call slap_her ton "!!!" ("clench", "narrow", "base", "ahegao", hair="horny", cheeks="heavy_blush") cho "Good enough for you, Professor?" ("open", "narrow", "angry", "L", cheeks="blush") - ton "*Ah*...{w=0.4} Yes, [tonks_cho_name]... I'd say that was quite--" ("open", "narrow", "worried", "R", hair="horny") + ton "*Ah*...{w=0.4} Yes, [name_cho_tonks]... I'd say that was quite--" ("open", "narrow", "worried", "R", hair="horny") cho "" ("annoyed", "narrow", "angry", "down", cheeks="blush") call slap_her ton "" ("clench", "narrow", "base", "ahegao", hair="scared") @@ -1211,8 +1211,8 @@ label .hermione_E1: pause .8 # Save custom Hermione name - $ temp_name = hermione_name - $ hermione_name = "Tonks" + $ temp_name = name_hermione_genie + $ name_hermione_genie = "Tonks" # Transforms into Hermione call play_sound("magic") @@ -1371,7 +1371,7 @@ label .hermione_E1: ton "Well then... this should be enough to last me for the day... Hopefully..." ("grin", "narrow", "base", "mid") # Reset - $ hermione_name = temp_name + $ name_hermione_genie = temp_name # End Event. jump cc_pf_strip_T3_tonks.end_event diff --git a/game/scripts/characters/cho/events/favors/suck_it.rpy b/game/scripts/characters/cho/events/favors/suck_it.rpy index db0542b5..9c3c4be8 100644 --- a/game/scripts/characters/cho/events/favors/suck_it.rpy +++ b/game/scripts/characters/cho/events/favors/suck_it.rpy @@ -36,7 +36,7 @@ label cc_pf_blowjob: label cc_pf_blowjob_T3_intro_E1: if cho_bj_choice == None: - gen "[cho_name], ready to reward your coach for a job well done?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie], ready to reward your coach for a job well done?" ("base", xpos="far_left", ypos="head") cho "Of course... a deal's a deal." ("open", "narrow", "base", "mid") gen "Great, in that case I think a blowjob is in order!" ("base", xpos="far_left", ypos="head") cho "A blowjob?!!" ("disgust", "wide", "base", "mid") @@ -154,9 +154,9 @@ label cc_pf_blowjob_T3_intro_E1: $ camera.set_image("up_annoyed") - cho "[cho_genie_name]!"# Stops moving hand #Annoyed #Looks up at genie + cho "[name_genie_cho]!"# Stops moving hand #Annoyed #Looks up at genie gen "What?" - gen "You're doing a great job [cho_name], keep it going just like that..." + gen "You're doing a great job [name_cho_genie], keep it going just like that..." $ camera.set_image("mid_annoyed") @@ -271,8 +271,8 @@ label cc_pf_blowjob_1: else: $ camera.set_image("up_worried") - cho "[cho_genie_name]!" #shocked - gen "It's time to push those limits [cho_name]... we've been over this." + cho "[name_genie_cho]!" #shocked + gen "It's time to push those limits [name_cho_genie]... we've been over this." gen "Open up..." $ camera.set_imagepath("cho_bj/kneel/") @@ -308,21 +308,21 @@ label cc_pf_blowjob_1: if cho_bj_choice == "failed": cho "It still won't fit!" - gen "[cho_name]... You're here to push your limits, stop with the whining!" + gen "[name_cho_genie]... You're here to push your limits, stop with the whining!" $ camera.set_image("up_worried") - cho "I-I'm sorry [cho_genie_name]..." + cho "I-I'm sorry [name_genie_cho]..." cho "I... I can't...{w=0.4} It's all happening too fast!" - gen "[cho_name]..." + gen "[name_cho_genie]..." $ camera.set_image("mid_worried") cho "I'm sorry!" #blush, looking away $ cho_mood += 3 # Annoyed that you failed it again, sucker else: cho "It won't fit!" - gen "[cho_name]... You're here to push your limits." + gen "[name_cho_genie]... You're here to push your limits." $ camera.set_image("up_worried") - cho "I-I'm sorry [cho_genie_name]..." + cho "I-I'm sorry [name_genie_cho]..." cho "I... need some time to think..." - gen "[cho_name]..." + gen "[name_cho_genie]..." $ camera.set_image("mid_worried") cho "I'm sorry!" #blush, looking away @@ -395,11 +395,11 @@ label cc_pf_blowjob_1: $ camera.set_image("cho_hj mid") gen "Begging to receive her coach's cum." - gen "Now, put your mouth on it [cho_name]..." + gen "Now, put your mouth on it [name_cho_genie]..." $ camera.set_image("up_wide") #Cho stops handjob cho "But I thought..." - gen "If you want to outdo your competition then you need to push through your limits [cho_name]..." + gen "If you want to outdo your competition then you need to push through your limits [name_cho_genie]..." $ camera.set_image("up_worried") gen "Give it a little lick, I promise it won't bite." cho "..." #Annoyed @@ -424,15 +424,15 @@ label cc_pf_blowjob_1: call ctc - gen "*Ah* Good job [cho_name]..." + gen "*Ah* Good job [name_cho_genie]..." gen "I suppose that will be enough for n--" $ camera.set_image("up_annoyed", trans=d3) cho "No! I want--" $ camera.set_image("away_blush") - cho "I mean... {w=0.5} you deserve your reward [cho_genie_name]." + cho "I mean... {w=0.5} you deserve your reward [name_genie_cho]." cho "At least let me finish you off with my hand..." $ camera.set_image("mid_blush") - gen "That's what I wanted to hear [cho_name], you're learning..." + gen "That's what I wanted to hear [name_cho_genie], you're learning..." gen "Get going then..." $ camera.set_image("cho_hj mid blush") @@ -444,7 +444,7 @@ label cc_pf_blowjob_1: call ctc gen "*Ah*...{w=0.4} Not bad... Not bad at all..." - gen "Now... a little bit faster [cho_name]..." + gen "Now... a little bit faster [name_cho_genie]..." gen "I think you too deserve a reward..." $ camera.set_image("cho_hj mid blush fast") @@ -452,14 +452,14 @@ label cc_pf_blowjob_1: cho "Okay..." #Blush $ camera.set_image("cho_hj up blush") - cho "[cho_genie_name]... Will you tell me when--" - gen "Faster [cho_name]!" + cho "[name_genie_cho]... Will you tell me when--" + gen "Faster [name_cho_genie]!" cho "Oh... of course!" $ camera.set_image("cho_hj mid blush fast") call ctc - gen "(Now that's my [cho_name]!)" + gen "(Now that's my [name_cho_genie]!)" gen "(I'm at my limit, should I warn her?)" menu: @@ -470,7 +470,7 @@ label cc_pf_blowjob_1: call ctc - gen "Get ready for your reward [cho_name]!" + gen "Get ready for your reward [name_cho_genie]!" menu: "-Cum on her face-": $ camera.set(zoom=0.45, pos=(150, 70), t=2.0) @@ -534,16 +534,16 @@ label cc_pf_blowjob_1: cho "So much..." #blush gen "That...{w=0.4} was...{w=0.4} amazing!" - gen "That is some talent you have there [cho_name]..." + gen "That is some talent you have there [name_cho_genie]..." $ camera.set_image("dreamy_cum_tits") cho "...{heart}{heart}" #blush #looking at penis - gen "[cho_name]?" + gen "[name_cho_genie]?" $ camera.set_image("dreamy_up_cum_tits") - cho "Oh... Thank you [cho_genie_name]." #looks up at genie + cho "Oh... Thank you [name_genie_cho]." #looks up at genie gen "Now, get on your feet and let me have a proper look at you..." $ camera.set(zoom=0.6, pos=(220, 180), t=5.0, pause=True) @@ -559,7 +559,7 @@ label cc_pf_blowjob_1: $ camera.set_image("cho_hj up blush") - cho "[cho_genie_name], are you about to--" + cho "[name_genie_cho], are you about to--" gen "*ARGH*!" @@ -595,11 +595,11 @@ label cc_pf_blowjob_1: # After CG, in the office. if warned_her: - gen "Well done [cho_name], you've started pushing those limits on your own." ("base", xpos="far_left", ypos="head") + gen "Well done [name_cho_genie], you've started pushing those limits on your own." ("base", xpos="far_left", ypos="head") gen "Also, You've got a little something right there..." ("base", xpos="far_left", ypos="head") - cho "Very funny [cho_genie_name]..." ("clench", "narrow", "base", "mid", cheeks="blush", trans=d3) + cho "Very funny [name_genie_cho]..." ("clench", "narrow", "base", "mid", cheeks="blush", trans=d3) gen "Your confidence is showing itself more and more every day." ("base", xpos="far_left", ypos="head") - cho "I... {w=0.5} You deserved it [cho_genie_name]...{w=0.5} for helping me this far..." ("upset", "narrow", "base", "downR", cheeks="blush") + cho "I... {w=0.5} You deserved it [name_genie_cho]...{w=0.5} for helping me this far..." ("upset", "narrow", "base", "downR", cheeks="blush") cho "For teaching me... all this stuff..." ("angry", "closed", "base", "mid", cheeks="blush") #Blush gen "(I'm a bloody saint I've waited that long...)" ("base", xpos="far_left", ypos="head") gen "You're very welcome." ("base", xpos="far_left", ypos="head") @@ -642,7 +642,7 @@ label cc_pf_blowjob_1: call cho_walk(action="leave") - gen "[cho_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]!" ("base", xpos="far_left", ypos="head") gen "......" ("base", xpos="far_left", ypos="head") gen "(Probably should've asked her to clean herself first...)" ("base", xpos="far_left", ypos="head") gen "(Oh well, she'll find out one way or another.)" ("base", xpos="far_left", ypos="head") @@ -650,14 +650,14 @@ label cc_pf_blowjob_1: jump end_cc_pf_blowjob label cc_pf_blowjob_T3_E2: - gen "Ready for an oral exam [cho_name]?" ("base", xpos="far_left", ypos="head") + gen "Ready for an oral exam [name_cho_genie]?" ("base", xpos="far_left", ypos="head") cho "A what?" ("open", "base", "raised", "mid") gen "Time to put that mouth to good use..." ("base", xpos="far_left", ypos="head") cho "My mouth to--" ("horny", "base", "base", "downR", cheeks="heavy_blush") #Blush gen "Any problems?" ("base", xpos="far_left", ypos="head") - cho "No... of course not [cho_genie_name]..." ("normal", "base", "base", "mid", cheeks="blush") + cho "No... of course not [name_genie_cho]..." ("normal", "base", "base", "mid", cheeks="blush") gen "Excellent!" ("base", xpos="far_left", ypos="head") - cho "Just...{w=0.4} tell me what to do [cho_genie_name]..." ("open", "base", "base", "R", cheeks="blush") + cho "Just...{w=0.4} tell me what to do [name_genie_cho]..." ("open", "base", "base", "R", cheeks="blush") call cho_walk("desk_close", "base") pause 1.0 @@ -695,7 +695,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("up_blush") - cho "Yes, [cho_genie_name]..." + cho "Yes, [name_genie_cho]..." $ camera.set_image("cho_hj mid") @@ -718,7 +718,7 @@ label cc_pf_blowjob_T3_E2: $ renpy.sound.play("sounds/cloth_sound3.ogg") $ camera.set_image("topless_mid", trans=Fade(0.5, 2.0, 0.5)) - gen "Excellent... Now continue stroking, [cho_name]." + gen "Excellent... Now continue stroking, [name_cho_genie]." $ camera.set_image("topless_up") @@ -739,11 +739,11 @@ label cc_pf_blowjob_T3_E2: cho "(I can already taste the victory!)" - gen "You're being awfully quiet [cho_name]... it's very unlike you..." + gen "You're being awfully quiet [name_cho_genie]... it's very unlike you..." $ camera.set_image("topless_away_blush") - cho "S-Sorry [cho_genie_name]..." + cho "S-Sorry [name_genie_cho]..." $ camera.set_image("topless_up_worried") @@ -752,7 +752,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_away_blush") - cho "I...{w=0.4} I'm sorry I doubted your methods at first [cho_genie_name]..." + cho "I...{w=0.4} I'm sorry I doubted your methods at first [name_genie_cho]..." gen "I knew you'd come around..." $ camera.set_image("topless_up_blush") @@ -795,7 +795,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_away_blush") - cho "Sorry, you're right [cho_genie_name]..." + cho "Sorry, you're right [name_genie_cho]..." cho "Just...{w=0.4} Tell me what to do..." #blush $ camera.set_image("topless_mid") @@ -804,7 +804,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_up") - cho "I...{w=0.4} Yes, [cho_genie_name]..." #Looks at genie + cho "I...{w=0.4} Yes, [name_genie_cho]..." #Looks at genie $ camera.set_image("topless_mid_blush") @@ -820,7 +820,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_up") - cho "How...{w=0.4} how was that [cho_genie_name]?" + cho "How...{w=0.4} how was that [name_genie_cho]?" gen "Good start, but you shouldn't close your eyes... And keep going until you find your limit, then hold it there for a bit..." gen "The further down the better..." @@ -831,10 +831,10 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("cho_bj topless suck closed fail") pause 0.5 - gen "Eyes open, [cho_name]..." + gen "Eyes open, [name_cho_genie]..." $ camera.set_image("cho_bj topless suck closed fail exit") - cho "Oh!{w=0.4} Sorry [cho_genie_name]!" + cho "Oh!{w=0.4} Sorry [name_genie_cho]!" $ camera.set_image("topless_up_blush") @@ -850,7 +850,7 @@ label cc_pf_blowjob_T3_E2: #Cho goes in again with her eyes open this time, her mouth spreading open as it slowly goes over the tip." #As her mouth continues past the tip she stops and looks up at genie for some approval but he stays silent, her eyes closes slightly as she resumes by slowly going down further - gen "*Ah*... That's it...{w=0.5} Keep going, [cho_name]!" #This line should auto play as she goes further down + gen "*Ah*... That's it...{w=0.5} Keep going, [name_cho_genie]!" #This line should auto play as she goes further down #As she continues further down, her pupils move up a bit more until she hits her gag reflex (slow zoom in effect) #Quickly retracting she moves her head back and her eyes open again (Loop going backwards fast if animated, zoom effect quickly goes back to normal) @@ -872,7 +872,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_up") - cho "Was...{w=0.4} Was that better, [cho_genie_name]?" #Cho looks up at genie + cho "Was...{w=0.4} Was that better, [name_genie_cho]?" #Cho looks up at genie gen "Excellent!{w=0.3} Although... maybe a bit too far... You barely held it there for a second." $ camera.set_image("topless_away_blush") @@ -880,12 +880,12 @@ label cc_pf_blowjob_T3_E2: cho "Oh... Yes, I thought it might've been..." gen "(This girl is like a on and off switch...)" gen "In any case... I think you got it..." - gen "So... Let's get that head bobbing, [cho_name]!" + gen "So... Let's get that head bobbing, [name_cho_genie]!" $ camera.set_image("topless_away_pout") #Cho looks back down at dick - cho "Are...{w=0.4} are you going to cum on me again [cho_genie_name]?" + cho "Are...{w=0.4} are you going to cum on me again [name_genie_cho]?" gen "I wouldn't worry about that yet... just focus on your task..." $ camera.set_image("topless_mid") @@ -922,7 +922,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("cho_hj topless up blush") call ctc - cho "Am I doing it right, [cho_genie_name]?" + cho "Am I doing it right, [name_genie_cho]?" gen "Yes, It feels--" $ camera.set_imagepath("cho_bj/bj/") @@ -958,18 +958,18 @@ label cc_pf_blowjob_T3_E2: call ctc - gen "You--{w=0.4} you're a fast learner [cho_name]..." + gen "You--{w=0.4} you're a fast learner [name_cho_genie]..." $ camera.set_image("cho_bj topless suck deep") #Faster Blowjob cho "{heart}{heart}{heart}" - gen "[cho_name], if you do that-- oh fuck!" + gen "[name_cho_genie], if you do that-- oh fuck!" menu: "-Warn her-": - gen "[cho_name]... I think..." + gen "[name_cho_genie]... I think..." gen "There's....{w=0.5} one more thing...{w=0.5} I could teach you today..." $ camera.set_image("cho_bj topless suck medium up") @@ -1034,10 +1034,10 @@ label cc_pf_blowjob_T3_E2: call cho_walk("door", "base") cho "{size=-3}Who does he think I am?{w=0.4} I'm not Hermione!{/size}" ("annoyed", "closed", "angry", "mid", cheeks="blush", flip=True, trans=d3) - gen "[cho_name]." ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_chibi("stand", "door", flip=False) - cho "I don't want to hear any of your excuses [cho_genie_name]!" ("scream", "narrow", "angry", "mid", cheeks="blush", flip=False, trans=d3) + cho "I don't want to hear any of your excuses [name_genie_cho]!" ("scream", "narrow", "angry", "mid", cheeks="blush", flip=False, trans=d3) call cho_chibi("stand", "door", flip=True) hide cho_main with d5 @@ -1085,7 +1085,7 @@ label cc_pf_blowjob_T3_E2: #Cho stops for a second to consider and then starts going again call ctc - gen "*ah* That's it [cho_name]!" + gen "*ah* That's it [name_cho_genie]!" $ camera.set_image("cho_bj topless suck closed") @@ -1117,7 +1117,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_away_blush_cum_mouth") cho "(Although...{w=0.4} it doesn't taste as bad as I--)" - gen "Nicely done [cho_name], I knew you'd have it in you!" + gen "Nicely done [name_cho_genie], I knew you'd have it in you!" # Make her lisp the name, if the name is unsupported fallback and replace 's' occurences with 'sh' $ _replacement_names = { @@ -1128,7 +1128,7 @@ label cc_pf_blowjob_T3_E2: "coach": "choach" } - $ _name = cho_genie_name.replace(cho_genie_name, _replacement_names.get(cho_genie_name, cho_genie_name.replace("s", "sh"))) + $ _name = name_genie_cho.replace(name_genie_cho, _replacement_names.get(name_genie_cho, name_genie_cho.replace("s", "sh"))) $ camera.set_image("topless_up_cum_mouth") @@ -1154,9 +1154,9 @@ label cc_pf_blowjob_T3_E2: cho "Did you have to cum this much..." ("disgust", "narrow", "base", "down", cheeks="blush", trans=d3) gen "I can't exactly control it..." ("base", xpos="far_left", ypos="head") gen "If you don't swallow, you'll have to deal with the mess." ("base", xpos="far_left", ypos="head") - cho "Swallow [cho_genie_name]'s--" ("upset", "base", "base", "downR", cheeks="blush") #Blush + cho "Swallow [name_genie_cho]'s--" ("upset", "base", "base", "downR", cheeks="blush") #Blush cho "I don't know..." ("soft", "narrow", "base", "downR", cheeks="blush") #Blush - gen "In any case, you've excelled today [cho_name]." ("base", xpos="far_left", ypos="head") + gen "In any case, you've excelled today [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "I think I need to lie down for a bit..." ("open", "narrow", "base", "down", cheeks="blush") cho "This was exhausting...{w=0.4} Even for me." ("open", "narrow", "base", "mid", cheeks="blush") if hg_kiss.trigger: @@ -1177,14 +1177,14 @@ label cc_pf_blowjob_T3_E2: gen "{size=-4}Pervert...{/size}" ("base", xpos="far_left", ypos="head") gen "Well, you've earnt a lie down I suppose..." ("base", xpos="far_left", ypos="head") cho "Good night then..." ("open", "narrow", "base", "mid") - gen "Good night, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Good night, [name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_walk("mid", "base") - gen "[cho_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]!" ("base", xpos="far_left", ypos="head") call cho_chibi("stand", "mid", "base", flip=False) - cho "Yes [cho_genie_name]?" ("open", "base", "raised", "mid", trans=d3) + cho "Yes [name_genie_cho]?" ("open", "base", "raised", "mid", trans=d3) gen "Your top..." ("base", xpos="far_left", ypos="head") cho "Oh... Of course!" ("clench", "happyCl", "base", "mid", cheeks="blush") #Blush @@ -1193,7 +1193,7 @@ label cc_pf_blowjob_T3_E2: with fade cho "..." ("soft", "base", "base", "down", cheeks="blush") #Cho puts on top - cho "Thank you, [cho_genie_name]..." ("open", "base", "base", "downR", cheeks="blush") + cho "Thank you, [name_genie_cho]..." ("open", "base", "base", "downR", cheeks="blush") call cho_walk(action="leave") @@ -1210,7 +1210,7 @@ label cc_pf_blowjob_T3_E2: $ camera.set_image("topless_up_cringe") #Cho's eyes goes wide and pulls out - cho "But [cho_genie_name]--" #Big text + cho "But [name_genie_cho]--" #Big text gen "*argh*! Get back there at once or forget about your stupid quidditch cup!" $ camera.set_image("topless_away_pout") @@ -1251,7 +1251,7 @@ label cc_pf_blowjob_T3_E2: cho "I...{w=0.4} I just swallowed..." cho "My coach's cum..." - gen "Well done, [cho_name], you sucked me dry." + gen "Well done, [name_cho_genie], you sucked me dry." $ camera.set_image("topless_away_cum_swallow") @@ -1265,8 +1265,8 @@ label cc_pf_blowjob_T3_E2: gen "Now this is the kind of initiative I'm talking about!" ("grin", xpos="far_left", ypos="head") cho "..." ("disgust", "narrow", "base", "down", cheeks="blush", trans=d3) #blank stare - gen "[cho_name]?" ("base", xpos="far_left", ypos="head") - cho "Yes...{w=0.5} sorry...{w=0.5} thank you [cho_genie_name]." ("angry", "base", "base", "downR", cheeks="blush") + gen "[name_cho_genie]?" ("base", xpos="far_left", ypos="head") + cho "Yes...{w=0.5} sorry...{w=0.5} thank you [name_genie_cho]." ("angry", "base", "base", "downR", cheeks="blush") cho "Is that all?" ("soft", "narrow", "base", "down", cheeks="blush") if game.daytime: gen "That will be all for today..." ("base", xpos="far_left", ypos="head") @@ -1275,12 +1275,12 @@ label cc_pf_blowjob_T3_E2: cho "Okay, good..." ("angry", "narrow", "base", "down", cheeks="blush") #Cho walks out of door still without shirt on call cho_walk(action="leave") - gen "[cho_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]!" ("base", xpos="far_left", ypos="head") #Cho comes back through the door call cho_walk(action="enter") with d5 - cho "Yes [cho_genie_name]?" ("soft", "base", "base", "mid", cheeks="blush", trans=d3) + cho "Yes [name_genie_cho]?" ("soft", "base", "base", "mid", cheeks="blush", trans=d3) gen "..." ("base", xpos="far_left", ypos="head") cho "Oh, of course!" ("clench", "base", "base", "down", cheeks="blush") #Wide eyed @@ -1367,7 +1367,7 @@ label cc_pf_blowjob_T3_E2: $ cho_mood += 12 cho "I'm going to go take a shower now if you don't mind!" ("mad", "base", "angry", "mid", cheeks="blush") - gen "You're dismissed [cho_name]." ("base", xpos="far_left", ypos="head") + gen "You're dismissed [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "Good!" ("annoyed", "base", "angry", "mid", cheeks="blush") call cho_walk("door", "base") cho "{size=-4}Seriously... just ask first...{/size}" ("disgust", "base", "angry", "down", cheeks="heavy_blush", flip=True, trans=d3) #Small text #Pout #Blush @@ -1378,7 +1378,7 @@ label cc_pf_blowjob_T3_E2: label cc_pf_blowjob_T3_E3: gen "Let's see what that mouth can do." ("base", xpos="far_left", ypos="head") - cho "You want to...{w=0.4} use my mouth again [cho_genie_name]?" ("soft", "narrow", "base", "downR", cheeks="blush") + cho "You want to...{w=0.4} use my mouth again [name_genie_cho]?" ("soft", "narrow", "base", "downR", cheeks="blush") cho "I guess I could..." ("open", "narrow", "base", "down", cheeks="blush") #Blush #Horny if cho_bj_choice == "points": @@ -1400,7 +1400,7 @@ label cc_pf_blowjob_T3_E3: cho "Fine..." ("base", "narrow", "base", "R", cheeks="blush") gen "Good! And one more thing..." ("base", xpos="far_left", ypos="head") gen "I expect some dirty talk this time." ("base", xpos="far_left", ypos="head") - cho "Dirty talk, [cho_genie_name]?" ("upset", "base", "raised", "mid", cheeks="blush") #pout + cho "Dirty talk, [name_genie_cho]?" ("upset", "base", "raised", "mid", cheeks="blush") #pout cho "I... If that's what you want..." ("soft", "base", "base", "downR", cheeks="blush") #Blush gen "Good, then get over here..." ("base", xpos="far_left", ypos="head") @@ -1425,20 +1425,20 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("up_neutral") - cho "Did you want me to take my top off again [cho_genie_name]?" + cho "Did you want me to take my top off again [name_genie_cho]?" gen "Taking initiative, *huh*? I like it." $ camera.set_image("up_smile") - cho "In that case...{w=0.4} Just relax [cho_genie_name] and I'll take care of you..." + cho "In that case...{w=0.4} Just relax [name_genie_cho] and I'll take care of you..." $ renpy.sound.play("sounds/cloth_sound3.ogg") $ camera.set_image("topless_mid_dreamy", trans=Fade(0.5, 2.0, 0.5)) #Cho moves up closer cho "..." - cho "Your--... your cock is so big [cho_genie_name]!" - gen "That's it [cho_name], keep talking just like that..." + cho "Your--... your cock is so big [name_genie_cho]!" + gen "That's it [name_cho_genie], keep talking just like that..." gen "Put your hand on it and tell me how it feels..." $ camera.set_imagepath("cho_bj/hj/") @@ -1455,7 +1455,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("cho_hj topless up blush") - cho "Do you like it when I stroke your cock, [cho_genie_name]?" #Looks at genie + cho "Do you like it when I stroke your cock, [name_genie_cho]?" #Looks at genie gen "Very much so!" cho "*Mhmmm* Good answer. {heart}" @@ -1469,26 +1469,26 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("cho_hj topless mid smile fast") - gen "*Ahh* You make me proud, [cho_name]...{w=0.3} I've taught you well." + gen "*Ahh* You make me proud, [name_cho_genie]...{w=0.3} I've taught you well." $ camera.set_image("cho_hj topless up blush") - cho "Thank you, [cho_genie_name]... it's my pleasure. {heart}" #Worried #Looks at dick + cho "Thank you, [name_genie_cho]... it's my pleasure. {heart}" #Worried #Looks at dick $ camera.set_image("cho_hj topless mid smile fast") - gen "*Ahh*...{w=0.3} Pleasure's all mine, [cho_name]." + gen "*Ahh*...{w=0.3} Pleasure's all mine, [name_cho_genie]." call ctc $ camera.set_image("cho_hj topless up blush") - cho "You've been such a help to me, [cho_genie_name]." + cho "You've been such a help to me, [name_genie_cho]." $ camera.set_image("cho_hj topless up blush") cho "I would never have been able to get this far without you..." - gen "That's it, [cho_name], keep talking..." + gen "That's it, [name_cho_genie], keep talking..." $ camera.set_image("cho_hj topless mid smile") @@ -1532,7 +1532,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("topless_up_blush2") - cho "Will you let me put my lips around it now, [cho_genie_name]?" #Looks at genie + cho "Will you let me put my lips around it now, [name_genie_cho]?" #Looks at genie gen "Perhaps..." $ camera.set_image("topless_up_worried") @@ -1542,7 +1542,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("topless_up_blush2") - cho "[cho_genie_name]?" + cho "[name_genie_cho]?" gen "Tell me how badly you want-- no, how badly you {i}need{/i} cock in your mouth." $ camera.set_image("topless_up_cringe") @@ -1580,11 +1580,11 @@ label cc_pf_blowjob_T3_E3: cho "I need your cock in my mouth...{w=0.2} and I need to feel your cum going down my throat..." gen "(She sure is a quick learner...)" - gen "That's it [cho_name]... Now work that mouth of yours for your reward..." + gen "That's it [name_cho_genie]... Now work that mouth of yours for your reward..." $ camera.set_image("topless_mid_dreamy") - cho "*Ah* Thank you, [cho_genie_name]..." #Blushes + cho "*Ah* Thank you, [name_genie_cho]..." #Blushes $ camera.set_image("cho_bj topless suck medium start") pause 2 @@ -1614,7 +1614,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("cho_hj topless up") gen "I didn't say you could--" - cho "Cum for me [cho_genie_name]!" + cho "Cum for me [name_genie_cho]!" $ camera.set_image("cho_hj topless up blush") @@ -1627,7 +1627,7 @@ label cc_pf_blowjob_T3_E3: call ctc - gen "That's it [cho_name], get ready for your reward." + gen "That's it [name_cho_genie], get ready for your reward." $ camera.set_image("cho_bj topless suck medium") @@ -1635,7 +1635,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("cho_bj topless suck medium up") - gen "Open up [cho_name], here it comes!" #large text + gen "Open up [name_cho_genie], here it comes!" #large text gen "*ARGH!*" with vpunch @@ -1673,7 +1673,7 @@ label cc_pf_blowjob_T3_E3: $ camera.set_image("topless_mid_full_swallowed") gen "I hope you liked your reward." - gen "Now... On your feet, [cho_name]." + gen "Now... On your feet, [name_cho_genie]." $ camera.set(zoom=1.0, pos=(300, 400), t=5.0, pause=True) @@ -1685,21 +1685,21 @@ label cc_pf_blowjob_T3_E3: with fade if cho_bj_choice in ("taste", "points"): - cho "I...{w=0.4} I did it...{w=0.4} I swallowed your cum [cho_genie_name]." ("base", "happyCl", "base", "mid", cheeks="blush", trans=d3) + cho "I...{w=0.4} I did it...{w=0.4} I swallowed your cum [name_genie_cho]." ("base", "happyCl", "base", "mid", cheeks="blush", trans=d3) gen "As expected." ("base", xpos="far_left", ypos="head") gen "But an improvement from last time nevertheless..." ("base", xpos="far_left", ypos="head") - cho "Thank you [cho_genie_name]..." ("base", "narrow", "base", "down", cheeks="blush") + cho "Thank you [name_genie_cho]..." ("base", "narrow", "base", "down", cheeks="blush") elif cho_bj_choice == "swallow": - cho "I...{w=0.4} I hope you liked it [cho_genie_name]." ("base", "narrow", "base", "down", cheeks="blush", trans=d3) + cho "I...{w=0.4} I hope you liked it [name_genie_cho]." ("base", "narrow", "base", "down", cheeks="blush", trans=d3) else: # cho_bj_choice == throat - Using `else` as a fallback for degenerates that use cheats cho "I...{w=0.4} I did it..." ("base", "narrow", "base", "down", cheeks="blush", trans=d3) gen "And without my help this time." ("base", xpos="far_left", ypos="head") - cho "Your...{w=0.4} Your cum...{w=0.4} was delicious [cho_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") - gen "That's right [cho_name]... and if you keep doing such a good job there's even more where that came from..." ("grin", xpos="far_left", ypos="head") + cho "Your...{w=0.4} Your cum...{w=0.4} was delicious [name_genie_cho]..." ("soft", "closed", "base", "mid", cheeks="blush") + gen "That's right [name_cho_genie]... and if you keep doing such a good job there's even more where that came from..." ("grin", xpos="far_left", ypos="head") gen "You can stop talking dirty now." ("base", xpos="far_left", ypos="head") cho "I wasn't--" ("open", "narrow", "base", "down", cheeks="heavy_blush") #blush, looking right - cho "Yes, [cho_genie_name]..." ("upset", "narrow", "base", "R", cheeks="heavy_blush") + cho "Yes, [name_genie_cho]..." ("upset", "narrow", "base", "R", cheeks="heavy_blush") cho "So... Is that all?" ("soft", "narrow", "base", "R", cheeks="blush") gen "For now..." ("base", xpos="far_left", ypos="head") cho "Okay then..." ("soft", "base", "base", "mid", cheeks="blush") @@ -1714,11 +1714,11 @@ label cc_pf_blowjob_T3_E3: else: cho "I'll head back to my dorms then..." ("base", "base", "base", "mid") gen "Of course...{w=0.4} you better be ready for next time..." ("base", xpos="far_left", ypos="head") - cho "Next...{w=0.4} yes [cho_genie_name]..." ("horny", "narrow", "base", "down", cheeks="blush") + cho "Next...{w=0.4} yes [name_genie_cho]..." ("horny", "narrow", "base", "down", cheeks="blush") call cho_walk("door", "base") cho "(He's so commanding...)" ("horny", "narrow", "base", "R", cheeks="heavy_blush", flip=True, trans=d3) # horny cho "(No wonder Hermione enjoys it so much...)" ("horny", "closed", "base", "mid", cheeks="heavy_blush") - gen "[cho_name]." ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_chibi("stand", "door", "base", flip=False) cho "" (flip=False, trans=d5) diff --git a/game/scripts/characters/cho/events/favors/talk_to_me.rpy b/game/scripts/characters/cho/events/favors/talk_to_me.rpy index 094ed435..f8918bf4 100644 --- a/game/scripts/characters/cho/events/favors/talk_to_me.rpy +++ b/game/scripts/characters/cho/events/favors/talk_to_me.rpy @@ -41,9 +41,9 @@ label cc_pf_talk: label cc_pf_talk_T1_intro_E1: gen "Let's have a little chat shall we." ("base", xpos="far_left", ypos="head") - cho "A chat, [cho_genie_name]?" ("open", "base", "raised", "mid") + cho "A chat, [name_genie_cho]?" ("open", "base", "raised", "mid") gen "Just to get to know each other a little bit better." ("grin", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "Of course, [name_genie_cho]." ("smile", "base", "base", "mid") gen "First, I'd like you to come a bit closer." ("base", xpos="far_left", ypos="head") cho "Very well..." ("soft", "base", "base", "R") @@ -62,14 +62,14 @@ label cc_pf_talk_T1_intro_E1: cho "And I don't see how this information would be of importance for my training." ("open", "wide", "raised", "downR", cheeks="blush") cho "Why would it matter if--{w=0.5} Even if I did I'd--" ("soft", "wide", "base", "down", cheeks="blush") gen "So you don't have one?" ("grin", xpos="far_left", ypos="head") - cho "You're making me nervous, [cho_genie_name]. {heart}" ("horny", "narrow", "worried", "R", cheeks="blush") + cho "You're making me nervous, [name_genie_cho]. {heart}" ("horny", "narrow", "worried", "R", cheeks="blush") gen "(So cute.{w=0.5} Perhaps this is something I could push her further on...)" ("base", xpos="far_left", ypos="head") cho "Sir, I do not have a boyfriend at the moment." ("soft", "closed", "angry", "mid") cho "I hope that answers your question." ("annoyed", "narrow", "base", "mid") gen "So, a girlfriend then?" ("grin", xpos="far_left", ypos="head") cho "!!!" ("angry", "wide", "raised", "mid", cheeks="blush") - cho "No. Why would you even think that, [cho_genie_name]?!" ("open", "closed", "angry", "mid") + cho "No. Why would you even think that, [name_genie_cho]?!" ("open", "closed", "angry", "mid") cho "" ("annoyed", "narrow", "angry", "mid") gen "(She doesn't seem that keen on the subject, perhaps I could tell her...)" ("base", xpos="far_left", ypos="head") @@ -77,7 +77,7 @@ label cc_pf_talk_T1_intro_E1: menu: "\"It's important to open up to your headmaster.\"": gen "Emphasis on \"opening up\"..." ("base", xpos="far_left", ypos="head") - cho "I don't think that will be necessary, [cho_genie_name]." ("annoyed", "narrow", "angry", "mid") + cho "I don't think that will be necessary, [name_genie_cho]." ("annoyed", "narrow", "angry", "mid") gen "There's a lot more to gather from discussing previous life choices than you might think." ("base", xpos="far_left", ypos="head") gen "You get to learn a lot about the way someone has matured by previous experiences..." ("base", xpos="far_left", ypos="head") gen "Like a first kiss, who it was with, and so on..." ("base", xpos="far_left", ypos="head") @@ -125,7 +125,7 @@ label cc_pf_talk_T1_intro_E1: gen "(They host tournaments here? Interesting...)" ("base", xpos="far_left", ypos="head") cho "That year was the most fun I've ever had!" ("smile", "base", "base", "mid") gen "Was he that good?" ("base", xpos="far_left", ypos="head") - cho "What?{w=0.5} No, Sir, not because of him!{w} The tourney, [cho_genie_name]!" ("soft", "narrow", "base", "mid") + cho "What?{w=0.5} No, Sir, not because of him!{w} The tourney, [name_genie_cho]!" ("soft", "narrow", "base", "mid") gen "Sure..." ("base", xpos="far_left", ypos="head") cho "We should have it every year if you were to ask me!" ("open", "closed", "base", "mid") gen "(A cosplay tournament is what this school needs...)" ("grin", xpos="far_left", ypos="head") @@ -242,7 +242,7 @@ label cc_pf_talk_T1_intro_E1: if genie_masturbating: gen "What? Please don't go now. I've only just started!" ("angry", xpos="far_left", ypos="head") - cho "Started with what, [cho_genie_name]?" ("annoyed", "narrow", "angry", "mid") + cho "Started with what, [name_genie_cho]?" ("annoyed", "narrow", "angry", "mid") gen "I'll give you ten house points if you stay!{w=0.8} Just a tiny bit longer!" ("angry", xpos="far_left", ypos="head") cho "And what makes you believe that I'd agree to such a thing?{w=0.8} Getting rewarded with points for doing nothing?" ("open", "closed", "base", "mid") cho "Earning house points in such a way is despicable, and it would be unfair towards the other school houses, as well as my fellow students..." ("open", "narrow", "base", "mid") @@ -274,7 +274,7 @@ label cc_pf_talk_T1_intro_E1: jump end_cho_talk_event label cc_pf_talk_T1_intro_E2: - gen "Get closer, [cho_name]..." ("grin", xpos="far_left", ypos="head") + gen "Get closer, [name_cho_genie]..." ("grin", xpos="far_left", ypos="head") cho "..." ("annoyed", "base", "base", "down") call cho_walk("desk", "base") @@ -287,7 +287,7 @@ label cc_pf_talk_T1_intro_E2: gen "I don't know.{w=1.0} Would you like to?" ("base", xpos="far_left", ypos="head") cho "I'd rather not." ("soft", "narrow", "angry", "mid") gen "Tell me about yourself then." ("base", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "Of course, [name_genie_cho]." ("smile", "base", "base", "mid") cho "We had a training session yesterday." ("soft", "base", "base", "R") gen "Training session?" ("base", xpos="far_left", ypos="head") cho "Yes. We are preparing ourselves for the Quidditch match against Hufflepuff." ("open", "narrow", "base", "mid") @@ -305,12 +305,12 @@ label cc_pf_talk_T1_intro_E2: cho "And as you can see -- it did work out in my favour, Sir." ("smile", "base", "base", "mid") cho "Very few teams have allowed a female player into their ranks over the past years." ("open", "narrow", "angry", "R") cho "And I've been the only female seeker at this school in over half a century!" ("open", "wide", "base", "mid") - cho "Can you even believe that, [cho_genie_name]?" ("soft", "base", "raised", "mid") + cho "Can you even believe that, [name_genie_cho]?" ("soft", "base", "raised", "mid") gen "(Half a century? That's like a coffee break for me girl...)" ("base", xpos="far_left", ypos="head") - cho "I don't want to brag, [cho_genie_name], but the role of a seeker is {b}the{/b} most important position in a team by far!" ("smile", "narrow", "base", "mid") + cho "I don't want to brag, [name_genie_cho], but the role of a seeker is {b}the{/b} most important position in a team by far!" ("smile", "narrow", "base", "mid") cho "If you don't have a good seeker, you have no chance of winning!" ("soft", "closed", "base", "mid") gen "No wonder you need my help so badly then..." ("base", xpos="far_left", ypos="head") - cho "Our losses is neither my, nor my team's fault, [cho_genie_name]!" ("open", "base", "angry", "mid") + cho "Our losses is neither my, nor my team's fault, [name_genie_cho]!" ("open", "base", "angry", "mid") gen "So whose is it then?" ("base", xpos="far_left", ypos="head") cho "The enemy team's, obviously!" ("soft", "narrow", "angry", "mid") cho "They are cheating! And they have done so for years!" ("mad", "narrow", "angry", "R") @@ -335,7 +335,7 @@ label cc_pf_talk_T1_intro_E2: $ genie_masturbating = False cho "Ever since I was a little girl -- Quidditch has been my dream..." ("soft", "narrow", "worried", "down") - cho "[cho_genie_name], can you imagine how {b}hard{/b} it was for me?" ("soft", "narrow", "worried", "mid") + cho "[name_genie_cho], can you imagine how {b}hard{/b} it was for me?" ("soft", "narrow", "worried", "mid") if genie_masturbating: gen "{size=-4}(Yes, yes... It's so hard for you, you little slut!!!){/size}" ("angry", xpos="far_left", ypos="head") cho "How difficult it was for me at first?" ("open", "narrow", "worried", "R") @@ -350,7 +350,7 @@ label cc_pf_talk_T1_intro_E2: gen "(Maybe telling Hermione off was a bad idea after all...)" ("angry", xpos="far_left", ypos="head") gen "(An \"all female\" team would be more fun to watch...)" ("grin", xpos="far_left", ypos="head") cho "Always feeling their gaze behind my back..." ("disgust", "base", "worried", "down") - cho "My own team, [cho_genie_name]!{w} They treat me like the plague!" ("upset", "base", "worried", "mid") + cho "My own team, [name_genie_cho]!{w} They treat me like the plague!" ("upset", "base", "worried", "mid") cho "They ignore me during class..." ("soft", "closed", "base", "mid") cho "When I meet them in the common room they go out of their way not to cross paths with me..." ("annoyed", "narrow", "angry", "R") cho "And when we shower after practice they're scared to even look at me!" ("angry", "narrow", "angry", "mid") @@ -360,7 +360,7 @@ label cc_pf_talk_T1_intro_E2: gen "Wait a bloody minute!{w} You shower {b}with{/b} your team?" ("angry", xpos="far_left", ypos="head") else: gen "The showers?{w} You shower {b}with{/b} your team?" ("angry", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]. It was after my request, after all." ("soft", "base", "raised", "mid") + cho "Of course, [name_genie_cho]. It was after my request, after all." ("soft", "base", "raised", "mid") gen "No kidding?" ("angry", xpos="far_left", ypos="head") cho "They shouldn't exclude me from team activities just because I'm a girl." ("open", "narrow", "base", "R") cho "It makes absolutely no difference!" ("open", "closed", "angry", "mid") @@ -368,7 +368,7 @@ label cc_pf_talk_T1_intro_E2: gen "You are naked with them? In the showers?" ("angry", xpos="far_left", ypos="head") else: gen "Just to be clear. You are naked with them, in the shower." ("base", xpos="far_left", ypos="head") - cho "Of course we're all naked, [cho_genie_name]!" ("soft", "base", "angry", "mid") + cho "Of course we're all naked, [name_genie_cho]!" ("soft", "base", "angry", "mid") cho "Why would we shower with our clothes on?" ("soft", "closed", "base", "mid") # Genie cums. @@ -389,7 +389,7 @@ label cc_pf_talk_T1_intro_E2: gen "*Argh*! {size=-4}(Shower in this, you slut!){/size}" ("angry", xpos="far_left", ypos="head") call cum_block - cho "[cho_genie_name], are you alright?" ("soft", "base", "base", "mid") + cho "[name_genie_cho], are you alright?" ("soft", "base", "base", "mid") cho "You're sweating and breathing quite heavily..." ("annoyed", "base", "worried", "mid") call gen_chibi("cum_behind_desk_done") @@ -404,7 +404,7 @@ label cc_pf_talk_T1_intro_E2: cho "(...)" ("annoyed", "narrow", "angry", "mid") # Annoyed gen "Don't you think, the fact that they've seen you naked hasn't affected any of their actions?" ("base", xpos="far_left", ypos="head") - cho "Why would it, [cho_genie_name]? We're all adults here..." ("soft", "closed", "base", "mid") + cho "Why would it, [name_genie_cho]? We're all adults here..." ("soft", "closed", "base", "mid") gen "Perhaps that's just your take on it, girl." ("base", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "angry", "mid") gen "Maybe your \"teammates\" aren't as... \"mature\" as you." ("grin", xpos="far_left", ypos="head") @@ -416,11 +416,11 @@ label cc_pf_talk_T1_intro_E2: cho "" ("normal", "happyCl", "worried", "mid", cheeks="heavy_blush") pause .6 gen "Yes?{w=0.3} What is it?" ("grin", xpos="far_left", ypos="head") - cho "May I... May I leave, [cho_genie_name]?" ("soft", "narrow", "worried", "mid", cheeks="blush") + cho "May I... May I leave, [name_genie_cho]?" ("soft", "narrow", "worried", "mid", cheeks="blush") gen "Don't want to tell me?" ("grin", xpos="far_left", ypos="head") cho "No." ("disgust", "happyCl", "worried", "mid", cheeks="blush") gen "Fine...{w=0.3} you may leave..." ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]." ("open", "narrow", "worried", "mid", cheeks="blush") + cho "Thank you, [name_genie_cho]." ("open", "narrow", "worried", "mid", cheeks="blush") # Cho very slowly walks out of your office... call cho_walk(action="leave") @@ -438,7 +438,7 @@ label cc_pf_talk_T1_intro_E2: label cc_pf_talk_T1_E3: gen "Care to tell me more about Quidditch?" ("base", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]." ("smile", "base", "base", "R") + cho "Of course, [name_genie_cho]." ("smile", "base", "base", "R") cho "I always love talking about Quidditch!" ("base", "base", "base", "mid") gen "Yeah, yeah... I know." ("base", xpos="far_left", ypos="head") gen "First, come closer. Let me have a good look at you!" ("base", xpos="far_left", ypos="head") @@ -462,11 +462,11 @@ label cc_pf_talk_T1_E3: gen "His sexual preferences. Secret fetishes he might have. That sort of stuff..." ("base", xpos="far_left", ypos="head") cho "Sir, that's a very personal thing to ask for!" ("open", "narrow", "base", "mid") cho "I will not tell you about any of that!" ("annoyed", "narrow", "angry", "mid") - gen "[cho_name], we need to find something we can use against him. To our advantage!" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie], we need to find something we can use against him. To our advantage!" ("base", xpos="far_left", ypos="head") cho "But... {w=0.4} His sexual preferences? Are you sure knowing about that is important?" ("open", "narrow", "angry", "mid") gen "Very." ("base", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "R") - cho "Very well, [cho_genie_name]..." ("open", "closed", "angry", "mid") + cho "Very well, [name_genie_cho]..." ("open", "closed", "angry", "mid") cho "I'll tell you what I know about him." ("open", "narrow", "base", "mid") gen "Excellent." ("base", xpos="far_left", ypos="head") cho "Cedric was always a bit of a loner..." ("annoyed", "narrow", "base", "R") @@ -515,7 +515,7 @@ label cc_pf_talk_T1_E3: cho "Most of them look like shoelaces!" ("annoyed", "narrow", "angry", "R") gen "{size=-4}(What a bunch of sluts!){/size}" ("angry", xpos="far_left", ypos="head") call nar("*Fap* *Fap* *Fap*...") - cho "You should see them, [cho_genie_name]!" ("annoyed", "narrow", "angry", "mid") + cho "You should see them, [name_genie_cho]!" ("annoyed", "narrow", "angry", "mid") cho "They're all a bunch of sluts!!!" ("soft", "narrow", "angry", "mid") cho "They wear their skirts so low -- you just have to wonder how they haven't fallen off yet..." ("soft", "narrow", "base", "downR") gen "{size=-4}(Indeed, I'd love to see that!){/size}" ("angry", xpos="far_left", ypos="head") @@ -665,7 +665,7 @@ label cc_pf_talk_T2_intro_E1: cho "We'll be playing against them next." ("annoyed", "narrow", "base", "R") cho "And of course they have to behave like the absolute worst!" ("soft", "narrow", "angry", "mid") cho "They deserve to be publicly disgraced in front of the whole school!{w=0.8} The whole lot of them!" ("scream", "closed", "angry", "mid", trans=hpunch) - cho "I'll make sure of it, [cho_genie_name]!{w=0.6} The Slytherin team will lose!" ("mad", "narrow", "angry", "mid") + cho "I'll make sure of it, [name_genie_cho]!{w=0.6} The Slytherin team will lose!" ("mad", "narrow", "angry", "mid") gen "(And I'll win my bet with Snape even sooner! Sweet!)" ("grin", xpos="far_left", ypos="head") gen "Anything you can tell me about them?{w=0.6} Are they better than Hufflepuff?" ("base", xpos="far_left", ypos="head") cho "They are, by quite a bit." ("annoyed", "base", "base", "mid") @@ -699,7 +699,7 @@ label cc_pf_talk_T2_intro_E1: gen "(Just to make this clear, I'm not getting off because I like the thought that she's getting bullied...)" ("base", xpos="far_left", ypos="head") call nar(">Right...") gen "I hope you fought back those bullies?" ("angry", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]!" ("base", "base", "base", "mid") + cho "Of course, [name_genie_cho]!" ("base", "base", "base", "mid") "-Participate in the conversation-": $ genie_masturbating = False @@ -738,7 +738,7 @@ label cc_pf_talk_T2_intro_E1: cho "They think they can intimidate me. But that's where they are mistaken!" ("angry", "narrow", "angry", "down") if genie_masturbating: - cho "They should be scared of me, [cho_genie_name]!" ("soft", "narrow", "angry", "mid") + cho "They should be scared of me, [name_genie_cho]!" ("soft", "narrow", "angry", "mid") gen "{size=-4}(Yes! Show them, you slut!){/size}" ("angry", xpos="far_left", ypos="head") cho "Of what {b}I'm{/b} capable of!" ("clench", "base", "angry", "mid") gen "*Argh*! (I'm getting close!)" ("angry", xpos="far_left", ypos="head") @@ -786,7 +786,7 @@ label cc_pf_talk_T2_intro_E1: gen "His \"daddy\"?" ("base", xpos="far_left", ypos="head") cho "His father, Sir." ("soft", "closed", "angry", "mid") gen "Oh. I thought you might be talking about a different kind of \"daddy\"." ("base", xpos="far_left", ypos="head") - cho "Very funny, [cho_genie_name]..." ("annoyed", "narrow", "angry", "R") + cho "Very funny, [name_genie_cho]..." ("annoyed", "narrow", "angry", "R") cho "Now, if that's everything..." ("soft", "closed", "base", "mid") if game.daytime: @@ -807,7 +807,7 @@ label cc_pf_talk_T2_intro_E1: label cc_pf_talk_T2_intro_E2: gen "Would you mind if we had another chat?" ("base", xpos="far_left", ypos="head") - cho "Of course not, [cho_genie_name]!" ("smile", "base", "base", "mid") + cho "Of course not, [name_genie_cho]!" ("smile", "base", "base", "mid") gen "Come closer then..." ("base", xpos="far_left", ypos="head") call play_music("cho") @@ -884,7 +884,7 @@ label cc_pf_talk_T2_intro_E2: cho "Especially Granger!" ("smile", "narrow", "base", "mid") if genie_masturbating: gen "{size=-4}Yes, the Gryffindor whore!{/size}" ("angry", xpos="far_left", ypos="head") - cho "You should have seen her face, [cho_genie_name]!" ("soft", "narrow", "angry", "mid") + cho "You should have seen her face, [name_genie_cho]!" ("soft", "narrow", "angry", "mid") cho "She's so angry at me! I love it!" ("smile", "happyCl", "base", "mid") cho "She can't even bear to look at me anymore." ("grin", "narrow", "angry", "mid") cho "You should know, for whatever reason, almost all of Hufflepuff blames her for helping Ravenclaw secure the win!" ("soft", "base", "base", "R") @@ -977,7 +977,7 @@ label cc_pf_talk_T2_intro_E2: call cum_block pause .8 - cho "[cho_genie_name]! What the bloody hell are you doing?!" ("angry", "wide", "base", "mid", cheeks="heavy_blush", trans=hpunch) + cho "[name_genie_cho]! What the bloody hell are you doing?!" ("angry", "wide", "base", "mid", cheeks="heavy_blush", trans=hpunch) gen "{size=-4}(Oh no!){/size}" ("base", xpos="far_left", ypos="head") gen "{size=-4}(I'm busted!){/size}" ("angry", xpos="far_left", ypos="head") @@ -994,7 +994,7 @@ label cc_pf_talk_T2_intro_E2: gen "Nothing, I was just--" ("angry", xpos="far_left", ypos="head") cho "Don't tell me you were..." ("disgust", "happyCl", "worried", "mid", cheeks="heavy_blush") gen "I was merely scratching my leg!" ("angry", xpos="far_left", ypos="head") - cho "Don't lie to me, [cho_genie_name]!{w=0.6} I know exactly what you were doing!" ("clench", "narrow", "angry", "mid") + cho "Don't lie to me, [name_genie_cho]!{w=0.6} I know exactly what you were doing!" ("clench", "narrow", "angry", "mid") cho "{size=+4}You were touching yourself!{/size}" ("scream", "closed", "angry", "mid", trans=hpunch) # Scream cho "" ("angry", "narrow", "angry", "mid") gen "{size=-2}Not so loud! People might hear you!{/size}" ("angry", xpos="far_left", ypos="head") @@ -1013,7 +1013,7 @@ label cc_pf_talk_T2_intro_E2: cho "And lick it all up!{w} I bet she'd love that!!!" ("angry", "narrow", "angry", "mid") gen "(...)" ("base", xpos="far_left", ypos="head") cho "I'm leaving." ("disgust", "happyCl", "worried", "mid", cheeks="blush") - cho "Have a nice day, [cho_genie_name]!" ("soft", "narrow", "angry", "mid", cheeks="blush") + cho "Have a nice day, [name_genie_cho]!" ("soft", "narrow", "angry", "mid", cheeks="blush") # Cho leaves. call cho_walk(action="leave") @@ -1036,7 +1036,7 @@ label cc_pf_talk_T2_E3: cho "" ("annoyed", face="neutral", xpos="mid", ypos="base", trans=fade) pause .5 - gen "[cho_name], how is school life?" ("grin", xpos="far_left", ypos="head") + gen "[name_cho_genie], how is school life?" ("grin", xpos="far_left", ypos="head") gen "I need to stay \"on top\" of all the latest \"hot goss\"..." ("base", xpos="far_left", ypos="head") cho "Sir, I don't tend to pay attention to that sort of stuff." ("soft", "closed", "base", "mid") gen "You must at least have heard something raunchy here at the school?" ("base", xpos="far_left", ypos="head") @@ -1060,7 +1060,7 @@ label cc_pf_talk_T2_E3: cho "!!!" ("upset", "wide", "base", "mid", cheeks="blush") # Shocked gen "I have needs, girl." ("base", xpos="far_left", ypos="head") cho "Gross!!!" ("angry", "closed", "angry", "mid") - cho "[cho_genie_name], might I suggest that you sort out those needs on your own then?" ("soft", "narrow", "angry", "R") + cho "[name_genie_cho], might I suggest that you sort out those needs on your own then?" ("soft", "narrow", "angry", "R") cho "Without me..." ("soft", "narrow", "angry", "mid") gen "What a Bummer...{w=0.6} Last time you were such a great aid..." ("base", xpos="far_left", ypos="head") cho "What?! When did I ever help you with that?" ("soft", "wide", "base", "mid") @@ -1081,7 +1081,7 @@ label cc_pf_talk_T2_E3: $ genie_masturbating = False gen "(Seems like I'm not feeling the need to jack off today...{w=0.4} Free will is an illusion.)" ("base", xpos="far_left", ypos="head") gen "(Oh well... Might as well pay attention for once.)" ("base", xpos="far_left", ypos="head") - gen "Go on, [cho_name]..." ("base", xpos="far_left", ypos="head") + gen "Go on, [name_cho_genie]..." ("base", xpos="far_left", ypos="head") gen "Why don't you tell me some more about..." ("base", xpos="far_left", ypos="head") cho "The Slytherins? Gladly!" ("open", "narrow", "angry", "mid") @@ -1267,8 +1267,8 @@ label cc_pf_talk_T3_intro_E1: # Talk about Harry, Mentions Ron - gen "[cho_name].{w=1.0} Are you in the mood for a little chat?" ("base", xpos="far_left", ypos="head") - cho "I suppose I am, [cho_genie_name]." ("open", "narrow", "base", "downR") + gen "[name_cho_genie].{w=1.0} Are you in the mood for a little chat?" ("base", xpos="far_left", ypos="head") + cho "I suppose I am, [name_genie_cho]." ("open", "narrow", "base", "downR") # Cho moves to the middle @@ -1276,13 +1276,13 @@ label cc_pf_talk_T3_intro_E1: gen "*Sigh*... What is it?" ("base", xpos="far_left", ypos="head") cho "It's Granger. She's been interfering with Quidditch again." ("open", "narrow", "base", "R") gen "Of course that's it... Because there's never anything else on your mind..." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], Quidditch is important to me!" ("disgust", "narrow", "angry", "mid") + cho "[name_genie_cho], Quidditch is important to me!" ("disgust", "narrow", "angry", "mid") gen "(I cannot wait until this quid-pitch nonsense is over...)" ("angry", xpos="far_left", ypos="head") cho "I won't have her meddling with our training!" ("annoyed", "narrow", "angry", "R") cho "I just won't have it!" ("open", "narrow", "angry", "mid") - cho "[cho_genie_name], please do something about it!" ("angry", "narrow", "base", "mid") + cho "[name_genie_cho], please do something about it!" ("angry", "narrow", "base", "mid") gen "Alright... Why don't you tell me more, and I'll do my best to listen..." ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]." ("grin", "closed", "base", "mid") + cho "Thank you, [name_genie_cho]." ("grin", "closed", "base", "mid") menu: gen "(Although perhaps I could multitask...)" ("base", xpos="far_left", ypos="head") @@ -1292,7 +1292,7 @@ label cc_pf_talk_T3_intro_E1: call gen_chibi("jerk_off_behind_desk") with d5 - cho "[cho_genie_name]!" ("clench", "narrow", "base", "mid") + cho "[name_genie_cho]!" ("clench", "narrow", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") cho "Weren't you going to listen to what I had to say?" ("disgust", "narrow", "angry", "mid", cheeks="blush") gen "Yes." ("base", xpos="far_left", ypos="head") @@ -1347,14 +1347,14 @@ label cc_pf_talk_T3_intro_E1: cho "Jealous of what? I have better friends than her!" ("soft", "base", "angry", "mid") gen "Of course you do." ("base", xpos="far_left", ypos="head") cho "What? Are you making fun of me?" ("open", "narrow", "angry", "mid") - gen "I wouldn't dare, [cho_name], just looking out for you." ("base", xpos="far_left", ypos="head") + gen "I wouldn't dare, [name_cho_genie], just looking out for you." ("base", xpos="far_left", ypos="head") gen "You're a renowned, pretty, and talented little witch... The wrong people could be drawn to you." ("base", xpos="far_left", ypos="head") cho "Who cares? I like being popular... At least none of them are as dense as those two..." ("soft", "closed", "angry", "mid") gen "Who are you talking about exactly?" ("base", xpos="far_left", ypos="head") cho "Potter and Weasley!" ("open", "base", "angry", "mid") gen "Could it be... The \"Potter Gang\"?" ("angry", xpos="far_left", ypos="head") - cho "The what, [cho_genie_name]?" ("angry", "base", "base", "mid") + cho "The what, [name_genie_cho]?" ("angry", "base", "base", "mid") gen "That's what Snape called them..." ("base", xpos="far_left", ypos="head") cho "*Huh*... Does he now?" ("angry", "narrow", "base", "mid") cho "The \"Granger Gang\" would be a more suitable name, if you asked me." ("disgust", "narrow", "base", "R") @@ -1382,11 +1382,11 @@ label cc_pf_talk_T3_intro_E1: gen "(!!!)" ("angry", xpos="far_left", ypos="head") cho "Truly a sight to behold..." ("grin", "base", "base", "mid") gen "Certainly it can't be {b}that{/b} impressive." ("angry", xpos="far_left", ypos="head") - cho "There's nothing to even compare it to, [cho_genie_name]! It's magnificent!" ("smile", "base", "base", "mid", cheeks="blush") + cho "There's nothing to even compare it to, [name_genie_cho]! It's magnificent!" ("smile", "base", "base", "mid", cheeks="blush") cho "And the way he uses it..." ("smile", "closed", "base", "mid", cheeks="blush") gen "(I can't lose to some meagre mortal!)" ("angry", xpos="far_left", ypos="head") cho "I've been trying to ask him to let me ride on it for years but Granger always--" ("soft", "closed", "base", "mid", cheeks="blush") - gen "Well luckily for you, [cho_name], you have me!" ("grin", xpos="far_left", ypos="head") + gen "Well luckily for you, [name_cho_genie], you have me!" ("grin", xpos="far_left", ypos="head") gen "Just let me take it out of my--" ("base", xpos="far_left", ypos="head") cho "You'll get me the firebolt?!" ("angry", "wide", "base", "mid") gen "Get you a what, sorry?" ("base", xpos="far_left", ypos="head") @@ -1396,7 +1396,7 @@ label cc_pf_talk_T3_intro_E1: gen "Wait... A broom? That's what all of this is about?" ("angry", xpos="far_left", ypos="head") cho "Yes? What else would it be?" ("soft", "narrow", "raised", "mid") gen "I'm going to need a moment..." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]?" ("open", "base", "raised", "mid") + cho "[name_genie_cho]?" ("open", "base", "raised", "mid") gen "That will be all for today..." ("base", xpos="far_left", ypos="head") cho "What about the broom?" ("angry", "base", "base", "mid") gen "Enough with the broom!" ("base", xpos="far_left", ypos="head") @@ -1436,7 +1436,7 @@ label cc_pf_talk_T3_intro_E1: gen "Alright." ("base", xpos="far_left", ypos="head") else: cho "Okay then..." ("annoyed", "narrow", "base", "R") - gen "That will be all for today [cho_name]." ("base", xpos="far_left", ypos="head") + gen "That will be all for today [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "But... I didn't even get to tell you about the other member of Weasley's family--" ("angry", "base", "base", "mid") gen "Enough boy talk for today..." ("base", xpos="far_left", ypos="head") cho "Sir, but--" ("soft", "base", "base", "mid") @@ -1447,7 +1447,7 @@ label cc_pf_talk_T3_intro_E1: cho "I'll just head back to class then..." ("annoyed", "base", "base", "R") else: cho "I'll just head off to bed then..." ("annoyed", "base", "base", "R") - gen "Until next time [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Until next time [name_cho_genie]." ("base", xpos="far_left", ypos="head") # Cho leaves. call cho_walk(action="leave") @@ -1460,7 +1460,7 @@ label cc_pf_talk_T3_intro_E1: label cc_pf_talk_T3_intro_E2: #Mentions the twins and the girls - gen "Let's have another chat, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Let's have another chat, [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "About Quidditch?" ("smile", "base", "base", "mid") gen "About--" ("base", xpos="far_left", ypos="head") gen "Why is it always about Quidditch with you?" ("angry", xpos="far_left", ypos="head") @@ -1474,7 +1474,7 @@ label cc_pf_talk_T3_intro_E2: # Cho moves to desk call cho_walk(xpos="desk") - cho "So, what would you like to talk about, [cho_genie_name]?" ("soft", "narrow", "base", "R") + cho "So, what would you like to talk about, [name_genie_cho]?" ("soft", "narrow", "base", "R") gen "I don't know..." ("base", xpos="far_left", ypos="head") gen "Cute boys... Or your very attractive male teachers..." ("base", xpos="far_left", ypos="head") gen "You know, silly girls stuff..." ("base", xpos="far_left", ypos="head") @@ -1537,7 +1537,7 @@ label cc_pf_talk_T3_intro_E2: cho "Their training routine must be intense, they always look tired and dishevelled, but also happy, just like me after a hard training session!" ("smile", "base", "base", "mid") gen "Girl, you've got this completely wrong..." ("base", xpos="far_left", ypos="head") - cho "What do you mean, [cho_genie_name]?" ("soft", "base", "base", "mid") + cho "What do you mean, [name_genie_cho]?" ("soft", "base", "base", "mid") gen "They're probably doing it." ("base", xpos="far_left", ypos="head") cho "Doing what?" ("open", "base", "base", "mid") gen "Doing \"it\"...{w} With each other!" ("grin", xpos="far_left", ypos="head") @@ -1547,7 +1547,7 @@ label cc_pf_talk_T3_intro_E2: gen "And that's great news for us!" ("base", xpos="far_left", ypos="head") cho "Why on earth would that be--" ("disgust", "base", "base", "mid", cheeks="blush") gen "Why there's plenty of ways to take advantage of that." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]?" ("disgust", "narrow", "base", "mid", cheeks="blush") #shocked + cho "[name_genie_cho]?" ("disgust", "narrow", "base", "mid", cheeks="blush") #shocked gen "Just a thought..." ("base", xpos="far_left", ypos="head") gen "In any case, you'll have to tell me more about them later... I'm sure we've only scratched the surface regarding those three." ("base", xpos="far_left", ypos="head") cho "Alright..." ("annoyed", "base", "base", "mid") @@ -1626,7 +1626,7 @@ label cc_pf_talk_T3_E3: gen "Did you come up with that yourself?" ("base", xpos="far_left", ypos="head") cho "I did! Surprised?" ("smile", "wink", "base", "mid") gen "A little, I didn't think you had it in you." ("base", xpos="far_left", ypos="head") - cho "I'm full of surprises, [cho_genie_name]." ("smile", "narrow", "base", "mid") # wink + cho "I'm full of surprises, [name_genie_cho]." ("smile", "narrow", "base", "mid") # wink cho "As for Katie, well... She's a bit weird to be honest..." ("base", "narrow", "base", "R") gen "What makes you say so?" ("base", xpos="far_left", ypos="head") cho "I don't know... She doesn't talk much, and always seems to have her head in the clouds during practice." ("open", "narrow", "base", "downR") @@ -1703,7 +1703,7 @@ label cc_pf_talk_T3_E3: cho "The type of player that values messing around rather than focusing on winning the game." ("disgust", "narrow", "base", "mid") gen "So they're basically trolls?" ("base", xpos="far_left", ypos="head") cho "Trolls? *giggle*" ("smile", "narrow", "base", "mid") - cho "I know looks can be deceiving, but I don't think they're trolls, [cho_genie_name]." ("smile", "narrow", "base", "R") + cho "I know looks can be deceiving, but I don't think they're trolls, [name_genie_cho]." ("smile", "narrow", "base", "R") gen "*Hmm*... Maybe not." ("base", xpos="far_left", ypos="head") cho "All they care about is that joke shop of theirs..." ("base", "narrow", "base", "R") cho "It's everything they ever talk about during lunch." ("base", "base", "base", "mid") @@ -1720,7 +1720,7 @@ label cc_pf_talk_T3_E3: cho "That's one of the Weasley brothers... Ron Weasley..." ("open", "base", "base", "mid") gen "Wrong Weasley you say..." ("base", xpos="far_left", ypos="head") - cho "Ron, [cho_genie_name]..." ("soft", "narrow", "base", "mid") + cho "Ron, [name_genie_cho]..." ("soft", "narrow", "base", "mid") gen "Oh, sorry then what did you say his name was?" ("base", xpos="far_left", ypos="head") cho "...{w} His name is Ron." ("disgust", "base", "base", "mid") gen "Right...{w} So what do you know about him?" ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/cho/events/intro.rpy b/game/scripts/characters/cho/events/intro.rpy index fe0ed892..e7e18a3e 100644 --- a/game/scripts/characters/cho/events/intro.rpy +++ b/game/scripts/characters/cho/events/intro.rpy @@ -729,7 +729,7 @@ label cho_intro_E3: # Repeat (This won't happen anymore) else: - gen "[hermione_name], there is something we need to talk about." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], there is something we need to talk about." ("base", xpos="far_left", ypos="head") her "Is it about Cho again?" ("annoyed", "squint", "base", "mid") gen "Yes indeed." ("base", xpos="far_left", ypos="head") gen "I'd like you to stop your..." ("base", xpos="far_left", ypos="head") @@ -800,11 +800,11 @@ label cho_intro_E3: her "I might consider dropping it." ("base", "base", "base", "R") her "Even though it would take away the immense pleasure of seeing Cho getting all worked up about it..." ("grin", "base", "base", "mid") gen "(...)" ("base", xpos="far_left", ypos="head") - her "There is something I'd like from you in return, [genie_name].{w=0.8} Or else I'll just continue with it!" ("base", "narrow", "base", "mid_soft") + her "There is something I'd like from you in return, [name_genie_hermione].{w=0.8} Or else I'll just continue with it!" ("base", "narrow", "base", "mid_soft") gen "Go on girl." ("base", xpos="far_left", ypos="head") gen "Tell me what you want." ("base", xpos="far_left", ypos="head") gen "What you really{w}, really want..." ("base", xpos="far_left", ypos="head") - her "Very well, [genie_name]." ("soft", "base", "base", "R") + her "Very well, [name_genie_hermione]." ("soft", "base", "base", "R") her "I'll tell you what I want!" ("open", "closed", "base", "mid") her "What I really, really want!" ("grin", "narrow", "base", "mid_soft") gen "{size=-4}Nice!{/size}" ("grin", xpos="far_left", ypos="head") @@ -819,7 +819,7 @@ label cho_intro_E3: her "Very well then." ("soft", "closed", "base", "mid") gen "Fifty points, to the Gryffindor house..." ("base", xpos="far_left", ypos="head") $ gryffindor += 50 - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") else: her "My what?" ("open", "narrow", "base", "mid_soft") @@ -832,14 +832,14 @@ label cho_intro_E3: gen "Yes?" ("base", xpos="far_left", ypos="head") her "I want a seat in the teacher stands during the Quidditch matches!" ("grin", "narrow", "base", "mid_soft") gen "I'm sure that could be arranged..." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") - her "[genie_name], may I ask...{w=0.6} What exactly were you and Cho talking about when I entered your office?" ("open", "base", "base", "R") + her "[name_genie_hermione], may I ask...{w=0.6} What exactly were you and Cho talking about when I entered your office?" ("open", "base", "base", "R") gen "Oh. She just wanted my help with Quidditch." ("base", xpos="far_left", ypos="head") her "*Pffff*-{w=0.4} Why doesn't it surprise me that she'd need your help with it." ("grin", "narrow", "base", "R_soft") her "How else could she possibly win that stupid Quidditch cup..." ("soft", "closed", "angry", "mid") gen "I thought that cup was important to you?" ("base", xpos="far_left", ypos="head") - her "I couldn't care less about it, [genie_name]." ("open", "closed", "base", "mid") + her "I couldn't care less about it, [name_genie_hermione]." ("open", "closed", "base", "mid") her "The only cup that is worth winning is the {i}house cup{/i}." ("open", "narrow", "base", "R_soft") her "They're completely different..." ("annoyed", "base", "angry", "mid") gen "Totally different..." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/cho/events/panties.rpy b/game/scripts/characters/cho/events/panties.rpy index 44c429a0..e3e92119 100644 --- a/game/scripts/characters/cho/events/panties.rpy +++ b/game/scripts/characters/cho/events/panties.rpy @@ -9,13 +9,13 @@ label cho_panties_response_T2: with d3 call play_music("cho") - cho "Hello, [cho_genie_name]." ("soft", "narrow", "worried", "mid", xpos="right", ypos="base") + cho "Hello, [name_genie_cho]." ("soft", "narrow", "worried", "mid", xpos="right", ypos="base") gen "Sup..." ("base", xpos="far_left", ypos="head") cho "*Uhm*..." ("annoyed", "narrow", "worried", "R") cho "I forgot to take my underwear with me the last time I was here." ("soft", "narrow", "worried", "downR", cheeks="blush") if cho_panties_soaked: - gen "Your panties! Of course, [cho_name]!{w} I've got them right here..." ("grin", xpos="far_left", ypos="head") + gen "Your panties! Of course, [name_cho_genie]!{w} I've got them right here..." ("grin", xpos="far_left", ypos="head") call cho_walk("desk", "base") pause .8 @@ -105,8 +105,8 @@ label cho_panties_response_T3: with d3 call play_music("cho") - cho "Hello, [cho_genie_name]." ("base", "narrow", "base", "downR", cheeks="blush", xpos="right", ypos="base") - gen "[cho_name]..." ("base", xpos="far_left", ypos="head") + cho "Hello, [name_genie_cho]." ("base", "narrow", "base", "downR", cheeks="blush", xpos="right", ypos="base") + gen "[name_cho_genie]..." ("base", xpos="far_left", ypos="head") cho "I believe I left you something of mine..." ("open", "narrow", "base", "down", cheeks="blush") gen "Ah, yes... Your panties, I've got them right here." ("grin", xpos="far_left", ypos="head") cho "Great!" ("base", "base", "base", "mid") diff --git a/game/scripts/characters/cho/events/quidditch/gryffindor_match.rpy b/game/scripts/characters/cho/events/quidditch/gryffindor_match.rpy index 717ace02..fe23f896 100644 --- a/game/scripts/characters/cho/events/quidditch/gryffindor_match.rpy +++ b/game/scripts/characters/cho/events/quidditch/gryffindor_match.rpy @@ -5,13 +5,13 @@ label start_gryffindor_match: # Chat with Cho the day before the match gen "It's time..." ("base", xpos="far_left", ypos="head") - cho "Time, [cho_genie_name]?" ("soft", "narrow", "raised", "mid") + cho "Time, [name_genie_cho]?" ("soft", "narrow", "raised", "mid") gen "It's Game Time! Get your Hanes on, lace up your Nike's, grab your Wheaties and your Gatorade, and we'll pick up a Big Mac on the way to the ballpark." ("base", xpos="far_left", ypos="head") cho "What are you on about?" ("disgust", "narrow", "base", "mid") gen "The big game of course!" ("grin", xpos="far_left", ypos="head") cho "The--{w=0.4} Are you talking about the Quidditch Finals?" ("soft", "base", "raised", "mid") gen "You got it." ("grin", xpos="far_left", ypos="head") - gen "Time to put your game face on [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Time to put your game face on [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "I hope you've had some practice on that broom." ("base", xpos="far_left", ypos="head") cho "I... Yes, you could say that." ("open", "narrow", "base", "downR", cheeks="blush") gen "Great." ("base", xpos="far_left", ypos="head") @@ -40,7 +40,7 @@ label start_gryffindor_match: cho "Oh... As if I would ever pull a stunt like that..." ("base", "narrow", "base", "R", cheeks="blush") gen "Isn't that the plan?" ("base", xpos="far_left", ypos="head") cho "Oh, right..." ("soft", "base", "base", "mid", cheeks="blush") - gen "You seem oddly distracted today [cho_name]." ("base", xpos="far_left", ypos="head") + gen "You seem oddly distracted today [name_cho_genie]." ("base", xpos="far_left", ypos="head") "-Tell Cho that Hermione obviously Likes her-": #(Happens on cc_pf_strip_T2_intro_E3 which is mandatory so shouldn't need a check) $ cho_hermione_affection = "hermione" @@ -73,7 +73,7 @@ label start_gryffindor_match: gen "Make sure to enjoy it, it's all downhill from there." ("base", xpos="far_left", ypos="head") cho "Huh?" ("angry", "base", "raised", "mid", cheeks="blush") gen "Sports are all about money after all. Not everyone is prepared to get tossed around and transferred between different teams like property." ("base", xpos="far_left", ypos="head") - cho "Tossed around, [cho_genie_name]? I'm sorry, I'm a little confused..." ("disgust", "narrow", "base", "mid") + cho "Tossed around, [name_genie_cho]? I'm sorry, I'm a little confused..." ("disgust", "narrow", "base", "mid") gen "I know the feeling... Enough about that, you've got a game to win!" ("base", xpos="far_left", ypos="head") gen "Go-go Ravenclaw!" ("base", xpos="far_left", ypos="head") cho "Right..." ("disgust", "base", "base", "mid") @@ -87,7 +87,7 @@ label start_gryffindor_match: else: cho "Let's hope the weather stays like it is." ("soft", "base", "base", "R") - gen "Get yourself ready, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Get yourself ready, [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "And remember, keep your eyes on the price!" ("base", xpos="far_left", ypos="head") cho "The cup..." ("smile", "narrow", "base", "R") #stare, smile @@ -169,7 +169,7 @@ label gryffindor_match: cho "(But... What if he's got a backup plan?)" cho "(I'll have to ask him!)" - cho "[cho_genie_name]!" + cho "[name_genie_cho]!" cho "(Wait, he's expecting me to drink the potion as a backup!)" cho "(I'll just tell him I came to fetch--)" @@ -207,7 +207,7 @@ label gryffindor_match: #show image "ch_cho fly_window_masked" onlayer screens zorder 5 #call cho_chibi("fly_window", "mid", "base") - cho "[cho_genie_name]!" + cho "[name_genie_cho]!" if cho_bj_choice == "points": gen "(No, she got pissed when I offered points before.)" ("base", xpos="far_left", ypos="head") @@ -217,7 +217,7 @@ label gryffindor_match: gen "(All she cares about is that broomstick sport of hers.)" ("base", xpos="far_left", ypos="head") gen "I'm such an idiot!" ("angry", xpos="far_left", ypos="head") # Says out loud - cho "Hey, [cho_genie_name]!" + cho "Hey, [name_genie_cho]!" cho "The game is about to start... You're going to be late!" gen "W-What..." ("base", xpos="far_left", ypos="head") @@ -230,7 +230,7 @@ label gryffindor_match: call gen_chibi("stand_alt") with d3 - gen "[cho_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]?" ("base", xpos="far_left", ypos="head") gen "What are you doing in here?" ("base", xpos="far_left", ypos="head") gen "Or rather, what are you doing {i}out there{/i}, outside my window?" ("base", xpos="far_left", ypos="head") @@ -238,7 +238,7 @@ label gryffindor_match: cho "(I screwed up the whole plan, I poured out the potion you left for me, the broom isn't working, and my world is crumbling to pieces!)" cho "(...)" - cho "I flew up here to remind you about the finals, [cho_genie_name]." + cho "I flew up here to remind you about the finals, [name_genie_cho]." gen "Ah yes, I suppose I better get going..." ("base", xpos="far_left", ypos="head") call gen_chibi("stand") # Genie slowly walks away. @@ -250,7 +250,7 @@ label gryffindor_match: call chibi_emote("hide", "genie") gen "Yeah, good luck..." ("base", xpos="far_left", ypos="head") call gen_walk(xpos="mid", ypos="base", speed=0.75) - cho "Are you alright, [cho_genie_name]?" + cho "Are you alright, [name_genie_cho]?" gen "It's nothing, don't worry about it..." ("base", xpos="far_left", ypos="head") gen "Meet you at the pitch." ("base", xpos="far_left", ypos="head") cho "Alright... See you at the pitch then." @@ -440,7 +440,7 @@ label gryffindor_match: gen "And lest we forget the twins, now walking onto the pitch--" ("open") - gen "{size=-4}Psst... [hermione_name], what were their names again?{/size}" ("base") + gen "{size=-4}Psst... [name_hermione_genie], what were their names again?{/size}" ("base") her "The Beaters? Fred and--" ("open", "happy", "base", "mid", xpos="base", ypos="head", flip=False) $ renpy.sound.play("sounds/microphone_feedback.ogg") @@ -1810,10 +1810,10 @@ label gryffindor_match_return: #Cho chibi appears naked next to the window turned to right - "Voice outside the window" "Stay... [cho_broom_name]." + "Voice outside the window" "Stay... [name_broom_cho]." #Cho walks to the front of the desk - gen "[cho_broom_name]? Isn't that--" ("base", xpos="far_left", ypos="head") + gen "[name_broom_cho]? Isn't that--" ("base", xpos="far_left", ypos="head") call cho_chibi("stand", xpos=441, ypos=400, flip=False) call cho_walk("desk", "base") @@ -2212,7 +2212,7 @@ label gryffindor_match_return: gen "*Huh*?" ("base", xpos="far_left", ypos="head") gen "What are you mumbling--" ("base", xpos="far_left", ypos="head") play music "music/marty-gots-a-plan-by-kevin-macleod.ogg" fadeout 3 fadein 1.0 - cho "[cho_genie_name], Why don't you take your clothes off and get on that desk for me?" ("soft", "narrow", "base", "mid", cheeks="blush") #smirk + cho "[name_genie_cho], Why don't you take your clothes off and get on that desk for me?" ("soft", "narrow", "base", "mid", cheeks="blush") #smirk if _in_replay: return @@ -2263,7 +2263,7 @@ label gryffindor_match_return: pause .8 cho "What the--{w=0.2} Your figure feels a lot more muscular than I imagined." ("base", "base", "base", "mid") - gen "[cho_name]?" + gen "[name_cho_genie]?" cho "No matter..." ("base", "base", "base", "mid") cho "Now, lay down on the desk for me." ("base", "base", "base", "mid") @@ -2278,7 +2278,7 @@ label gryffindor_match_return: with d9 - cho "*Mmm*...{w=0.4} You're lucky I've been training for this, [cho_genie_name]..." ("smile", "narrow", "base", "down", cheeks="heavy_blush", ypos="head", flip=False, trans=d3) + cho "*Mmm*...{w=0.4} You're lucky I've been training for this, [name_genie_cho]..." ("smile", "narrow", "base", "down", cheeks="heavy_blush", ypos="head", flip=False, trans=d3) cho "Of course... I figured it'd come to this eventually..." ("open", "closed", "base", "mid", cheeks="heavy_blush") cho "Ever since I saw this thing for the first time..." ("base", "narrow", "base", "down", cheeks="heavy_blush") gen "(Why's she doing this? She already won the cup didn't she?)" @@ -2540,7 +2540,7 @@ label gryffindor_match_return: gen "That... Was amazing!" ("grin", xpos="far_left", ypos="head") cho "...{w=0.5}{nw}" ("soft", "narrow", "base", "stare", cheeks="heavy_blush", xpos="base", ypos="base", trans=d3) cho "...{fast}" ("soft", "wide", "base", "stare", cheeks="heavy_blush") - gen "[cho_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]?" ("base", xpos="far_left", ypos="head") cho "Oh my god...{w=0.4} The potion!" ("disgust", "wide", "base", "stare", cheeks="heavy_blush") gen "What are you--" ("base", xpos="far_left", ypos="head") cho "I can't believe it made me do that!" ("disgust", "narrow", "angry", "down", cheeks="heavy_blush") diff --git a/game/scripts/characters/cho/events/quidditch/gryffindor_practice.rpy b/game/scripts/characters/cho/events/quidditch/gryffindor_practice.rpy index bade041a..4fe5d206 100644 --- a/game/scripts/characters/cho/events/quidditch/gryffindor_practice.rpy +++ b/game/scripts/characters/cho/events/quidditch/gryffindor_practice.rpy @@ -2,7 +2,7 @@ label cc_gt_start: gen "Alright then. Let's get you out there to smack some asses!" ("base", xpos="far_left", ypos="head") - cho "Smack some asses, [cho_genie_name]?" ("angry", "base", "base", "mid") + cho "Smack some asses, [name_genie_cho]?" ("angry", "base", "base", "mid") gen "You've heard me!" ("base", xpos="far_left", ypos="head") gen "It's not against the rules is it?" ("base", xpos="far_left", ypos="head") cho "W--{w=0.2} Well... I suppose not, unless I do it with my elbows." ("soft", "narrow", "base", "R") @@ -17,11 +17,11 @@ label cc_gt_start: cho "Isn't that a bit extreme?" ("angry", "narrow", "base", "mid", cheeks="blush") gen "A good ole love tap is hardly extreme." ("base", xpos="far_left", ypos="head") gen "If you do it well enough then I'm sure Miss Granger will notice." ("base", xpos="far_left", ypos="head") - cho "Well enough [cho_genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") + cho "Well enough [name_genie_cho]?" ("angry", "narrow", "base", "mid", cheeks="blush") gen "Yeah, make those slaps echo across the pitch!" ("base", xpos="far_left", ypos="head") cho "*Hmm*... Alright then, I'll make sure of that..." ("open", "narrow", "base", "downR", cheeks="blush") - gen "Great! Then get out there and spank some booty, [cho_name]." ("base", xpos="far_left", ypos="head") - cho "On it, [cho_genie_name]!" ("angry", "closed", "base", "mid", cheeks="blush") + gen "Great! Then get out there and spank some booty, [name_cho_genie]." ("base", xpos="far_left", ypos="head") + cho "On it, [name_genie_cho]!" ("angry", "closed", "base", "mid", cheeks="blush") # Cho leaves. call cho_walk(action="leave") @@ -45,7 +45,7 @@ label cc_gt_return: call cho_walk(xpos="mid", ypos="base", action="enter") - gen "[cho_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]!" ("base", xpos="far_left", ypos="head") gen "Had a fruitful day, smacking some peaches?" ("base", xpos="far_left", ypos="head") cho "I did not!" ("disgust", "narrow", "angry", "mid", cheeks="blush", trans=d3) gen "Too bad, I was so sure it would have worked." ("base", xpos="far_left", ypos="head") @@ -66,7 +66,7 @@ label cc_gt_return: cho "They must have put them on my broom while I was changing, after the practise." ("disgust", "narrow", "angry", "mid") gen "Can't you just borrow another broom from, I don't know, one of the cleaning cupboards?" ("base", xpos="far_left", ypos="head") cho "Cleaning cupboards--" ("angry", "wide", "base", "mid") - cho "Please, [cho_genie_name], this isn't a joking matter." ("angry", "narrow", "base", "mid") + cho "Please, [name_genie_cho], this isn't a joking matter." ("angry", "narrow", "base", "mid") cho "Being this close to the finals, I won't be able to purchase a proper professionally crafted broom in time." ("angry", "narrow", "base", "mid") gen "Why not?" ("base", xpos="far_left", ypos="head") cho "They're very expensive." ("disgust", "narrow", "base", "mid") @@ -83,15 +83,15 @@ label cc_gt_return: cho "I assure you... Even the brooms provided for flying lessons are terrible." ("disgust", "narrow", "angry", "mid") gen "I'm sure they're fine..." ("base", xpos="far_left", ypos="head") gen "(Please don't make me buy a bloody broom, I'll go bankrupt...)" ("base", xpos="far_left", ypos="head") - cho "Please, [cho_genie_name]..." ("soft", "narrow", "worried", "mid") + cho "Please, [name_genie_cho]..." ("soft", "narrow", "worried", "mid") gen "(Here we go...)" ("base", xpos="far_left", ypos="head") cho "Could you buy me a broom?" ("quiver", "narrow", "worried", "mid") gen "Hold on just a second... Termites? Are you just trying to get me to buy you a new broom again?" ("angry", xpos="far_left", ypos="head") cho "Of course not! You think I would lie about something like this?" ("clench", "narrow", "worried", "mid") gen "..." ("base", xpos="far_left", ypos="head") - cho "Please believe me [cho_genie_name]!" ("scream", "closed", "worried", "mid") + cho "Please believe me [name_genie_cho]!" ("scream", "closed", "worried", "mid") gen "A school supplied broom will have to suffice." ("base", xpos="far_left", ypos="head") - cho "Why aren't you listening, [cho_genie_name]!" ("angry", "wide", "worried", "mid") + cho "Why aren't you listening, [name_genie_cho]!" ("angry", "wide", "worried", "mid") # Used in Quidditch Outro label .introspection: @@ -122,7 +122,7 @@ label cc_gt_return: cho "It's a waste of time but if that's what it takes then sure..." ("annoyed", "closed", "angry", "mid") cho "I'll meet you at the pitch tomorrow morning." ("open", "closed", "angry", "mid") #smirk gen "Excellent, I'll...{w=0.4} Wait, did you say tomorrow morning?" ("base", xpos="far_left", ypos="head") - cho "Yes, and you better be there, [cho_genie_name]..." ("disgust", "narrow", "angry", "mid") #smiling + cho "Yes, and you better be there, [name_genie_cho]..." ("disgust", "narrow", "angry", "mid") #smiling gen "(The things a Coach has to do...{w=0.4} Wake up in the morning...)" ("base", xpos="far_left", ypos="head") gen "What else do you need from me? Shall I put together a cheerleading squad as well?" ("base", xpos="far_left", ypos="head") cho "Oh, yes please! That should help with riling up Hermione even more." ("smile", "narrow", "base", "mid") @@ -136,7 +136,7 @@ label cc_gt_return: cho "(What if he forces me to use one... There's no way I would be able to outspeed even their keeper...)" ("clench", "narrow", "base", "down") cho "(I have to win the finals, no matter what!)" ("angry", "closed", "base", "mid") cho "(But how...)" ("annoyed", "narrow", "base", "down") - gen "[cho_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]?" ("base", xpos="far_left", ypos="head") #Cho leaves. call cho_walk(action="leave") diff --git a/game/scripts/characters/cho/events/quidditch/hufflepuff_match.rpy b/game/scripts/characters/cho/events/quidditch/hufflepuff_match.rpy index 200215b7..6eec2639 100644 --- a/game/scripts/characters/cho/events/quidditch/hufflepuff_match.rpy +++ b/game/scripts/characters/cho/events/quidditch/hufflepuff_match.rpy @@ -5,28 +5,28 @@ label start_hufflepuff_match: # Chat with Cho the day before the match cho "" (xpos="mid", ypos="base", trans=fade) - gen "[cho_name], what do you say... ready for your first game of the season?" ("base", xpos="far_left", ypos="head") - cho "To be honest, [cho_genie_name], I'm feeling quite nervous." ("soft", "base", "worried", "R") + gen "[name_cho_genie], what do you say... ready for your first game of the season?" ("base", xpos="far_left", ypos="head") + cho "To be honest, [name_genie_cho], I'm feeling quite nervous." ("soft", "base", "worried", "R") gen "Don't worry. I believe you are ready..." ("base", xpos="far_left", ypos="head") gen "When are you going to play against Hufflepuff?" ("base", xpos="far_left", ypos="head") - cho "That's up to you, [cho_genie_name]. As headmaster you decide when the games will be held..." ("open", "base", "base", "mid") + cho "That's up to you, [name_genie_cho]. As headmaster you decide when the games will be held..." ("open", "base", "base", "mid") gen "So if I were to say tomorrow, it will happen tomorrow?" ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "base", "base", "mid") + cho "Yes, [name_genie_cho]." ("base", "base", "base", "mid") gen "Well then, tomorrow it is!" ("grin", xpos="far_left", ypos="head") if game.weather in {"rain", "storm"}: - cho "Sounds great, [cho_genie_name]. I just hope it stops raining before then." ("soft", "base", "base", "R") + cho "Sounds great, [name_genie_cho]. I just hope it stops raining before then." ("soft", "base", "base", "R") elif game.weather in {"snow", "blizzard"}: - cho "Sounds great, [cho_genie_name]. I just hope it stops snowing before then." ("soft", "base", "base", "R") + cho "Sounds great, [name_genie_cho]. I just hope it stops snowing before then." ("soft", "base", "base", "R") elif game.weather == "overcast": - cho "Sounds great, [cho_genie_name]. I just hope the weather doesn't get worse." ("soft", "base", "base", "R") + cho "Sounds great, [name_genie_cho]. I just hope the weather doesn't get worse." ("soft", "base", "base", "R") else: - cho "Sounds great, [cho_genie_name]. I just hope the weather stays like it is." ("soft", "base", "base", "R") + cho "Sounds great, [name_genie_cho]. I just hope the weather stays like it is." ("soft", "base", "base", "R") gen "With our tactics, this will be a piece of cake!" ("base", xpos="far_left", ypos="head") - cho "I hope you're right, [cho_genie_name]." ("base", "base", "base", "mid") + cho "I hope you're right, [name_genie_cho]." ("base", "base", "base", "mid") cho "Anyhow, I need to prepare for the game." ("soft", "base", "base", "R") - cho "See you then, [cho_genie_name]!" ("smile", "base", "base", "mid") + cho "See you then, [name_genie_cho]!" ("smile", "base", "base", "mid") gen "Good luck!" ("base", xpos="far_left", ypos="head") call cho_walk(action="leave") @@ -1103,7 +1103,7 @@ label hufflepuff_match_return: $ renpy.sound.play("sounds/MaleGasp.ogg") gen "{size=+10}IT WASN'T ME!{/size}" ("angry", xpos="far_left", ypos="head") gen "..........." ("base", xpos="far_left", ypos="head") - cho "*huh*?{w=0.5} Are you okay, [cho_genie_name]?" ("soft", "narrow", "base", "mid") + cho "*huh*?{w=0.5} Are you okay, [name_genie_cho]?" ("soft", "narrow", "base", "mid") gen "Wha--" ("base", xpos="far_left", ypos="head") gen "Of course I am!" ("angry", xpos="far_left", ypos="head") cho "..." ("annoyed", "narrow", "raised", "R") @@ -1125,7 +1125,7 @@ label hufflepuff_match_return: cho "*Ahh*{w=0.3} I can't wait!" ("silly", "happyCl", "base", "mid") cho "I better go celebrate with the team now!" ("clench", "wide", "base", "mid") gen "Well, off you go then." ("base", xpos="far_left", ypos="head") - cho "Thank you [cho_genie_name]..." ("smile", "wink", "base", "mid") + cho "Thank you [name_genie_cho]..." ("smile", "wink", "base", "mid") # # TODO: Add panty flash in form of a reward/tease # diff --git a/game/scripts/characters/cho/events/quidditch/hufflepuff_practice.rpy b/game/scripts/characters/cho/events/quidditch/hufflepuff_practice.rpy index 7a248d26..adb2a483 100644 --- a/game/scripts/characters/cho/events/quidditch/hufflepuff_practice.rpy +++ b/game/scripts/characters/cho/events/quidditch/hufflepuff_practice.rpy @@ -20,7 +20,7 @@ label cc_ht_start: gen "Great. Get your team ready cause you are going to play today." ("base", xpos="far_left", ypos="head") cho "I'll give their team captain a heads up during classes then." ("soft", "narrow", "base", "mid") gen "Good, let me know how it went once practice finishes." ("base", xpos="far_left", ypos="head") - cho "I will, [cho_genie_name]. Wish me luck." ("soft", "base", "base", "mid") + cho "I will, [name_genie_cho]. Wish me luck." ("soft", "base", "base", "mid") # Cho leaves. call cho_walk(action="leave") @@ -41,10 +41,10 @@ label cc_ht_return: menu: "\"Come in!\"": - cho "Yes, [cho_genie_name]..." + cho "Yes, [name_genie_cho]..." "\"Who is it?\"": - cho "Cho Chang, [cho_genie_name]." - gen "Come on in, [cho_name]!" ("base", xpos="far_left", ypos="head") + cho "Cho Chang, [name_genie_cho]." + gen "Come on in, [name_cho_genie]!" ("base", xpos="far_left", ypos="head") cho "..." $ cho.equip(cho_outfit_quidditch) @@ -71,12 +71,12 @@ label cc_ht_return: gen "Is this the first time you've caught one?" ("base", xpos="far_left", ypos="head") cho "*Mhmm*...{w=0.3} This is the first game of quidditch Ravenclaw has won in over six years!" ("smile", "base", "base", "mid") gen "Wasn't this just a practice game?" ("base", xpos="far_left", ypos="head") - cho "I was including the practices, [cho_genie_name]..." ("annoyed", "narrow", "worried", "downR") + cho "I was including the practices, [name_genie_cho]..." ("annoyed", "narrow", "worried", "downR") gen "Oh..." ("base", xpos="far_left", ypos="head") cho "Ravenclaw...{w} isn't very good..." ("annoyed", "narrow", "worried", "down") cho "But I have a feeling that's going to change this year!" ("base", "happyCl", "base", "mid") gen "And I am happy to be of help!" ("grin", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]! Thank you so much!" ("smile", "narrow", "base", "mid") + cho "Yes, [name_genie_cho]! Thank you so much!" ("smile", "narrow", "base", "mid") cho "If there is any way I can return the favour...?" ("horny", "base", "raised", "mid") gen "Yes, but we can discuss that after you've won the game." ("base", xpos="far_left", ypos="head") gen "And have you do some more {b}advanced{/b} favours for me." ("grin", xpos="far_left", ypos="head") @@ -84,13 +84,13 @@ label cc_ht_return: #gen "Would you say you've had enough practice to play against them in a tourney game?" ("base", xpos="far_left", ypos="head") #cho "Absolutely! The next time we will confront Hufflepuff, they will be crushed!" ("smile", "narrow", "angry", "mid") #cho "This should be an easy win for Ravenclaw." ("base", "closed", "base", "mid") - cho "*Ehm*... [cho_genie_name]..." ("horny", "base", "worried", "mid") + cho "*Ehm*... [name_genie_cho]..." ("horny", "base", "worried", "mid") cho "The whole house is celebrating our win at the moment..." ("soft", "narrow", "worried", "mid") cho "And I'd rather not miss spending some time with--" ("horny", "base", "worried", "R") - gen "You did well today, [cho_name]." ("angry", xpos="far_left", ypos="head") + gen "You did well today, [name_cho_genie]." ("angry", xpos="far_left", ypos="head") cho "" ("horny", "base", "base", "mid") gen "Go and party! You've earned it." ("grin", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]... For everything." ("base", "narrow", "base", "mid") + cho "Thank you, [name_genie_cho]... For everything." ("base", "narrow", "base", "mid") cho "Have a good night!" ("smile", "base", "base", "mid") gen "You too..." ("base", xpos="far_left", ypos="head") @@ -123,7 +123,7 @@ label cc_ht_talk: gen "I've got great news for you! I found us a new commentator!" ("grin", xpos="far_left", ypos="head") cho "Is it Hermione?" ("soft", "narrow", "base", "mid") gen "Yes! Very good guess!" ("grin", xpos="far_left", ypos="head") - cho "It wasn't a guess, [cho_genie_name]. We've discussed this already." ("annoyed", "narrow", "angry", "mid") + cho "It wasn't a guess, [name_genie_cho]. We've discussed this already." ("annoyed", "narrow", "angry", "mid") gen "Oh, sure..." ("base", xpos="far_left", ypos="head") cho "But I'm surprised she even took up the task..." ("annoyed", "base", "base", "R") gen "Right away. No questions asked." ("grin", xpos="far_left", ypos="head") @@ -169,11 +169,11 @@ label cc_ht_talk: gen "What do you mean you can't? It's the perfect strategy!" ("base", xpos="far_left", ypos="head") cho "But..." ("soft", "base", "base", "down", cheeks="blush") gen "Where's your confidence, your spirit?" ("base", xpos="far_left", ypos="head") - cho "I'm sorry, [cho_genie_name], forget I said anything..." ("open", "happyCl", "base", "mid", cheeks="blush") + cho "I'm sorry, [name_genie_cho], forget I said anything..." ("open", "happyCl", "base", "mid", cheeks="blush") gen "(*Hmm*... She doesn't look very confident to me...)" ("base", xpos="far_left", ypos="head") gen "(Perhaps I should train her more in private.)" ("base", xpos="far_left", ypos="head") else: - cho "I'm confident that we can win this, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "I'm confident that we can win this, [name_genie_cho]." ("smile", "base", "base", "mid") cho "" (xpos="base", ypos="base", trans=fade) diff --git a/game/scripts/characters/cho/events/quidditch/intros.rpy b/game/scripts/characters/cho/events/quidditch/intros.rpy index 19f4dd57..01ab3546 100644 --- a/game/scripts/characters/cho/events/quidditch/intros.rpy +++ b/game/scripts/characters/cho/events/quidditch/intros.rpy @@ -14,46 +14,46 @@ label cho_quid_E1: menu: "\"-Coach-\"": - $ cho_genie_name = "Coach" + $ name_genie_cho = "Coach" "\"-Sergeant-\"": - $ cho_genie_name = "Sergeant" + $ name_genie_cho = "Sergeant" "\"-Captain-\"": - $ cho_genie_name = "Captain" + $ name_genie_cho = "Captain" "\"-Professor-\"": - $ cho_genie_name = "Professor" + $ name_genie_cho = "Professor" gen "You know what, keep calling me Professor..." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("base", "base", "angry", "mid") + cho "Yes, [name_genie_cho]." ("base", "base", "angry", "mid") gen "And you I will call..." ("base", xpos="far_left", ypos="head") menu: "\"-Cadet-\"": - $ cho_name = "Cadet" + $ name_cho_genie = "Cadet" "\"-Pilot-\"": - $ cho_name = "Pilot" + $ name_cho_genie = "Pilot" "\"-Maggot-\"": - $ cho_name = "Maggot" + $ name_cho_genie = "Maggot" cho "(...)" ("quiver", "base", "worried", "R") "\"-Eagle One-\"": - $ cho_name = "Eagle One" + $ name_cho_genie = "Eagle One" "\"-Cho-\"": - $ cho_name = "Cho" + $ name_cho_genie = "Cho" "\"-Miss Chang-\"": - $ cho_name = "Miss Chang" - cho "Don't you already call me that, [cho_genie_name]?" ("open", "base", "raised", "mid") - gen "Never question your [cho_genie_name], [cho_name]!" ("base", xpos="far_left", ypos="head") + $ name_cho_genie = "Miss Chang" + cho "Don't you already call me that, [name_genie_cho]?" ("open", "base", "raised", "mid") + gen "Never question your [name_genie_cho], [name_cho_genie]!" ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]!" ("soft", "closed", "angry", "mid") + cho "Yes, [name_genie_cho]!" ("soft", "closed", "angry", "mid") gen "Let's start with your {i}Quiddesh{/i} training!" ("angry", xpos="far_left", ypos="head") cho "\"Quidditch\", Sir." ("annoyed", "narrow", "angry", "mid") - gen "Let's start with your \"Quidditch\" training, [cho_name]." ("angry", xpos="far_left", ypos="head") + gen "Let's start with your \"Quidditch\" training, [name_cho_genie]." ("angry", xpos="far_left", ypos="head") cho "!!!" ("smile", "happyCl", "base", "mid", cheeks="blush") cho "Shall I call the rest of my team up here?" ("open", "base", "base", "mid") gen "What? Why?" ("base", xpos="far_left", ypos="head") cho "So they can hear your expertise as well, of course." ("soft", "narrow", "base", "mid") gen "I don't think that will be necessary." ("base", xpos="far_left", ypos="head") gen "Let's focus on you, for the moment..." ("base", xpos="far_left", ypos="head") - cho "Very well, [cho_genie_name]." ("soft", "base", "worried", "R") + cho "Very well, [name_genie_cho]." ("soft", "base", "worried", "R") gen "Tell me, how do you usually play?{w} Is there a specific reason why you've been losing?" ("base", xpos="far_left", ypos="head") cho "Well, it sort of differs depending which team we're playing against..." ("open", "narrow", "base", "R") @@ -62,13 +62,13 @@ label cho_quid_E1: cho "He's always catching the snitch before me." ("quiver", "narrow", "worried", "down") cho "I don't know how he does it, to be honest. It always happens so quick..." ("open", "narrow", "worried", "mid") gen "And you are \"both\" looking for that thing? At the same time?" ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("soft", "base", "base", "mid") + cho "Yes, [name_genie_cho]." ("soft", "base", "base", "mid") cho "I do my best flying around the pitch searching for it. But it's just so small and really tricky to see..." ("angry", "base", "worried", "down") gen "Why don't you look for it together? After all there is only one." ("base", xpos="far_left", ypos="head") cho "*Hmm*?" ("annoyed", "base", "base", "mid") gen "You just need to grab that Snatch before he does." ("grin", xpos="far_left", ypos="head") cho "???" ("annoyed", "wide", "raised", "mid") - cho "[cho_genie_name]! It's \"Snitch\"!" ("angry", "closed", "angry", "mid") + cho "[name_genie_cho]! It's \"Snitch\"!" ("angry", "closed", "angry", "mid") gen "Potato {i}potato{/i}..." ("base", xpos="far_left", ypos="head") cho "You just said the same thing twice..." ("open", "base", "raised", "R") gen "Exactly..." ("base", xpos="far_left", ypos="head") @@ -84,13 +84,13 @@ label cho_quid_E1: gen "And you just gave me a great idea." ("base", xpos="far_left", ypos="head") gen "We'll need to distract him!" ("base", xpos="far_left", ypos="head") gen "So you can get a hold of that Snatch before he does!" ("angry", xpos="far_left", ypos="head") - cho "Please stop saying that, [cho_genie_name]!" ("angry", "closed", "angry", "mid") + cho "Please stop saying that, [name_genie_cho]!" ("angry", "closed", "angry", "mid") gen "Saying what?" ("base", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "mid") cho "{size=-4}\"Snatch.\"{/size}" ("soft", "narrow", "angry", "mid") gen "*He-he-he*...{w} Now you've said it!" ("grin", xpos="far_left", ypos="head") - cho "Could we please just talk about your plan, [cho_genie_name]?" ("open", "narrow", "angry", "R") - gen "Patience, [cho_name]." ("base", xpos="far_left", ypos="head") + cho "Could we please just talk about your plan, [name_genie_cho]?" ("open", "narrow", "angry", "R") + gen "Patience, [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "Tell me!" ("scream", "closed", "angry", "mid", trans=hpunch) cho "" ("annoyed", "narrow", "angry", "mid") @@ -188,7 +188,7 @@ label cho_quid_E2: call hide_blkfade pause .8 - cho "Ready when you are, [cho_genie_name]!" ("smile", "base", "base", "mid", xpos="right", ypos="base", trans=d3) + cho "Ready when you are, [name_genie_cho]!" ("smile", "base", "base", "mid", xpos="right", ypos="base", trans=d3) gen "Perfect, now get on that broom and follow my instructions..." ("base", xpos="far_left", ypos="head") hide cho_main with d3 @@ -273,7 +273,7 @@ label cho_quid_E2: gen "Great job, we should definitely use positioning to our advantage!" ("base", xpos="far_left", ypos="head") cho "Well, that much is true for any quidditch game..." ("open", "base", "raised", "mid") cho "So I'm not exactly sure what we've achieved here." ("soft", "base", "raised", "R") - gen "All in due time, [cho_name]..." ("base", xpos="far_left", ypos="head") + gen "All in due time, [name_cho_genie]..." ("base", xpos="far_left", ypos="head") gen "With my training methods you'll have the upper hand over those other teams, I'm sure of it." ("base", xpos="far_left", ypos="head") cho "I'll have to take you for your word then..." ("base", "base", "raised", "mid") #cautious smile cho "So, what's next?" ("open", "base", "raised", "mid") @@ -282,8 +282,8 @@ label cho_quid_E2: gen "Yes, I need to come up with a pl--{w=0.3}{nw}" ("base", xpos="far_left", ypos="head") gen "Yes, I need to come up with a pl--{fast} prepare for our next session!" ("grin", xpos="far_left", ypos="head") cho "Oh...{w=0.3} okay." ("soft", "base", "base", "down") - cho "Bye then, [cho_genie_name]." ("base", "base", "base", "mid") - gen "Bye for now, [cho_name]." ("base", xpos="far_left", ypos="head") + cho "Bye then, [name_genie_cho]." ("base", "base", "base", "mid") + gen "Bye for now, [name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_walk(action="leave") @@ -308,12 +308,12 @@ label cho_quid_E3: call play_music("stop") - cho "[cho_genie_name], there's been a disaster!" ("scream", "closed", "angry", "mid", xpos="mid", ypos="base", trans=hpunch) + cho "[name_genie_cho], there's been a disaster!" ("scream", "closed", "angry", "mid", xpos="mid", ypos="base", trans=hpunch) call play_music("cho") gen "Off to a good start..." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], something terrible happened to Lee Jordan!" ("soft", "narrow", "worried", "mid") + cho "[name_genie_cho], something terrible happened to Lee Jordan!" ("soft", "narrow", "worried", "mid") gen "Lee Jordan?{w=0.5} Is that a famous basketball player I'm not aware of?" ("base", xpos="far_left", ypos="head") cho "What?{w=0.5} No Sir, Lee is our quidditch commentator!" ("soft", "narrow", "base", "mid") cho "He got hit in the throat by a bludger!" ("disgust", "base", "raised", "down") @@ -336,7 +336,7 @@ label cho_quid_E3: cho "That mischievous little..." ("clench", "wide", "raised", "mid") cho "Not a chance!" ("open", "closed", "angry", "mid") - cho "Besides, [cho_genie_name]. Did you forget that she's a Slytherin?" ("open", "narrow", "angry", "mid") + cho "Besides, [name_genie_cho]. Did you forget that she's a Slytherin?" ("open", "narrow", "angry", "mid") gen "Right. No Slytherins. Got it." ("base", xpos="far_left", ypos="head") gen "How about..." ("base", xpos="far_left", ypos="head") @@ -345,13 +345,13 @@ label cho_quid_E3: "\"Luna\"" if luna_unlocked and not _selected[1]: $ _selected[1] = True - cho "Luna? Luna Lovegood, [cho_genie_name]?" ("open", "narrow", "raised", "mid") + cho "Luna? Luna Lovegood, [name_genie_cho]?" ("open", "narrow", "raised", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") cho "Surely{w=0.3}, nobody in their right mind would let Luna Lovegood commentate." ("grin", "happyCl", "base", "mid") # Book quote. #gen "I am of right mind, Miss Chang...{w} and don't call me Shirley..." ("base", xpos="far_left", ypos="head") gen "(...)" ("base", xpos="far_left", ypos="head") cho "Knowing her she'd probably commentate the grass as it's growing..." ("open", "base", "base", "R") - cho "Trust me, [cho_genie_name]. Luna would be a terrible choice!" ("soft", "narrow", "base", "mid") + cho "Trust me, [name_genie_cho]. Luna would be a terrible choice!" ("soft", "narrow", "base", "mid") gen "Fine. How about..." ("base", xpos="far_left", ypos="head") jump cho_quid_E3.choices @@ -406,8 +406,8 @@ label cho_quid_E4: # Genie asks Hermione if she would agree to commentate the game. her "" (xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], how much do you know about Quidditch?" ("base", xpos="far_left", ypos="head") - her "[genie_name], I mean, I've taken flying lessons... they're mandatory." ("open", "base", "base", "R") + gen "[name_hermione_genie], how much do you know about Quidditch?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I mean, I've taken flying lessons... they're mandatory." ("open", "base", "base", "R") gen "Ah, okay... and here I was hoping that you'd be able to commentate this years quidditch games..." ("base", xpos="far_left", ypos="head") her "Me, wasting time on something as stupid as--" ("base", "closed", "base", "mid") her "Wait...{w=0.3} What did you say?" ("open", "squint", "base", "mid") @@ -428,7 +428,7 @@ label cho_quid_E4: gen "I thought you just said you didn't--" ("angry", xpos="far_left", ypos="head") her "Cho will be so mad!" ("crooked_smile", "happy", "base", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") - gen "Congratulations then, [hermione_name]! You got the job." ("grin", xpos="far_left", ypos="head") + gen "Congratulations then, [name_hermione_genie]! You got the job." ("grin", xpos="far_left", ypos="head") her "Ah!!! I better start learning--{w=0.4} I mean, preparing my opening speech!" ("open", "wide", "base", "mid", trans=hpunch) call her_walk(action="leave", speed=1.5) @@ -450,16 +450,16 @@ label cho_quid_E5: call cho_walk("mid", "base") if game.daytime: - cho "Good morning, [cho_genie_name]..." ("annoyed", "narrow", "worried", "downR", xpos="right", ypos="base", trans=d3) + cho "Good morning, [name_genie_cho]..." ("annoyed", "narrow", "worried", "downR", xpos="right", ypos="base", trans=d3) gen "Mornin'." ("base", xpos="far_left", ypos="head") else: - cho "Good evening, [cho_genie_name]..." ("annoyed", "narrow", "worried", "downR", xpos="right", ypos="base", trans=d3) + cho "Good evening, [name_genie_cho]..." ("annoyed", "narrow", "worried", "downR", xpos="right", ypos="base", trans=d3) gen "Evenin'." ("base", xpos="far_left", ypos="head") - gen "[cho_name], before we get back to our usual diversions, why don't we have a little chat about the recent happenings?" ("base", xpos="far_left", ypos="head") - cho "Very well, [cho_genie_name]..." ("open", "narrow", "worried", "mid") + gen "[name_cho_genie], before we get back to our usual diversions, why don't we have a little chat about the recent happenings?" ("base", xpos="far_left", ypos="head") + cho "Very well, [name_genie_cho]..." ("open", "narrow", "worried", "mid") gen "Cheer up, will you..." ("base", xpos="far_left", ypos="head") gen "Where did that high-spirit from your \"big win\" fly off to?" ("base", xpos="far_left", ypos="head") - cho "Nowhere, [cho_genie_name]...{w=0.6} I'm still very happy we won the game, it's just..." ("open", "narrow", "worried", "down") # worried/sad + cho "Nowhere, [name_genie_cho]...{w=0.6} I'm still very happy we won the game, it's just..." ("open", "narrow", "worried", "down") # worried/sad cho "I'm a bit worried about the future." ("soft", "narrow", "worried", "mid") # sad/relieved gen "The future?" ("base", xpos="far_left", ypos="head") gen "You didn't get pregnant during your little celebration event, did you?" ("base", xpos="far_left", ypos="head") @@ -473,7 +473,7 @@ label cho_quid_E5: gen "{size=-6}Always some stupid quest...{/size}" ("base", xpos="far_left", ypos="head") cho "Pardon?" ("annoyed", "narrow", "raised", "mid") gen "It's nothing,{w=0.5} please continue." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], I worry that we won't be able to beat Slytherin in the next match." ("annoyed", "narrow", "worried", "mid") # eyebrows sad, eyes mid, mouth pout + cho "[name_genie_cho], I worry that we won't be able to beat Slytherin in the next match." ("annoyed", "narrow", "worried", "mid") # eyebrows sad, eyes mid, mouth pout gen "Slytherin is next?{w=0.6} Sweet!" ("grin", xpos="far_left", ypos="head") cho "They're an entirely different ballpark compared to Hufflepuff." ("open", "base", "worried", "mid") gen "Really? Why's that?" ("base", xpos="far_left", ypos="head") @@ -485,7 +485,7 @@ label cho_quid_E5: gen "(And show Snape who's boss.)" ("grin", xpos="far_left", ypos="head") gen "Trust me, our tactics have worked perfectly thus far, haven't they?" ("base", xpos="far_left", ypos="head") cho "I--{w=0.3} yes..." ("soft", "base", "raised", "downR") - cho "You're right! Thank you, [cho_genie_name]." ("base", "base", "base", "mid") # happy + cho "You're right! Thank you, [name_genie_cho]." ("base", "base", "base", "mid") # happy $ cho_quid.E5_complete = True $ cho_favors_unlocked = True @@ -586,8 +586,8 @@ label cho_quid_E7: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], could I change your mind about your role in the Slytherin match?" ("base", xpos="far_left", ypos="head") - her "My answer is still no, [genie_name]." ("open", "closed", "base", "mid") + gen "[name_hermione_genie], could I change your mind about your role in the Slytherin match?" ("base", xpos="far_left", ypos="head") + her "My answer is still no, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Come on!" ("angry", xpos="far_left", ypos="head") her "That's my final answer." ("annoyed", "narrow", "angry", "mid") gen "(This girl...)" ("base", xpos="far_left", ypos="head") @@ -604,7 +604,7 @@ label cho_quid_E7: "\"You could make fun of those Slytherins.\"": if her_tier >= 5: - her "I'm not that childish, [genie_name]." ("annoyed", "base", "base", "mid") + her "I'm not that childish, [name_genie_hermione]." ("annoyed", "base", "base", "mid") gen "You're not?" ("base", xpos="far_left", ypos="head") gen "So what they're doing doesn't bother you? Calling you all sorts of names?" ("base", xpos="far_left", ypos="head") her "Not in the slightest..." ("soft", "narrow", "base", "mid") @@ -617,18 +617,18 @@ label cho_quid_E7: her "Madam Hooch would be unquestionably against that." ("open", "narrow", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - her "I wont step a foot on that podium, [genie_name]." ("open", "closed", "base", "mid") + her "I wont step a foot on that podium, [name_genie_hermione]." ("open", "closed", "base", "mid") her "There's nothing you could tempt me with that would change my mind." ("soft", "narrow", "annoyed", "R") gen "Well then..." ("base", xpos="far_left", ypos="head") gen "No more mister nice guy..." ("angry", xpos="far_left", ypos="head") - her "[genie_name]?" ("soft", "wink", "base", "mid") - gen "[hermione_name], you're going to commentate that match. Whether you like it or not." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("soft", "wink", "base", "mid") + gen "[name_hermione_genie], you're going to commentate that match. Whether you like it or not." ("base", xpos="far_left", ypos="head") her "No! You can't change my mind on this!" ("annoyed", "base", "angry", "mid") gen "Are you sure about that?" ("grin", xpos="far_left", ypos="head") her "Why?" ("annoyed", "narrow", "angry", "mid") # suspicious menu: - gen "[hermione_name]..." ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("grin", xpos="far_left", ypos="head") "\"I heard Cho has a crush on you!\"": $ d_flag_01 = True her "She has a--{w=0.5} What?" ("open", "wide", "base", "stare") @@ -641,7 +641,7 @@ label cho_quid_E7: her "Not even Cho would agree to this!" ("open", "base", "angry", "mid") gen "Why don't we ask her?" ("grin", xpos="far_left", ypos="head") her "What?" ("angry", "base", "base", "mid") - her "[genie_name], you can't do this!" ("open", "base", "angry", "mid") + her "[name_genie_hermione], you can't do this!" ("open", "base", "angry", "mid") gen "Sure I can." ("grin", xpos="far_left", ypos="head") call hide_characters @@ -1013,14 +1013,14 @@ label cho_quid_E10: call cho_walk("mid", "base", action="enter") if game.daytime: - cho "Good morning, [cho_genie_name]..." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3) - gen "Good morning [cho_name]." ("base", xpos="far_left", ypos="head") + cho "Good morning, [name_genie_cho]..." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3) + gen "Good morning [name_cho_genie]." ("base", xpos="far_left", ypos="head") else: - cho "Good evening, [cho_genie_name]..." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3) - gen "Good Evening [cho_name]." ("base", xpos="far_left", ypos="head") + cho "Good evening, [name_genie_cho]..." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3) + gen "Good Evening [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "Ready to continue your training and take on those Griffins?" ("base", xpos="far_left", ypos="head") - cho "Griffins, [cho_genie_name]?" ("soft", "base", "raised", "mid") + cho "Griffins, [name_genie_cho]?" ("soft", "base", "raised", "mid") gen "Yeah! Aren't they the next team we're up against?" ("base", xpos="far_left", ypos="head") cho "Oh, you mean the Gryffindor team." ("soft", "base", "base", "mid") gen "Yeah, the doors!" ("base", xpos="far_left", ypos="head") @@ -1049,26 +1049,26 @@ label cho_quid_E10: cho "To think Professor Snape would go as far as giving them a luck potion!" ("angry", "narrow", "angry", "downR") gen "You won the match did you not? Even despite the fact they drank that thing." ("base", xpos="far_left", ypos="head") cho "If the department of magical games and sports heard about this, there's no way those Slytherins would have any chance at--" ("angry", "closed", "angry", "mid") - gen "[cho_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]..." ("base", xpos="far_left", ypos="head") cho "What? It's true!" ("clench", "narrow", "base", "mid") gen "Achieving true success isn't about bringing other people down, but to raise yourself above others." ("base", xpos="far_left", ypos="head") gen "(In her case, quite literally...)" ("base", xpos="far_left", ypos="head") cho "..." ("disgust", "base", "base", "mid") - cho "No offence [cho_genie_name] but I must say I've never heard such nonsense in my life." ("disgust", "narrow", "angry", "mid") + cho "No offence [name_genie_cho] but I must say I've never heard such nonsense in my life." ("disgust", "narrow", "angry", "mid") cho "I only care about reaching the top, no matter what!" ("open", "closed", "angry", "mid") - gen "Very well [cho_name]... If that's the case then I'm not sure if I can help you any further." ("base", xpos="far_left", ypos="head") + gen "Very well [name_cho_genie]... If that's the case then I'm not sure if I can help you any further." ("base", xpos="far_left", ypos="head") cho "What?!" ("angry", "base", "base", "mid") - cho "But [cho_genie_name], I still want you-- I still need your help!" ("mad", "narrow", "base", "mid") + cho "But [name_genie_cho], I still want you-- I still need your help!" ("mad", "narrow", "base", "mid") gen "Then you shouldn't bite the hand that feeds you." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]?" ("disgust", "base", "base", "mid") + cho "[name_genie_cho]?" ("disgust", "base", "base", "mid") gen "Do you think Severus and the Slytherins would be the only ones in trouble if you contacted some ministry employee?" ("base", xpos="far_left", ypos="head") cho "..." ("normal", "narrow", "base", "downR") gen "I thought that I was doing you a favour by coaching you... Some way to repay me for my time." ("base", xpos="far_left", ypos="head") - cho "I--{w=0.4} I suppose I didn't think that far [cho_genie_name]..." ("clench", "narrow", "base", "downR") + cho "I--{w=0.4} I suppose I didn't think that far [name_genie_cho]..." ("clench", "narrow", "base", "downR") gen "For this to work and for you to receive my continued help, you need to remember who got you this far..." ("base", xpos="far_left", ypos="head") cho "Right..." ("disgust", "narrow", "base", "down", cheeks="blush") gen "Well then, let's show them who the greatest snatch catcher is!" ("base", xpos="far_left", ypos="head") - cho "Yes [cho_genie_name]!" ("soft", "narrow", "base", "mid", cheeks="blush") + cho "Yes [name_genie_cho]!" ("soft", "narrow", "base", "mid", cheeks="blush") #Unlock Personal favours (Public locked) $ cho_quid.E10_complete = True @@ -1079,14 +1079,14 @@ label cho_quid_E10: label cho_quid_E11: # Ask Luna to cheer for Ravenclaw (She cheers for Gryffindor, the bimbo!) - gen "[luna_name], there's something I have been meaning to ask." ("base", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]?" ("soft", "base", "base", "mid") + gen "[name_luna_genie], there's something I have been meaning to ask." ("base", xpos="far_left", ypos="head") + lun "Yes, [name_genie_luna]?" ("soft", "base", "base", "mid") gen "I require your assistance with something..." ("base", xpos="far_left", ypos="head") - lun "Assistance? You need my help, [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "Assistance? You need my help, [name_genie_luna]?" ("open", "base", "raised", "mid") gen "Yes, it's about the upcoming Quidditch finals." ("base", xpos="far_left", ypos="head") lun "Oh, right... Yes, that is an issue for sure." ("open", "narrow", "base", "down") gen "I haven't even told you what the problem is..." ("base", xpos="far_left", ypos="head") - lun "Oh... Sorry, [lun_genie_name]... Go on." ("angry", "base", "base", "mid") + lun "Oh... Sorry, [name_genie_luna]... Go on." ("angry", "base", "base", "mid") gen "Well, I've been looking into setting up a cheerleading squad." ("base", xpos="far_left", ypos="head") lun "Cheerleading?" ("soft", "base", "base", "mid") gen "Yes I--" ("base", xpos="far_left", ypos="head") @@ -1099,7 +1099,7 @@ label cho_quid_E11: lun "Oh, you want me to cheer at the finals?!" ("mad", "base", "base", "mid") gen "Yes... And your friends as well." ("base", xpos="far_left", ypos="head") gen "{size=-8}If you have any to begin with...{/size}" ("base", xpos="far_left", ypos="head") - lun "I could hear some mumbling, was that you [lun_genie_name]?" ("angry", "base", "base", "stare") + lun "I could hear some mumbling, was that you [name_genie_luna]?" ("angry", "base", "base", "stare") gen "No, it was--" ("base", xpos="far_left", ypos="head") lun "A ghytrash? Maybe a phantom rat?" ("angry", "base", "base", "stare") gen "A phantom rat-- what--" ("base", xpos="far_left", ypos="head") @@ -1107,9 +1107,9 @@ label cho_quid_E11: lun "I could prepare a skurge charm to--" ("mad", "base", "base", "mid") gen "I'll handle it, don't worry about it..." ("base", xpos="far_left", ypos="head") gen "I'd still like to ask you to cheer in the upcoming Quidditch match, would you agree?" ("base", xpos="far_left", ypos="head") - lun "Oh, yes [lun_genie_name], I'd be happy to!" ("angry", "base", "base", "mid") + lun "Oh, yes [name_genie_luna], I'd be happy to!" ("angry", "base", "base", "mid") gen "Are you sure?" ("base", xpos="far_left", ypos="head") - lun "Of course, [lun_genie_name]!" ("grin", "base", "base", "mid") + lun "Of course, [name_genie_luna]!" ("grin", "base", "base", "mid") gen "Great. Then I'll look forward at seeing you cheering at the game!" ("base", xpos="far_left", ypos="head") $ cho_quid.E11_complete = True @@ -1579,21 +1579,21 @@ label cho_quid_E12: gen "How about..." ("base", xpos="far_left", ypos="head") menu: - #Sets Cho's broom name for use during and after match (cho_broom_name) + #Sets Cho's broom name for use during and after match (name_broom_cho) "\"The Schlickstick!\"": - $ cho_broom_name = "Schlickstick" + $ name_broom_cho = "Schlickstick" cho "The what?" ("angry", "wide", "base", "mid", cheeks="blush") gen "A fitting name for a fitted broom..." ("base", xpos="far_left", ypos="head") - hoo "[cho_broom_name] eh? I like it!" ("base", "base", "base", "mid") + hoo "[name_broom_cho] eh? I like it!" ("base", "base", "base", "mid") "\"The Scoot-a-ride!\"": - $ cho_broom_name = "Scoot-a-ride" + $ name_broom_cho = "Scoot-a-ride" gen "You know, cause you scoot around on it." ("base", xpos="far_left", ypos="head") cho "Very funny professor..." ("annoyed", "narrow", "base", "mid") hoo "Works for me." ("base", "base", "base", "mid") "\"The Speedblaster 2000!\"": - $ cho_broom_name = "Speedblaster 2000" + $ name_broom_cho = "Speedblaster 2000" gen "Cause it'll get up to higher speeds as it blasts your--" ("base", xpos="far_left", ypos="head") cho "Sir!" ("angry", "base", "angry", "mid", cheeks="blush") @@ -1602,13 +1602,13 @@ label cho_quid_E12: hoo "I like it!" ("base", "base", "base", "mid") cho "..." ("disgust", "base", "base", "L", cheeks="blush") "\"The Purple Rocket!\"": - $ cho_broom_name = "Purple Rocket" + $ name_broom_cho = "Purple Rocket" cho "The broom isn't... Oh I see..." ("disgust", "narrow", "base", "mid", cheeks="blush") hoo "Works for me." ("base", "base", "base", "mid") gen "He-heh..." ("grin", xpos="far_left", ypos="head") "\"The Cumet!!\"": - $ cho_broom_name = "Cumet" + $ name_broom_cho = "Cumet" hoo "There's already a broom called that unfortunately." ("normal", "base", "shocked", "mid") gen "There is?" ("base", xpos="far_left", ypos="head") @@ -1617,12 +1617,12 @@ label cho_quid_E12: cho "Huh?" ("open", "base", "base", "L") hoo "Yeah, cumet suits it just fine..." ("grin", "base", "raised", "R", cheeks="blush") "\"The Nimble 2069!\"": - $ cho_broom_name = "Nimble 2069" + $ name_broom_cho = "Nimble 2069" hoo "I see, since you're able to move more nimbly on it... Very clever." ("base", "base", "base", "mid") gen "(Heh-heh... Sixty-nine...)" ("base", xpos="far_left", ypos="head") "\"The Spurtstick 900!\"": - $ cho_broom_name = "Spurtstick 900" + $ name_broom_cho = "Spurtstick 900" hoo "It does go very fast once you get it going... I like it!" ("base", "shocked", "shocked", "mid") cho "I'm not sure that's why he wants to call it--" ("disgust", "narrow", "base", "L", cheeks="blush") @@ -1675,7 +1675,7 @@ label cho_quid_E14: call cho_walk("mid", "base", action="enter") cho "Hello Coach." - gen "Hello [cho_name]... So, I still am your coach after all?" ("base", xpos="far_left", ypos="head") + gen "Hello [name_cho_genie]... So, I still am your coach after all?" ("base", xpos="far_left", ypos="head") cho "Of course you are!" cho "Unless you would rather not be anymore?" gen "Nonsense." ("base", xpos="far_left", ypos="head") @@ -1720,7 +1720,7 @@ label cho_quid_E14: gen "(Nah... She would show symptoms much earlier.)" ("angry", xpos="far_left", ypos="base") gen "(Perhaps she has been under some sort of body concealment charm this entire time?)" gen "(No... That'd be ridiculous...{w=0.5} Although--)" ("base", xpos="far_left", ypos="base") - cho "Earth to [cho_genie_name]! Are you listening?" + cho "Earth to [name_genie_cho]! Are you listening?" gen "*Huh*?" cho "I'd like to show off my skills as a beater." #beater is used deliberately instead of beating gen "(Quidditch... Of course that's what she meant...)" ("base", xpos="far_left", ypos="base") @@ -1747,12 +1747,12 @@ label cho_quid_E14: with d5 gen "What are you doing?" - cho "One moment [cho_genie_name], I'm just having trouble trying to pull it out..." + cho "One moment [name_genie_cho], I'm just having trouble trying to pull it out..." gen "*gulp*" #rustle sound - gen "[cho_name], is that...?" + gen "[name_cho_genie], is that...?" cho "One more second..." cho "Now, if I could just--" @@ -1778,7 +1778,7 @@ label cho_quid_E14: gen "But, I thought you said you wanted to show off your skills--" ("base", xpos="far_left", ypos="head") gen "Okay, I think I just caught up to what we're doing here..." ("base", xpos="far_left", ypos="head") - cho "I don't know what you're talking about, [cho_genie_name]... This is just yet another normal training session with one of your trainees." + cho "I don't know what you're talking about, [name_genie_cho]... This is just yet another normal training session with one of your trainees." gen "(Sounds like something I would say.)" ("base", xpos="far_left", ypos="head") gen "I must've rubbed off on you in more ways than one." ("grin", xpos="far_left", ypos="head") cho "What can I say, I'm very impressionable..." @@ -1796,7 +1796,7 @@ label cho_quid_E14: "\"I wasn't ready!\"": gen "And it's cold in here!" ("angry", xpos="far_left", ypos="head") - cho "No big deal, [cho_genie_name]... I learned how to deal with this sort of thing during one of my lessons." + cho "No big deal, [name_genie_cho]... I learned how to deal with this sort of thing during one of my lessons." gen "(During her lessons...?)" cho "{size=+5}Up!{/size}" cho "Hold on, that's for brooms, not for--" @@ -1814,8 +1814,8 @@ label cho_quid_E14: #Cho hand on dick, jacking it. #Shiny dick (spit) - gen "That's the stuff, [cho_name]!" ("open", xpos="far_left", ypos="base") - cho "Don't worry, [cho_genie_name], this is just one of the steps I learned about enchanting." + gen "That's the stuff, [name_cho_genie]!" ("open", xpos="far_left", ypos="base") + cho "Don't worry, [name_genie_cho], this is just one of the steps I learned about enchanting." gen "Hold on, you're actually enchanting my cock? I didn't know you could do that!" ("grin", xpos="far_left", ypos="base") cho "Your cock?" cho "I'm merely creating a magical connection between myself and this magnificent piece of wood..." @@ -1851,8 +1851,8 @@ label cho_quid_E14: #jerking medium - gen "Damn, [cho_name]! Since when did you get so good at giving handjobs?" ("grin", xpos="far_left", ypos="base") - cho "I'm not sure what you mean by a handjob, [cho_genie_name]." + gen "Damn, [name_cho_genie]! Since when did you get so good at giving handjobs?" ("grin", xpos="far_left", ypos="base") + cho "I'm not sure what you mean by a handjob, [name_genie_cho]." cho "But what I can tell you is, to establish a strong connection, an enchanter must always use their full potential." gen "That Hooch lady's sure taught you a lot!" ("grin", xpos="far_left", ypos="base") cho "*giggles*" @@ -1919,8 +1919,8 @@ label cho_quid_E14: cho "Of course, sometimes you can't help it... I've left quite the mess inside the changing room a couple of times." gen "Then why leave me hanging now, maybe I wanted to experience it myself..." ("open", xpos="far_left", ypos="base") - cho "Huh? Oh, I'm sorry [cho_genie_name]... I got a bit carried away..." - cho "I'm sorry, [cho_genie_name], I don't think I can keep this up..." + cho "Huh? Oh, I'm sorry [name_genie_cho]... I got a bit carried away..." + cho "I'm sorry, [name_genie_cho], I don't think I can keep this up..." gen "W--{w=0.2} What? No, you're doing a fantastic job keeping it up!" ("angry", xpos="far_left", ypos="base") cho "I mean this role-playing thing." gen "(Role-playing? Is that what we're doing?)" ("base", xpos="far_left", ypos="base") @@ -1942,7 +1942,7 @@ label cho_quid_E14: cho "..." gen "Still not convinced? Hmm." ("base", xpos="far_left", ypos="base") gen "How about some sexual-- I mean, completely normal yoga!" ("base", xpos="far_left", ypos="base") - cho "It's okay, [cho_genie_name]..." #looks up at genie + cho "It's okay, [name_genie_cho]..." #looks up at genie cho "While I'm sure there are still a great number of things you could teach me that I could apply at the pitch--" cho "--It's clear that this is not about Quidditch any more, I just need to get to terms with it." gen "Why stick with one hobby when you can have many, that's what I always say!" ("grin", xpos="far_left", ypos="base") @@ -1962,7 +1962,7 @@ label cho_quid_E14: cho "My--{fast} My Thighs?" gen "Yes?" ("base", xpos="far_left", ypos="base") - cho "You know, you don't need to lie to me, [cho_genie_name]." + cho "You know, you don't need to lie to me, [name_genie_cho]." cho "I understand now that the only reason why you had me do all those things, was to help me raise my confidence, despite my recklessness." # Important note gen "*Huh*?" cho "I mean, the deal was that I'd sell you favours as a way to repay you for your coaching." @@ -1977,7 +1977,7 @@ label cho_quid_E14: cho "I ended up getting carried away..." gen "(Been there, done that...)" ("base", xpos="far_left", ypos="base") cho "I was sort of running on a high after winning the cup, thinking I could do anything I wanted--" - gen "No need to apologise [cho_name], you drank that luck potion after all, if there were any consequences I'm sure they would have happened by now." ("base", xpos="far_left", ypos="base") + gen "No need to apologise [name_cho_genie], you drank that luck potion after all, if there were any consequences I'm sure they would have happened by now." ("base", xpos="far_left", ypos="base") cho "*Ehm*..." cho "It's just... Well, I thought I should... Since we ended up having sex..." gen "Oh... I understand what you're trying to say..." ("grin", xpos="far_left", ypos="base") @@ -2053,7 +2053,7 @@ label cho_quid_E14: cho "(Liquid luck...)." cho "(I never thought I'd hold one of those in my hand...)" - cho "([cho_genie_name] must really want me to win if he's willing to risk his career by giving this...)" + cho "([name_genie_cho] must really want me to win if he's willing to risk his career by giving this...)" cho "(But why did we go through all those lewd favours, if he was just going to give me a luck potion anyway...)" cho "(Did he agree to train me because of--)" cho "(... No, he wouldn't, would he?)" diff --git a/game/scripts/characters/cho/events/quidditch/slytherin_match.rpy b/game/scripts/characters/cho/events/quidditch/slytherin_match.rpy index 10305f3c..c3dc6051 100644 --- a/game/scripts/characters/cho/events/quidditch/slytherin_match.rpy +++ b/game/scripts/characters/cho/events/quidditch/slytherin_match.rpy @@ -5,7 +5,7 @@ label start_slytherin_match: # Chat with Cho the day before the match cho "" (xpos="mid", ypos="base", trans=fade) - gen "Alright, [cho_name]. Let's do this!" ("grin", xpos="far_left", ypos="head") + gen "Alright, [name_cho_genie]. Let's do this!" ("grin", xpos="far_left", ypos="head") gen "Tomorrow we shall wipe the floor with those Slytherins, and bathe in their salty tears!" ("angry", xpos="far_left", ypos="head") gen "(Snape's tears in particular, after I get a hold of all of his gold!)" ("grin", xpos="far_left", ypos="head") cho "I'll do my best, Sir." ("soft", "base", "angry", "mid") @@ -14,7 +14,7 @@ label start_slytherin_match: menu: "\"Then show me the money.\"": cho "What?" ("upset", "base", "raised", "mid") - gen "Say it with me, [cho_name]!{w} Show me the money!" ("grin", xpos="far_left", ypos="head") + gen "Say it with me, [name_cho_genie]!{w} Show me the money!" ("grin", xpos="far_left", ypos="head") cho "I don't have any on me, Sir." ("angry", "narrow", "worried", "mid") gen "..." ("base", xpos="far_left", ypos="head") cho "Show me the money?" ("open", "narrow", "raised", "mid") @@ -25,7 +25,7 @@ label start_slytherin_match: cho "(He knows I'm a girl... why would he say that?)" ("annoyed", "narrow", "angry", "mid") with hpunch cho "Sir, Are you all right?" ("soft", "narrow", "worried", "mid") - gen "What you gonna do, [cho_name]?" ("grin", xpos="far_left", ypos="head") + gen "What you gonna do, [name_cho_genie]?" ("grin", xpos="far_left", ypos="head") cho "Get the nurse?" ("upset", "narrow", "angry", "mid") gen "You're gonna win that match tomorrow, that's what!" ("base", xpos="far_left", ypos="head") "\"Show me what you got!\"": @@ -51,14 +51,14 @@ label start_slytherin_match: gen "Let's hope she's right this time!" ("grin", xpos="far_left", ypos="head") cho "But, Sir! Wouldn't this put us at a huge disadvantage?" ("open", "narrow", "worried", "mid") gen "Nonsense..." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], I'm gonna get soaked without my coat on!" ("soft", "base", "worried", "mid") + cho "[name_genie_cho], I'm gonna get soaked without my coat on!" ("soft", "base", "worried", "mid") gen "Counting on it!" ("grin", xpos="far_left", ypos="head") gen "I, for one, am quite looking forward to the possibility of you getting wet." ("grin", xpos="far_left", ypos="head") cho "Let's just hope for the best..." ("upset", "narrow", "worried", "down") gen "That we shall." ("grin", xpos="far_left", ypos="head") gen "Off you go then. And good luck." ("grin", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "R") - cho "See you tomorrow, [cho_genie_name]." ("soft", "narrow", "worried", "mid") + cho "See you tomorrow, [name_genie_cho]." ("soft", "narrow", "worried", "mid") call cho_walk(action="leave") @@ -115,7 +115,7 @@ label slytherin_match: call ton_walk("desk", "base", action="enter") call play_music("tonks") - ton "Hi, [ton_genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=d3) + ton "Hi, [name_genie_tonks]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=d3) gen "Tonks... a pleasure as always." ("base", xpos="far_left", ypos="head") ton "Pleasure's all mine..." ("soft", "base", "base", "mid") ton "I was afraid you might've forgotten about today's--" ("open", "base", "raised", "mid") @@ -129,7 +129,7 @@ label slytherin_match: ton "I'd love to be able to watch her--{w} The game from the commentator booth." ("clench", "narrow", "raised", "R") ton "So... *Ahem*... May I be allowed to accompany you on the way to the pitch?" ("base", "base", "base", "mid") #sad gen "Of course! I'd be delighted to have you!" ("grin", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name].{heart}" ("base", "happyCl", "base", "mid", hair="happy") + ton "Thank you, [name_genie_tonks].{heart}" ("base", "happyCl", "base", "mid", hair="happy") ton "Are we to expect another great performance this time around?" ("horny", "narrow", "base", "downR", hair="neutral") gen "Oh, you'll see..." ("grin", xpos="far_left", ypos="head") ton "Great, shall we?" ("base", "wink", "shocked", "mid") diff --git a/game/scripts/characters/cho/events/quidditch/slytherin_practice.rpy b/game/scripts/characters/cho/events/quidditch/slytherin_practice.rpy index 8072ee50..9f95d6ce 100644 --- a/game/scripts/characters/cho/events/quidditch/slytherin_practice.rpy +++ b/game/scripts/characters/cho/events/quidditch/slytherin_practice.rpy @@ -38,7 +38,7 @@ label cc_st_start: gen "Yep." ("base", xpos="far_left", ypos="head") cho "I'm really glad we have her as a teacher." ("base", "happyCl", "base", "mid", cheeks="blush") gen "Make sure to thank her for it... some day." ("base", xpos="far_left", ypos="head") - cho "I will, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "I will, [name_genie_cho]." ("smile", "base", "base", "mid") cho "Off I go then..." ("base", "base", "base", "mid") # Cho leaves. @@ -277,7 +277,7 @@ label cc_st_talk: cho "..." ("annoyed", "base", "worried", "R", cheeks="blush") #Worried gen "(Perhaps doing some more favours will improve her confidence.)" ("base", xpos="far_left", ypos="head") else: - cho "I'm confident that we can win this, [cho_genie_name]." ("smile", "base", "base", "mid") + cho "I'm confident that we can win this, [name_genie_cho]." ("smile", "base", "base", "mid") cho "Slytherin has no blasted chance against us!" ("base", "narrow", "base", "mid") cho "" (xpos="base", ypos="base", trans=fade) diff --git a/game/scripts/characters/cho/events/quidditch/training.rpy b/game/scripts/characters/cho/events/quidditch/training.rpy index 74b3ac90..f8aa2590 100644 --- a/game/scripts/characters/cho/events/quidditch/training.rpy +++ b/game/scripts/characters/cho/events/quidditch/training.rpy @@ -114,7 +114,7 @@ label cho_training: cho "Okay then, now what?" ("upset", "base", "base", "R", trans=fade) gen "Now let's try some flying positions..." ("base", xpos="far_left", ypos="head") - gen "Get on that broom, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Get on that broom, [name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_chibi("fly", "mid", "base") hide cho_main @@ -198,7 +198,7 @@ label cho_training: $ cho_outfit_quidditch.save() cho "Okay then, tell me what to do." ("base", "base", "base", "mid", trans=fade) - gen "Get on that broom, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Get on that broom, [name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_chibi("fly", "mid", "base") hide cho_main @@ -372,7 +372,7 @@ label cho_training: jump cho_training.choices "-Back-": - cho "Very well, [cho_genie_name]." ("open", "base", "base", "mid", ypos="head", flip=False) + cho "Very well, [name_genie_cho]." ("open", "base", "base", "mid", ypos="head", flip=False) hide cho_main show screen blkfade @@ -471,7 +471,7 @@ label cho_tactics: gen "So let's see those results!" ("base", xpos="far_left", ypos="head") cho "Yeah... Great, just let me know when..." ("normal", "closed", "base", "mid", cheeks="blush") gen "I certainly shall." ("grin", xpos="far_left", ypos="head") - gen "But this will do for today, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "But this will do for today, [name_cho_genie]." ("base", xpos="far_left", ypos="head") if game.daytime: cho "I'll head back to class then." ("open", "base", "base", "R") @@ -521,7 +521,7 @@ label cho_tactics: cho "Is this not high enough to see my--" ("annoyed", "base", "raised", "mid", ypos="head", flip=False) gen "Fly right above my head!" ("angry", xpos="far_left", ypos="head") gen "Show me those panties!" ("angry", xpos="far_left", ypos="head") - cho "Of course, [cho_genie_name]..." ("base", "base", "base", "downR", cheeks="blush", ypos="head", flip=False) + cho "Of course, [name_genie_cho]..." ("base", "base", "base", "downR", cheeks="blush", ypos="head", flip=False) call cho_walk(500, 100+180) @@ -536,7 +536,7 @@ label cho_tactics: gen "Yes, fantastic!" ("angry", xpos="far_left", ypos="head") gen "You have very cute panties, girl!" ("grin", xpos="far_left", ypos="head") - cho "*Ehm*...{w=0.5} Thank you, [cho_genie_name]." ("annoyed", "base", "base", "down", cheeks="blush", ypos="head", flip=False) + cho "*Ehm*...{w=0.5} Thank you, [name_genie_cho]." ("annoyed", "base", "base", "down", cheeks="blush", ypos="head", flip=False) gen "(I have created the ultimate up-skirt!)" ("base", xpos="far_left", ypos="head") gen "(Nothing can stop us now...)" ("base", xpos="far_left", ypos="head") cho "Can I come down now?" ("soft", "base", "base", "downR", ypos="head", flip=False) @@ -589,7 +589,7 @@ label cho_tactics: elif cho_tier == 2: # Slytherin - cho "Above you, [cho_genie_name]?" ("annoyed", "base", "raised", "mid", ypos="head", flip=False) + cho "Above you, [name_genie_cho]?" ("annoyed", "base", "raised", "mid", ypos="head", flip=False) gen "Yes, above..." ("base", xpos="far_left", ypos="head") cho "Okay..." ("upset", "base", "base", "mid", ypos="head", flip=False) @@ -649,7 +649,7 @@ label cho_tactics: # Gryffindor gen "Come as close to me as you can..." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]." ("soft", "base", "base", "R", ypos="head", flip=False) + cho "Yes, [name_genie_cho]." ("soft", "base", "base", "R", ypos="head", flip=False) call cho_walk(450, 240+180) @@ -658,7 +658,7 @@ label cho_tactics: gen "They would be able to smell you if you got any closer!" ("base", xpos="far_left", ypos="head") cho "I hope not!" ("quiver", "closed", "worried", "mid", cheeks="blush", ypos="head", flip=False) gen "Why? You smell lovely, girl!" ("grin", xpos="far_left", ypos="head") - cho "*Ehm*...{w=0.5} Thank you, [cho_genie_name]." ("soft", "base", "worried", "mid", cheeks="blush", ypos="head", flip=False) + cho "*Ehm*...{w=0.5} Thank you, [name_genie_cho]." ("soft", "base", "worried", "mid", cheeks="blush", ypos="head", flip=False) cho "Can I come down now?" ("soft", "narrow", "base", "mid", cheeks="blush", ypos="head", flip=False) gen "Of course." ("base", xpos="far_left", ypos="head") @@ -680,11 +680,11 @@ label cho_tactics: if game.daytime: cho "If that is all, I'll head back to class." ("base", "narrow", "base", "R") gen "Yes, that shall do for today." ("base", xpos="far_left", ypos="head") - cho "Good day to you, [cho_genie_name]..." ("soft", "narrow", "base", "mid") + cho "Good day to you, [name_genie_cho]..." ("soft", "narrow", "base", "mid") else: cho "If that is all, I'll head back to my dorm." ("base", "narrow", "base", "R") gen "Yes, that shall do for today." ("base", xpos="far_left", ypos="head") - cho "Goodnight, [cho_genie_name]..." ("soft", "narrow", "base", "mid") + cho "Goodnight, [name_genie_cho]..." ("soft", "narrow", "base", "mid") call cho_walk(action="leave") diff --git a/game/scripts/characters/cho/events/requests/manipulate_boys.rpy b/game/scripts/characters/cho/events/requests/manipulate_boys.rpy index ae73206a..5b5e86b6 100644 --- a/game/scripts/characters/cho/events/requests/manipulate_boys.rpy +++ b/game/scripts/characters/cho/events/requests/manipulate_boys.rpy @@ -15,7 +15,7 @@ label cc_pr_manipulate_boys_start: gen "So what do we know about our opponents?" ("base", xpos="far_left", ypos="head") cho "Hufflepuff? Well their team isn't the best, but they have a really strong seeker." ("soft", "base", "base", "mid") gen "Right...{w=0.3} who was that again?" ("base", xpos="far_left", ypos="head") - cho "Cedric Diggory. How often do I have to repeat that to you, [cho_genie_name]?" ("annoyed", "narrow", "base", "mid") + cho "Cedric Diggory. How often do I have to repeat that to you, [name_genie_cho]?" ("annoyed", "narrow", "base", "mid") gen "You will understand once you get to be my age..." ("base", xpos="far_left", ypos="head") cho "Oh, I'm sorry, Sir." ("soft", "narrow", "worried", "mid") cho "I should be more respectful of your age." ("soft", "narrow", "base", "downR") @@ -57,27 +57,27 @@ label cc_pr_manipulate_boys_start: cho "So I just have to make him think there's something between us again?" ("soft", "base", "base", "mid") cho "I think I can do that..." ("annoyed", "narrow", "base", "down") gen "Good, let me know how it goes..." ("base", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]!" ("base", "base", "base", "mid") + cho "Yes, [name_genie_cho]!" ("base", "base", "base", "mid") # Repeated else: gen "Ready to mess with Hufflepuff again?" ("base", xpos="far_left", ypos="head") cho "I guess so..." (mouth="soft", face="happy") - gen "Great! I'll see you later today for your report, [cho_name]!" ("grin", xpos="far_left", ypos="head") - cho "Yes, [cho_genie_name]!" ("base", "base", "base", "mid") + gen "Great! I'll see you later today for your report, [name_cho_genie]!" ("grin", xpos="far_left", ypos="head") + cho "Yes, [name_genie_cho]!" ("base", "base", "base", "mid") ### Tier 2 (pre Slytherin) ### elif cho_tier == 2: # Intro if cc_pr_manipulate_boys.points == 0: - gen "[cho_name], how well -- in your opinion -- did you do in your last match?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie], how well -- in your opinion -- did you do in your last match?" ("base", xpos="far_left", ypos="head") cho "Well, I pretty much secured the win for my team, distracting those Hufflepuffs--" ("base", "closed", "base", "mid") gen "Only one Hufflepuff!{w=0.6} We were lucky you could secure that win with such low effort..." ("base", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "closed", "base", "mid", cheeks="blush") gen "We have to up our game to win against the next house, don't you think?" ("base", xpos="far_left", ypos="head") gen "Manipulating just one player won't be enough this time! We have to put our focus on their entire team!" ("base", xpos="far_left", ypos="head") - cho "*Hmm*... As much as I don't like it, you might be right about that, [cho_genie_name]." ("open", "narrow", "worried", "downR", cheeks="blush") + cho "*Hmm*... As much as I don't like it, you might be right about that, [name_genie_cho]." ("open", "narrow", "worried", "downR", cheeks="blush") cho "Slytherin's team is quite good overall, and they have some of the best players at this school." ("open", "narrow", "base", "mid") cho "What do you suggest I should do?" ("annoyed", "narrow", "worried", "mid") gen "Same as with that Diggory boy!" ("base", xpos="far_left", ypos="head") @@ -96,7 +96,7 @@ label cc_pr_manipulate_boys_start: gen "Is everything okay, girl?" ("base", xpos="far_left", ypos="head") cho "No!{w=0.3} It's not okay!" ("angry", "wide", "worried", "mid", cheeks="blush") cho "Why would you think I want to snog those repulsive, yuck-ugly Slytherin degenerates?!" ("open", "wide", "worried", "mid", cheeks="blush") - cho "The thought alone utterly disgusts me, [cho_genie_name]!" ("open_tongue", "happyCl", "worried", "mid", cheeks="blush") + cho "The thought alone utterly disgusts me, [name_genie_cho]!" ("open_tongue", "happyCl", "worried", "mid", cheeks="blush") cho "I'll do anything but that!" ("mad", "narrow", "worried", "mid") gen "So no kissing?" ("base", xpos="far_left", ypos="head") cho "Absolutely not!{w=0.8} Not even with Malfoy..." ("angry", "closed", "angry", "mid", cheeks="blush") @@ -121,7 +121,7 @@ label cc_pr_manipulate_boys_start: #cho "I could still try to flirt with them a bit, I guess." ("soft", "base", "worried", "mid") #gen "I doubt that that will be enough..." ("base", xpos="far_left", ypos="head") #cho "" ("annoyed", "base", "worried", "mid") - cho "I'll try my best, [cho_genie_name]." ("smile", "narrow", "base", "mid") + cho "I'll try my best, [name_genie_cho]." ("smile", "narrow", "base", "mid") gen "Let's just see how it goes." ("base", xpos="far_left", ypos="head") gen "If anything goes wrong...{w=0.8} just improvise..." ("base", xpos="far_left", ypos="head") cho "Very well, Sir." ("base", "base", "base", "mid") @@ -132,8 +132,8 @@ label cc_pr_manipulate_boys_start: else: gen "Time to brighten up some Slytherin's day again..." ("base", xpos="far_left", ypos="head") gen "Go and get their players on {i}your{/i} side!" ("grin", xpos="far_left", ypos="head") - cho "I will try my best, [cho_genie_name]!" (mouth="smile", face="happy") - gen "Report to me later as usual, [cho_name]!" ("grin", xpos="far_left", ypos="head") + cho "I will try my best, [name_genie_cho]!" (mouth="smile", face="happy") + gen "Report to me later as usual, [name_cho_genie]!" ("grin", xpos="far_left", ypos="head") cho "Yes, Sir!" ("base", "base", "base", "mid") ### Tier 2 (pre Gryffindor) ### @@ -267,7 +267,7 @@ label cc_pr_manipulate_boys_T1_intro_E1: cho "It went...{w=0.3} well?" ("soft", "base", "raised", "R") cho "Maybe a little too well... He tried to kiss me!" ("annoyed", "base", "raised", "mid") gen "Really? Nice work!{w=0.6} Did you slip him a little tongue?" ("grin", xpos="far_left", ypos="head") - cho "[cho_genie_name]!{w=0.3} No, of course not!" ("soft", "wide", "base", "mid") + cho "[name_genie_cho]!{w=0.3} No, of course not!" ("soft", "wide", "base", "mid") gen "Why not?" ("base", xpos="far_left", ypos="head") cho "Because I'm not some slut who gives it away for free!" ("annoyed", "narrow", "angry", "mid") gen "It was only a kiss..." ("base", xpos="far_left", ypos="head") @@ -281,9 +281,9 @@ label cc_pr_manipulate_boys_T1_intro_E1: cho "If you say so..." ("annoyed", "base", "base", "down") gen "Just keep in mind why we're doing this." ("base", xpos="far_left", ypos="head") gen "You can't chicken out of something as small as a kiss -- if you want Ravenclaw to have a chance!" ("angry", xpos="far_left", ypos="head") - cho "Right, [cho_genie_name]!" ("soft", "narrow", "worried", "mid") + cho "Right, [name_genie_cho]!" ("soft", "narrow", "worried", "mid") gen "That'll be all for now, you can go." ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]." ("base", "base", "base", "mid") + cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") # Cho leaves. call cho_walk(action="leave") @@ -301,7 +301,7 @@ label cc_pr_manipulate_boys_T1_E1: cho "" (face="happy", xpos="mid", ypos="base", trans=fade) gen "What's my favourite Quidditch player been up to today?" ("base", xpos="far_left", ypos="head") - cho "I think you'll be happy, [cho_genie_name]!" ("base", "narrow", "base", "mid") + cho "I think you'll be happy, [name_genie_cho]!" ("base", "narrow", "base", "mid") gen "I like the sound of that! Tell me what happened." ("grin", xpos="far_left", ypos="head") cho "Well, I thought about the best way to get to Cedric -- and I remembered how much he loved my bum!" ("soft", "base", "base", "R") gen "*Mhmm*... I can't say I blame him..." ("base", xpos="far_left", ypos="head") @@ -319,7 +319,7 @@ label cc_pr_manipulate_boys_T1_E1: gen "No it isn't." ("base", xpos="far_left", ypos="head") cho "In any case, I think it worked." ("open", "narrow", "raised", "R") cho "He couldn't keep his eyes off my bum for the rest of classes!" ("base", "narrow", "angry", "mid") - gen "Well done, [cho_name]! You may leave now." ("grin", xpos="far_left", ypos="head") + gen "Well done, [name_cho_genie]! You may leave now." ("grin", xpos="far_left", ypos="head") cho "Thank you, Sir." ("smile", "happyCl", "base", "mid") if cho_reputation < 3: # Points til 3. @@ -337,7 +337,7 @@ label cc_pr_manipulate_boys_T1_E2: call cho_walk(action="enter", xpos="desk", ypos="base") cho "" (face="annoyed", xpos="mid", ypos="base", trans=fade) - gen "[cho_name]! Do you have some good news for me?" ("angry", xpos="far_left", ypos="head") + gen "[name_cho_genie]! Do you have some good news for me?" ("angry", xpos="far_left", ypos="head") cho "I'm afraid not this time, Sir." ("soft", "narrow", "worried", "mid") gen "Why not? Tell me what happened..." ("base", xpos="far_left", ypos="head") cho "Well, today I saw Cedric again down in the dungeons." ("open", "narrow", "worried", "R") @@ -412,7 +412,7 @@ label cc_pr_manipulate_boys_T1_E3: cho "Anyhow, I should get going." ("open", "base", "base", "R") cho "It's getting late..." ("soft", "base", "worried", "mid") gen "Of course. You are dismissed." ("base", xpos="far_left", ypos="head") - cho "Good night, [cho_genie_name]." ( face="happy") + cho "Good night, [name_genie_cho]." ( face="happy") # Cho leaves. call cho_walk(action="leave") @@ -432,7 +432,7 @@ label cc_pr_manipulate_boys_T2_intro_E1: call cho_walk(action="enter", xpos="desk", ypos="base") cho "" ("annoyed", "narrow", "worried", "mid", xpos="mid", ypos="base", trans=fade) - gen "Good evening [cho_name]... How did today's task go?" ("base", xpos="far_left", ypos="head") + gen "Good evening [name_cho_genie]... How did today's task go?" ("base", xpos="far_left", ypos="head") cho "I can't believe you convinced me to do this!" ("disgust", "narrow", "worried", "mid") gen "So...{w=0.3} badly I take it?" ("base", xpos="far_left", ypos="head") cho "No, it went perfectly..." ("annoyed", "narrow", "angry", "mid") @@ -472,7 +472,7 @@ label cc_pr_manipulate_boys_T2_intro_E1: gen "That's not what I asked." ("base", xpos="far_left", ypos="head") cho "..." ("annoyed", "narrow", "angry", "mid") cho "Can I please go now, Sir?{w} I've done what you asked of me." ("soft", "narrow", "angry", "R") - gen "Yes, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "You've done a great job today getting closer to beating those pesky Slytherins." ("base", xpos="far_left", ypos="head") cho "Thank you, Sir." ("base", "narrow", "base", "mid") gen "If you remind them of your meeting during the match, then I'm certain their desire to win... will wash away." ("base", xpos="far_left", ypos="head") @@ -521,10 +521,10 @@ label cc_pr_manipulate_boys_T2_E1: cho "You're smarter than I gave you credit for... you've not been wrong so far..." ("annoyed", "base", "base", "R") gen "That's why I'm the headmaster." ("grin", xpos="far_left", ypos="head") cho "Will that be all?" ("soft", "base", "base", "mid") - gen "Yes [cho_name], good work today!" ("base", xpos="far_left", ypos="head") + gen "Yes [name_cho_genie], good work today!" ("base", xpos="far_left", ypos="head") cho "Thanks!" ("base", "base", "base", "mid") gen "Have a good night..." ("base", xpos="far_left", ypos="head") - cho "Good night, [cho_genie_name]." ("smile", "narrow", "base", "mid") + cho "Good night, [name_genie_cho]." ("smile", "narrow", "base", "mid") # Cho leaves. call cho_walk(action="leave") @@ -543,7 +543,7 @@ label cc_pr_manipulate_boys_T2_intro_E2: cho "" ("annoyed", "narrow", "base", "mid", xpos="mid", ypos="base", trans=fade) pause .5 gen "Back already? How did it go?" ("base", xpos="far_left", ypos="head") - cho "Not too great this time, [cho_genie_name]." ("soft", "narrow", "worried", "R") + cho "Not too great this time, [name_genie_cho]." ("soft", "narrow", "worried", "R") gen "No? What happened?" ("base", xpos="far_left", ypos="head") cho "Nothing, actually. I didn't see any of their team members all day. Not even at the Quidditch pitch..." ("annoyed", "narrow", "worried", "mid") gen "Odd... Were they hiding from you?" ("base", xpos="far_left", ypos="head") @@ -555,7 +555,7 @@ label cc_pr_manipulate_boys_T2_intro_E2: cho "I swear I could see Malfoy's blonde head around a corner at one point..." ("soft", "narrow", "angry", "downR") cho "But when I was about to confront them, I heard them running off..." ("soft", "narrow", "angry", "mid") cho "Cowards..." ("angry", "narrow", "angry", "mid") - gen "I think this is a good thing, [cho_name]!" ("base", xpos="far_left", ypos="head") + gen "I think this is a good thing, [name_cho_genie]!" ("base", xpos="far_left", ypos="head") cho "You do?" ("soft", "wide", "base", "mid") gen "The fact that they're following you..." ("base", xpos="far_left", ypos="head") gen "It proves that they are weak!{w} They are obsessed with you!" ("angry", xpos="far_left", ypos="head") @@ -564,8 +564,8 @@ label cc_pr_manipulate_boys_T2_intro_E2: gen "They won't be able to keep focus on anything else..." ("base", xpos="far_left", ypos="head") gen "Except your perfect bod!" ("grin", xpos="far_left", ypos="head") cho "I'll do my best, Sir." ("base", "base", "base", "mid") - gen "You may go now, [cho_name]. Nice work!" ("base", xpos="far_left", ypos="head") - cho "Thank you, [cho_genie_name]!" ("smile", "base", "base", "R") + gen "You may go now, [name_cho_genie]. Nice work!" ("base", xpos="far_left", ypos="head") + cho "Thank you, [name_genie_cho]!" ("smile", "base", "base", "R") # Cho leaves. call cho_walk(action="leave") @@ -583,7 +583,7 @@ label cc_pr_manipulate_boys_T2_intro_E3: cho "" ("annoyed", "narrow", "base", "mid", xpos="mid", ypos="base", trans=fade) pause .5 - gen "[cho_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie], how was your day?" ("base", xpos="far_left", ypos="head") gen "Were you successful this time?" ("base", xpos="far_left", ypos="head") cho "Sir, I believe they are onto me!" ("angry", "narrow", "worried", "mid") gen "Who are... they?" ("base", xpos="far_left", ypos="head") @@ -592,7 +592,7 @@ label cc_pr_manipulate_boys_T2_intro_E3: gen "How very rude of them." ("angry", xpos="far_left", ypos="head") cho "I'm just glad they didn't follow me inside, actually..." ("soft", "base", "worried", "mid", cheeks="blush") gen "But they're boys! They aren't allowed in there!" ("base", xpos="far_left", ypos="head") - cho "Don't underestimate them, [cho_genie_name]." ("soft", "closed", "base", "mid") + cho "Don't underestimate them, [name_genie_cho]." ("soft", "closed", "base", "mid") cho "I doubt that anything would stop them from breaking into a girl's most private place..." ("soft", "narrow", "angry", "mid") gen "They are ruthless!" ("angry", xpos="far_left", ypos="head") gen "What exactly did they want from you?" ("base", xpos="far_left", ypos="head") @@ -602,7 +602,7 @@ label cc_pr_manipulate_boys_T2_intro_E3: cho "Typically, girls from other houses don't talk to boys from Slytherin..." ("soft", "happyCl", "worried", "mid", cheeks="blush") cho "Not to mention flirt with them!" ("mad", "narrow", "worried", "down", cheeks="heavy_blush") gen "So? What did you do?" ("base", xpos="far_left", ypos="head") - cho "I panicked, [cho_genie_name]!" ("clench", "happyCl", "worried", "mid", cheeks="heavy_blush") + cho "I panicked, [name_genie_cho]!" ("clench", "happyCl", "worried", "mid", cheeks="heavy_blush") cho "I tried to get out of the situation, although in my haste the only solution I could think of was to..." ("soft", "narrow", "base", "downR", cheeks="blush") gen "Yes?" ("base", xpos="far_left", ypos="head") cho "Flash them, Sir. I flashed them my breasts!" ("soft", "narrow", "worried", "mid", cheeks="blush") @@ -612,7 +612,7 @@ label cc_pr_manipulate_boys_T2_intro_E3: cho "I don't know... They were surprised?" ("angry", "wink", "raised", "mid", cheeks="blush") cho "I closed my eyes through most of it, and then I ran off..." ("soft", "base", "worried", "down", cheeks="blush") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - cho "Did I go too far, [cho_genie_name]?" ("soft", "narrow", "worried", "mid", cheeks="blush") + cho "Did I go too far, [name_genie_cho]?" ("soft", "narrow", "worried", "mid", cheeks="blush") gen "No girl, you did great!" ("grin", xpos="far_left", ypos="head") gen "You successfully got yourself out of an intricate situation." ("base", xpos="far_left", ypos="head") gen "You improvised, just as I taught you." ("base", xpos="far_left", ypos="head") @@ -628,14 +628,14 @@ label cc_pr_manipulate_boys_T2_intro_E3: gen "Remember why we are doing this, girl! You need to get into their minds!" ("angry", xpos="far_left", ypos="head") gen "If they want to see your breasts again, or any other part of your body, you show it to them!" ("base", xpos="far_left", ypos="head") cho "But, Sir!" ("mad", "closed", "worried", "mid", cheeks="blush") # Embarrassed - gen "Do as I say, [cho_name]!" ("base", xpos="far_left", ypos="head") + gen "Do as I say, [name_cho_genie]!" ("base", xpos="far_left", ypos="head") gen "Your mission, should you choose to accept it, is to please them!{w} No matter the cost!" ("angry", xpos="far_left", ypos="head") cho "What?!" ("soft", "wide", "base", "mid") gen "For now, you are dismissed." ("base", xpos="far_left", ypos="head") cho "Sir!" ("angry", "base", "angry", "mid") gen "Dismissed!{w} Now go to your dorm..." ("angry", xpos="far_left", ypos="head") cho "Fine..." ("annoyed", "narrow", "angry", "mid") # Annoyed - cho "Good night, [cho_genie_name]." ("soft", "narrow", "angry", "mid") # Angry + cho "Good night, [name_genie_cho]." ("soft", "narrow", "angry", "mid") # Angry # Cho leaves. call cho_walk(action="leave") @@ -653,7 +653,7 @@ label cc_pr_manipulate_boys_T2_E3: cho "" ("annoyed", "narrow", "base", "mid", xpos="mid", ypos="base", trans=fade) pause .5 - gen "[cho_name]! You're back." ("grin", xpos="far_left", ypos="head") + gen "[name_cho_genie]! You're back." ("grin", xpos="far_left", ypos="head") cho "(...)" ("annoyed", "narrow", "angry", "down") # Annoyed gen "How was your day? Anything exciting to tell me?" ("grin", xpos="far_left", ypos="head") cho "I-- *Ehm*..." ("soft", "narrow", "base", "down") @@ -704,8 +704,8 @@ label cc_pr_manipulate_boys_T2_E3: cho "Anyway, I left before they had a chance to touch it..." ("annoyed", "narrow", "base", "mid") cho "The last thing I want is their grimy hands on it." ("annoyed", "narrow", "angry", "R") gen "Well, I believe you made the best out of the situation!" ("base", xpos="far_left", ypos="head") - cho "I think so too, [cho_genie_name]!" ("base", "base", "base", "mid") - gen "You may leave now. Exceptionally good work, [cho_name]!" ("angry", xpos="far_left", ypos="head") + cho "I think so too, [name_genie_cho]!" ("base", "base", "base", "mid") + gen "You may leave now. Exceptionally good work, [name_cho_genie]!" ("angry", xpos="far_left", ypos="head") cho "Thank you." ("smile", "base", "base", "R") gen "Dismissed." ("base", xpos="far_left", ypos="head") cho "Good night, Sir." ("base", "base", "base", "mid") @@ -790,10 +790,10 @@ label cc_pr_manipulate_boys_T3_twins: cho "You want me to just go out there without any clothes on?" ("clench", "wide", "angry", "mid") gen "Of course... seems like a great exercise." ("base", xpos="far_left", ypos="head") cho "Exercise? How is this an exercise to you?" ("angry", "base", "angry", "down") - gen "An exercise in confidence, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "An exercise in confidence, [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "You have got to be joking..." ("disgust", "wide", "base", "mid") cho "So, you're not going to help me?" ("disgust", "base", "angry", "mid") - gen "This one's on you [cho_name]." ("base", xpos="far_left", ypos="head") + gen "This one's on you [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "*Grrrr*, Whatever..." ("angry", "base", "angry", "mid") # Cho leaves. @@ -1380,7 +1380,7 @@ label cc_pr_manipulate_boys_twins_branch: $ cho.set_body_hue(0) - cho "Thank you [cho_genie_name]..." ("base", "base", "base", "mid", trans=d9) + cho "Thank you [name_genie_cho]..." ("base", "base", "base", "mid", trans=d9) gen "Anything not to have my students \"feel blue\"." ("grin", xpos="far_left", ypos="head") gen "Speaking of... Your skin is back to normal." ("grin", xpos="far_left", ypos="head") cho "Very funny..." ("base", "base", "base", "down", cheeks="blush") #smile @@ -1398,7 +1398,7 @@ label cc_pr_manipulate_boys_twins_branch: gen "Looking good!" ("base", xpos="far_left", ypos="head") cho "I better be off then..." ("smile", "base", "base", "mid") cho "Good night." ("base", "base", "base", "mid") - gen "Good night, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Good night, [name_cho_genie]." ("base", xpos="far_left", ypos="head") call cho_walk(action="leave", speed=1.5) elif d_flag_02 == 4: diff --git a/game/scripts/characters/cho/events/requests/manipulate_girls.rpy b/game/scripts/characters/cho/events/requests/manipulate_girls.rpy index 79e2e47b..010e135a 100644 --- a/game/scripts/characters/cho/events/requests/manipulate_girls.rpy +++ b/game/scripts/characters/cho/events/requests/manipulate_girls.rpy @@ -106,7 +106,7 @@ label cc_pr_manipulate_girls_start: jump cho_requests_menu - gen "You seem to have gotten to know the Gryffindor girls quite well by now [cho_name]." ("base", xpos="far_left", ypos="head") + gen "You seem to have gotten to know the Gryffindor girls quite well by now [name_cho_genie]." ("base", xpos="far_left", ypos="head") gen "If you're not careful you might turn into one yourself." ("grin", xpos="far_left", ypos="head") cho "As if... Ravenclaw always comes first!" ("angry", "base", "base", "mid", cheeks="blush") gen "You do? No shame in that!" ("grin", xpos="far_left", ypos="head") @@ -116,7 +116,7 @@ label cc_pr_manipulate_girls_start: cho "We're so close I could almost taste it!" ("horny", "happyCl", "base", "mid") gen "I'm sure you will!" ("grin", xpos="far_left", ypos="head") gen "Now go get her..." ("grin", xpos="far_left", ypos="head") - cho "Yes [cho_genie_name]!" ("smile", "base", "base", "R") + cho "Yes [name_genie_cho]!" ("smile", "base", "base", "R") else: # Repeatable events. @@ -125,7 +125,7 @@ label cc_pr_manipulate_girls_start: gen "There's always room for more bonding." ("base", xpos="far_left", ypos="head") cho "Okay then..." ("open", "base", "raised", "down") gen "Make sure to bring me your report as usual B." ("base", xpos="far_left", ypos="head") - cho "Yes [cho_genie_name]!" ("base", "base", "base", "mid") + cho "Yes [name_genie_cho]!" ("base", "base", "base", "mid") # Cho leaves. call cho_walk(action="leave") @@ -189,7 +189,7 @@ label cc_pr_manipulate_girls_T3_alicia: cho "..." ("base", "narrow", "base", "down", cheeks="blush") #Glaring gen "What happened next?" ("base", xpos="far_left", ypos="head") cho "She broke off the kiss and slapped my butt cheek, before running off to the changing rooms." ("angry", "base", "base", "mid", cheeks="blush") - gen "Sounds to me like a job well done, [cho_name]." ("base", xpos="far_left", ypos="head") + gen "Sounds to me like a job well done, [name_cho_genie]." ("base", xpos="far_left", ypos="head") cho "But I didn't even do anything!" ("clench", "wide", "base", "mid", cheeks="blush") gen "Yet you achieved exactly what I asked of you, you formed an emotional bond with her." ("base", xpos="far_left", ypos="head") gen "Now we only have to do the same with the other two..." ("base", xpos="far_left", ypos="head") @@ -201,7 +201,7 @@ label cc_pr_manipulate_girls_T3_alicia: gen "Great plan!" ("base", xpos="far_left", ypos="head") gen "But for now you better get some rest and ready yourself to take on the other two." ("base", xpos="far_left", ypos="head") cho "..." ("disgust", "narrow", "base", "down", cheeks="blush") - gen "Don't look so dejected, [cho_name]. You had a beautiful girl kiss you today... surely you can't be disappointed by that?" ("base", xpos="far_left", ypos="head") + gen "Don't look so dejected, [name_cho_genie]. You had a beautiful girl kiss you today... surely you can't be disappointed by that?" ("base", xpos="far_left", ypos="head") cho "It's...{w=0.4} it's not that...{w=0.4} I'm just used to it being me who..." ("annoyed", "closed", "base", "mid", cheeks="blush") cho "..." ("upset", "closed", "base", "mid", cheeks="blush") #Blush cho "Never mind, good night then." ("normal", "base", "base", "downR", cheeks="heavy_blush") @@ -222,10 +222,10 @@ label cc_pr_manipulate_girls_T3_katie_part1: cho "..." ("normal", "narrow", "base", "down", cheeks="blush", xpos="mid", ypos="base", trans=fade) - gen "[cho_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_cho_genie]?" ("base", xpos="far_left", ypos="head") cho "..." ("normal", "narrow", "base", "down", cheeks="blush") gen "Hello?" ("base", xpos="far_left", ypos="head") - cho "Oh... Sorry [cho_genie_name]!" ("upset", "closed", "base", "mid", cheeks="blush") #face more focused still blushing + cho "Oh... Sorry [name_genie_cho]!" ("upset", "closed", "base", "mid", cheeks="blush") #face more focused still blushing gen "What's the report. Did you manage to bond with the girl?" ("base", xpos="far_left", ypos="head") cho "Of course..." ("angry", "narrow", "base", "down", cheeks="blush") gen "Then how did it go? Tell me all the details!" ("base", xpos="far_left", ypos="head") @@ -394,7 +394,7 @@ label cc_pr_manipulate_girls_T3_angelina: gen "So, do you have that report for me?" ("base", xpos="far_left", ypos="head") cho "I...{w=0.3} yes..." ("horny", "base", "base", "downR", cheeks="blush") - gen "I'm waiting [cho_name]... give me the {i}deets{/i}." ("base", xpos="far_left", ypos="head") + gen "I'm waiting [name_cho_genie]... give me the {i}deets{/i}." ("base", xpos="far_left", ypos="head") cho "Of course!" ("open", "happyCl", "base", "mid", cheeks="blush") cho "Well...{w=0.4} I went to see if I could catch Angelina talking to Madam Hooch again." ("soft", "base", "base", "down", cheeks="blush") cho "Determined to get the full context of what was going on this time!" ("open", "base", "base", "mid", cheeks="blush") @@ -490,15 +490,15 @@ label cc_pr_manipulate_girls_T3_angelina: cho "You reckon I ruined it?" ("upset", "narrow", "base", "mid", cheeks="blush") #worried gen "Of course not, you did great!" ("base", xpos="far_left", ypos="head") gen "But you can't let them take charge like that during the game." ("base", xpos="far_left", ypos="head") - cho "Yes [cho_genie_name]." ("open", "narrow", "base", "down", cheeks="blush") + cho "Yes [name_genie_cho]." ("open", "narrow", "base", "down", cheeks="blush") gen "Good!" ("base", xpos="far_left", ypos="head") gen "One step closer towards sipping at the fizzy cup!" ("base", xpos="far_left", ypos="head") cho "You don't drink from--" ("clench", "base", "base", "mid") - gen "Better ready yourself [cho_name]. The finals are looming ever so closer." ("base", xpos="far_left", ypos="head") + gen "Better ready yourself [name_cho_genie]. The finals are looming ever so closer." ("base", xpos="far_left", ypos="head") gen "You got this." ("base", xpos="far_left", ypos="head") cho "Thanks..." ("soft", "narrow", "base", "downR") #smiles gen "Now, time for some rest." ("base", xpos="far_left", ypos="head") - cho "Yes, good night then [cho_genie_name]." ("open", "base", "base", "mid") + cho "Yes, good night then [name_genie_cho]." ("open", "base", "base", "mid") # Cho leaves. call cho_walk(action="leave") diff --git a/game/scripts/characters/cho/events/requests/spy_on_the_boys.rpy b/game/scripts/characters/cho/events/requests/spy_on_the_boys.rpy index 2787a083..b946eec6 100644 --- a/game/scripts/characters/cho/events/requests/spy_on_the_boys.rpy +++ b/game/scripts/characters/cho/events/requests/spy_on_the_boys.rpy @@ -32,7 +32,7 @@ label cc_pr_spy_boys_start: cho "Where does this obsession with nicknames come from?" ("open", "base", "raised", "mid") gen "Where does it come from....?" ("base", xpos="far_left", ypos="head") - cho "Where does this obsession with nicknames come from... [cho_genie_name]?" ("annoyed", "base", "raised", "mid") + cho "Where does this obsession with nicknames come from... [name_genie_cho]?" ("annoyed", "base", "raised", "mid") gen "No-no... You don't get it, we use code words here..." ("base", xpos="far_left", ypos="head") gen "This is a secret operation!" ("base", xpos="far_left", ypos="head") cho "You want me to give you a nickname?" ("annoyed", "narrow", "base", "mid") diff --git a/game/scripts/characters/cho/events/requests/spy_on_the_girls.rpy b/game/scripts/characters/cho/events/requests/spy_on_the_girls.rpy index 0ccc4aac..104b35c7 100644 --- a/game/scripts/characters/cho/events/requests/spy_on_the_girls.rpy +++ b/game/scripts/characters/cho/events/requests/spy_on_the_girls.rpy @@ -16,7 +16,7 @@ label cc_pr_spy_girls_start: gen "Time for some good old espionage!" ("base", xpos="far_left", ypos="head") gen "For this mission -- I'd like you to spy on the girls of the Gryffindor team." ("base", xpos="far_left", ypos="head") gen "When they're alone..." ("base", xpos="far_left", ypos="head") - cho "When they're alone, [cho_genie_name]?" ("open", "narrow", "raised", "mid") + cho "When they're alone, [name_genie_cho]?" ("open", "narrow", "raised", "mid") cho "I can't get into their common room... you should know that." ("soft", "narrow", "base", "R") gen "There are plenty of other places where girls hang out and gossip..." ("base", xpos="far_left", ypos="head") gen "Want to know the place I'm thinking of?" ("grin", xpos="far_left", ypos="head") @@ -26,9 +26,9 @@ label cc_pr_spy_girls_start: gen "Excellent!" ("grin", xpos="far_left", ypos="head") cho "" ("annoyed", "base", "base", "mid") gen "Report back to me as usual, C." ("base", xpos="far_left", ypos="head") - cho "\"C\", [cho_genie_name]?" ("soft", "base", "raised", "mid") + cho "\"C\", [name_genie_cho]?" ("soft", "base", "raised", "mid") gen "It's your spy name!" ("grin", xpos="far_left", ypos="head") - cho "My spy name, [cho_genie_name]?" ("soft", "narrow", "base", "mid") + cho "My spy name, [name_genie_cho]?" ("soft", "narrow", "base", "mid") cho "The C stands for my Cho, I presume?" ("smile", "narrow", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") gen "No, not your name... I'm not that unimaginative..." ("base", xpos="far_left", ypos="head") @@ -48,7 +48,7 @@ label cc_pr_spy_girls_start: gen "Time for some more espionage..." ("base", xpos="far_left", ypos="head") gen "This time we'll be targeting the girls!" ("grin", xpos="far_left", ypos="head") - cho "The girls? Anyone in particular you want me to spy on, [cho_genie_name]?" ("soft", "narrow", "raised", "mid") + cho "The girls? Anyone in particular you want me to spy on, [name_genie_cho]?" ("soft", "narrow", "raised", "mid") gen "Why one of them when you could do all at once?" ("grin", xpos="far_left", ypos="head") cho "All at once?" ("clench", "base", "base", "mid") gen "That's what I said..." ("base", xpos="far_left", ypos="head") @@ -68,7 +68,7 @@ label cc_pr_spy_girls_start: gen "Not unless it vibrates..." ("base", xpos="far_left", ypos="head") cho "..." ("annoyed", "narrow", "angry", "mid") gen "You don't want it?" ("base", xpos="far_left", ypos="head") - cho "I'll manage without, [cho_genie_name]." ("annoyed", "narrow", "base", "mid") + cho "I'll manage without, [name_genie_cho]." ("annoyed", "narrow", "base", "mid") gen "Suit yourself..." ("base", xpos="far_left", ypos="head") gen "Anyway, you'd better get a move on." ("base", xpos="far_left", ypos="head") gen "I expect your report this evening, B!" ("base", xpos="far_left", ypos="head") @@ -90,7 +90,7 @@ label cc_pr_spy_girls_start: gen "Maybe she's putting up a front with her friends." ("base", xpos="far_left", ypos="head") cho "If you say so..." ("annoyed", "base", "base", "R") gen "Off you go, and good luck!" ("base", xpos="far_left", ypos="head") - cho "Thanks, [cho_genie_name]." ("base", "base", "base", "mid") + cho "Thanks, [name_genie_cho]." ("base", "base", "base", "mid") elif not cc_pr_spy_girls.is_event_complete(3, 3): # Completed Katie Bell? # Spy on Katie Bell @@ -100,11 +100,11 @@ label cc_pr_spy_girls_start: gen "Which one of the girls from the Gryffindor team have we yet to spy on?" ("base", xpos="far_left", ypos="head") cho "Well, I could spy on Katie..." ("open", "base", "raised", "R") gen "Katie... Who?{w=0.5} That name doesn't ring a bell..." ("base", xpos="far_left", ypos="head") - cho "Katie Bell, [cho_genie_name]." ("soft", "narrow", "base", "mid") + cho "Katie Bell, [name_genie_cho]." ("soft", "narrow", "base", "mid") gen "(...)" ("base", xpos="far_left", ypos="head") gen "Just keep it quiet when you go after her... We're on a spy mission, after all." ("base", xpos="far_left", ypos="head") gen "I don't want you to ring Katie's bell just yet. We'll get to that later..." ("grin", xpos="far_left", ypos="head") - cho "Ring her... Bell, [cho_genie_name]?" ("open", "narrow", "raised", "mid") + cho "Ring her... Bell, [name_genie_cho]?" ("open", "narrow", "raised", "mid") gen "Never mind... Off you go." ("base", xpos="far_left", ypos="head") cho "Very well... Until later then." ("base", "base", "base", "mid") @@ -212,7 +212,7 @@ label cc_pr_spy_girls_T3_showers: cho "Okay..." ("soft", "closed", "base", "mid") gen "Mission accomplished, B!" ("angry", xpos="far_left", ypos="head") gen "You may go now..." ("base", xpos="far_left", ypos="head") - cho "Good night, [cho_genie_name]." ("annoyed", "base", "base", "mid") + cho "Good night, [name_genie_cho]." ("annoyed", "base", "base", "mid") # Cho leaves. call cho_walk(action="leave") @@ -234,7 +234,7 @@ label cc_pr_spy_girls_T3_alicia: # Cho returns blushing with a vacant expression on her face gen "Ready for your report, B..." ("base", xpos="far_left", ypos="head") gen "What's the {i}sitch{/i}?" ("base", xpos="far_left", ypos="head") - cho "The \"sitch\", [cho_genie_name]?" ("soft", "narrow", "raised", "mid") + cho "The \"sitch\", [name_genie_cho]?" ("soft", "narrow", "raised", "mid") gen "What's the situation?" ("base", xpos="far_left", ypos="head") gen "Did you manage to spy on Miss Spinnet?" ("base", xpos="far_left", ypos="head") cho "I did..." ("open", "closed", "raised", "mid") @@ -269,7 +269,7 @@ label cc_pr_spy_girls_T3_alicia: gen "A girl that takes what she wants... I respect that." ("grin", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "angry", "mid") gen "So, what was she doing with them?" ("base", xpos="far_left", ypos="head") - cho "Do you really have to ask, [cho_genie_name]?" ("open", "narrow", "raised", "mid") + cho "Do you really have to ask, [name_genie_cho]?" ("open", "narrow", "raised", "mid") cho "Surely you're able to guess what they did in there..." ("soft", "closed", "base", "mid") gen "No, I have no idea!" ("grin", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "angry", "mid") @@ -285,7 +285,7 @@ label cc_pr_spy_girls_T3_alicia: cho "*Ehm*... Yes...{w=0.5} That was it..." ("quiver", "narrow", "base", "down", cheeks="blush") #Blushing cho "As I said, I could only see her bottom, from underneath that stall..." ("open", "narrow", "base", "downR", cheeks="blush") #Blushing gen "Your face says otherwise... Is that really everything you saw?" ("base", xpos="far_left", ypos="head") - cho "When I say bottom... She wasn't wearing any panties, [cho_genie_name]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") #Blushing + cho "When I say bottom... She wasn't wearing any panties, [name_genie_cho]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") #Blushing cho "She was also..." ("soft", "narrow", "worried", "mid", cheeks="blush") #Blushing cho "She was also really wet down there..." ("horny", "narrow", "worried", "downR", cheeks="blush") #Blushing gen "There it is..." ("grin", xpos="far_left", ypos="head") @@ -371,13 +371,13 @@ label cc_pr_spy_girls_T3_katie: gen "I'm sure you've just learned more about her than even her closest friends." ("base", xpos="far_left", ypos="head") cho "" ("annoyed", "narrow", "base", "mid", cheeks="blush") gen "She's a girl who likes it dirty, and takes it rougher than even the toughest sea dog can muster!" ("angry", xpos="far_left", ypos="head") - cho "If you say so, [cho_genie_name]..." ("soft", "narrow", "base", "R", cheeks="blush") + cho "If you say so, [name_genie_cho]..." ("soft", "narrow", "base", "R", cheeks="blush") gen "A pervert who doesn't give a hoot about foreplay." ("grin", xpos="far_left", ypos="head") cho "..." ("annoyed", "narrow", "angry", "mid", cheeks="blush") gen "And you definitely know not to entice her with any sort of seaweed." ("grin", xpos="far_left", ypos="head") cho "Can I go now?" ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Yes, you may leave..." ("base", xpos="far_left", ypos="head") - gen "Good job today, [cho_name]." ("grin", xpos="far_left", ypos="head") + gen "Good job today, [name_cho_genie]." ("grin", xpos="far_left", ypos="head") cho "Thanks..." ("soft", "closed", "base", "mid") cho "Good Night." ("normal", "narrow", "base", "mid") gen "Until next time." ("base", xpos="far_left", ypos="head") @@ -400,14 +400,14 @@ label cc_pr_spy_girls_T3_angelina: cho "" ("normal", "narrow", "base", "mid", xpos="mid", ypos="base", trans=fade) gen "Ready for your report, B... lay on me!" ("grin", xpos="far_left", ypos="head") - cho "Don't you mean lay \"it\" on me, [cho_genie_name]?" ("soft", "narrow", "raised", "mid") + cho "Don't you mean lay \"it\" on me, [name_genie_cho]?" ("soft", "narrow", "raised", "mid") gen "I'm pretty sure I'm right..." ("base", xpos="far_left", ypos="head") gen "But before that, tell me how everything went with Miss Johnson!" ("base", xpos="far_left", ypos="head") cho "Well enough, I'd say..." ("open", "narrow", "raised", "down") cho "I stayed behind after practice, to see if I could follow her once they were done changing their clothes." ("smile", "narrow", "angry", "mid") cho "To my surprise, she didn't head back to the castle like the others, but went to the referee's office instead..." ("base", "narrow", "angry", "mid") gen "The Referee?" ("base", xpos="far_left", ypos="head") - cho "Madam Hooch's office, [cho_genie_name]." ("soft", "base", "raised", "mid") + cho "Madam Hooch's office, [name_genie_cho]." ("soft", "base", "raised", "mid") cho "I managed to eavesdrop on their conversation, although I only caught the tail end of it..." ("open", "base", "base", "L") cho "I suspect Madam Hooch might know what they've been doing in the showers after the game..." ("base", "narrow", "angry", "mid", cheeks="blush") cho "Angelina was talking about how she couldn't believe that she and her friends were being spied on like that." ("open", "base", "base", "up") @@ -415,7 +415,7 @@ label cc_pr_spy_girls_T3_angelina: gen "Good to know my staff knows how to diffuse a situation..." ("base", xpos="far_left", ypos="head") cho "Angelina sure didn't see it that way -- and stormed right out her office..." ("base", "narrow", "angry", "mid") gen "You sure she wasn't talking about--" ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]... If Madam Hooch is spying on them, then Angelina might get the idea to entice her into helping them during the finals!" ("annoyed", "narrow", "base", "mid") + cho "[name_genie_cho]... If Madam Hooch is spying on them, then Angelina might get the idea to entice her into helping them during the finals!" ("annoyed", "narrow", "base", "mid") gen "*Hmm*... Not a bad idea, now that I think about it..." ("base", xpos="far_left", ypos="head") gen "We should try that as well." ("grin", xpos="far_left", ypos="head") cho "No! I don't want to win by cheating!" ("clench", "narrow", "angry", "mid") @@ -426,11 +426,11 @@ label cc_pr_spy_girls_T3_angelina: gen "I'll... figure something out..." ("base", xpos="far_left", ypos="head") cho "You'd better!" ("annoyed", "narrow", "angry", "mid") #Angry cho "So... are we done here?" ("base", "narrow", "raised", "mid") #smiles and focuses on genie - gen "Yes, mission successful, [cho_name]!" ("grin", xpos="far_left", ypos="head") + gen "Yes, mission successful, [name_cho_genie]!" ("grin", xpos="far_left", ypos="head") gen "We'll have that girl wrapped around our--" ("base", xpos="far_left", ypos="head") gen "I mean... around your finger soon enough..." ("grin", xpos="far_left", ypos="head") cho "Counting on it!" ("soft", "narrow", "raised", "mid") - cho "Good night, [cho_genie_name]." ("base", "narrow", "base", "mid") + cho "Good night, [name_genie_cho]." ("base", "narrow", "base", "mid") #cho leaves call cho_walk(action="leave") diff --git a/game/scripts/characters/cho/events/summon.rpy b/game/scripts/characters/cho/events/summon.rpy index 8a5ad776..f3951d24 100644 --- a/game/scripts/characters/cho/events/summon.rpy +++ b/game/scripts/characters/cho/events/summon.rpy @@ -24,13 +24,13 @@ label cho_summon_setup: if cho_mood > 0: if 5 > cho_mood >= 1: - cho "Yes, [cho_genie_name]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + cho "Yes, [name_genie_cho]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) elif 10 > cho_mood >= 5: - cho "*sigh*... Yes, [cho_genie_name]?" ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) + cho "*sigh*... Yes, [name_genie_cho]?" ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) elif 20 > cho_mood >= 10: - cho "What is it, [cho_genie_name]?" ("annoyed", "base", "angry", "mid", xpos="base", ypos="base",trans=d3) + cho "What is it, [name_genie_cho]?" ("annoyed", "base", "angry", "mid", xpos="base", ypos="base",trans=d3) elif 30 > cho_mood >= 20: - cho "What do you want, \"[cho_genie_name]\"?" ("angry", "narrow", "angry", "mid", xpos="base", ypos="base",trans=d3) + cho "What do you want, \"[name_genie_cho]\"?" ("angry", "narrow", "angry", "mid", xpos="base", ypos="base",trans=d3) elif 40 > cho_mood >= 30: cho "*Hmph*..." ("upset", "base", "angry", "R", xpos="base", ypos="base",trans=d3) elif 50 > cho_mood >= 40: @@ -43,9 +43,9 @@ label cho_summon_setup: call tutorial("moodngifts") else: if game.daytime: - cho "Good morning, [cho_genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + cho "Good morning, [name_genie_cho]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) else: - cho "Good evening, [cho_genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + cho "Good evening, [name_genie_cho]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) if cho_tier == 1: # Intro hints @@ -71,9 +71,9 @@ label cho_summon_setup: stop music fadeout 3.0 if cho_mood == 0: - cho "Goodbye, [cho_genie_name]." (face="happy") + cho "Goodbye, [name_genie_cho]." (face="happy") else: - cho "Goodbye, [cho_genie_name]." (face="annoyed") + cho "Goodbye, [name_genie_cho]." (face="annoyed") call play_sound("door") diff --git a/game/scripts/characters/cho/gifts.rpy b/game/scripts/characters/cho/gifts.rpy index 3761c82a..6ee87f60 100644 --- a/game/scripts/characters/cho/gifts.rpy +++ b/game/scripts/characters/cho/gifts.rpy @@ -12,25 +12,25 @@ label give_cho_gift(gift_item): cho "Sweets?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "My team captain hasn't let me buy any to keep my blood sugar balanced, whatever that means." (mouth="soft", face="annoyed") call give_gift(">You give the sweets to Cho...",gift_item) - cho "But thanks, [cho_genie_name]." (face="neutral") + cho "But thanks, [name_genie_cho]." (face="neutral") call cho_mood(-2) elif cho_tier == 2: cho "Sweets?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give the sweets to Cho...",gift_item) - cho "Thank you, [cho_genie_name] I do think I deserve one at least after winning our first match." ("smile", "base", "base", "L") + cho "Thank you, [name_genie_cho] I do think I deserve one at least after winning our first match." ("smile", "base", "base", "L") call cho_mood(-2) elif cho_tier == 3: cho "Sweets?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "But we're up against Gryffindor soon, I don't want to get addicted to sugar..." (mouth="soft", face="annoyed") call give_gift(">You give the sweets to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." ("smile", "base", "base", "L") + cho "Thank you, [name_genie_cho]." ("smile", "base", "base", "L") call cho_mood(-1) else: cho "Sweets?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give the sweets to Cho...",gift_item) cho "I'll keep it for later, I like licking it in front of my teammates to tease them a bit." ("open", "base", "raised", "mid") cho "*Mmmh*, but in the future... I'm more of a savoury kind of girl when it comes to sucking on things..." ("horny", "wink", "base", "mid") - cho "But thanks, [cho_genie_name]." ("smile", "base", "base", "L") + cho "But thanks, [name_genie_cho]." ("smile", "base", "base", "L") call cho_mood(-1) elif gift_item == chocolate_ITEM: @@ -38,13 +38,13 @@ label give_cho_gift(gift_item): cho "Chocolate?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "I probably shouldn't... although." (pupils="R", face="horny") call give_gift(">You give the chocolate to Cho...",gift_item) - cho "I'll take it, [cho_genie_name]!" (face="happy") + cho "I'll take it, [name_genie_cho]!" (face="happy") call cho_mood(-2) elif cho_tier == 2: cho "Chocolate... now that would be a treat..." (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give the chocolate to Cho...",gift_item) cho "What the heck, I deserve it." ("smile", "base", "base", "L") - cho "Thank you, [cho_genie_name]." ("open", "base", "base", "L") + cho "Thank you, [name_genie_cho]." ("open", "base", "base", "L") call cho_mood(-2) elif cho_tier == 3: cho "Chocolate?" (pupils="down", face="horny", xpos="mid", ypos="base") @@ -70,13 +70,13 @@ label give_cho_gift(gift_item): elif cho_tier == 2: cho "A toy?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give the stuffed owl to Cho...",gift_item) - cho "That's very nice of you [cho_genie_name] but I'd probably be made fun of owning this..." ("annoyed", "base", "base", "mid") + cho "That's very nice of you [name_genie_cho] but I'd probably be made fun of owning this..." ("annoyed", "base", "base", "mid") cho "I guess I could give it to someone." ("open", "base", "base", "down") call cho_mood(0) elif cho_tier == 3: cho "A toy?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give the stuffed owl to Cho...",gift_item) - cho "I'm not a child [cho_genie_name]..." ("annoyed", "base", "base", "mid") + cho "I'm not a child [name_genie_cho]..." ("annoyed", "base", "base", "mid") cho "Thank you I guess..." ("open", "base", "base", "down") call cho_mood(0) else: @@ -96,44 +96,44 @@ label give_cho_gift(gift_item): cho "Yes, I'll take it... turns out my team mates had been lying about the alcohol content to mess with me." ("open", "narrow", "base", "mid") cho "I guess I'll finally find out what I've been missing out on!" ("soft", "base", "raised", "L") call give_gift(">You give the Butterbeer to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-2) elif cho_tier == 3: cho "Butterbeer?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "It's a bit tame isn't it? I chugged a lot of it after our last win and can't say I felt a buzz even." ("open", "narrow", "base", "L") call give_gift(">You give the Butterbeer to Cho...",gift_item) - cho "Thank you I suppose, [cho_genie_name]." (face="neutral") + cho "Thank you I suppose, [name_genie_cho]." (face="neutral") call cho_mood(0) else: cho "Butterbeer?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "Don't you have any firewhisky?" ("annoyed", "base", "base", "mid") call give_gift(">You give the Butterbeer to Cho...",gift_item) - cho "Thank you I suppose, [cho_genie_name]." (face="neutral") + cho "Thank you I suppose, [name_genie_cho]." (face="neutral") call cho_mood(0) elif gift_item == science_mag_ITEM: if cho_tier <= 1: cho "Oh, I heard that they put out a new formula for broom polish in this issue." (mouth="open", pupils="R", face="neutral", xpos="mid", ypos="base") call give_gift(">You give an assortment of educational magazines to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif cho_tier == 2: cho "*Hmm*... Broom aerodynamics and how to utilise your opponents slipstream..." (pupils="down", face="horny", xpos="mid", ypos="base") cho "Interesting..." ("smile", "base", "base", "mid") call give_gift(">You give an assortment of educational magazines to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif cho_tier == 3: cho "Five steps to modify your brooms legally..." (pupils="down", face="horny", xpos="mid", ypos="base") cho "Sounds useful." ("smile", "base", "base", "mid") call give_gift(">You give an assortment of educational magazines to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) else: cho "Experts guide, How to maintain and store your Quidditch gear." (pupils="down", face="horny", xpos="mid", ypos="base") cho "Isn't that what a broom closet is for?" (face="annoyed", xpos="mid", ypos="base") call give_gift(">You give an assortment of educational magazines to Cho...",gift_item) - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif gift_item == girls_mag_ITEM: @@ -146,26 +146,26 @@ label give_cho_gift(gift_item): call give_gift(">You give an assortment of rather girly magazines to Cho...",gift_item) cho "I don't usually read these types of magazines, the boys used to make fun of me for it." (face="annoyed") cho "But they can't get into the girls dorm." (face="neutral") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif cho_tier == 3: cho "Girls magazines?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give an assortment of rather girly magazines to Cho...",gift_item) cho "They do have some interesting stuff on skincare I suppose..." ("annoyed", "closed", "base", "mid") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) else: cho "Girls magazines?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "I did enjoy last months issue about cultural appropriation with traditional clothing..." ("smile", "base", "base", "mid") call give_gift(">You give an assortment of rather girly magazines to Cho...",gift_item) cho "Don't tell the boys I said that." ("soft", "closed", "base", "mid") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif gift_item == adult_mag_ITEM: if cho_tier <= 1: cho "Adult magazines?" ("angry", "wide", "raised", "mid",xpos="mid",ypos="base") - cho "This is highly inappropriate [cho_genie_name]!" ("scream", "narrow", "raised", "mid") + cho "This is highly inappropriate [name_genie_cho]!" ("scream", "narrow", "raised", "mid") cho "Is this the kind of thing you usually give to people?" ("angry", "base", "base", "L") call cho_mood(1) elif cho_tier == 2: @@ -173,14 +173,14 @@ label give_cho_gift(gift_item): call give_gift(">You give an assortment of adult magazines to Cho...",gift_item) cho "These people do have nice, posture..." (face="horny") cho "I... I guess they could be useful." (face="horny") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) elif cho_tier == 3: cho "Adult magazines?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give an assortment of adult magazines to Cho...",gift_item) cho "They're all so fit in these magazines, totally my type." ("open", "wide", "raised", "down") cho "Does this one model in the nude?" ("horny", "base", "base", "L") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-1) else: cho "Adult magazines?" (pupils="down", face="horny", xpos="mid", ypos="base") @@ -188,7 +188,7 @@ label give_cho_gift(gift_item): cho "Wow, look at that guys abs..." ("horny", "base", "base", "down") cho "And that girls..." ("soft", "base", "raised", "down") cho "I'll take it." ("open", "narrow", "base", "mid") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-2) elif gift_item == porn_mag_ITEM: @@ -213,7 +213,7 @@ label give_cho_gift(gift_item): else: cho "Porn magazines?" (pupils="down", face="horny", xpos="mid", ypos="base") cho "Ooh, are those two doing it on a broom? That's impressive..." ("open", "wide", "raised", "down") - cho "[cho_genie_name], this is naughty. Even for you..." ("horny", "wink", "base", "L") + cho "[name_genie_cho], this is naughty. Even for you..." ("horny", "wink", "base", "L") cho "I've got my eyes on you." ("base", "narrow", "raised", "L") call give_gift(">You give an assortment of porn magazines to Cho...",gift_item) cho "Thank you." ("smile", "base", "base", "mid") @@ -233,7 +233,7 @@ label give_cho_gift(gift_item): cho "I'll use it..." ("smile", "base", "base", "mid") call give_gift(">You give the poster to Cho...",gift_item) cho "As a motivational poster that is!" ("open", "wide", "raised", "L") - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-2) elif cho_tier == 3: cho "A Viktor Krum poster?" (mouth="smile", eyes="wide", eyebrows="raised", pupils="mid", xpos="mid", ypos="base") @@ -241,14 +241,14 @@ label give_cho_gift(gift_item): cho "..." ("angry", "wide", "raised", "down") cho "Not that I'd read such a thing." ("upset", "base", "base", "downR") call give_gift(">You give the poster to Cho...",gift_item) - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-3) else: cho "A Viktor Krum poster?" (mouth="scream", eyes="wide", eyebrows="raised", pupils="mid", xpos="mid", ypos="base") cho "I'll take that if you don't mind." (pupils="downR", face="horny") call give_gift(">You give the poster to Cho...",gift_item) cho "(...)" (mouth="soft", pupils="up", face="horny") - cho "I love it, [cho_genie_name]." (pupils="mid", face="horny") + cho "I love it, [name_genie_cho]." (pupils="mid", face="horny") call cho_mood(-5) elif gift_item == sexy_lingerie_ITEM: @@ -268,7 +268,7 @@ label give_cho_gift(gift_item): cho "Lingerie?" (face="annoyed", xpos="mid", ypos="base") cho "Seems pretty flexible. I might be able use these when stretching." (mouth="annoyed", pupils="down", face="annoyed") call give_gift(">You give the lingerie to Cho...",gift_item) - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-2) else: cho "Lingerie?" (mouth="open", eyes="wide", eyebrows="raised", pupils="mid", xpos="mid", ypos="base") @@ -276,7 +276,7 @@ label give_cho_gift(gift_item): cho "You've got good taste... I tore mine last year during the ball..." ("base", "base", "raised", "mid") cho "Well, they got torn at one point at least..." ("smile", "narrow", "base", "down") call give_gift(">You give the lingerie to Cho...",gift_item) - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-3) elif gift_item == sexy_stockings_ITEM : @@ -290,13 +290,13 @@ label give_cho_gift(gift_item): cho "Stockings?" ("annoyed", "narrow", "base", "down",xpos="mid",ypos="base") cho "I guess I wont get sunburnt on my legs wearing these..." ("open", "narrow", "base", "mid") call give_gift(">You give the lingerie to Cho...",gift_item) - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-1) elif cho_tier == 3: cho "Stockings?" ("annoyed", "narrow", "base", "down",xpos="mid",ypos="base") cho "I can almost see right through these..." (mouth="annoyed", pupils="down", face="annoyed") call give_gift(">You give the lingerie to Cho...",gift_item) - cho "Thank you [cho_genie_name]." (face="neutral") + cho "Thank you [name_genie_cho]." (face="neutral") call cho_mood(-2) else: cho "Stockings?" ("annoyed", "narrow", "base", "down",xpos="mid",ypos="base") @@ -325,7 +325,7 @@ label give_cho_gift(gift_item): cho "Condoms?" (pupils="down", face="horny", xpos="mid", ypos="base") call give_gift(">You give a pack of condoms to Cho...", gift_item) cho "I do surround myself with mostly boys, so having these at hand could be useful..." (pupils="downR", face="horny") - cho "Thank you for your concerns, [cho_genie_name]..." (mouth="soft", pupils="mid", face="neutral") + cho "Thank you for your concerns, [name_genie_cho]..." (mouth="soft", pupils="mid", face="neutral") call cho_mood(-2) elif gift_item == vibrator_ITEM: @@ -349,7 +349,7 @@ label give_cho_gift(gift_item): cho "A Vibrator?" (face="horny", xpos="mid", ypos="base") call give_gift(">You give the vibrator to Cho...", gift_item) cho "Ahh, It does promote a healthy lifestyle..." (face="horny") - cho "Thank you, [cho_genie_name]." (face="happy") + cho "Thank you, [name_genie_cho]." (face="happy") call cho_mood(-3) elif gift_item == anal_lube_ITEM: @@ -370,7 +370,7 @@ label give_cho_gift(gift_item): else: cho "Anal Lubricant?" (face="annoyed", xpos="mid", ypos="base") call give_gift(">You give the jar of anal lube to Cho...", gift_item) - cho "You should've given me this yesterday, [cho_genie_name]." (mouth="soft", face="annoyed") + cho "You should've given me this yesterday, [name_genie_cho]." (mouth="soft", face="annoyed") cho "I haven't been able to sit on a broom all day after yesterday's game..." (mouth="annoyed", pupils="down", face="annoyed") call cho_mood(-5) @@ -422,7 +422,7 @@ label give_cho_gift(gift_item): call give_gift(">You give a set of anal plugs to Cho...", gift_item) cho "But these would stick out under my robes..." (face="annoyed") cho "Maybe people would just think it's a tail or something..." (face="horny") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-2) elif gift_item == testral_strapon_ITEM: @@ -471,7 +471,7 @@ label give_cho_gift(gift_item): cho "Is that a Lady Speed Stick-2000, with a built-in vibrator and pulse function?" (mouth="scream", eyes="wide", eyebrows="raised", pupils="down", xpos="mid", ypos="base") call give_gift(">You give the broom to Cho...", gift_item) cho "I mean..." (pupils="downR", face="horny") - cho "Thank you, [cho_genie_name]..." (mouth="soft", pupils="down", face="horny") + cho "Thank you, [name_genie_cho]..." (mouth="soft", pupils="down", face="horny") cho "I can't wait to try it out..." (pupils="mid", face="happy") call cho_mood(-6) @@ -522,17 +522,17 @@ label give_cho_gift(gift_item): call give_gift(">You give the anal beads to Cho...", gift_item) cho "Surely my butt would hurt after using these..." (face="annoyed") cho "Although I do have a cushioning charm on my broom for a reason..." (face="horny") - cho "Thank you, [cho_genie_name]." (face="neutral") + cho "Thank you, [name_genie_cho]." (face="neutral") call cho_mood(-2) elif gift_item == wine_ITEM: if cho_tier <= 2: cho "A wine bottle?" (face="annoyed", xpos="mid", ypos="base") - cho "[cho_genie_name], I cannot drink alcohol, it would ruin my career.." ("open", "narrow", "angry", "mid") + cho "[name_genie_cho], I cannot drink alcohol, it would ruin my career.." ("open", "narrow", "angry", "mid") call cho_mood(4) else: cho "A wine bottle?" (face="neutral", xpos="mid", ypos="base") - cho "Thank you, [cho_genie_name] but I can't take it." (face="neutral") + cho "Thank you, [name_genie_cho] but I can't take it." (face="neutral") cho "{size=-4}Maybe to celebrate after I win the Quidditch Cup..{/size}" (face="horny") call cho_mood(0) diff --git a/game/scripts/characters/cho/summon.rpy b/game/scripts/characters/cho/summon.rpy index 30b66e0a..8fbdd06c 100644 --- a/game/scripts/characters/cho/summon.rpy +++ b/game/scripts/characters/cho/summon.rpy @@ -88,7 +88,7 @@ label summon_cho: # Talk "-Talk-" (icon="interface/icons/small/talk.webp"): if cho_mood > 0: - cho "I have nothing to say to you, [cho_genie_name]..." (face="annoyed") + cho "I have nothing to say to you, [name_genie_cho]..." (face="annoyed") jump cho_requests call cho_chitchat @@ -101,7 +101,7 @@ label summon_cho: if cho_mood >= 5: cho "No.{w=0.5} And I don't want to hear of it right now, Sir." (face="angry") else: - cho "I'm sorry, [cho_genie_name]. But I don't feel like training today." ("soft", "base", "worried", "down") + cho "I'm sorry, [name_genie_cho]. But I don't feel like training today." ("soft", "base", "worried", "down") call nar(">Cho is still upset with you.") jump cho_requests @@ -113,7 +113,7 @@ label summon_cho: "-Sexual favours-" (icon="interface/icons/small/condom.webp") if cho_favors_unlocked: if cho_mood > 0: - cho "I'm sorry, [cho_genie_name]. But I don't feel like it today..." ("upset", "base", "worried", "mid") + cho "I'm sorry, [name_genie_cho]. But I don't feel like it today..." ("upset", "base", "worried", "mid") jump cho_requests else: jump cho_favor_menu @@ -146,9 +146,9 @@ label summon_cho: stop music fadeout 3.0 if cho_mood == 0: - cho "Goodbye, [cho_genie_name]." ("base", "base", "base", "mid") + cho "Goodbye, [name_genie_cho]." ("base", "base", "base", "mid") else: - cho "Goodbye, [cho_genie_name]." ("annoyed", "base", "base", "L") + cho "Goodbye, [name_genie_cho]." ("annoyed", "base", "base", "L") call play_sound("door") diff --git a/game/scripts/characters/cho/talk.rpy b/game/scripts/characters/cho/talk.rpy index fe7afba2..57cad6cd 100644 --- a/game/scripts/characters/cho/talk.rpy +++ b/game/scripts/characters/cho/talk.rpy @@ -17,23 +17,23 @@ label cho_talk: "\"-Address me only as-\"" if cho_quid.E1_complete: menu: "\"-Sir-\"": - $ cho_genie_name = "Sir" + $ name_genie_cho = "Sir" "\"-Dumbledore-\"": - $ cho_genie_name = "Dumbledore" + $ name_genie_cho = "Dumbledore" "\"-Professor-\"": - $ cho_genie_name = "Professor" + $ name_genie_cho = "Professor" "\"-Coach-\"": - $ cho_genie_name = "Coach" + $ name_genie_cho = "Coach" "\"-Sergeant-\"": - $ cho_genie_name = "Sergeant" + $ name_genie_cho = "Sergeant" "\"-Captain-\"": - $ cho_genie_name = "Captain" + $ name_genie_cho = "Captain" "\"-Old Man-\"": - $ cho_genie_name = "Old Man" + $ name_genie_cho = "Old Man" "\"-Daddy-\"" if cho_tier >= 4: - $ cho_genie_name = "Daddy" + $ name_genie_cho = "Daddy" "-Custom Input-": - $ cho_genie_name = renpy.input("(Please enter the name.)", cho_genie_name, ALLOWED_CHARACTERS, length=14).strip() or "Professor" + $ name_genie_cho = renpy.input("(Please enter the name.)", name_genie_cho, ALLOWED_CHARACTERS, length=14).strip() or "Professor" "\"-Never mind-\"": jump cho_talk @@ -42,52 +42,52 @@ label cho_talk: "\"-From now on I will refer to you as-\"" if cho_quid.E1_complete: menu: "\"-Miss Chang-\"": - $ cho_name = "Miss Chang" + $ name_cho_genie = "Miss Chang" "\"-Cho-\"": - $ cho_name = "Cho" + $ name_cho_genie = "Cho" "\"-Cadet-\"": - $ cho_name = "Cadet" + $ name_cho_genie = "Cadet" "\"-Pilot-\"": - $ cho_name = "Pilot" + $ name_cho_genie = "Pilot" "\"-Maggot-\"": - $ cho_name = "Maggot" + $ name_cho_genie = "Maggot" "\"-Tomboy-\"": - $ cho_name = "Tomboy" + $ name_cho_genie = "Tomboy" "\"-Boy-\"": - $ cho_name = "Boy" + $ name_cho_genie = "Boy" "\"-Champ-\"" if cho_tier >= 4: - $ cho_name = "Champ" + $ name_cho_genie = "Champ" "\"-Slut-\"" if cho_tier >= 4: - $ cho_name = "Slut" + $ name_cho_genie = "Slut" "-Custom Input-": - $ cho_name = renpy.input("(Please enter the name.)", cho_name, ALLOWED_CHARACTERS, length=14).strip() or "Miss Chang" + $ name_cho_genie = renpy.input("(Please enter the name.)", name_cho_genie, ALLOWED_CHARACTERS, length=14).strip() or "Miss Chang" "\"-Never mind-\"": jump cho_talk - jump cho_name + jump name_cho_genie "\"-Never mind-\"": jump cho_requests label genie_cho_change: - if cho_genie_name == "Sir": + if name_genie_cho == "Sir": cho "Certainly, sir." ("base", "base", "base", "mid") - elif cho_genie_name == "Dumbledore": + elif name_genie_cho == "Dumbledore": cho "Of course Dumbledore..." ("open", "base", "base", "mid") - elif cho_genie_name == "Professor": + elif name_genie_cho == "Professor": cho "Yes Professor..." ("open", "base", "base", "mid") - elif cho_genie_name == "Coach": + elif name_genie_cho == "Coach": cho "Yes Coach!" ("smile", "base", "base", "mid") - elif cho_genie_name == "Sergeant": + elif name_genie_cho == "Sergeant": gen "Is that clear?" ("base", xpos="far_left", ypos="head") cho "Yes Sergeant!" ("smile", "base", "base", "mid") - elif cho_genie_name == "Captain": + elif name_genie_cho == "Captain": cho "Yes Captain!" ("smile", "base", "base", "mid") - elif cho_genie_name == "Old Man": + elif name_genie_cho == "Old Man": cho "You want me to call you an old man?" ("soft", "base", "base", "mid") gen "Just \"Old man\" is good for now." ("base", xpos="far_left", ypos="head") cho "Okay then..." ("open", "base", "base", "R") - elif cho_genie_name == "Daddy": + elif name_genie_cho == "Daddy": cho "You want me to--" ("soft", "narrow", "base", "mid", cheeks="blush") gen "Call me daddy..." ("base", xpos="far_left", ypos="head") cho "..." ("base", "narrow", "base", "downR", cheeks="blush") @@ -96,20 +96,20 @@ label genie_cho_change: cho "Very well..." (face="neutral") jump cho_talk -label cho_name: - if cho_name == "Miss Chang": - cho "Of course [cho_genie_name]." ("base", "base", "base", "mid") - elif cho_name == "Cho": - cho "Of course [cho_genie_name]." ("base", "base", "base", "mid") - elif cho_name == "Cadet": - cho "Yes [cho_genie_name]!" ("smile", "base", "base", "mid") - elif cho_name == "Pilot": - cho "Yes [cho_genie_name]!" ("base", "base", "base", "mid") - elif cho_name == "Maggot": +label name_cho_genie: + if name_cho_genie == "Miss Chang": + cho "Of course [name_genie_cho]." ("base", "base", "base", "mid") + elif name_cho_genie == "Cho": + cho "Of course [name_genie_cho]." ("base", "base", "base", "mid") + elif name_cho_genie == "Cadet": + cho "Yes [name_genie_cho]!" ("smile", "base", "base", "mid") + elif name_cho_genie == "Pilot": + cho "Yes [name_genie_cho]!" ("base", "base", "base", "mid") + elif name_cho_genie == "Maggot": cho "I--" ("angry", "narrow", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - cho "Yes [cho_genie_name]!" ("angry", "happyCl", "base", "mid") - elif cho_name == "Tomboy": + cho "Yes [name_genie_cho]!" ("angry", "happyCl", "base", "mid") + elif name_cho_genie == "Tomboy": if cho_tier <= 3: cho "Tomboy?" ("soft", "base", "base", "mid") gen "Is that not accurate?" ("base", xpos="far_left", ypos="head") @@ -121,11 +121,11 @@ label cho_name: gen "Except your personality..." ("base", xpos="far_left", ypos="head") cho "*Hmph*..." ("annoyed", "narrow", "base", "R", cheeks="blush") cho "Fine... I guess that's fair..." ("open", "narrow", "base", "R", cheeks="blush") - elif cho_name == "Boy": + elif name_cho_genie == "Boy": if cho_tier <= 3: cho "You want to call me what?!" ("angry", "base", "base", "mid") gen "Boy!" ("base", xpos="far_left", ypos="head") - cho "But [cho_genie_name]!" ("disgust", "narrow", "base", "mid") + cho "But [name_genie_cho]!" ("disgust", "narrow", "base", "mid") cho "I'm not a boy!" ("clench", "narrow", "base", "mid") gen "I know that..." ("base", xpos="far_left", ypos="head") cho "Then why--" ("angry", "base", "base", "mid") @@ -138,19 +138,19 @@ label cho_name: cho "..." ("disgust", "base", "base", "stare") #Hold on a minute... else: cho "Boy?" ("soft", "narrow", "base", "mid", cheeks="blush") - cho "But [cho_genie_name]... Won't that be weird?" ("soft", "base", "base", "mid", cheeks="blush") + cho "But [name_genie_cho]... Won't that be weird?" ("soft", "base", "base", "mid", cheeks="blush") gen "..." ("base", xpos="far_left", ypos="head") cho "Alright then... If that's what you're into..." ("base", "base", "base", "R", cheeks="blush") - elif cho_name == "Champ": + elif name_cho_genie == "Champ": cho "Champ?" ("open", "base", "raised", "mid") gen "Yep... Gotta give some credit where it's due." ("base", xpos="far_left", ypos="head") - cho "Oh... Thank you [cho_genie_name]..." ("smile", "base", "base", "mid") - elif cho_name == "Slut": + cho "Oh... Thank you [name_genie_cho]..." ("smile", "base", "base", "mid") + elif name_cho_genie == "Slut": cho "You want to call me..." ("soft", "narrow", "base", "down", cheeks="heavy_blush") gen "A slut!" ("base", xpos="far_left", ypos="head") cho "..." ("horny", "narrow", "base", "stare", cheeks="heavy_blush") #horny cho "*Ah*...{w=0.4} Yes, I suppose that's fine..." ("soft", "narrow", "base", "mid", cheeks="heavy_blush") - elif cho_name == "Princess": #Custom choice + elif name_cho_genie == "Princess": #Custom choice if cho_tier <= 3: cho "Princess?!" ("angry", "base", "base", "mid") gen "Yes, is that a problem?" ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/cho/vars.rpy b/game/scripts/characters/cho/vars.rpy index b26683bb..77411582 100644 --- a/game/scripts/characters/cho/vars.rpy +++ b/game/scripts/characters/cho/vars.rpy @@ -35,11 +35,11 @@ default hufflepuff_match = "" # Dynamic string. Valid choices: 'start', 'ready', default slytherin_match = "" # Dynamic string. Valid choices: 'start', 'ready', 'intro_done', 'completed', 'return'. default gryffindor_match = "" # Dynamic string. Valid choices: 'start', 'ready', 'intro_done', 'completed', 'return'. -default cho_broom_name = "Purple Rocket" +default name_broom_cho = "Purple Rocket" # Names -default cho_genie_name = "Professor" -default cho_name = "Cho" -default tonks_cho_name = "Sweetie" +default name_genie_cho = "Professor" +default name_cho_genie = "Cho" +default name_cho_tonks = "Sweetie" default gave_cho_gift = False diff --git a/game/scripts/characters/cho/wardrobe_reactions.rpy b/game/scripts/characters/cho/wardrobe_reactions.rpy index c0163521..6500727a 100644 --- a/game/scripts/characters/cho/wardrobe_reactions.rpy +++ b/game/scripts/characters/cho/wardrobe_reactions.rpy @@ -84,16 +84,16 @@ label cho_reaction_touch(what): if random_number == 1: cho "I could get used to this..." ("base", "narrow", "base", "R", cheeks="blush") elif random_number == 2: - cho "Thank you [cho_genie_name]..." ("open", "narrow", "base", "down", cheeks="blush") + cho "Thank you [name_genie_cho]..." ("open", "narrow", "base", "down", cheeks="blush") elif random_number == 3: - cho "Is this supposed to be my reward, [cho_genie_name]?" ("soft", "narrow", "base", "mid", cheeks="blush") + cho "Is this supposed to be my reward, [name_genie_cho]?" ("soft", "narrow", "base", "mid", cheeks="blush") cho "I was expecting more coming from you..." ("open", "narrow", "base", "downR", cheeks="blush") else: #22+ #Post Gryffindor match (end of tier) $ random_number = renpy.random.randint(1, 3) if random_number == 1: cho "Are you sure there isn't anywhere else you could distribute that praise?" ("smile", "narrow", "base", "mid", cheeks="blush") elif random_number == 2: - cho "I'm glad you're so proud of me [cho_genie_name]..." ("base", "narrow", "base", "mid", cheeks="blush") + cho "I'm glad you're so proud of me [name_genie_cho]..." ("base", "narrow", "base", "mid", cheeks="blush") elif random_number == 3: cho "*Mmm*..." ("horny", "closed", "base", "mid", cheeks="blush") @@ -118,7 +118,7 @@ label cho_reaction_touch(what): if random_number == 1: cho "*Mmm*..." ("horny", "closed", "base", "mid") elif random_number == 2: - cho "Thank you [cho_genie_name]..." ("soft", "narrow", "base", "mid", cheeks="blush") + cho "Thank you [name_genie_cho]..." ("soft", "narrow", "base", "mid", cheeks="blush") elif random_number == 3: cho "Glad you appreciate them as much as I do..." ("smile", "wink", "base", "mid", cheeks="blush") @@ -152,7 +152,7 @@ label cho_reaction_touch_fail(what): if random_number == 1: cho "Don't touch my hair..." ("clench", "base", "base", "mid") elif random_number == 2: - cho "Bad [cho_genie_name]..." ("annoyed", "base", "angry", "mid") + cho "Bad [name_genie_cho]..." ("annoyed", "base", "angry", "mid") elif random_number == 3: cho "No touch!" ("open", "closed", "angry", "mid") elif random_number == 4: @@ -163,7 +163,7 @@ label cho_reaction_touch_fail(what): $ random_number = renpy.random.randint(1, 4) if random_number == 1: - cho "[cho_genie_name]?!" ("mad", "base", "angry", "mid") + cho "[name_genie_cho]?!" ("mad", "base", "angry", "mid") cho "This isn't a part of our training..." ("clench", "base", "angry", "mid") elif random_number == 2: cho "Nice try..." ("smile", "narrow", "angry", "mid") @@ -183,7 +183,7 @@ label cho_reaction_touch_fail(what): elif random_number ==3: cho "Nice try..." ("soft", "narrow", "angry", "mid") elif random_number ==4: - cho "No foul plays, [cho_genie_name]..." ("angry", "narrow", "angry", "mid") + cho "No foul plays, [name_genie_cho]..." ("angry", "narrow", "angry", "mid") return @@ -222,7 +222,7 @@ label cho_reaction_unequip(item): # if item.type == "panties": # if cho_whoring > 15: # cho "You want to see my snatch?" - # cho "You got it [genie_name]!" + # cho "You got it [name_genie_hermione]!" # return @@ -235,7 +235,7 @@ label cho_reaction_unequip_fail(item): cho "How is that supposed to help with my training?" ("open", "closed", "angry", "mid", cheeks="blush") elif random_number == 2: cho "You want me to stand here without underwear?" ("disgust", "narrow", "base", "mid") - cho "Yeah, in your dreams [cho_genie_name]..." ("annoyed", "narrow", "angry", "R") + cho "Yeah, in your dreams [name_genie_cho]..." ("annoyed", "narrow", "angry", "R") elif random_number == 3: cho "Take your own underwear off why don't you..." ("disgust", "narrow", "angry", "mid") gen "What's to say I'm wearing any?" ("base", xpos="far_left", ypos="head") @@ -251,10 +251,10 @@ label cho_reaction_unequip_fail(item): cho "No way!" ("clench", "narrow", "angry", "mid") elif item.type == "top": - cho "I'm sorry if you don't like my choice of clothes, [cho_genie_name]..." ("annoyed", "narrow", "angry", "R") + cho "I'm sorry if you don't like my choice of clothes, [name_genie_cho]..." ("annoyed", "narrow", "angry", "R") elif item.type == "bottom": - cho "I'm sorry if you don't like my choice of clothes, [cho_genie_name]..." ("open", "narrow", "angry", "downR") + cho "I'm sorry if you don't like my choice of clothes, [name_genie_cho]..." ("open", "narrow", "angry", "downR") return label cho_reaction_equip_outfit(item): @@ -342,10 +342,10 @@ label cho_reaction_equip_outfit(item): cho "They go-- Oh...{w=0.3} I see..." ("disgust", "narrow", "base", "down", cheeks="blush") menu: "\"(And call me captain from now!)\"": - $ cho_genie_name = "Captain" + $ name_genie_cho = "Captain" cho "Alright Captain!" ("soft", "narrow", "base", "mid", cheeks="blush") "\"(Now set sail!)\"": - cho "Yes [cho_genie_name]!" ("soft", "narrow", "base", "mid", cheeks="blush") + cho "Yes [name_genie_cho]!" ("soft", "narrow", "base", "mid", cheeks="blush") ############################ ## Japanese School Outfit ## @@ -431,7 +431,7 @@ label cho_reaction_equip_outfit(item): gen "Yep, this one!" ("base", xpos="far_left", ypos="head") cho "*Hmm*...{w=0.3} Red and gold..." ("normal", "base", "base", "down") gen "Nice isn't it?" ("base", xpos="far_left", ypos="head") - cho "I...{w=0.3} Yes, thank you [cho_genie_name]..." ("open", "narrow", "base", "down") + cho "I...{w=0.3} Yes, thank you [name_genie_cho]..." ("open", "narrow", "base", "down") cho "I'll put it on now then shall I." ("open", "base", "base", "mid") #################### @@ -585,11 +585,11 @@ label cho_reaction_equip_outfit_fail(item): if item == cho_outfit_cheerleader: #Req 10 whoring gen "Could you wear the cheerleader outfit for me?" ("base", xpos="far_left", ypos="head") if cho_whoring < 4: - cho "Cheerleader--{w=0.4} [cho_genie_name]!" ("clench", "narrow", "base", "mid") + cho "Cheerleader--{w=0.4} [name_genie_cho]!" ("clench", "narrow", "base", "mid") gen "what?" ("base", xpos="far_left", ypos="head") cho "I am a real athlete!" ("disgust", "narrow", "angry", "mid") cho "I do not mingle with the cheerleading squad..." ("annoyed", "narrow", "angry", "R") - gen "Now, now [cho_name]... Cheerleaders are athletes as well." ("base", xpos="far_left", ypos="head") + gen "Now, now [name_cho_genie]... Cheerleaders are athletes as well." ("base", xpos="far_left", ypos="head") gen "Their role is just as important as yours." ("base", xpos="far_left", ypos="head") cho "Don't make me laugh..." ("open", "closed", "angry", "mid") cho "They only thing they're good at is distracting the audience from the game." ("annoyed", "narrow", "angry", "mid") @@ -654,7 +654,7 @@ label cho_reaction_equip_outfit_fail(item): cho "The... Party outfit?" ("open", "base", "raised", "mid") gen "Yeah... This one..." ("base", xpos="far_left", ypos="head") cho "..." ("normal", "base", "base", "down") - cho "[cho_genie_name]!" ("angry", "wide", "base", "mid") + cho "[name_genie_cho]!" ("angry", "wide", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") cho "What do you mean what? This outfit has no underwear!" ("upset", "narrow", "angry", "mid") gen "I mean... It covers the important bits does it not?" ("base", xpos="far_left", ypos="head") @@ -706,7 +706,7 @@ label cho_reaction_equip_outfit_fail(item): ############################ elif item == cho_outfit_j_school: #Req 4 (top, bottom) gen "Could you put on the Japanese schoolgirl uniform?" ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], I'm not Japanese..." ("annoyed", "narrow", "angry", "mid") + cho "[name_genie_cho], I'm not Japanese..." ("annoyed", "narrow", "angry", "mid") gen "So?" ("base", xpos="far_left", ypos="head") cho "Why do you want me to put on a Japanese school uniform?" ("upset", "narrow", "angry", "mid") gen "(I better tread carefully...)" ("base", xpos="far_left", ypos="head") @@ -741,7 +741,7 @@ label cho_reaction_equip_outfit_fail(item): elif cho_whoring < 10: cho "A bikini? Why would I--" ("angry", "narrow", "base", "mid") gen "This one..." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]!" ("clench", "narrow", "base", "down") + cho "[name_genie_cho]!" ("clench", "narrow", "base", "down") gen "What?" ("base", xpos="far_left", ypos="head") cho "How is this meant to be a bikini?" ("angry", "base", "angry", "down") cho "This would barely cover my... It would barely cover anything!" ("disgust", "narrow", "base", "down") @@ -769,7 +769,7 @@ label cho_reaction_equip_outfit_fail(item): cho "I am not changing my underwear for you!" ("disgust", "base", "angry", "mid") cho "Especially into something like this!" ("soft", "narrow", "angry", "down") cho "I can't believe you'd ask me to do this..." ("disgust", "base", "angry", "mid") - gen "I was just testing you! And you failed [cho_name]!" ("base", xpos="far_left", ypos="head") + gen "I was just testing you! And you failed [name_cho_genie]!" ("base", xpos="far_left", ypos="head") cho "A Test?! What kind of test was that supposed to be?" ("angry", "narrow", "base", "mid") gen "*Err*... A test of virtue!" ("base", xpos="far_left", ypos="head") cho "*Huh*?" ("angry", "base", "raised", "mid") @@ -808,7 +808,7 @@ label cho_reaction_equip_outfit_fail(item): gen "I've got the perfect dress for you to wear." ("base", xpos="far_left", ypos="head") cho "A dress?" ("soft", "base", "base", "mid") gen "Yep, this one!" ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name]!" ("clench", "narrow", "base", "down") + cho "[name_genie_cho]!" ("clench", "narrow", "base", "down") gen "Yes?" ("base", xpos="far_left", ypos="head") gen "You're loving it?" ("base", xpos="far_left", ypos="head") cho "Is this some sort of joke?" ("disgust", "narrow", "base", "mid") @@ -843,7 +843,7 @@ label cho_reaction_equip_outfit_fail(item): gen "..." ("base", xpos="far_left", ypos="head") else: # 4+ gen "I've got this smurfette Cosplay for you to wear." ("base", xpos="far_left", ypos="head") - cho "[cho_genie_name], this outfit has no underwear." ("angry", "narrow", "base", "mid") + cho "[name_genie_cho], this outfit has no underwear." ("angry", "narrow", "base", "mid") gen "I mean, you never saw it in the show..." ("base", xpos="far_left", ypos="head") cho "I am not putting it on..." ("annoyed", "narrow", "angry", "mid") @@ -854,7 +854,7 @@ label cho_reaction_equip_outfit_fail(item): gen "I think It's time you wear an outfit for a real sport for once." ("base", xpos="far_left", ypos="head") cho "What do you mean real sport?" ("angry", "narrow", "base", "mid") gen "One that isn't played riding cleaning appliances." ("base", xpos="far_left", ypos="head") - cho "Quidditch is a real sport [cho_genie_name]!" ("angry", "narrow", "base", "mid") + cho "Quidditch is a real sport [name_genie_cho]!" ("angry", "narrow", "base", "mid") gen "Yeah, yeah, sure it is..." ("base", xpos="far_left", ypos="head") gen "Now put this on and show me what a real athlete should look like." ("base", xpos="far_left", ypos="head") cho "I'd rather not, seeing that Quidditch isn't a real sport... Which would make me not a real athlete..." ("annoyed", "narrow", "angry", "mid") @@ -904,7 +904,7 @@ label cho_reaction_equip_outfit_fail(item): cho "*Hmm*... Let me see it." ("annoyed", "narrow", "base", "mid") gen "This one." ("base", xpos="far_left", ypos="head") if cho_whoring < 4: - cho "I don't know about that [cho_genie_name]..." ("disgust", "narrow", "base", "down") + cho "I don't know about that [name_genie_cho]..." ("disgust", "narrow", "base", "down") cho "Looks a lot like cosplay to me..." ("disgust", "narrow", "base", "down") gen "So what? I'm sure you'll look great in it." ("base", xpos="far_left", ypos="head") cho "I think I'll pass..." ("open", "narrow", "base", "R") @@ -992,14 +992,14 @@ label cho_reaction_equip_outfit_fail(item): elif random_number == 3: cho "You actually think I'd put on something like that?" ("angry", "base", "base", "mid") elif random_number == 4: - cho "Do I look like Granger [cho_genie_name]? I am not wearing something like that..." ("disgust", "narrow", "base", "mid") + cho "Do I look like Granger [name_genie_cho]? I am not wearing something like that..." ("disgust", "narrow", "base", "mid") elif random_number == 5: cho "This is too much." ("mad", "closed", "base", "mid") return label cho_reaction_blacklist(item): - cho "Is that really necessary, [cho_genie_name]?" + cho "Is that really necessary, [name_genie_cho]?" if "top" in item.blacklist and cho.is_worn("top"): cho "My upper garment won't fit with this." @@ -1013,11 +1013,11 @@ label cho_reaction_blacklist(item): if "panties" in item.blacklist and cho.is_worn("panties"): cho "Seems as if I would need to take off my panties first to wear this." - cho "You're asking a lot, [cho_genie_name], you know that?" + cho "You're asking a lot, [name_genie_cho], you know that?" gen "Come on Cho, you're my favourite {size=-6}snatch grabber{/size} in training!" ("base", xpos="far_left", ypos="head") cho "What was that?" gen "I said. You're my favourite snitch catcher in training." ("base", xpos="far_left", ypos="head") - cho "*sigh* Alright, if it means this much to you [cho_genie_name]..." + cho "*sigh* Alright, if it means this much to you [name_genie_cho]..." gen "Hell yes!" ("grin", xpos="far_left", ypos="head") return diff --git a/game/scripts/characters/genie/vars.rpy b/game/scripts/characters/genie/vars.rpy index 35f89754..aec37729 100644 --- a/game/scripts/characters/genie/vars.rpy +++ b/game/scripts/characters/genie/vars.rpy @@ -9,7 +9,7 @@ default genie_outfit = "robes" # Flags default genie_masturbating = False -default dumbledore_name = "Albus Dumbledore" +default name_dumbledore_genie = "Albus Dumbledore" # Stats diff --git a/game/scripts/characters/hermione/chitchats.rpy b/game/scripts/characters/hermione/chitchats.rpy index d9b93bdc..34f80a14 100644 --- a/game/scripts/characters/hermione/chitchats.rpy +++ b/game/scripts/characters/hermione/chitchats.rpy @@ -387,7 +387,7 @@ label hermione_chitchat: her "" ("base", "base", "base", "R",cheeks="blush") elif random_number == 2: - her "If you need anything [genie_name], just ask okay?" ("open", "base", "base", "mid") + her "If you need anything [name_genie_hermione], just ask okay?" ("open", "base", "base", "mid") her "" ("base", "base", "base", "mid") elif random_number == 3: diff --git a/game/scripts/characters/hermione/common.rpy b/game/scripts/characters/hermione/common.rpy index 9ad94ce6..6acf0552 100644 --- a/game/scripts/characters/hermione/common.rpy +++ b/game/scripts/characters/hermione/common.rpy @@ -63,7 +63,7 @@ label end_hermione_event: call music_block jump main_room_menu -define character.hermione_say = Character("hermione_name", show_icon="hermione", dynamic=True) +define character.hermione_say = Character("name_hermione_genie", show_icon="hermione", dynamic=True) init python: def her(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, @@ -113,7 +113,7 @@ init python: label too_much: stop music fadeout 2.0 - her "[genie_name]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade) + her "[name_genie_hermione]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade) her "How could you ask for such a thing!?" her "I think I better leave." ("angry", "happyCl", "worried", "mid",emote="sweat") @@ -135,7 +135,7 @@ label too_much: label too_much_public: stop music fadeout 2.0 - her "[genie_name]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade) + her "[name_genie_hermione]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade) her "How could you ask for such a thing!?" her "People would take me for a whore, I cannot let it happen!" her "I think I better leave." ("angry", "happyCl", "worried", "mid",emote="sweat") diff --git a/game/scripts/characters/hermione/events/cardgame_wager.rpy b/game/scripts/characters/hermione/events/cardgame_wager.rpy index aabd7b40..079c171f 100644 --- a/game/scripts/characters/hermione/events/cardgame_wager.rpy +++ b/game/scripts/characters/hermione/events/cardgame_wager.rpy @@ -7,7 +7,7 @@ label hg_wager_bj: gen "You're no fun!" ("angry", xpos="far_left", ypos="head") gen "Come over here and let me give your butt a squeeze, then I'll only deduct ten points from Gryffindor." ("grin", xpos="far_left", ypos="head") if her_whoring < 9: - her "No! what kind of girl do you take me for [genie_name]!" ("scream", "base", "angry", "mid") + her "No! what kind of girl do you take me for [name_genie_hermione]!" ("scream", "base", "angry", "mid") gen "Fine, twenty points from Gryffindor!" ("base", xpos="far_left", ypos="head") $ gryffindor -= 20 pause.5 @@ -18,7 +18,7 @@ label hg_wager_bj: gen "Well, get over here then!" ("grin", xpos="far_left", ypos="head") call her_walk("desk", "base", reduce=0.8) call blkfade - her "Should I turn around, [genie_name]?" ("open", "happyCl", "worried", "mid") + her "Should I turn around, [name_genie_hermione]?" ("open", "happyCl", "worried", "mid") her "" ("upset", "base", "worried", "mid") gen "No, not this time." ("base", xpos="far_left", ypos="head") her "Okay then..." ("annoyed", "narrow", "base", "R_soft") @@ -30,7 +30,7 @@ label hg_wager_bj: call ctc call her_chibi_scene("grope_ass_front") with d1 - gen "Have you been working out [hermione_name]? This feels great!" ("base", xpos="far_left", ypos="head") + gen "Have you been working out [name_hermione_genie]? This feels great!" ("base", xpos="far_left", ypos="head") her "No... can we just get this over with?" ("annoyed", "narrow", "base", "mid_soft") her "{size=-5}All this because of a stupid card game{/size}." ("upset", "happyCl", "worried", "mid") gen "I know, we should definitely do this again." ("base", xpos="far_left", ypos="head") @@ -104,7 +104,7 @@ label hg_wager_bj: call her_chibi("stand","mid","base") call gen_chibi("sit_behind_desk") call hide_blkfade - her "Thank you, [genie_name]." ("open", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("open", "base", "base", "mid") hide hermione_main with d3 @@ -133,7 +133,7 @@ label hg_wager_bj: her "*Gulp*, *Gobble*, *Gltch*" ("open_wide_tongue", "narrow", "worried", "mid_soft") gen "Your mouth feels amazing, you're a natural!" ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj_pause") - her "I'm glad you like it [genie_name]." ("open", "happy", "base", "mid", cheeks="blush") + her "I'm glad you like it [name_genie_hermione]." ("open", "happy", "base", "mid", cheeks="blush") call her_chibi_scene("bj") her "*Gobble*, *Slurp*, *Gobble*" ("open_wide_tongue", "closed", "base", "mid", cheeks="blush") @@ -147,7 +147,7 @@ label hg_wager_bj: with hpunch sna "I want a rematch!" (face="snape_07") call her_chibi_scene("bj_pause") - gen "{size=-5}Don't stop, [hermione_name]...{/size}" ("base", xpos="far_left", ypos="head") + gen "{size=-5}Don't stop, [name_hermione_genie]...{/size}" ("base", xpos="far_left", ypos="head") gen "What do you mean, rematch? I beat you fair and square!" ("angry", xpos="far_left", ypos="head") call her_chibi_scene("bj") her "*Slurp*, *Gulp*, *Urk*" ("open_wide_tongue", "happyCl", "worried", "mid", cheeks="blush", ypos="head", flip=False) @@ -162,7 +162,7 @@ label hg_wager_bj: sna "There it is again!" (face="snape_25") gen "Yes, definitely ghosts..." ("base", xpos="far_left", ypos="head") gen "Are you changing the subject now because you can't accept the fact I beat you at wizard cards!" ("grin", xpos="far_left", ypos="head") - gen "{size=-5}I'm about to cum [hermione_name]!{/size}" ("angry", xpos="far_left", ypos="head") + gen "{size=-5}I'm about to cum [name_hermione_genie]!{/size}" ("angry", xpos="far_left", ypos="head") her "*Gurk*, *Gulp*, *Gulp*" ("open_wide_tongue", "base", "worried", "mid", cheeks="blush") sna "No, something is going on here, what are you doing?" (face="snape_07") gen "... Just standing at my desk." ("base", xpos="far_left", ypos="head") @@ -287,7 +287,7 @@ label hg_wager_bj: gen "I bet you did!" ("grin", xpos="far_left", ypos="head") her "I can't believe that just happened!" ("smile", "base", "base", "mid_soft") gen "You did a great job, I'll try to win even harder next time!" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]... Anyway, I must be going..." ("open", "base", "base", "mid") + her "Thank you [name_genie_hermione]... Anyway, I must be going..." ("open", "base", "base", "mid") show screen blkfade with d3 @@ -299,10 +299,10 @@ label hg_wager_bj: if game.daytime: her "Bye then..." ("smile", "base", "base", "mid", trans=dissolve, flip=False) - gen "Bye, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Bye, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: her "Good night." ("open", "base", "base", "mid", trans=dissolve, flip=False) - gen "Good night, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good night, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") "-Tell Him the ghost is gone-": gen "Wait..." ("angry", xpos="far_left", ypos="head") her "*Glick*?" ("open_wide_tongue", "wide", "base", "R") @@ -387,9 +387,9 @@ label hg_wager_bj: call sna_walk(action="leave") - gen "He's gone now [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "He's gone now [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj_pause") - her "Thank you for your ghostly residue, [genie_name]." ("cum", "narrow", "worried", "mid_soft") + her "Thank you for your ghostly residue, [name_genie_hermione]." ("cum", "narrow", "worried", "mid_soft") gen "You're welcome, I can't believe he bought it..." ("base", xpos="far_left", ypos="head") her "What do you expect from the head of Slytherin?" ("crooked_smile", "narrow", "base", "R_soft") gen "yes...{w=0.3} Well...{w=0.3} I think that's enough for today." ("base", xpos="far_left", ypos="head") @@ -399,13 +399,13 @@ label hg_wager_bj: hide screen blkfade her "" ("base", "happy", "base", "mid_soft", ypos="base") gen "You've done more than enough to save those points." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("smile", "happy", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("smile", "happy", "base", "mid_soft") if game.daytime: #should play if day time her "Bye then..." ("open", "base", "base", "mid") - gen "Bye, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Bye, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: her "Good night." ("open", "base", "base", "mid") - gen "Good night, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good night, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") $ uni_sperm = False "-Try something crazy- {image=interface/icons/small/cards.webp}": gen "Oh yes, I'm...{w=0.3} ugh...{w=0.3} fine." ("base", xpos="far_left", ypos="head") @@ -461,9 +461,9 @@ label hg_wager_bj: her "So I assume I'm not losing those points anymore?" ("open", "narrow", "worried", "mid_soft") gen "Definitely not..." ("base", xpos="far_left", ypos="head") if game.daytime: - her "Great, goodbye for now then [genie_name]..." ("base", "base", "base", "mid") + her "Great, goodbye for now then [name_genie_hermione]..." ("base", "base", "base", "mid") else: - her "Great, good night then... [genie_name]." ("base", "base", "base", "mid") + her "Great, good night then... [name_genie_hermione]." ("base", "base", "base", "mid") gen "{size=-8}That girl is crazy...{/size}" ("base", xpos="far_left", ypos="head") elif duel_response == "loss" or duel_response == "Close": sna "Yes... I knew I'd make you bust this time!" (face="snape_02") @@ -493,7 +493,7 @@ label hg_wager_bj: gen "I just lost the game and one of my bottles of wine..." ("base", xpos="far_left", ypos="head") her "And a higher than average amount of 2 to 5ml by the looks of it..." ("open", "narrow", "worried", "down", cheeks="blush") gen "That is true..." ("grin", xpos="far_left", ypos="head") - her "are you still deducting those points [genie_name]." ("normal", "narrow", "base", "down", cheeks="blush") + her "are you still deducting those points [name_genie_hermione]." ("normal", "narrow", "base", "down", cheeks="blush") "-Don't give him anything-": gen "Get out..." ("base", xpos="far_left", ypos="head") sna "Someone's a sore loser..." (face="snape_13") @@ -578,7 +578,7 @@ label hg_wager_bj: else: $ achievements.unlock("flashback") her "........" ("annoyed", "narrow", "worried", "down") - gen "We're done for today [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "We're done for today [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "What about the points..." ("annoyed", "narrow", "worried", "down") gen "Points?" ("angry", xpos="far_left", ypos="head") gen "Oh yes, the points!" ("grin", xpos="far_left", ypos="head") @@ -587,9 +587,9 @@ label hg_wager_bj: her "That's not..." ("normal", "narrow", "base", "down") her "Thank you..." ("open", "closed", "base", "mid") if game.daytime: - her "Goodbye then [genie_name]." ("base", "base", "base", "mid") + her "Goodbye then [name_genie_hermione]." ("base", "base", "base", "mid") else: - her "Good night then [genie_name]." ("base", "base", "base", "mid") + her "Good night then [name_genie_hermione]." ("base", "base", "base", "mid") call blkfade call her_chibi("stand","mid","base") diff --git a/game/scripts/characters/hermione/events/clothing.rpy b/game/scripts/characters/hermione/events/clothing.rpy index 95456370..9bc30691 100644 --- a/game/scripts/characters/hermione/events/clothing.rpy +++ b/game/scripts/characters/hermione/events/clothing.rpy @@ -35,15 +35,15 @@ label hermione_summon_setup: # call ctc # gen "(Wow! Look at her!)" ("angry", xpos="far_left", ypos="head") - # gen "That's quite a sexy outfit, [hermione_name]!" ("grin", xpos="far_left", ypos="head") + # gen "That's quite a sexy outfit, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") # if her_whoring < 11: - # her "*Ehm*... Thank you, [genie_name]." ("soft", "base", "base", "R") + # her "*Ehm*... Thank you, [name_genie_hermione]." ("soft", "base", "base", "R") # her "I normally don't wear something like this." ("open", "base", "base", "mid") # her "(Showing so much cleavage...)" ("disgust", "narrow", "worried", "down", cheeks="blush") # her "But the weather is just too hot today." ("base", "base", "base", "R") # gen "You should wear this more often!" ("grin", xpos="far_left", ypos="head") # else: - # her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + # her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") # else: # call update_her_uniform @@ -84,22 +84,22 @@ label hermione_summon_setup: # call ctc # gen "..." ("base", xpos="far_left", ypos="head") - # gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + # gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") # gen "What's with all these clothes you are wearing?" ("base", xpos="far_left", ypos="head") - # her "It's a bit cold outside, [genie_name]... and my..." ("soft", "base", "base", "R", cheeks="blush") + # her "It's a bit cold outside, [name_genie_hermione]... and my..." ("soft", "base", "base", "R", cheeks="blush") # if her_whoring < 11: # her "I better not mention it..." ("disgust", "narrow", "worried", "down", cheeks="blush") # elif her_whoring < 18: # her "{size=-5}People can see my... my nipples...{/size}" ("disgust", "narrow", "worried", "down", cheeks="blush") # else: - # her "I can't have my nipples poking out all the time, [genie_name]! It's distracting!" ("annoyed", "narrow", "angry", "R") + # her "I can't have my nipples poking out all the time, [name_genie_hermione]! It's distracting!" ("annoyed", "narrow", "angry", "R") # her "" ("soft", "base", "base", "mid") # pause.2 # gen "Alright... It looks cute on you." ("base", xpos="far_left", ypos="head") # gen "You can keep it on for now." ("base", xpos="far_left", ypos="head") - # her "Thank you, [genie_name]." ("base", "base", "base", "mid") + # her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") # $ h_request_wear_top = True # $ h_request_wear_bottom = True @@ -145,12 +145,12 @@ label hermione_summon_setup: # call ctc # gen "Damn girl. You look drenched..." ("base", xpos="far_left", ypos="head") - # her "I'm sorry, [genie_name], but... It's raining cats and dogs out there!" ("open", "base", "base", "mid") + # her "I'm sorry, [name_genie_hermione], but... It's raining cats and dogs out there!" ("open", "base", "base", "mid") # her "I couldn't find my robe so I just put on a sweater and some jeans..." ("open", "base", "base", "R") # her "I hope you don't mind my uniform not being up for standards. I didn't want it to get wet." ("disgust", "narrow", "worried", "down") - # gen "It's fine, [hermione_name]." ("base", xpos="far_left", ypos="head") + # gen "It's fine, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") # gen "Besides, I wouldn't mind seeing you in jeans more often!" ("grin", xpos="far_left", ypos="head") - # her "Thank you, [genie_name]." ("normal", "base", "base", "R") + # her "Thank you, [name_genie_hermione]." ("normal", "base", "base", "R") # $ her_mood -= 10 # if her_mood < 0: # $ her_mood = 0 @@ -211,9 +211,9 @@ label hermione_summon_setup: # call ctc # gen "New outfit?" ("base", xpos="far_left", ypos="head") - # her "Yes, [genie_name]. I brought it with me from home. It's a bit too cold for just my normal uniform..." ("open", "base", "base", "R") + # her "Yes, [name_genie_hermione]. I brought it with me from home. It's a bit too cold for just my normal uniform..." ("open", "base", "base", "R") # her "Do you like it?" ("soft", "base", "base", "mid") - # gen "I do, [hermione_name]. It's cute." ("grin", xpos="far_left", ypos="head") + # gen "I do, [name_hermione_genie]. It's cute." ("grin", xpos="far_left", ypos="head") # $ her_mood -= 10 # if her_mood < 0: # $ her_mood = 0 @@ -253,10 +253,10 @@ label hermione_summon_setup: # her "" ("base", "base", "base", "mid", xpos="base", ypos="base") # call ctc - # gen "That's quite the cute outfit, [hermione_name]." ("base", xpos="far_left", ypos="head") - # her "Thank you, [genie_name]. I made some changes to the old one..." ("open", "base", "base", "R") + # gen "That's quite the cute outfit, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + # her "Thank you, [name_genie_hermione]. I made some changes to the old one..." ("open", "base", "base", "R") # her "Do you like it?" ("soft", "base", "base", "mid") - # gen "Very much so, [hermione_name]. I love the breast window." ("grin", xpos="far_left", ypos="head") + # gen "Very much so, [name_hermione_genie]. I love the breast window." ("grin", xpos="far_left", ypos="head") # $ her_mood -= 10 # if her_mood < 0: # $ her_mood = 0 @@ -283,7 +283,7 @@ label hermione_summon_setup: call play_music("hermione") - her "Hello, [genie_name]." ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) + her "Hello, [name_genie_hermione]." ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) her "" ("base", "base", "base", "mid", xpos="base", ypos="base") pause 1.0 gen "You changed your clothes again..." ("base", xpos="far_left", ypos="head") @@ -319,14 +319,14 @@ label hermione_summon_setup: if her_mood > 0: if 5 > her_mood >= 1: - her "Yes, [genie_name]?" ("soft", "base", "worried", "mid", xpos="base", ypos="base", trans=d3) + her "Yes, [name_genie_hermione]?" ("soft", "base", "worried", "mid", xpos="base", ypos="base", trans=d3) elif 10 > her_mood >= 5: - her "*sigh*... Yes, [genie_name]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + her "*sigh*... Yes, [name_genie_hermione]?" ("annoyed", "base", "base", "mid", xpos="base", ypos="base", trans=d3) elif 20 > her_mood >= 10: - her "What is it, [genie_name]?" ("open", "closed", "annoyed", "mid", xpos="base", ypos="base", trans=d3) + her "What is it, [name_genie_hermione]?" ("open", "closed", "annoyed", "mid", xpos="base", ypos="base", trans=d3) her "" ("upset", "base", "annoyed", "mid") elif 30 > her_mood >= 20: - her "What do you want, \"[genie_name]\"?" ("upset", "squint", "angry", "R", xpos="base", ypos="base", trans=d3) + her "What do you want, \"[name_genie_hermione]\"?" ("upset", "squint", "angry", "R", xpos="base", ypos="base", trans=d3) elif 40 > her_mood >= 30: her "*Hmph*..." ("normal", "squint", "angry", "R", xpos="base", ypos="base", trans=d3) elif 50 > her_mood >= 40: @@ -338,7 +338,7 @@ label hermione_summon_setup: call tutorial("moodngifts") else: if game.daytime: - her "Good morning, [genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + her "Good morning, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) else: - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) return diff --git a/game/scripts/characters/hermione/events/favors/dance_for_me.rpy b/game/scripts/characters/hermione/events/favors/dance_for_me.rpy index e48377f7..309b175c 100644 --- a/game/scripts/characters/hermione/events/favors/dance_for_me.rpy +++ b/game/scripts/characters/hermione/events/favors/dance_for_me.rpy @@ -43,7 +43,7 @@ label hg_pf_strip: # Points gen "{number=current_payout} points to the Gryffindor house." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("soft", "base", "base", "R") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "R") # Hermione leaves call her_walk("door", "base") @@ -64,10 +64,10 @@ label hg_pf_strip: label hg_pf_strip_fail: call bld - gen "[hermione_name], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") her "You want me to..." ("soft", "wide", "base", "stare") - her "... dance for you, [genie_name]?" ("open", "wide", "base", "stare") + her "... dance for you, [name_genie_hermione]?" ("open", "wide", "base", "stare") $ hg_pf_strip.fail_intentional() @@ -75,13 +75,13 @@ label hg_pf_strip_fail: label hg_pf_strip_T2_fail_intro: # Hermione starts dancing, but it will fail anyway. call bld - gen "[hermione_name], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") her "You want me to..." ("open", "base", "worried", "mid") - her "... dance for you, [genie_name]?" ("open", "wink", "base", "mid") + her "... dance for you, [name_genie_hermione]?" ("open", "wink", "base", "mid") gen "Yes... You think you could manage that?" ("base", xpos="far_left", ypos="head") her "*Ehm*... I suppose so..." ("soft", "base", "base", "R") her "Am I getting paid for this?" - gen "Of course, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Of course, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "So... Just a little dancing then..." ("annoyed", "base", "worried", "R") gen "Whenever you're ready..." ("base", xpos="far_left", ypos="head") her "................." @@ -113,7 +113,7 @@ label hg_pf_strip_T2_fail_intro: # Hermione starts dancing, but it will fail any her "You want me to...?" ("disgust", "narrow", "base", "down", cheeks="blush") hide screen blktone - her "[genie_name]!" ("angry", "base", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid", cheeks="blush") her "This is ridiculous on a whole other level!" ("angry", "closed", "angry", "mid", cheeks="blush") her "I won't let myself be forced to become some cheap stripper!!!" ("mad", "wide", "base", "stare", cheeks="blush") gen "Nobody is forcing you to do this." ("base", xpos="far_left", ypos="head") @@ -131,7 +131,7 @@ label hg_pf_strip_T2_fail_intro: # Hermione starts dancing, but it will fail any label hg_pf_strip_T2_fail_repeat: call bld - gen "[hermione_name], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") her "And would you like me to take off my clothes as well?" ("soft", "closed", "base", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") her "No! I will not!" ("scream", "base", "angry", "mid") @@ -156,13 +156,13 @@ label hg_pf_strip_T2_fail_repeat: label hg_pf_strip_T3_intro_E1: # Complete call bld - gen "[hermione_name], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I need you to dance for me a little." ("base", xpos="far_left", ypos="head") her "You want me to..." ("open", "base", "worried", "mid") - her "... dance for you, [genie_name]?" ("open", "wink", "base", "mid") + her "... dance for you, [name_genie_hermione]?" ("open", "wink", "base", "mid") gen "Yes... You think you could manage that?" ("base", xpos="far_left", ypos="head") her "*Ehm*... I suppose so..." ("soft", "base", "base", "R") her "Am I getting paid for this?" - gen "Of course, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Of course, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "So... Just a little dancing then..." ("annoyed", "base", "worried", "R") gen "Whenever you're ready..." ("base", xpos="far_left", ypos="head") her "................." @@ -202,9 +202,9 @@ label hg_pf_strip_T3_intro_E1: # Complete show screen blktone her "You want me to... Take off my underwear...?" ("disgust", "narrow", "base", "down", cheeks="blush") - gen "Yes. And I expect you to do it today, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "happyCl", "worried", "mid", cheeks="blush") - gen "Don't you raise your voice at me, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Yes. And I expect you to do it today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!" ("angry", "happyCl", "worried", "mid", cheeks="blush") + gen "Don't you raise your voice at me, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her ".....!!?" ("mad", "wide", "base", "stare", cheeks="blush") gen "Nobody is forcing you to do this." ("base", xpos="far_left", ypos="head") gen "I am doing you a favour!" ("base", xpos="far_left", ypos="head") @@ -364,17 +364,17 @@ label hg_pf_strip_T3_intro_E1: # Complete call nar(">And you watch as she moves her hands away from her panties...","end") stop music fadeout 1.0 - gen "What's the problem, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What's the problem, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") call play_music("sad") - her "I'm sorry, [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "I'm sorry, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "I...{w=0.4} I'm trying..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "But my hands..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "Why is this so hard! *sob*" ("angry", "happyCl", "worried", "mid", cheeks="blush") - her "No, I can't do this, [genie_name]! *sob*" ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") + her "No, I can't do this, [name_genie_hermione]! *sob*" ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") gen "What?" ("base", xpos="far_left", ypos="head") her "I thought I could, but..." ("angry", "squint", "base", "mid", cheeks="blush", trans=fade) - her "Strip dancing for points, [genie_name]?" ("angry", "squint", "base", "mid", cheeks="blush") + her "Strip dancing for points, [name_genie_hermione]?" ("angry", "squint", "base", "mid", cheeks="blush") her "People look up to me in this school!" ("angry", "squint", "base", "mid", cheeks="blush") her "I have a reputation...*sob*" ("angry", "squint", "base", "mid", cheeks="blush") her "And If I do this..." ("scream", "base", "angry", "mid", cheeks="blush", tears="messy") @@ -388,7 +388,7 @@ label hg_pf_strip_T3_intro_E1: # Complete call her_chibi("stand","desk","base") hide screen blkfade - her "[genie_name], I think I'd better go now... *Sob!*" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy", trans=fade) + her "[name_genie_hermione], I think I'd better go now... *Sob!*" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy", trans=fade) menu: "\"Alright. I had fun. Here are your points.\"": @@ -397,11 +397,11 @@ label hg_pf_strip_T3_intro_E1: # Complete jump end_hg_pf_strip "\"Sure. You will receive no points though.\"": - her "[genie_name]... I may not be very good at this..." ("open", "base", "base", "mid", tears="mascara_crying") + her "[name_genie_hermione]... I may not be very good at this..." ("open", "base", "base", "mid", tears="mascara_crying") her "But I did my best... I think I deserve some--" (tears="mascara_crying") - gen "Just make sure you try harder next time, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Just make sure you try harder next time, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Next time?!" ("open", "base", "base", "mid", tears="mascara_crying") - her "I assure you, [genie_name], there will be no next time..." ("angry", "base", "angry", "mid", cheeks="blush", tears="mascara") + her "I assure you, [name_genie_hermione], there will be no next time..." ("angry", "base", "angry", "mid", cheeks="blush", tears="mascara") gen "We'll see..." ("base", xpos="far_left", ypos="head") her "*Tsk*!" ("disgust", "narrow", "base", "mid_soft", tears="mascara") @@ -414,8 +414,8 @@ label hg_pf_strip_T3_intro_E1: # Complete label hg_pf_strip_T3_intro_E2: call bld - gen "[hermione_name], I need you to dance for me." ("base", xpos="far_left", ypos="head") - her "That again, [genie_name]...?" ("disgust", "narrow", "base", "mid_soft") + gen "[name_hermione_genie], I need you to dance for me." ("base", xpos="far_left", ypos="head") + her "That again, [name_genie_hermione]...?" ("disgust", "narrow", "base", "mid_soft") gen "You will get paid accordingly of course..." ("base", xpos="far_left", ypos="head") her "............................" ("annoyed", "narrow", "angry", "R") her "And you expect me to... *Ehm*..." ("annoyed", "narrow", "angry", "R") @@ -428,7 +428,7 @@ label hg_pf_strip_T3_intro_E2: her "Well, why not?" ("disgust", "narrow", "base", "mid_soft") her "Yes, I don't see why not!" ("scream", "base", "angry", "mid", emote="angry") gen "*Hmm*...? {size=-4}(Look at her, so eager all of a sudden...){/size}" ("base", xpos="far_left", ypos="head") - her "After all, as a pupil I am meant to obey your every order, isn't that right, [genie_name]?!" ("scream", "closed", "angry", "mid") + her "After all, as a pupil I am meant to obey your every order, isn't that right, [name_genie_hermione]?!" ("scream", "closed", "angry", "mid") gen "...................." ("base", xpos="far_left", ypos="head") her "If the Headmaster tells me to strip for him, Then I shall strip!!!" ("scream", "closed", "angry", "mid") her "Do I find this extremely inappropriate, disgraceful, and humiliating?" ("angry", "base", "angry", "mid") @@ -494,10 +494,10 @@ label hg_pf_strip_T3_intro_E2: "\"Yes, that's right. Take it off!\"": her "Of course!" her "Here it goes!" ("open", "narrow", "worried", "down") - "\"You need to calm down, [hermione_name].\"": - her "Well, {size=+7}EXCUSE ME{/size}, [genie_name]!" + "\"You need to calm down, [name_hermione_genie].\"": + her "Well, {size=+7}EXCUSE ME{/size}, [name_genie_hermione]!" her "You told me to strip for you, but you never told me your preferences in regards to the pace!" - gen "Well, I'm telling you now, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Well, I'm telling you now, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "Too late!" ("angry", "base", "angry", "mid") $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -522,7 +522,7 @@ label hg_pf_strip_T3_intro_E2: gen "{size=-4}(When did she??!){/size}" ("angry", xpos="far_left", ypos="head") call ctc - her "Are you enjoying this, [genie_name]?" + her "Are you enjoying this, [name_genie_hermione]?" her "" ("angry", "base", "angry", "mid") her "Shall I shake my breasts for you like one of those harlots?" ("scream", "closed", "angry", "mid") @@ -602,18 +602,18 @@ label hg_pf_strip_T3_intro_E2: call her_chibi("dance_pause","on_desk","on_desk") call ctc - her "Well, I hope you enjoyed yourself, [genie_name]!" ("open", "narrow", "annoyed", "mid") + her "Well, I hope you enjoyed yourself, [name_genie_hermione]!" ("open", "narrow", "annoyed", "mid") gen "What?" ("base", xpos="far_left", ypos="head") her "I would like to get paid now..." ("open", "closed", "angry", "mid") if hermione.is_worn("panties"): #Should be on at this level but might as well have the check - gen "Aren't you forgetting something, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]...?" ("open", "narrow", "annoyed", "mid") + gen "Aren't you forgetting something, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]...?" ("open", "narrow", "annoyed", "mid") gen "Your panties...?" ("base", xpos="far_left", ypos="head") her "My panties?" ("open", "wide", "base", "stare") her "But, they always leave them on!" gen "Who exactly are \"they\"?" ("base", xpos="far_left", ypos="head") gen "Strippers in kid's cartoons?" ("base", xpos="far_left", ypos="head") - gen "Stripping is stripping, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Stripping is stripping, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "Now take off your panties!" ("base", xpos="far_left", ypos="head") her "................" ("angry", "wide", "base", "stare") @@ -676,7 +676,7 @@ label hg_pf_strip_T3_intro_E2: "\"Severus! Please, come join us.\"": $ her_mood += 20 sna "Seriously?" ("snape_14") - her "([genie_name], no, please.............................)" ("angry", "happyCl", "worried", "mid") + her "([name_genie_hermione], no, please.............................)" ("angry", "happyCl", "worried", "mid") sna "A very tempting offer indeed..." ("snape_13") her "!!!!!!......." ("angry", "wide", "base", "stare") sna "Well, maybe some other time..." ("snape_13") @@ -744,9 +744,9 @@ label hg_pf_strip_T3_intro_E2: jump end_hg_pf_strip label hg_pf_strip_T3_E2: - gen "[hermione_name], how about another strip?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how about another strip?" ("base", xpos="far_left", ypos="head") her ".............." ("disgust", "narrow", "base", "mid_soft", xpos="base", ypos="base") - her "I would really rather not, [genie_name]..." + her "I would really rather not, [name_genie_hermione]..." gen "Why? You are getting quite good at it." ("base", xpos="far_left", ypos="head") her "........................." ("annoyed", "narrow", "annoyed", "mid") her "{number=current_payout} house points?" ("open", "narrow", "worried", "down") @@ -803,7 +803,7 @@ label hg_pf_strip_T3_E2: call ctc her "Just for the record..." ("open", "closed", "base", "mid", xpos="mid", ypos="base") - her "I still consider this a highly inappropriate favour to be buying from one of your students, [genie_name]." ("annoyed", "squint", "base", "mid") + her "I still consider this a highly inappropriate favour to be buying from one of your students, [name_genie_hermione]." ("annoyed", "squint", "base", "mid") gen "Right. And an equally inappropriate favour to be selling to your headmaster. Wouldn't you agree?" ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "narrow", "angry", "R") if hermione.is_any_worn("robe", "accessory"): @@ -827,7 +827,7 @@ label hg_pf_strip_T3_E2: call play_music("playful_tension") # SEX THEME. her ".............." ("open", "narrow", "worried", "down") - her "What if my parents were to find out about this, [genie_name]?" ("disgust", "narrow", "base", "down") + her "What if my parents were to find out about this, [name_genie_hermione]?" ("disgust", "narrow", "base", "down") her "Mother would never understand..." her "As for my father..." ("upset", "wink", "base", "mid") @@ -844,10 +844,10 @@ label hg_pf_strip_T3_E2: her "And I am too old for that anyway..." ("upset", "wink", "base", "mid") gen "I would say that you are the perfect age for that..." ("grin", xpos="far_left", ypos="head") her "*huh*?" - her "I do not know what you mean, [genie_name]." ("grin", "happyCl", "worried", "mid", emote="sweat") + her "I do not know what you mean, [name_genie_hermione]." ("grin", "happyCl", "worried", "mid", emote="sweat") "{size=-3}\"Your father would disown you!\"{/size}": - her "You are probably right, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "You are probably right, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") her "(Oh father, I am so sorry...)" ("angry", "base", "base", "mid", tears="soft") her "he must never find out..." ("angry", "base", "base", "mid", tears="soft") @@ -881,7 +881,7 @@ label hg_pf_strip_T3_watch: her "(Time for the finishing act I suppose...)" ("angry", "happyCl", "worried", "mid", xpos="mid", ypos="base") if hermione.is_worn("panties"): - gen "Yes, [hermione_name]! Take them off!" ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]! Take them off!" ("base", xpos="far_left", ypos="head") her "........" ("annoyed", "closed", "base", "mid") call nar(">Doing her best to please you, Hermione attempts to undress herself whilst still keeping her dance going.") call nar(">Bending over slightly she hurriedly slides her panties down...") @@ -921,10 +921,10 @@ label hg_pf_strip_T3_watch: menu: gen "..." ("base", xpos="far_left", ypos="head") - "{size=-3}\"Good job, [hermione_name]! You sure know how to dance!\"{/size}": + "{size=-3}\"Good job, [name_hermione_genie]! You sure know how to dance!\"{/size}": her ".............." ("disgust", "narrow", "worried", "down") gen "You have a lot of talent for this!" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("soft", "base", "worried", "R", emote="sweat") + her "Thank you [name_genie_hermione]." ("soft", "base", "worried", "R", emote="sweat") "{size=-3}\"*Hmm*... This was quite awful...\"{/size}": $ her_mood += 4 her "............" ("annoyed", "base", "angry", "mid") @@ -943,8 +943,8 @@ label hg_pf_strip_T3_masturbate: show screen blkfade with d5 - her "[genie_name]?!" ("open", "wide", "base", "stare", ypos="head", flip=False) - gen "It's alright, [hermione_name]. Don't mind me..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?!" ("open", "wide", "base", "stare", ypos="head", flip=False) + gen "It's alright, [name_hermione_genie]. Don't mind me..." ("base", xpos="far_left", ypos="head") call gen_chibi("jerk_off","behind_desk","base") call her_chibi("dance","on_desk","on_desk") @@ -957,16 +957,16 @@ label hg_pf_strip_T3_masturbate: her "B-but..." ("angry", "wide", "base", "stare", ypos="head", flip=False) her "Your..." gen "Yes...{w=0.3} *Ah*... Yes... This is good." ("base", xpos="far_left", ypos="head") - her "[genie_name]!!!" ("scream", "happyCl", "worried", "mid") + her "[name_genie_hermione]!!!" ("scream", "happyCl", "worried", "mid") her "I must insist that you put away your..." ("angry", "happyCl", "worried", "mid") her "... thing." menu: gen "..." ("base", xpos="far_left", ypos="head") - "\"I said, keep on dancing, [hermione_name]!\"": + "\"I said, keep on dancing, [name_hermione_genie]!\"": stop music fadeout 1.0 - her "No, [genie_name]!" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) + her "No, [name_genie_hermione]!" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) gen "*huh*?" ("base", xpos="far_left", ypos="head") show screen blkfade with d5 @@ -978,10 +978,10 @@ label hg_pf_strip_T3_masturbate: $ hermione.wear("all") call her_chibi_scene("reset","desk","base", trans=fade) - her "The dance is over, [genie_name]!" ("soft", "base", "angry", "mid") + her "The dance is over, [name_genie_hermione]!" ("soft", "base", "angry", "mid") pause 1 her "I would like to get paid now!" ("annoyed", "narrow", "annoyed", "mid") - gen "Stubborn [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Stubborn [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call nar(">You reluctantly put your cock away...") her "I would like to get paid now." ("annoyed", "narrow", "annoyed", "mid") @@ -1010,9 +1010,9 @@ label hg_pf_strip_T3_masturbate: # Event 3 (r) - label hg_pf_strip_T4_intro_E1: - gen "[hermione_name], how about getting on this desk for another show?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how about getting on this desk for another show?" ("base", xpos="far_left", ypos="head") her ".............." ("disgust", "narrow", "base", "mid_soft", xpos="base", ypos="base") - her "I would really rather not, [genie_name]..." + her "I would really rather not, [name_genie_hermione]..." gen "Why? You are getting quite good at it." ("base", xpos="far_left", ypos="head") her "........................." ("annoyed", "narrow", "annoyed", "mid") her "{number=current_payout} house points?" ("open", "base", "base", "mid") @@ -1022,23 +1022,23 @@ label hg_pf_strip_T4_intro_E1: jump hg_pf_strip_T4 label hg_pf_strip_T4_intro_E2: - gen "[hermione_name], would you like to climb onto my desk for another show?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], would you like to climb onto my desk for another show?" ("base", xpos="far_left", ypos="head") gen "(I'm bored as fuck in here after all...)" ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("annoyed", "base", "base", "R", xpos="base", ypos="base") her "Sure! Why not..." ("base", "happyCl", "base", "mid") gen "Yes?" ("grin", xpos="far_left", ypos="head") her "I've been practising a bit more. Mainly on my dancing." ("soft", "narrow", "worried", "down") gen "Very good... I'd love to see your progress." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]..." ("base", "narrow", "base", "mid_soft") + her "Of course, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") jump hg_pf_strip_T4 label hg_pf_strip_T4_E2: - gen "[hermione_name], how do you feel about getting on my desk for another show?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how do you feel about getting on my desk for another show?" ("base", xpos="far_left", ypos="head") if her_tier <= 5: - her "Of course, [genie_name]..." ("base", "base", "base", "mid", xpos="base", ypos="base") + her "Of course, [name_genie_hermione]..." ("base", "base", "base", "mid", xpos="base", ypos="base") else: - her "I'd love to, [genie_name]!" ("open_tongue", "narrow", "annoyed", "up", xpos="base", ypos="base") + her "I'd love to, [name_genie_hermione]!" ("open_tongue", "narrow", "annoyed", "up", xpos="base", ypos="base") jump hg_pf_strip_T4 @@ -1086,7 +1086,7 @@ label hg_pf_strip_T4: $ her_mood += 4 else: - her "Yes, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Yes, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") stop music fadeout 1.0 @@ -1120,11 +1120,11 @@ label hg_pf_strip_T4: gen "Would you like some help with it?" ("grin", xpos="far_left", ypos="head") if her_tier <= 5: her "No..." ("annoyed", "base", "angry", "mid") - her "I can do it, [genie_name]." ("open", "closed", "base", "mid") + her "I can do it, [name_genie_hermione]." ("open", "closed", "base", "mid") else: - her "No, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "No, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") her "Just enjoy the show..." ("soft", "narrow", "base", "mid_soft") - gen "I will, [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "I will, [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") her "..." ("base", "narrow", "worried", "down") @@ -1147,10 +1147,10 @@ label hg_pf_strip_T4: gen "Yes! Shake those tits!" ("grin", xpos="far_left", ypos="head") if her_tier <= 4: - her "Must you be so vulgar, [genie_name]?" ("annoyed", "closed", "base", "mid") + her "Must you be so vulgar, [name_genie_hermione]?" ("annoyed", "closed", "base", "mid") her ".............." ("annoyed", "narrow", "worried", "down") - her "[genie_name]?" ("open", "base", "base", "mid") + her "[name_genie_hermione]?" ("open", "base", "base", "mid") gen "*huh*?" ("base", xpos="far_left", ypos="head") her "Can I ask you a question?" ("upset", "wink", "base", "mid") gen "Go ahead..." ("base", xpos="far_left", ypos="head") @@ -1160,7 +1160,7 @@ label hg_pf_strip_T4: menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Don't be ridiculous! Love is a lie!\"": - her "I am sorry you think that way, [genie_name]!" ("annoyed", "base", "worried", "R") + her "I am sorry you think that way, [name_genie_hermione]!" ("annoyed", "base", "worried", "R") her "But you couldn't be more wrong!" ("annoyed", "narrow", "annoyed", "mid") her "I believe that true love is what makes the earth turn!" ("base", "base", "base", "R") gen "Actually the conservation of angular momentum is responsible for that." ("base", xpos="far_left", ypos="head") @@ -1190,28 +1190,28 @@ label hg_pf_strip_T4: gen "She was so much more than that..." ("base", xpos="far_left", ypos="head") gen "She was smart, green, and perfect..." ("base", xpos="far_left", ypos="head") her "She was... \"green\"...?" ("open", "narrow", "worried", "down") - her "Are you making fun of me, [genie_name]?" ("angry", "base", "angry", "mid") + her "Are you making fun of me, [name_genie_hermione]?" ("angry", "base", "angry", "mid") gen "Oh, you humans know nothing of true love..." ("base", xpos="far_left", ypos="head") her ".....................................?" ("soft", "base", "base", "mid") if hermione.is_worn("bottom"): - gen "*Err*... I mean, take off your bottoms, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "*Err*... I mean, take off your bottoms, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") else: - gen "*Err*... I mean, keep on dancing, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "*Err*... I mean, keep on dancing, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "................." ("annoyed", "narrow", "angry", "R") "\"I feel like I'm in love right now!\"": - her "You don't have to be vulgar, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "You don't have to be vulgar, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") gen "Oh, but I mean it!" ("base", xpos="far_left", ypos="head") - her "[genie_name], please!" ("disgust", "narrow", "base", "mid_soft") + her "[name_genie_hermione], please!" ("disgust", "narrow", "base", "mid_soft") her "I am one of your students!" ("soft", "base", "base", "mid") her "And you are older than my father!" ("grin", "happyCl", "worried", "mid", emote="sweat") gen "{size=-4}(You have no idea, girl.){/size}" ("base", xpos="far_left", ypos="head") her "Although some scientists insist that what we consider \"love\" is actually nothing but a chemical reaction..." ("soft", "base", "base", "mid") her "And when a man is experiencing sexual arousal, the same type of hormones--" ("open", "closed", "base", "mid") - gen "[hermione_name]!" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("soft", "base", "base", "mid") + gen "[name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("soft", "base", "base", "mid") gen "Did you forget where you are?" ("base", xpos="far_left", ypos="head") - her "Oh, my apologies, [genie_name]... I get distracted sometimes." ("grin", "happyCl", "worried", "mid", emote="sweat") + her "Oh, my apologies, [name_genie_hermione]... I get distracted sometimes." ("grin", "happyCl", "worried", "mid", emote="sweat") if hermione.is_worn("bottom"): gen "Take off your bottoms already, would you?!" ("base", xpos="far_left", ypos="head") else: @@ -1248,7 +1248,7 @@ label hg_pf_strip_T4_watch: her "(Time for the finishing act I suppose...)" ("angry", "happyCl", "worried", "mid", xpos="mid", ypos="base") if hermione.is_worn("panties"): - gen "Yes, [hermione_name]! Take them off!" ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]! Take them off!" ("base", xpos="far_left", ypos="head") her "........" ("annoyed", "closed", "base", "mid") call nar(">Following your command, Hermione begins taking the rest of her clothes off...") call nar(">Bending over slightly she slides her panties down...") @@ -1299,14 +1299,14 @@ label hg_pf_strip_T4_watch: menu: gen "..." ("base", xpos="far_left", ypos="head") - "{size=-3}\"Good job, [hermione_name]! You sure know how to dance!\"{/size}": + "{size=-3}\"Good job, [name_hermione_genie]! You sure know how to dance!\"{/size}": her "Really?" ("base", "narrow", "base", "mid_soft") gen "Yes! You have a lot of talent for this!" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("silly", "happyCl", "worried", "mid", emote="sweat") + her "Thank you [name_genie_hermione]." ("silly", "happyCl", "worried", "mid", emote="sweat") "{size=-3}\"*Hmm*... This was quite awful...\"{/size}": her "Oh... I'm sorry..." ("soft", "happy", "base", "R") gen "That's OK... You just need to practise more..." ("base", xpos="far_left", ypos="head") - her "*Ehm*... I will keep that in mind, [genie_name]..." ("open", "base", "base", "R") + her "*Ehm*... I will keep that in mind, [name_genie_hermione]..." ("open", "base", "base", "R") "{size=-3}\".................................................\"{/size}": her "......................." ("silly", "happyCl", "worried", "mid", emote="sweat") call her_chibi("sit_naked_shocked","on_desk","on_desk") @@ -1326,7 +1326,7 @@ label hg_pf_strip_T4_masturbate: her "But..." ("angry", "happyCl", "worried", "mid", xpos="mid", ypos="base") her "............................." - her "Well, alright, but only if you will promise me not to... finish, [genie_name]." ("soft", "base", "angry", "mid") + her "Well, alright, but only if you will promise me not to... finish, [name_genie_hermione]." ("soft", "base", "angry", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -1337,14 +1337,14 @@ label hg_pf_strip_T4_masturbate: "-Give her no such promise-": $ d_flag_07 = False #Did not promise to hold it. gen "\"Not to finish\"? That would be like torture!" ("base", xpos="far_left", ypos="head") - gen "Please keep your sadistic urges to yourself, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I don't have any... sadistic urges, [genie_name]!" ("annoyed", "narrow", "angry", "R") + gen "Please keep your sadistic urges to yourself, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I don't have any... sadistic urges, [name_genie_hermione]!" ("annoyed", "narrow", "angry", "R") her "I just don't want to..." gen "Yes... Those are some nice tits you have..." ("grin", xpos="far_left", ypos="head") her "............" ("angry", "happyCl", "worried", "mid") gen "*A-ah*... Yes..." ("grin", xpos="far_left", ypos="head") her ".........." ("angry", "happyCl", "worried", "mid") - her "Fine! Have it your way, [genie_name]!" ("angry", "happyCl", "worried", "mid") + her "Fine! Have it your way, [name_genie_hermione]!" ("angry", "happyCl", "worried", "mid") her "{size=-5}(As usual...){/size}" ("annoyed", "narrow", "angry", "R") @@ -1353,7 +1353,7 @@ label hg_pf_strip_T4_masturbate: her "Time for the finishing act I suppose..." ("annoyed", "closed", "base", "mid") if hermione.is_worn("panties"): - gen "Yes, [hermione_name]! Take them off!" ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]! Take them off!" ("base", xpos="far_left", ypos="head") her "........" ("annoyed", "closed", "base", "mid") call nar(">Following your command, Hermione begins taking the rest of her clothes off...") call nar(">Bending over slightly she slides her panties down...") @@ -1420,17 +1420,17 @@ label hg_pf_strip_T4_masturbate: call gen_chibi("cum","behind_desk","base") her "??!!!" ("shock", "wide", "base", "stare") - her "[genie_name]!!!" ("angry", "happyCl", "worried", "mid") + her "[name_genie_hermione]!!!" ("angry", "happyCl", "worried", "mid") call gen_chibi("cum_done","behind_desk","base") if d_flag_07: #Promised to hold it. - her "No, [genie_name]! You promised!" ("angry", "happyCl", "worried", "mid", ypos="head", flip=False) + her "No, [name_genie_hermione]! You promised!" ("angry", "happyCl", "worried", "mid", ypos="head", flip=False) gen "Oh, man... This was pretty intense..." ("angry", xpos="far_left", ypos="head") - her "You went back on your word, [genie_name]!" ("scream", "happyCl", "worried", "mid") + her "You went back on your word, [name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") gen "*huh*? What are you talking about?" ("base", xpos="far_left", ypos="head") - her "How could you do this to me, [genie_name]?" ("shock", "base", "angry", "mid", tears="crying_blink") - gen "Oh, calm down, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "How could you do this to me, [name_genie_hermione]?" ("shock", "base", "angry", "mid", tears="crying_blink") + gen "Oh, calm down, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You earned your points today." ("base", xpos="far_left", ypos="head") gen "Now, just get dressed and leave before somebody discovers you like this." ("base", xpos="far_left", ypos="head") her "*sob*!........................" ("shock", "narrow", "angry", "R", tears="messy") @@ -1441,7 +1441,7 @@ label hg_pf_strip_T4_masturbate: stop music fadeout 5.0 pause 1.5 - her "... Can I just get paid now, [genie_name]... please?" ("annoyed", "narrow", "angry", "R") + her "... Can I just get paid now, [name_genie_hermione]... please?" ("annoyed", "narrow", "angry", "R") $ her_mood += 20 @@ -1474,8 +1474,8 @@ label hg_pf_strip_T4_masturbate: call play_music("chipper_doodle") # HERMIONE'S THEME. her "One extra point?" ("soft", "base", "angry", "mid") her "One meagre extra point for letting you do this to me?" ("scream", "happyCl", "worried", "mid") - her "Now, that is just insulting, [genie_name]!" ("soft", "base", "angry", "mid") - gen "One extra point, [hermione_name]. Take it or leave it." ("base", xpos="far_left", ypos="head") + her "Now, that is just insulting, [name_genie_hermione]!" ("soft", "base", "angry", "mid") + gen "One extra point, [name_hermione_genie]. Take it or leave it." ("base", xpos="far_left", ypos="head") call her_chibi("sit_naked","on_desk","on_desk") her "............." ("annoyed", "narrow", "angry", "R") @@ -1492,9 +1492,9 @@ label hg_pf_strip_T4_masturbate: "\"You get ten extra points.\"": $ current_payout += 10 - her "Ten extra points [genie_name]?" ("soft", "base", "angry", "mid") + her "Ten extra points [name_genie_hermione]?" ("soft", "base", "angry", "mid") her "But that is not even nearly enough!" - gen "Ten extra points. Take 'em or leave 'em [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Ten extra points. Take 'em or leave 'em [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_chibi("sit_naked","on_desk","on_desk") her "..............." ("annoyed", "narrow", "angry", "R") @@ -1514,7 +1514,7 @@ label hg_pf_strip_T4_masturbate: her "Yes, I believe this would be an appropriate amount." ("open", "closed", "base", "mid") gen "are we good then?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]. Thank you." ("open", "closed", "base", "mid") + her "Yes, [name_genie_hermione]. Thank you." ("open", "closed", "base", "mid") hide screen bld1 with d3 call ctc @@ -1530,13 +1530,13 @@ label hg_pf_strip_T4_masturbate: call her_chibi("sit_naked","on_desk","on_desk") her "Oh, I don't know what to say..." ("open", "wide", "base", "stare") - gen "I enjoyed your performance [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "narrow", "base", "mid_soft") + gen "I enjoyed your performance [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") gen "I also enjoyed plastering your agile little body with cum..." ("base", xpos="far_left", ypos="head") - her "[genie_name]......" ("silly", "happyCl", "worried", "mid", emote="sweat") + her "[name_genie_hermione]......" ("silly", "happyCl", "worried", "mid", emote="sweat") gen "So, just allow me to show my appreciation." ("base", xpos="far_left", ypos="head") - gen "Fifty extra points. Well deserved, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank very much, [genie_name]." ("silly", "happyCl", "worried", "mid", emote="sweat") + gen "Fifty extra points. Well deserved, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank very much, [name_genie_hermione]." ("silly", "happyCl", "worried", "mid", emote="sweat") hide screen bld1 call ctc @@ -1553,7 +1553,7 @@ label hg_pf_strip_T4_masturbate: gen "..." ("base", xpos="far_left", ypos="head") "\"Oh, no, you are still getting that.\"": $ her_mood += 20 - her "How generous of you, [genie_name]." ("soft", "base", "angry", "mid") + her "How generous of you, [name_genie_hermione]." ("soft", "base", "angry", "mid") hide screen bld1 call ctc @@ -1565,13 +1565,13 @@ label hg_pf_strip_T4_masturbate: "\"No, not even that!\"": call play_music("chipper_doodle") # HERMIONE'S THEME. her "!!!?" ("shock", "wide", "base", "stare") - her "I danced for you, [genie_name]..." + her "I danced for you, [name_genie_hermione]..." her "I degraded myself for your amusement..." ("soft", "happy", "base", "R") her "I let you cum on me..." ("open", "base", "base", "R") with hpunch her "And I get NOTHING?!" ("clench", "base", "angry", "mid", emote="angry") - gen "You are dismissed, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "Oh, this is a new low even for you, [genie_name]!" ("soft", "base", "angry", "mid") + gen "You are dismissed, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "Oh, this is a new low even for you, [name_genie_hermione]!" ("soft", "base", "angry", "mid") gen "I said you are dismissed." ("base", xpos="far_left", ypos="head") her "*GROAN*!" ("clench", "base", "angry", "mid", emote="angry") hide screen bld1 diff --git a/game/scripts/characters/hermione/events/favors/dance_for_me_masturbate.rpy b/game/scripts/characters/hermione/events/favors/dance_for_me_masturbate.rpy index fd5b540b..28c16811 100644 --- a/game/scripts/characters/hermione/events/favors/dance_for_me_masturbate.rpy +++ b/game/scripts/characters/hermione/events/favors/dance_for_me_masturbate.rpy @@ -8,15 +8,15 @@ label hg_pf_strip_T4_fingering: if not hg_masturbated.trigger: $ hg_masturbated.triggered() - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Do you ever touch yourself?" ("base", xpos="far_left", ypos="head") her "What? why?" ("upset", "wink", "base", "mid") - gen "It's a simple question [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("scream", "happyCl", "worried", "mid") + gen "It's a simple question [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") gen "And I want you to speak truthfully..." ("base", xpos="far_left", ypos="head") her "......" ("normal", "happyCl", "worried", "mid") - gen "Well, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Well, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "{size=-5}I suppose I do...{/size}" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "*huh*? What was that?" ("base", xpos="far_left", ypos="head") her "I said that I do alright!!!" ("scream", "happyCl", "worried", "mid") @@ -31,7 +31,7 @@ label hg_pf_strip_T4_fingering: gen "Witcher's promise." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "squint", "base", "mid") else: # Repeat - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Why don't you give that lovely pussy of yours a little rub." ("grin", xpos="far_left", ypos="head") her "Again?" ("annoyed", "narrow", "base", "mid") her "..." ("disgust", "narrow", "base", "down") @@ -75,19 +75,19 @@ label hg_pf_strip_T4_fingering: gen "............." ("base", xpos="far_left", ypos="head") her "............." ("normal", "happyCl", "worried", "mid") stop bg_sounds - her "*Umm*... [genie_name]?" + her "*Umm*... [name_genie_hermione]?" gen "Yes, what is it?" ("base", xpos="far_left", ypos="head") her "For how long did you want me to do this?" ("open", "base", "worried", "mid") - gen "Until you finish [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Until you finish [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") if game.daytime: - her "But my classes are about to start, [genie_name]..." ("annoyed", "base", "worried", "mid") + her "But my classes are about to start, [name_genie_hermione]..." ("annoyed", "base", "worried", "mid") else: - her "But it's getting late, [genie_name]..." ("annoyed", "base", "worried", "mid") + her "But it's getting late, [name_genie_hermione]..." ("annoyed", "base", "worried", "mid") her "I'm not sure if I'll be able to... finish... in time." ("disgust", "narrow", "base", "down") gen "Do you need the points or not?" ("base", xpos="far_left", ypos="head") - her "I do, [genie_name]! I'm sorry..." ("open", "narrow", "worried", "down") + her "I do, [name_genie_hermione]! I'm sorry..." ("open", "narrow", "worried", "down") her "I'll keep going then..." ("disgust", "narrow", "base", "down") play bg_sounds "sounds/slickloop.ogg" fadein 2 gen "(*Hmm*... Maybe I should encourage her a little.)" ("base", xpos="far_left", ypos="head") @@ -95,7 +95,7 @@ label hg_pf_strip_T4_fingering: menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Yes... keep going, slut.\"": - her "[genie_name]!!!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!!!" ("angry", "base", "angry", "mid") her "How...{w=0.4} How dare you!" ("upset", "base", "angry", "mid") gen "what?" ("base", xpos="far_left", ypos="head") her "I hardly think that kind of... *Ah*...{w=0.5} language is appropriate." ("open", "happyCl", "base", "mid") @@ -117,7 +117,7 @@ label hg_pf_strip_T4_fingering: her "*Ah-a*{heart}..." ("open", "happyCl", "worried", "mid") her "What..{w=0.4}*Ah*... other reason would there be for me to..." ("angry", "narrow", "base", "down") gen "It seems to me that you might be enjoying this a little too much..." ("base", xpos="far_left", ypos="head") - her "I am not, [genie_name]!" ("open", "happyCl", "worried", "mid") + her "I am not, [name_genie_hermione]!" ("open", "happyCl", "worried", "mid") gen "Really?" ("base", xpos="far_left", ypos="head") her "......................" ("normal", "happyCl", "worried", "mid") gen "Then why are your fingers moving so fast, slut?" ("base", xpos="far_left", ypos="head") @@ -139,12 +139,12 @@ label hg_pf_strip_T4_fingering: gen "Every...{w=0.4} single...{w=0.4} student." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopveryfast.ogg" her "*Ah*...{heart}{heart}{heart}" ("grin", "narrow", "annoyed", "up", cheeks="blush") - her "[genie_name], please... {w=0.4}*mmmh*...{w=0.4} don't tell anyone..." ("soft", "narrow", "base", "mid_soft", cheeks="blush") + her "[name_genie_hermione], please... {w=0.4}*mmmh*...{w=0.4} don't tell anyone..." ("soft", "narrow", "base", "mid_soft", cheeks="blush") call nar(">Hermione continues to rub herself with even more effort...") her "They can't...{w=0.4}*Ah*...{w=0.4} They can't find out..." ("soft", "narrow", "base", "R_soft", cheeks="blush") her "If harry and ron knew..." ("open", "narrow", "base", "down", cheeks="blush") her "I'd... *Ah*...{heart}" ("soft", "closed", "annoyed", "up", cheeks="blush") - gen "You'd what [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "You'd what [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I'd..." ("open", "closed", "worried", "mid", cheeks="blush") her "I'd...{heart}" ("silly", "closed", "worried", "mid", cheeks="blush") her "I...{heart}{heart}{heart}" ("grin", "narrow", "annoyed", "up", cheeks="blush") @@ -166,8 +166,8 @@ label hg_pf_strip_T4_fingering: her "......" ("normal", "happyCl", "base", "mid") gen "That's it..." ("base", xpos="far_left", ypos="head") her "......" ("normal", "narrow", "base", "mid", cheeks="blush") - her "[genie_name], do you mind if..." ("soft", "narrow", "base", "L", cheeks="blush") - gen "What [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], do you mind if..." ("soft", "narrow", "base", "L", cheeks="blush") + gen "What [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Could you... Call me names..." ("open", "narrow", "base", "R", cheeks="blush") gen "Such as?" ("base", xpos="far_left", ypos="head") @@ -179,7 +179,7 @@ label hg_pf_strip_T4_fingering: her "I-{heart}" ("open", "narrow", "worried", "up", cheeks="blush") play bg_sounds "sounds/slickloopfast.ogg" her "*Ah*...{heart} I don't know..." ("soft", "closed", "base", "up", cheeks="blush") - her "To be perfectly honest [genie_name]... I don't think I care...{heart}{heart}{heart}" ("silly", "narrow", "base", "up", cheeks="blush") + her "To be perfectly honest [name_genie_hermione]... I don't think I care...{heart}{heart}{heart}" ("silly", "narrow", "base", "up", cheeks="blush") gen "Really?" ("base", xpos="far_left", ypos="head") her "Really...{heart}" ("silly", "narrow", "base", "mid_soft", cheeks="blush") @@ -198,20 +198,20 @@ label hg_pf_strip_T4_fingering: "\"Spread em!\"": gen "Excellent... Just make sure to give me a nice view of that wet pussy!" ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("open", "base", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("open", "base", "angry", "mid", cheeks="blush") gen "What?" ("base", xpos="far_left", ypos="head") her "It's not {size=-5}wet...{/size}" ("annoyed", "narrow", "worried", "R", cheeks="blush") gen "Are you sure?" ("base", xpos="far_left", ypos="head") her "*Ah*...{heart}" ("soft", "narrow", "base", "up", cheeks="blush") - her "It...{w=0.4} I'm sure it's just sweat, [genie_name]..." ("open", "narrow", "base", "R", cheeks="blush") + her "It...{w=0.4} I'm sure it's just sweat, [name_genie_hermione]..." ("open", "narrow", "base", "R", cheeks="blush") gen "if you say so..." ("base", xpos="far_left", ypos="head") her "..............." ("soft", "closed", "base", "up", cheeks="blush") gen "Slut." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopfast.ogg" $ hermione.set_cum(pussy="wet") her "{heart}{heart}{heart}" ("silly", "narrow", "base", "up_soft", cheeks="blush") - gen "Wow, that sure is a lot of sweat, [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "Wow, that sure is a lot of sweat, [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") her "Sir... please..." ("open", "narrow", "base", "mid_soft", cheeks="blush") $ hermione.set_body_zorder(armright=3) @@ -229,19 +229,19 @@ label hg_pf_strip_T4_fingering: play bg_sounds "sounds/slickloop.ogg" her "*Ah*..." ("soft", "narrow", "base", "R", cheeks="blush") - gen "almost there [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "almost there [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "a-almost..." ("annoyed", "base", "worried", "L", cheeks="blush") her "I just need a bit longer..." gen "well you better hurry..." ("base", xpos="far_left", ypos="head") - her "*Ah*...{w=0.3} I know, [genie_name]." ("angry", "happyCl", "worried", "mid") + her "*Ah*...{w=0.3} I know, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid") her "..........." ("normal", "closed", "base", "R", cheeks="blush") gen "Is everything alright?" ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopfast.ogg" her "................" ("annoyed", "narrow", "base", "down", cheeks="blush", tears="sweat") - gen "Why are you being so quiet [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Why are you being so quiet [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloop.ogg" her "......" ("annoyed", "base", "worried", "R_soft", cheeks="blush") - her "[genie_name]... I don't think I can..." + her "[name_genie_hermione]... I don't think I can..." gen "What?" ("base", xpos="far_left", ypos="head") stop bg_sounds her "...{w=0.3} Finish..." ("angry", "happyCl", "base", "down", cheeks="blush", tears="soft") @@ -250,8 +250,8 @@ label hg_pf_strip_T4_fingering: "-Chastise her-": gen "Well then, I guess Slytherin will have to win the house cup this year." ("base", xpos="far_left", ypos="head") her "B-but--" ("disgust", "narrow", "worried", "mid", cheeks="blush", tears="soft") - gen "Now, now [hermione_name]... A deal's a deal." ("base", xpos="far_left", ypos="head") - her "But I'm trying [genie_name]..." ("upset", "narrow", "worried", "down", tears="crying") + gen "Now, now [name_hermione_genie]... A deal's a deal." ("base", xpos="far_left", ypos="head") + her "But I'm trying [name_genie_hermione]..." ("upset", "narrow", "worried", "down", tears="crying") gen "Try harder..." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopveryfast.ogg" her "" (eyes="happyCl", tears="tears_soft_sweat") @@ -266,7 +266,7 @@ label hg_pf_strip_T4_fingering: stop bg_sounds her "*SOB*!{w=0.3} I can't..." ("angry", "happyCl", "base", "down", cheeks="blush", tears="messy") gen "Well then... Zero points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "{size=-5}After everything I...{/size} Really [genie_name]?" ("open", "base", "worried", "stare", cheeks="blush", tears="messy") + her "{size=-5}After everything I...{/size} Really [name_genie_hermione]?" ("open", "base", "worried", "stare", cheeks="blush", tears="messy") her "After I stood here and..." ("scream", "base", "angry", "mid", cheeks="blush", tears="messy") her ".........." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") @@ -278,7 +278,7 @@ label hg_pf_strip_T4_fingering: call hide_blkfade - her "I am not going to sell you a single favour anymore, [genie_name]!" ("scream", "base", "low", "mid", cheeks="blush", tears="mascara") + her "I am not going to sell you a single favour anymore, [name_genie_hermione]!" ("scream", "base", "low", "mid", cheeks="blush", tears="mascara") call her_walk(action="run", xpos="door", speed=2, reduce=True) call her_chibi("leave") @@ -292,7 +292,7 @@ label hg_pf_strip_T4_fingering: jump end_hermione_event "-Forgive her-": - gen "It's alright, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "It's alright, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Really?" ("open", "narrow", "worried", "mid", cheeks="blush", tears="crying") gen "I'm sure you're just a little nervous." ("base", xpos="far_left", ypos="head") @@ -302,7 +302,7 @@ label hg_pf_strip_T4_fingering: $ hermione.set_pose(None) $ hermione.strip("clothes") - her "Thank you [genie_name]." ("base", "base", "worried", "mid", cheeks="blush", tears="soft") + her "Thank you [name_genie_hermione]." ("base", "base", "worried", "mid", cheeks="blush", tears="soft") her "I promise to try harder next time." ("base", "happyCl", "worried", "mid", cheeks="blush") jump end_hg_pf_strip @@ -312,12 +312,12 @@ label hg_pf_strip_T4_fingering: label hg_pf_strip_T5_fingering: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I hope you're feeling horny." ("base", xpos="far_left", ypos="head") - her "Maybe a little, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Maybe a little, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") gen "Good, then we better do something about that..." ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("open", "wink", "worried", "mid") + her "[name_genie_hermione]..." ("open", "wink", "worried", "mid") gen "Why don't you give that lovely pussy of yours a little rub." ("grin", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("base", "narrow", "base", "mid_soft") her "............." ("base", "base", "base", "R_soft") @@ -366,11 +366,11 @@ label hg_pf_strip_T5_fingering: her "*Ah-ah*..." ("open", "happyCl", "worried", "mid") gen "......................" ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} *ah*...{heart}" ("open", "happyCl", "worried", "mid") - her "*Ah*...{w=0.4} [genie_name]?" ("soft", "happy", "base", "R") + her "*Ah*...{w=0.4} [name_genie_hermione]?" ("soft", "happy", "base", "R") gen "What is it?" ("base", xpos="far_left", ypos="head") her "Do you....{w=0.4}*Ah*...{w=0.4} like this?" ("open", "happyCl", "worried", "mid") gen "Do I like watching \"you\" finger your cute little pussy?" ("base", xpos="far_left", ypos="head") - gen "Of course, [hermione_name]. Why?" ("base", xpos="far_left", ypos="head") + gen "Of course, [name_hermione_genie]. Why?" ("base", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("normal", "happyCl", "worried", "mid") her "*Ah*... You're just so quiet..." ("open", "happyCl", "worried", "mid") gen "Do you need a little more encouragement?" ("base", xpos="far_left", ypos="head") @@ -378,14 +378,14 @@ label hg_pf_strip_T5_fingering: gen "*Tch*... Such a dirty whore..." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopfast.ogg" $ hermione.set_cum(pussy="wet") - her "Yes [genie_name], *Ah*...{heart}" ("grin", "narrow", "base", "up", cheeks="blush") + her "Yes [name_genie_hermione], *Ah*...{heart}" ("grin", "narrow", "base", "up", cheeks="blush") her "Please... *Ah*...{w=0.4} more...{heart}" ("grin", "base", "angry", "mid", cheeks="blush") gen "You deserve to be punished for being such a filthy slut!" ("angry", xpos="far_left", ypos="head") - her "Yes, [genie_name]... punish me..." ("open", "narrow", "base", "up", cheeks="blush") + her "Yes, [name_genie_hermione]... punish me..." ("open", "narrow", "base", "up", cheeks="blush") her "Make me your little slut..." ("open", "narrow", "base", "up", cheeks="blush") play bg_sounds "sounds/slickloopveryfast.ogg" her "I will... *Ah*...{w=0.4} {heart}do anything...{w=0.4} *Ah*...{heart}" ("silly", "narrow", "base", "dead") - gen "Anything [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Anything [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ah-a*...{heart} Yessss..." ("silly", "narrow", "base", "up", cheeks="blush") gen "Cum." ("base", xpos="far_left", ypos="head") @@ -411,7 +411,7 @@ label hg_pf_strip_T5_fingering: her "...{heart}{heart}{heart}" ("grin", "narrow", "annoyed", "dead", cheeks="blush") her "*Gah*...{w=0.4} *Ah*...{w=0.4} *Ah*..." ("open_tongue", "narrow", "annoyed", "dead", cheeks="blush") play bg_sounds "sounds/slickloop.ogg" - her "[genie_name]...{heart}{heart}{heart}" ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione]...{heart}{heart}{heart}" ("open", "narrow", "annoyed", "mid", cheeks="blush") her "............." ("soft", "narrow", "annoyed", "up") stop bg_sounds call nar(">Hermione takes a minute to collect herself.") @@ -429,8 +429,8 @@ label hg_pf_strip_T6_fingering: $ hg_masturbated.triggered() - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "You don't mind pleasuring yourself in front of me, do you?" ("base", xpos="far_left", ypos="head") if her_whoring <= 16: her "As long as I am being paid..." ("grin", "base", "base", "R") @@ -473,24 +473,24 @@ label hg_pf_strip_T6_fingering: play bg_sounds "sounds/slickloop.ogg" fadein 2 her "*Mmmh*...{heart}" ("base", "narrow", "base", "down", cheeks="blush") - her "[genie_name]...{w=0.4} Do you...{w=0.4} like it when I do it like this?" ("grin", "narrow", "base", "down", cheeks="blush") + her "[name_genie_hermione]...{w=0.4} Do you...{w=0.4} like it when I do it like this?" ("grin", "narrow", "base", "down", cheeks="blush") call play_music("chipper_doodle") # HERMIONE'S THEME. gen "Yes, I love it..." ("base", xpos="far_left", ypos="head") gen "Try going a little deeper with your fingers." ("base", xpos="far_left", ypos="head") - her "Alright [genie_name]..." ("base", "happyCl", "base", "mid", cheeks="blush") + her "Alright [name_genie_hermione]..." ("base", "happyCl", "base", "mid", cheeks="blush") play bg_sounds "sounds/slickloopfast.ogg" her "*Ah*...{w=0.4} *Ah*...{w=0.4}{heart}" ("open", "happyCl", "worried", "mid", cheeks="blush") $ hermione.set_cum(pussy="wet") - her "*Ah*...{w=0.6} [genie_name]...{heart}" ("open", "happyCl", "worried", "mid", cheeks="blush") + her "*Ah*...{w=0.6} [name_genie_hermione]...{heart}" ("open", "happyCl", "worried", "mid", cheeks="blush") menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Tell me what you're thinking about.\"": her "*huh*?" ("open", "wink", "worried", "mid", cheeks="blush") her "Oh, *umm*... nothing..." ("soft", "happyCl", "worried", "mid", cheeks="blush") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name],{w=0.4} it's a bit weird..." ("disgust", "narrow", "base", "down", cheeks="blush") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione],{w=0.4} it's a bit weird..." ("disgust", "narrow", "base", "down", cheeks="blush") gen "Even more reason to tell me." ("angry", xpos="far_left", ypos="head") her "......" ("annoyed", "narrow", "annoyed", "mid", cheeks="blush") her "Fine..." ("open", "base", "base", "R", cheeks="blush") @@ -517,20 +517,20 @@ label hg_pf_strip_T6_fingering: her "*Ah*... {heart}" ("silly", "narrow", "base", "dead") her "I don't know if has to do with the time I've spent with you...{heart}" ("angry", "wink", "base", "mid") her "Or if I've always been this way...{heart}" ("angry", "narrow", "base", "down") - her "But... {heart} {w=0.4}*Ah*...{w=0.4} {heart} I'm a slut [genie_name]...{heart}" ("soft", "narrow", "annoyed", "up") + her "But... {heart} {w=0.4}*Ah*...{w=0.4} {heart} I'm a slut [name_genie_hermione]...{heart}" ("soft", "narrow", "annoyed", "up") play bg_sounds "sounds/slickloopfast.ogg" her "A shameless slut..." ("grin", "narrow", "base", "dead") her "That pleasures herself...{heart} {w=0.4}*Ah*..." ("soft", "narrow", "annoyed", "up") her "Just to make her headmaster happy..." ("grin", "narrow", "base", "dead") gen "Oh, yes..." ("base", xpos="far_left", ypos="head") - her "That's it [genie_name]..." ("base", "narrow", "worried", "up_soft") + her "That's it [name_genie_hermione]..." ("base", "narrow", "worried", "up_soft") her "Enjoy yourself while I stand here..." ("silly", "narrow", "base", "dead") her "*Ah*...{heart}" ("open_wide_tongue", "narrow", "annoyed", "up") her "Fingering my pussy..." ("silly", "narrow", "annoyed", "up") her "*Ah*...{w=0.4} *Ah*...{heart}" ("grin", "narrow", "annoyed", "up") - her "*Ah*...{w=0.4} Do you.... like this [genie_name]?" ("shock", "happyCl", "worried", "mid") + her "*Ah*...{w=0.4} Do you.... like this [name_genie_hermione]?" ("shock", "happyCl", "worried", "mid") her "Watching me {w=0.4}*Ah*...{w=0.4}{heart} degrade myself?" ("silly", "narrow", "base", "dead") - gen "Very much, [hermione_name]. Just keep going..." ("base", xpos="far_left", ypos="head") + gen "Very much, [name_hermione_genie]. Just keep going..." ("base", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("silly", "narrow", "base", "dead") "\"Play with your tits some more!\"": @@ -542,8 +542,8 @@ label hg_pf_strip_T6_fingering: her "*Ah*...{heart}" ("angry", "wink", "base", "mid") gen "Now pinch your nipples." ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("open", "happy", "base", "mid", cheeks="blush") - gen "do it, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]..." ("open", "happy", "base", "mid", cheeks="blush") + gen "do it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..." ("open", "base", "base", "R", cheeks="blush") $ renpy.play("sounds/gasp2.ogg") her "*Ah*..." ("grin", "narrow", "base", "up", cheeks="blush") @@ -551,14 +551,14 @@ label hg_pf_strip_T6_fingering: call nar(">You gaze at Hermione's breasts as she runs the tips of her fingers across her nipple...") her "*Ah*..." ("silly", "narrow", "base", "dead") gen "So you do like playing with those big tits of yours." ("grin", xpos="far_left", ypos="head") - her "I do, [genie_name]... {w=0.4}*Ah*...{heart}" ("soft", "narrow", "annoyed", "up") + her "I do, [name_genie_hermione]... {w=0.4}*Ah*...{heart}" ("soft", "narrow", "annoyed", "up") her "I don't know why..." ("base", "base", "base", "R", cheeks="blush") her "But I love it...{heart}{heart}" ("open", "narrow", "worried", "down") gen "You nasty slut!" ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4}{heart} *Ah-a*...{heart}" ("open_tongue", "narrow", "annoyed", "up") her "I am..." her "A nasty slut... {w=0.4}*Ah*...{heart}" ("silly", "narrow", "base", "dead") - gen "You are a disgrace, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "You are a disgrace, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "*Ah-ah*...{heart}{heart}{heart}" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Why don't you come down and I'll help you finish?" ("base", xpos="far_left", ypos="head") @@ -596,17 +596,17 @@ label hg_pf_strip_T6_fingering: call her_chibi_scene("grope_tits") - her "[genie_name]!" ("shock", "happyCl", "worried", "mid") + her "[name_genie_hermione]!" ("shock", "happyCl", "worried", "mid") her "This wasn't part of the deal!" ("open", "happyCl", "worried", "mid") her "And I was almost about to--" ("annoyed", "narrow", "angry", "R", cheeks="blush") - gen "Can't let you have all the fun by yourself can we [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Can't let you have all the fun by yourself can we [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4}{heart} Well, as long as it's just to make this end faster..." ("open", "narrow", "base", "up", cheeks="blush") her "I suppose I can...{w=0.4} *Ah*...{w=0.4}{heart} allow it..." ("base", "narrow", "base", "down", cheeks="blush") call nar(">You give her tits a couple of firm squeezes...") gen "Just admit that you love it." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} fine...{heart}" ("open", "happyCl", "worried", "mid", cheeks="blush") her "{size=-5}I like it...{/size}" ("soft", "narrow", "annoyed", "up") - gen "What was that [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What was that [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "......." ("normal", "narrow", "annoyed", "up") her "I love this..." ("grin", "narrow", "base", "dead") her "Standing here... all exposed..." ("base", "narrow", "worried", "down_soft", cheeks="blush") @@ -617,10 +617,10 @@ label hg_pf_strip_T6_fingering: gen "Perhaps we could arrange that some time..." ("base", xpos="far_left", ypos="head") call nar(">You keep on massaging the girl's breasts...") her "......." - her "[genie_name]... I...{w=0.4} Please...{w=0.4} I was so close..." ("open", "base", "worried", "L", cheeks="blush") + her "[name_genie_hermione]... I...{w=0.4} Please...{w=0.4} I was so close..." ("open", "base", "worried", "L", cheeks="blush") her "*Ah*...{heart}" ("base", "narrow", "worried", "down") her "Could you touch me...{w=0.4} down there..." ("open", "happy", "base", "mid", cheeks="blush") - gen "What was that [hermione_name]? You'll have to speak up." ("base", xpos="far_left", ypos="head") + gen "What was that [name_hermione_genie]? You'll have to speak up." ("base", xpos="far_left", ypos="head") her "Please finger me..." ("open", "narrow", "base", "up", cheeks="blush") gen "One more time, a little louder this time." ("base", xpos="far_left", ypos="head") her "*Ah*...{heart} {size=+5}please finger my pussy!{/size}" ("scream", "narrow", "base", "up", cheeks="blush") @@ -639,8 +639,8 @@ label hg_pf_strip_T6_fingering: her "!!!" ("open", "happyCl", "worried", "mid") call nar(">And slowly move your hands towards her pussy...") her "................." ("silly", "narrow", "base", "dead") - gen "That's it [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "{size=-7}[genie_name]...{/size}" ("soft", "narrow", "annoyed", "up") + gen "That's it [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "{size=-7}[name_genie_hermione]...{/size}" ("soft", "narrow", "annoyed", "up") gen "Good girl." ("base", xpos="far_left", ypos="head") her "...................." ("open", "closed", "base", "mid", cheeks="blush") gen "Just be quiet for a second..." ("base", xpos="far_left", ypos="head") @@ -651,8 +651,8 @@ label hg_pf_strip_T6_fingering: her "....................." ("annoyed", "base", "annoyed", "dead", cheeks="blush") gen "Your loins..." ("base", xpos="far_left", ypos="head") call nar(">You slide your fingers across the side of her body as you return to the front, and then gently begin rubbing your forefinger just above her clit.") - her ".....................{size=-8} [genie_name]...{/size}" ("silly", "narrow", "base", "dead", cheeks="blush") - gen "What was that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her ".....................{size=-8} [name_genie_hermione]...{/size}" ("silly", "narrow", "base", "dead", cheeks="blush") + gen "What was that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "....................." ("annoyed", "wink", "base", "mid", cheeks="blush") her "... I...{w=0.4} {size=-5}... I need you...{w=0.4} inside of me...{/size}" ("disgust", "narrow", "base", "down", cheeks="blush") gen "You'll have to speak up if you expect me to hear you..." ("base", xpos="far_left", ypos="head") @@ -663,7 +663,7 @@ label hg_pf_strip_T6_fingering: call nar(">You start to pump your fingers inside her before she can do more than gasp.") play bg_sounds "sounds/slickloop.ogg" her "{size=+10}{heart}{heart}!!!{heart}{heart}{/size}" ("silly", "narrow", "base", "dead") - gen "That's it [hermione_name]. Just enjoy yourself." ("base", xpos="far_left", ypos="head") + gen "That's it [name_hermione_genie]. Just enjoy yourself." ("base", xpos="far_left", ypos="head") her ".................................................." ("base", "narrow", "base", "up", cheeks="blush") gen "Do you like this?" ("base", xpos="far_left", ypos="head") gen "You like it when I finger your pussy?" ("base", xpos="far_left", ypos="head") @@ -681,15 +681,15 @@ label hg_pf_strip_T6_fingering: $ renpy.play("sounds/slick_02.ogg") play bg_sounds "sounds/slickloopveryfast.ogg" her "*Ah*...{w=0.4} yes! {heart}iloveitiloveitiloveit!{heart}" ("scream", "wide", "annoyed", "dead", cheeks="blush") - gen "what do you love, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Ah!!{heart} I love your fingers in my pussy [genie_name]!{heart}" ("open_wide_tongue", "happyCl", "annoyed", "dead", cheeks="blush") + gen "what do you love, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Ah!!{heart} I love your fingers in my pussy [name_genie_hermione]!{heart}" ("open_wide_tongue", "happyCl", "annoyed", "dead", cheeks="blush") call nar(">Hermione's legs begin to shake slightly as you finger her with renewed vigour.") gen "are you about to--" ("base", xpos="far_left", ypos="head") her "*Ah*...{heart} yes!!" ("mad", "narrow", "annoyed", "dead", cheeks="blush") - her "I'm about to cum [genie_name]!!{heart}" ("grin", "narrow", "base", "dead", cheeks="blush") + her "I'm about to cum [name_genie_hermione]!!{heart}" ("grin", "narrow", "base", "dead", cheeks="blush") her "From being fucked by your fingers!!{heart}{heart}" ("open_tongue", "base", "base", "ahegao", cheeks="blush") her "*Ah*...{w=0.4} Yes...{w=0.4}*Ah*..." ("soft", "narrow", "base", "dead", cheeks="blush") - her "[genie_name]{heart}... I'm...*Ah*...{w=0.4} I'm cumming!{heart}" ("silly", "narrow", "annoyed", "dead", cheeks="blush") + her "[name_genie_hermione]{heart}... I'm...*Ah*...{w=0.4} I'm cumming!{heart}" ("silly", "narrow", "annoyed", "dead", cheeks="blush") her "{heart}{heart}{heart}!!!{heart}{heart}{heart}" ("silly", "narrow", "base", "dead", cheeks="blush") with kissiris @@ -731,9 +731,9 @@ label hg_pf_strip_T6_fingering: show screen bld1 with d3 - gen "This shall do for now [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "This shall do for now [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} *Ah*...{heart}" ("open", "narrow", "annoyed", "dead", cheeks="blush") - her "Yes...{w=0.4} yes, [genie_name].{heart}" ("silly", "narrow", "base", "mid_soft", cheeks="blush") + her "Yes...{w=0.4} yes, [name_genie_hermione].{heart}" ("silly", "narrow", "base", "mid_soft", cheeks="blush") jump end_hg_pf_strip diff --git a/game/scripts/characters/hermione/events/favors/dance_for_me_snape.rpy b/game/scripts/characters/hermione/events/favors/dance_for_me_snape.rpy index 3927e9a0..b35f2737 100644 --- a/game/scripts/characters/hermione/events/favors/dance_for_me_snape.rpy +++ b/game/scripts/characters/hermione/events/favors/dance_for_me_snape.rpy @@ -9,15 +9,15 @@ label hg_pf_strip_T3_snape: # Fails hide hermione_main with d3 - gen "[hermione_name], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "closed", "base", "mid", xpos="base", ypos="base") + her "Of course, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="base", ypos="base") gen "Do you think you could go and fetch professor Snape for me?" ("base", xpos="far_left", ypos="head") her "... Professor Snape?" ("annoyed", "squint", "base", "mid") - her "May I ask, why, [genie_name]?" + her "May I ask, why, [name_genie_hermione]?" gen "Oh, I just think you could use a bigger audience for your striptease performance." ("base", xpos="far_left", ypos="head") her "My striptease performance...?!!" ("shock", "wide", "base", "stare") - her "Are you completely out of your mind, [genie_name]?" ("angry", "base", "angry", "mid") + her "Are you completely out of your mind, [name_genie_hermione]?" ("angry", "base", "angry", "mid") her "Wasn't it enough that I've had to embarrass myself in front my teacher once before?" ("open", "base", "angry", "mid") her "And now you expect me to do it again... but willingly?!" ("scream", "closed", "angry", "mid") gen "Short answer... yes." ("base", xpos="far_left", ypos="head") @@ -44,39 +44,39 @@ label hg_pf_strip_T4_snape: hide hermione_main with d3 - gen "[hermione_name], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "closed", "base", "mid", xpos="base", ypos="base") + her "Of course, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="base", ypos="base") gen "Do you think you could go and fetch professor Snape for me?" ("base", xpos="far_left", ypos="head") her "... Professor Snape?" ("annoyed", "squint", "base", "mid") - her "May I ask, why, [genie_name]?" + her "May I ask, why, [name_genie_hermione]?" gen "Oh, I just think you could use a bigger audience for your striptease performance." ("base", xpos="far_left", ypos="head") her "My striptease performance...?!!" ("shock", "wide", "base", "stare") - her "With all due respect, [genie_name]..." ("angry", "base", "angry", "mid") + her "With all due respect, [name_genie_hermione]..." ("angry", "base", "angry", "mid") her "{size=-5}(Which I have oh so little left for you...){/size}" ("normal", "squint", "angry", "mid") her "I refuse to degrade myself for professor Snape's amusement!" ("scream", "closed", "angry", "mid") - gen "No, no, you got it all wrong, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "No, no, you got it all wrong, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Hmm*...?" ("soft", "base", "base", "mid") gen "I want to prove that professor Snape is dirty, and I need your help." ("base", xpos="far_left", ypos="head") her "!!!" ("shock", "wide", "base", "stare") gen "Yes, I want to catch him in the act!" ("base", xpos="far_left", ypos="head") - her "[genie_name], I didn't realise..." ("open", "base", "worried", "mid") + her "[name_genie_hermione], I didn't realise..." ("open", "base", "worried", "mid") her "I see now..." ("base", "base", "base", "mid") - her "I am sorry for doubting you [genie_name]..." + her "I am sorry for doubting you [name_genie_hermione]..." gen "No biggie. Now go find professor Snape and bring him here." ("base", xpos="far_left", ypos="head") - her "Right away [genie_name]!" ("smile", "base", "angry", "mid") + her "Right away [name_genie_hermione]!" ("smile", "base", "angry", "mid") else: hide screen blktone hide hermione_main with d3 - gen "[hermione_name], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], before you start I have one more favour to ask of you." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "closed", "base", "mid", xpos="base", ypos="base") + her "Of course, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="base", ypos="base") gen "Do you think you could go and fetch professor Snape again?" ("base", xpos="far_left", ypos="head") her "... professor Snape?" ("annoyed", "squint", "base", "mid") - her "may I ask, why, [genie_name]?" + her "may I ask, why, [name_genie_hermione]?" gen "Oh, I just want you to dance for us." ("base", xpos="far_left", ypos="head") her "!!!" ("open", "base", "base", "mid") gen "I want to prove that professor Snape is dirty, and I need your help." ("base", xpos="far_left", ypos="head") @@ -84,7 +84,7 @@ label hg_pf_strip_T4_snape: gen "Well, *Ehm*... sure..." ("base", xpos="far_left", ypos="head") gen "But I will need more proof if I am to take this issue to the ministry of magic!" ("base", xpos="far_left", ypos="head") her "....." ("angry", "base", "angry", "mid") - gen "So, what do you say [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "So, what do you say [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "One more dance for the greater good?" ("base", xpos="far_left", ypos="head") her "Well, alright..." ("disgust", "narrow", "base", "mid_soft") gen "Good. Go find professor Snape then." ("base", xpos="far_left", ypos="head") @@ -113,7 +113,7 @@ label hg_pf_strip_T4_snape: her ".............." ("angry", "happyCl", "worried", "mid", emote="sweat", xpos="mid", ypos="base") gen "Yes, our little minx is more than happy to take off her clothes for our entertainment." ("base", xpos="far_left", ypos="head") her "............" ("angry", "happyCl", "worried", "mid", emote="sweat") - gen "Aren't you [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Aren't you [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") pause.5 her "" ("angry", "happy", "worried", "R") @@ -122,7 +122,7 @@ label hg_pf_strip_T4_snape: her "" ("angry", "happy", "worried", "mid") pause 1.5 - her "Yes, [genie_name]." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "Yes, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Let's get started then!" ("base", xpos="far_left", ypos="head") hide hermione_main with d3 @@ -159,10 +159,10 @@ label hg_pf_strip_T4_snape: her "..............................." ("grin", "base", "base", "R", xpos="mid", ypos="base") gen "Oh, I am sure she is very sorry about that..." ("base", xpos="far_left", ypos="head") her "{size=-4}(Not even a little bit!){/size}" ("base", "happyCl", "base", "mid") - gen "And will make up for it today, won't you, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "And will make up for it today, won't you, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") pause.2 - her "*Ehm*... Yes, [genie_name]." ("base", "happy", "base", "mid") + her "*Ehm*... Yes, [name_genie_hermione]." ("base", "happy", "base", "mid") pause.2 call nar(">Hermione starts to sway her hips seductively.") @@ -190,20 +190,20 @@ label hg_pf_strip_T4_snape: sna "{size=+2}What did you just say?!{/size}" ("snape_10") sna "How dare you....?" sna "Who do you think you are? You filthy mudbl--" ("snape_15") - her "[genie_name], one of your staff members is verbally abusing me!" ("scream", "closed", "angry", "mid") + her "[name_genie_hermione], one of your staff members is verbally abusing me!" ("scream", "closed", "angry", "mid") her "Are you going to allow this?" sna "Verbally abusing...?! You have some nerve, girl!" ("snape_08") sna "Albus, will you allow her to talk back to a teacher like that?" ("snape_10") - her "[genie_name]!" ("scream", "closed", "angry", "mid") + her "[name_genie_hermione]!" ("scream", "closed", "angry", "mid") sna "Albus!" ("snape_10") menu: gen "..." ("base", xpos="far_left", ypos="head") - "\"[hermione_name], show some respect!\"": + "\"[name_hermione_genie], show some respect!\"": $ her_mood += 9 her "What?" ("annoyed", "base", "angry", "mid") - her "But [genie_name]!" - gen "[hermione_name], you {size=+4}will{/size} calm down now." ("base", xpos="far_left", ypos="head") + her "But [name_genie_hermione]!" + gen "[name_hermione_genie], you {size=+4}will{/size} calm down now." ("base", xpos="far_left", ypos="head") her "*Tsk*!" ("disgust", "narrow", "base", "mid_soft") if hermione.is_worn("bottom"): gen "And take off your bottoms already, would you?" ("base", xpos="far_left", ypos="head") @@ -213,7 +213,7 @@ label hg_pf_strip_T4_snape: "\"Severus, you started this.\"": $ sna_friendship -= 5 sna "What? Me?!" ("snape_10") - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") sna "Albus, you are spoiling the girl! She must be taught a lesson!" ("snape_08") gen "............... Severus." ("base", xpos="far_left", ypos="head") gen "Did you hit your head?!" ("angry", xpos="far_left", ypos="head") @@ -223,11 +223,11 @@ label hg_pf_strip_T4_snape: sna "*Tsk*... How about a flogging?" ("snape_16") gen "Severus!" ("angry", xpos="far_left", ypos="head") sna "Alright, alright, I see your point..." ("snape_17") - gen "[hermione_name], are you going to strip or are you going to climb on my desk to give us a better view?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], are you going to strip or are you going to climb on my desk to give us a better view?" ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("open", "narrow", "worried", "down") if hermione.is_worn("bottom"): - gen "Take off your bottoms, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("soft", "base", "base", "mid") + gen "Take off your bottoms, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]..." ("soft", "base", "base", "mid") "\"Both of you, calm the fuck down.\"": gen "You, tall-dark-and-handsome, calm down a bit, would you?" ("base", xpos="far_left", ypos="head") @@ -240,7 +240,7 @@ label hg_pf_strip_T4_snape: gen "Calm down and keep doing what you were paid to do!" ("base", xpos="far_left", ypos="head") her "I am not perverted..." ("annoyed", "narrow", "annoyed", "mid") if hermione.is_worn("bottom"): - gen "Your bottoms, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Your bottoms, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "......" ("annoyed", "narrow", "angry", "R") sna "............." ("snape_13") @@ -335,7 +335,7 @@ label hg_pf_strip_T4_snape: her "!!!!!!!!!!" ("angry", "narrow", "annoyed", "mid", emote="angry") if hermione.is_worn("bra"): - gen "Why don't you take off your bra now, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Why don't you take off your bra now, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "............." ("open", "narrow", "worried", "down") call nar(">Hermione undoes her bra and then slowly takes it off.") pause .5 @@ -368,7 +368,7 @@ label hg_pf_strip_T4_snape_watch: call nar(">Hermione squeezes her breasts and shakes her hips slightly...") - gen "Yes, [hermione_name]. Very good." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]. Very good." ("base", xpos="far_left", ypos="head") sna "*Ahem*! Acceptable performance, miss Granger." ("snape_12") her "...." ("open", "closed", "base", "mid") gen "Heh..." ("base", xpos="far_left", ypos="head") @@ -430,7 +430,7 @@ label hg_pf_strip_T4_snape_watch: if game.daytime: sna "Well, my class is about to start so I will be leaving now." ("snape_22") sna "Don't you have potion class with me today, Miss Granger?" - her "Yes, [genie_name]..." ("annoyed", "narrow", "base", "dead") + her "Yes, [name_genie_hermione]..." ("annoyed", "narrow", "base", "dead") sna "Well, don't be late, girl..." ("snape_22") sna "Albus..." ("snape_02") gen "See you soon, Severus." ("grin", xpos="far_left", ypos="head") @@ -452,7 +452,7 @@ label hg_pf_strip_T4_snape_watch: her "...................." ("annoyed", "narrow", "base", "dead", ypos="head", flip=False) pause.5 - her "May I... may I get paid now... [genie_name]...?" ("normal", "happyCl", "worried", "mid") + her "May I... may I get paid now... [name_genie_hermione]...?" ("normal", "happyCl", "worried", "mid") jump end_hg_pf_strip @@ -465,8 +465,8 @@ label hg_pf_strip_T4_snape_masturbate: with d5 pause.2 - her "[genie_name]?!" ("open", "wide", "base", "stare", ypos="head", flip=False) - gen "It's alright, [hermione_name]. Don't mind me..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?!" ("open", "wide", "base", "stare", ypos="head", flip=False) + gen "It's alright, [name_hermione_genie]. Don't mind me..." ("base", xpos="far_left", ypos="head") sna "Oh, we're doing it like this then?" ("snape_12", ypos="head") sna "Well, don't mind if I do..." ("snape_12") her "!!!" (animation=None) @@ -480,12 +480,12 @@ label hg_pf_strip_T4_snape_masturbate: call ctc her "No, guys... *Err*... I mean, sirs! *Ehm*... professors!" ("angry", "wide", "base", "stare", xpos="mid", ypos="base") - gen "Don't you mind us [hermione_name], just keep on doing your thing." ("base", xpos="far_left", ypos="head") + gen "Don't you mind us [name_hermione_genie], just keep on doing your thing." ("base", xpos="far_left", ypos="head") her "But..." her "No! I refuse to dance with those things pointed at me!" ("angry", "happyCl", "worried", "mid") her "You need to put them away or the dance is over!" - gen "You aren't in any position to give us orders, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "that was not an order, [genie_name]. It was an ultimatum." ("clench", "base", "angry", "mid", emote="angry") + gen "You aren't in any position to give us orders, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "that was not an order, [name_genie_hermione]. It was an ultimatum." ("clench", "base", "angry", "mid", emote="angry") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -538,7 +538,7 @@ label hg_pf_strip_T4_snape_masturbate: her "...................." ("annoyed", "narrow", "base", "dead", xpos="mid", ypos="base") call ctc - her "... Can I get paid now... [genie_name]...?" ("normal", "happyCl", "worried", "mid") + her "... Can I get paid now... [name_genie_hermione]...?" ("normal", "happyCl", "worried", "mid") jump end_hg_pf_strip @@ -558,7 +558,7 @@ label hg_pf_strip_T4_snape_masturbate: call nar(">You keep on jerking off while you're watching Hermione dance.","start") call nar(">Hermione squeezes her breasts and shakes her hips slightly.","end") - gen "Yes, [hermione_name]. Very good." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]. Very good." ("base", xpos="far_left", ypos="head") sna "*Ahem*! Acceptable performance, miss Granger." ("snape_12") her "...................." ("angry", "happyCl", "worried", "mid") gen "Heh..." ("base", xpos="far_left", ypos="head") @@ -738,21 +738,21 @@ label hg_pf_strip_T4_snape_masturbate: pause.2 her "Well..." ("annoyed", "base", "worried", "R", xpos="mid", ypos="base", flip=False) - her "Was our mission a success, [genie_name]?" + her "Was our mission a success, [name_genie_hermione]?" menu: gen "..." ("base", xpos="far_left", ypos="head") "\"*huh*? What mission?\"": $ her_mood += 7 - her "I only agreed to this so that you could catch professor Snape in the act, [genie_name]!" ("scream", "happyCl", "worried", "mid") + her "I only agreed to this so that you could catch professor Snape in the act, [name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") her "So that we would have definite proof that he is \"dirty\"!" ("normal", "happyCl", "worried", "mid") gen "Oh, that mission..." ("base", xpos="far_left", ypos="head") gen "Yes. Mission accomplished!" ("base", xpos="far_left", ypos="head") "\"Yes! Thanks to you!\"": pass - gen "Good job, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I am happy to have been of help, [genie_name]!" ("normal", "happyCl", "worried", "mid") + gen "Good job, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I am happy to have been of help, [name_genie_hermione]!" ("normal", "happyCl", "worried", "mid") pause.5 show screen blkfade with d5 diff --git a/game/scripts/characters/hermione/events/favors/give_me_a_handy.rpy b/game/scripts/characters/hermione/events/favors/give_me_a_handy.rpy index d3807ff2..0f38fd39 100644 --- a/game/scripts/characters/hermione/events/favors/give_me_a_handy.rpy +++ b/game/scripts/characters/hermione/events/favors/give_me_a_handy.rpy @@ -44,12 +44,12 @@ label hg_pf_handjob: # Points if her_tier <= 5: - gen "Yes, [hermione_name]. {number=current_payout} to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]. {number=current_payout} to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout else: - gen "You may leave now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You may leave now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("soft", "base", "base", "R") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "R") if game.daytime: her "I better go. My classes are about to start." @@ -73,8 +73,8 @@ label hg_pf_handjob: label hg_pf_handjob_fail: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Do you know what a \"handjob\" is?" ("base", xpos="far_left", ypos="head") $ hg_pf_handjob.fail_intentional() @@ -89,12 +89,12 @@ label hg_pf_handjob_fail: label hg_pf_handjob_T4_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Do you know what a \"handjob\" is?" ("base", xpos="far_left", ypos="head") her "Why?" ("annoyed", "narrow", "annoyed", "mid") gen "I feel like getting one..." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "Just another favour. No big deal, right?" ("base", xpos="far_left", ypos="head") her "......" ("disgust", "narrow", "base", "mid_soft") her "{size=-7}I want a hundred house points for this...{/size}" ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -105,7 +105,7 @@ label hg_pf_handjob_T4_intro_E1: gen "And you will stroke my cock and everything?" ("base", xpos="far_left", ypos="head") her "{size=-7}Yes...{/size}" ("disgust", "narrow", "base", "mid_soft") gen "Sorry, I couldn't hear you..." ("base", xpos="far_left", ypos="head") - her "Yes, I said yes! I will stroke your stupid cock, [genie_name]!" ("scream", "happyCl", "worried", "mid") + her "Yes, I said yes! I will stroke your stupid cock, [name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") her "" ("upset", "narrow", "angry", "R") label back_to_handjob_choices: @@ -114,9 +114,9 @@ label hg_pf_handjob_T4_intro_E1: gen "..." ("base", xpos="far_left", ypos="head") "\"You will get fifteen house points.\"": $ her_mood += 7 - her "For fifteen house points I suppose I could let you molest me a little, but that is all you'll be getting, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "For fifteen house points I suppose I could let you molest me a little, but that is all you'll be getting, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") her "I will not stoop as low as to sell handjobs for fifteen house points." - her "That is just insulting, [genie_name]." + her "That is just insulting, [name_genie_hermione]." jump back_to_handjob_choices @@ -126,7 +126,7 @@ label hg_pf_handjob_T4_intro_E1: her "{number=current_payout} house points...?" ("open", "narrow", "worried", "down") her "This could put Gryffindor back in the lead..." gen "Is that a \"yes\"?" ("base", xpos="far_left", ypos="head") - her "Yes, it is a yes, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "Yes, it is a yes, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") gen "Great!" ("base", xpos="far_left", ypos="head") pass @@ -144,35 +144,35 @@ label hg_pf_handjob_T4_intro_E1: label hg_pf_handjob_T4_intro_E2: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Do you know what a \"handjob\" is?" ("base", xpos="far_left", ypos="head") - her "You have asked me that already, [genie_name]." ("disgust", "narrow", "base", "mid_soft") + her "You have asked me that already, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") gen "Ah, that's right." ("base", xpos="far_left", ypos="head") gen "Well, I want you to play with my cock again." ("base", xpos="far_left", ypos="head") - her "[genie_name], you are being vulgar again..." ("upset", "closed", "base", "mid") + her "[name_genie_hermione], you are being vulgar again..." ("upset", "closed", "base", "mid") gen "Fine, fine." ("base", xpos="far_left", ypos="head") - gen "[hermione_name], I would like to buy another favour from you today." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("annoyed", "narrow", "angry", "R") + gen "[name_hermione_genie], I would like to buy another favour from you today." ("base", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") gen "The favour being you playing with my cock!" ("grin", xpos="far_left", ypos="head") her ".............." ("disgust", "narrow", "base", "mid_soft") gen "Oh, come on. For the honour of Gryffindor?" ("base", xpos="far_left", ypos="head") her "............." ("angry", "base", "angry", "mid") - gen "Play with my cock for the honour of the Gryffindor, [hermione_name]!" ("grin", xpos="far_left", ypos="head") - her "Stop saying that, [genie_name]..." ("scream", "base", "angry", "mid", emote="angry") - gen "Come on [hermione_name], it's not like I'm asking you to do this for free." ("base", xpos="far_left", ypos="head") + gen "Play with my cock for the honour of the Gryffindor, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") + her "Stop saying that, [name_genie_hermione]..." ("scream", "base", "angry", "mid", emote="angry") + gen "Come on [name_hermione_genie], it's not like I'm asking you to do this for free." ("base", xpos="far_left", ypos="head") her "......." ("annoyed", "narrow", "angry", "R") jump hg_pf_handjob_1 label hg_pf_handjob_T4_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "How would you like to give me another handjob?" ("base", xpos="far_left", ypos="head") her "..............." ("upset", "base", "angry", "mid") - her "Will I be getting paid for it, [genie_name]?" ("open", "base", "angry", "mid") + her "Will I be getting paid for it, [name_genie_hermione]?" ("open", "base", "angry", "mid") gen "Of course. {number=current_payout} points." ("base", xpos="far_left", ypos="head") her "........................." ("upset", "narrow", "angry", "R") @@ -184,9 +184,9 @@ label hg_pf_handjob_T4_repeat: # Event 3 (r) - label hg_pf_handjob_T5_intro_E1: - her "[genie_name]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + her "[name_genie_hermione]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "You don't mind giving me another handjob, do you?" ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("upset", "narrow", "worried", "down") her "As long as I am getting paid..." ("grin", "base", "base", "R") @@ -195,21 +195,21 @@ label hg_pf_handjob_T5_intro_E1: jump hg_pf_handjob_2 label hg_pf_handjob_T5_intro_E2: - her "[genie_name]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + her "[name_genie_hermione]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "You don't mind giving me another handjob, do you?" ("base", xpos="far_left", ypos="head") - her "I guess not, [genie_name]..." ("grin", "narrow", "worried", "down") + her "I guess not, [name_genie_hermione]..." ("grin", "narrow", "worried", "down") her "..................." ("clench", "base", "base", "R") jump hg_pf_handjob_2 label hg_pf_handjob_T5_repeat: - her "[genie_name]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + her "[name_genie_hermione]?" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "You don't mind giving me another handjob, do you?" ("base", xpos="far_left", ypos="head") - her "Of course not, [genie_name]..." ("grin", "base", "base", "R") + her "Of course not, [name_genie_hermione]..." ("grin", "base", "base", "R") jump hg_pf_handjob_2 @@ -230,7 +230,7 @@ label hg_pf_handjob_1: call play_music("playful_tension") # SEX THEME. her "..........." ("disgust", "narrow", "worried", "down", ypos="head", flip=False) - gen "Whenever you're ready, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Whenever you're ready, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "......................." ("disgust", "happyCl", "worried", "mid") pause.1 @@ -252,14 +252,14 @@ label hg_pf_handjob_1: if hg_pf_handjob.counter == 1: her "!!!" ("shock", "wide", "base", "stare") - her "Are you about to finish, [genie_name]?!" + her "Are you about to finish, [name_genie_hermione]?!" gen "About to finish?" ("base", xpos="far_left", ypos="head") - gen "Don't be ridiculous [hermione_name], we are just getting started." ("base", xpos="far_left", ypos="head") + gen "Don't be ridiculous [name_hermione_genie], we are just getting started." ("base", xpos="far_left", ypos="head") her "Oh..." ("angry", "happyCl", "worried", "mid", emote="sweat") her "......" - her "You will give me a warning though, won't you, [genie_name]?" ("upset", "wink", "base", "mid") + her "You will give me a warning though, won't you, [name_genie_hermione]?" ("upset", "wink", "base", "mid") else: - her "[genie_name]...?" ("angry", "happyCl", "worried", "mid", emote="sweat") + her "[name_genie_hermione]...?" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "What is it?" ("base", xpos="far_left", ypos="head") her "Will you warn me before... *uhm*... you know..." ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -269,7 +269,7 @@ label hg_pf_handjob_1: gen "..." ("base", xpos="far_left", ypos="head") "\"Of course I'll let you know when it's time.\"": $ d_flag_01 = True #If TRUE Genie promised to warn her. - her "Thank you, [genie_name]." ("normal", "happyCl", "worried", "mid") + her "Thank you, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid") "\"I myself don't always know when...\"": her "Really? But I thought..." ("open", "base", "base", "mid") her "Well, never mind then..." ("normal", "happyCl", "worried", "mid") @@ -277,7 +277,7 @@ label hg_pf_handjob_1: her "........" ("open", "base", "base", "mid") gen "............." ("base", xpos="far_left", ypos="head") her "............." ("normal", "happyCl", "worried", "mid") - her "*ehh*... [genie_name]?" + her "*ehh*... [name_genie_hermione]?" gen "Yes, what is it?" ("base", xpos="far_left", ypos="head") her "How long do you think this will take?" ("open", "base", "base", "mid") gen "Why?" ("base", xpos="far_left", ypos="head") @@ -289,17 +289,17 @@ label hg_pf_handjob_1: her "It's due tomorrow, and it's getting pretty late..." gen "Do you need the points or not?" ("base", xpos="far_left", ypos="head") - her "I do, [genie_name]! I'm sorry..." ("base", "happyCl", "base", "mid") + her "I do, [name_genie_hermione]! I'm sorry..." ("base", "happyCl", "base", "mid") her "I will just keep on stroking it then..." gen "Well, there is something you could do to speed up the process..." ("base", xpos="far_left", ypos="head") - her "Really? What is it [genie_name]?" ("base", "base", "base", "mid") + her "Really? What is it [name_genie_hermione]?" ("base", "base", "base", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Tell me how much of a whore you are!\"": her "What?" ("angry", "base", "angry", "mid") her "But I'm not..." - gen "No need to be honest, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "No need to be honest, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Just make things up." ("base", xpos="far_left", ypos="head") her "Really?" ("upset", "wink", "base", "mid") gen "Sure. Just have fun with it." ("base", xpos="far_left", ypos="head") @@ -316,18 +316,18 @@ label hg_pf_handjob_1: gen "Very nice!" ("base", xpos="far_left", ypos="head") gen "But, like I said, you don't have to be honest." ("base", xpos="far_left", ypos="head") her "What?" ("shock", "wide", "base", "stare") - her "[genie_name], those things I say are not true!" ("upset", "wink", "base", "mid") + her "[name_genie_hermione], those things I say are not true!" ("upset", "wink", "base", "mid") gen "Heh... I know. I'm just messing with you." ("grin", xpos="far_left", ypos="head") - her "[genie_name]!" ("disgust", "narrow", "base", "mid_soft") + her "[name_genie_hermione]!" ("disgust", "narrow", "base", "mid_soft") gen "You are doing a great job, though. Keep at it!" ("base", xpos="far_left", ypos="head") her "....." ("open", "narrow", "worried", "down") her "I love cock..." her "And I love... spunk..." ("clench", "narrow", "base", "down") her "And semen... and sperm..." her "I love to drink sperm..." - her "I want you to feed me your sperm, [genie_name]!" ("open_tongue", "narrow", "base", "mid_soft") + her "I want you to feed me your sperm, [name_genie_hermione]!" ("open_tongue", "narrow", "base", "mid_soft") gen "!!!" ("angry", xpos="far_left", ypos="head") - her "Or better yet, pump me full of it, [genie_name]!" ("smile", "narrow", "base", "mid_soft") + her "Or better yet, pump me full of it, [name_genie_hermione]!" ("smile", "narrow", "base", "mid_soft") with hpunch gen "{size=-4}(Here it comes! Should I warn her?){/size}" ("angry", xpos="far_left", ypos="head") @@ -340,15 +340,15 @@ label hg_pf_handjob_1: gen "Yes... Good..." ("base", xpos="far_left", ypos="head") her "..........." ("open_wide_tongue", "base", "base", "mid") her "..........." - her "I can't keep my mouth open for so long, [genie_name]. I will start to drool..." ("open", "base", "base", "mid") + her "I can't keep my mouth open for so long, [name_genie_hermione]. I will start to drool..." ("open", "base", "base", "mid") gen "But I want you to drool..." ("base", xpos="far_left", ypos="head") her "What? But I will look silly!" ("open", "base", "base", "mid") - gen "That's the point, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "That's the point, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "......." ("annoyed", "base", "worried", "R") gen "Don't you want to be done with this as soon as possible?" ("base", xpos="far_left", ypos="head") her "............" ("normal", "happyCl", "worried", "mid") her "A-ha..." ("open_wide_tongue", "base", "base", "mid") - gen "Good, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her ".............." ("open_wide_tongue", "base", "base", "mid") gen "Yes, keep on stroking my cock." ("base", xpos="far_left", ypos="head") her ".................." ("open_wide_tongue", "base", "base", "mid") @@ -413,10 +413,10 @@ label hg_pf_handjob_1: pause.5 gen "Good... Now do it again and just stay there for a while." ("base", xpos="far_left", ypos="head") - her "You mean with my lips touching your... cock, [genie_name]?" ("open", "base", "base", "mid") + her "You mean with my lips touching your... cock, [name_genie_hermione]?" ("open", "base", "base", "mid") her "No, I will look stupid..." ("annoyed", "base", "worried", "R") - gen "Don't be silly, [hermione_name]. Nobody is watching." ("base", xpos="far_left", ypos="head") - her "You are, [genie_name]." ("open", "narrow", "worried", "down") + gen "Don't be silly, [name_hermione_genie]. Nobody is watching." ("base", xpos="far_left", ypos="head") + her "You are, [name_genie_hermione]." ("open", "narrow", "worried", "down") gen "But that's the whole point!" ("base", xpos="far_left", ypos="head") her "......" ("annoyed", "narrow", "annoyed", "mid") gen "It will make me cum in no time!" ("base", xpos="far_left", ypos="head") @@ -446,17 +446,17 @@ label hg_pf_handjob_1: call her_chibi_scene("hj", trans=d5) pause.8 - her "So, did it work? Are you ready to... finish, [genie_name]?" ("open", "narrow", "worried", "down") + her "So, did it work? Are you ready to... finish, [name_genie_hermione]?" ("open", "narrow", "worried", "down") gen "{size=-4}(Surprisingly, yes! I'm about to cum! Should I warn her?){/size}" ("angry", xpos="far_left", ypos="head") menu: gen "..." ("base", xpos="far_left", ypos="head") "-Give her a warning-": - gen "Here it comes, [hermione_name]! You better be ready!" ("angry", xpos="far_left", ypos="head") + gen "Here it comes, [name_hermione_genie]! You better be ready!" ("angry", xpos="far_left", ypos="head") her "What? So soon?!" ("shock", "wide", "base", "stare") gen "{size=+5}Yeah, you did a great job!!!{/size}" ("angry", xpos="far_left", ypos="head") gen "{size=+5}You little whore!!!{/size}" ("angry", xpos="far_left", ypos="head") - her "No, [genie_name], wait, I--" ("angry", "base", "base", "mid") + her "No, [name_genie_hermione], wait, I--" ("angry", "base", "base", "mid") gen "{size=+5}Too late for that, slut!{/size}" ("angry", xpos="far_left", ypos="head") her "*whimper*" ("angry", "narrow", "base", "down") gen "{size=+5}*ARGH*! YES!!!{/size}" ("angry", xpos="far_left", ypos="head") @@ -493,18 +493,18 @@ label hg_pf_handjob_1: if game.daytime: if hermione.is_worn("top"): - her "My classes are about to start and I didn't want you to ruin my clothes, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "My classes are about to start and I didn't want you to ruin my clothes, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "So you'll go to classes, looking like this?" ("base", xpos="far_left", ypos="head") gen "With your top all sperm-soaked from the inside?" ("base", xpos="far_left", ypos="head") else: - her "My classes are about to start and I didn't want you to ruin my face, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "My classes are about to start and I didn't want you to ruin my face, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "So you'll go to classes, looking like this?" ("base", xpos="far_left", ypos="head") gen "With your tits and chin all sperm-soaked?" ("base", xpos="far_left", ypos="head") her "What choice do I have?" ("angry", "narrow", "base", "down") her "I can't just skip a class..." else: her "At this hour The Gryffindor common room will be full of people..." ("angry", "happyCl", "worried", "mid", emote="sweat") - her "I didn't want to have to return there all covered in your... spunk, [genie_name]." + her "I didn't want to have to return there all covered in your... spunk, [name_genie_hermione]." her "Oh, it's getting pretty late..." ("angry", "base", "base", "mid") gen "So you will go to your dorm, looking like this?" ("base", xpos="far_left", ypos="head") @@ -526,13 +526,13 @@ label hg_pf_handjob_1: call hide_blkfade pause.5 - her "*Eww*... Your sperm, [genie_name]..." ("angry", "narrow", "base", "down") + her "*Eww*... Your sperm, [name_genie_hermione]..." ("angry", "narrow", "base", "down") if hermione.is_worn("top"): her "It's everywhere under my top..." ("angry", "base", "base", "mid") else: her "My breasts are so sticky, it's everywhere..." ("angry", "base", "base", "mid") gen "Just put it in your mouth next time." ("base", xpos="far_left", ypos="head") - her "I... don't think so, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "I... don't think so, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") her "I really need to go. Can I just get paid now?" "-Just start cumming-": @@ -573,13 +573,13 @@ label hg_pf_handjob_1: her ".................." ("disgust", "narrow", "worried", "down", tears="soft") gen "Well, I think that's about it..." ("base", xpos="far_left", ypos="head") - her "[genie_name]! What have you done?!" ("scream", "happyCl", "worried", "mid", trans=hpunch) + her "[name_genie_hermione]! What have you done?!" ("scream", "happyCl", "worried", "mid", trans=hpunch) gen "What?" ("base", xpos="far_left", ypos="head") if d_flag_01: #If TRUE Genie promised to warn her. call play_music("chipper_doodle") # HERMIONE'S THEME. $ her_mood += 11 - her "You promised to give me a warning, [genie_name]!" ("angry", "base", "angry", "mid") + her "You promised to give me a warning, [name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "Oh, that's right... My bad." ("base", xpos="far_left", ypos="head") if hermione.is_worn("top"): her "My clothes are ruined..." ("annoyed", "narrow", "angry", "R") @@ -603,8 +603,8 @@ label hg_pf_handjob_1: else: her "I have cum on my face!" ("annoyed", "narrow", "angry", "R") her "Am I supposed to go back to the Gryffindor common room looking like this?!" - gen "Why not? You look hot, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "[genie_name]!!!" ("annoyed", "narrow", "annoyed", "mid") + gen "Why not? You look hot, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!!!" ("annoyed", "narrow", "annoyed", "mid") gen "Alright, alright. Just wipe it off or something." ("base", xpos="far_left", ypos="head") gen "Nobody will even notice." ("base", xpos="far_left", ypos="head") her "... I would like to get paid now." ("annoyed", "narrow", "annoyed", "mid") @@ -618,14 +618,14 @@ label hg_pf_handjob_2: call her_chibi_scene("hj", trans=fade) pause.8 - her "Do you like it when I do it like this, [genie_name]?" ("grin", "base", "base", "R", ypos="head", flip=False) + her "Do you like it when I do it like this, [name_genie_hermione]?" ("grin", "base", "base", "R", ypos="head", flip=False) gen "Actually, yes! Very nice!" ("grin", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. with hpunch gen "{size=+5}Yes, yes, like that...{/size}" ("angry", xpos="far_left", ypos="head") gen "*Hmm*... You are getting pretty good at this." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") her "I figured the better I do this, the sooner it'll be over." gen "*Hmm*..." ("base", xpos="far_left", ypos="head") @@ -636,7 +636,7 @@ label hg_pf_handjob_2: her "Oh, that's right..." her "I need to compliment your penis! I completely forgot about that!" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Well, you don't have to--" ("base", xpos="far_left", ypos="head") - her "[genie_name], let me be honest with you..." ("upset", "closed", "base", "mid") + her "[name_genie_hermione], let me be honest with you..." ("upset", "closed", "base", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") her "You have the biggest penis I have ever seen!" ("smile", "base", "angry", "mid") gen "Well I suppo--" ("base", xpos="far_left", ypos="head") @@ -651,7 +651,7 @@ label hg_pf_handjob_2: gen "By all means..." ("base", xpos="far_left", ypos="head") her "I think your magnificent cock is a blessing to this world!" ("scream", "closed", "angry", "mid") gen "Well, I wouldn't go that far--" ("base", xpos="far_left", ypos="head") - her "Listen to me, [genie_name]!" ("scream", "closed", "angry", "mid") + her "Listen to me, [name_genie_hermione]!" ("scream", "closed", "angry", "mid") her "I think a statue dedicated to your magnificent penis shall be erected in every city!" her "So that people of the world could worship your phallus freely!" gen "OK, I think I've heard enough." ("base", xpos="far_left", ypos="head") @@ -684,7 +684,7 @@ label hg_pf_handjob_2: her "*Ehm*..." ("angry", "wink", "base", "mid") her "I live to suck penis, er... I mean cock..." ("base", "base", "base", "mid") gen "Really? Well why don't you suck on this one then?" ("base", xpos="far_left", ypos="head") - her "[genie_name], I am just repeating after you..." ("smile", "base", "angry", "mid") + her "[name_genie_hermione], I am just repeating after you..." ("smile", "base", "angry", "mid") gen "Really? Could've fooled me..." ("base", xpos="far_left", ypos="head") her "...................." ("angry", "wink", "base", "mid") gen ".................." ("base", xpos="far_left", ypos="head") @@ -697,7 +697,7 @@ label hg_pf_handjob_2: her "It is truly the best to swallow cum!" her "I love it!" her "..................................." ("grin", "narrow", "base", "dead") - her "How was that, [genie_name]?" ("angry", "wink", "base", "mid") + her "How was that, [name_genie_hermione]?" ("angry", "wink", "base", "mid") gen "Perfect." ("base", xpos="far_left", ypos="head") "\"This is really good. Did you practise?\"": @@ -734,7 +734,7 @@ label hg_pf_handjob_2: gen "Oh!!! By the great desert sands, yes!" ("angry", xpos="far_left", ypos="head") her "Really? That good?" ("smile", "happyCl", "base", "mid", emote="happy") her "What if I keep doing this but stick my finger here and press a little..." ("base", "narrow", "worried", "down") - gen "[hermione_name], you are killing me!" ("angry", xpos="far_left", ypos="head") + gen "[name_hermione_genie], you are killing me!" ("angry", xpos="far_left", ypos="head") her "Really? Really?!" ("smile", "happyCl", "base", "mid", emote="happy") her "This is actually quite fun!" her "*Err*... I mean..." ("angry", "wink", "base", "mid") @@ -766,7 +766,7 @@ label hg_pf_handjob_2_continue: $ her_mood += 11 her "I do not!" ("angry", "base", "angry", "mid") gen "I know. Just say it." ("base", xpos="far_left", ypos="head") - her "My father? That's disgusting, [genie_name]!" ("angry", "base", "angry", "mid", emote="angry") + her "My father? That's disgusting, [name_genie_hermione]!" ("angry", "base", "angry", "mid", emote="angry") gen "Humour me." ("base", xpos="far_left", ypos="head") her "..........." ("annoyed", "narrow", "annoyed", "mid") her "Well..." ("open", "narrow", "worried", "down") @@ -791,10 +791,10 @@ label hg_pf_handjob_2_continue: her "But He doesn't listen! He rips my panties off!" ("grin", "narrow", "base", "dead") her "I beg him to stop! I scream and I scream!" ("angry", "base", "base", "mid", tears="soft") - gen "*Err*, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "*Err*, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Yes?" ("angry", "base", "base", "mid", tears="soft") gen "You are not stroking my cock anymore..." ("base", xpos="far_left", ypos="head") - her "Oh, I am sorry, [genie_name]." ("grin", "happyCl", "worried", "mid", emote="sweat") + her "Oh, I am sorry, [name_genie_hermione]." ("grin", "happyCl", "worried", "mid", emote="sweat") her "I got lost in thought..." call her_chibi_scene("hj", trans=d5) @@ -807,7 +807,7 @@ label hg_pf_handjob_2_continue: "{size=-4}\"Sometimes I get lonely and let my dog mount me.\"{/size}": her "What?!" ("angry", "wide", "base", "stare") her "That's disgusting." ("annoyed", "squint", "base", "mid") - her "Dogs carry {size=+5}STD{/size}s, [genie_name]." ("open", "closed", "base", "mid") + her "Dogs carry {size=+5}STD{/size}s, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Actually, human and canine {size=+5}STD{/size}s are species specific..." ("base", xpos="far_left", ypos="head") gen "Meaning... They can only be spread to the same species." ("base", xpos="far_left", ypos="head") her "............{size=-6}I knew that{/size}" ("open", "squint", "base", "mid") @@ -845,7 +845,7 @@ label hg_pf_handjob_2_continue: her "[tmp_name]!!!" ("scream", "closed", "angry", "mid") elif random_number == 1: her "I don't want to say that..." ("annoyed", "base", "worried", "R") - gen "Oh, just do it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Oh, just do it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..........." ("annoyed", "base", "worried", "R") her "[tmp_name]." ("scream", "closed", "angry", "mid") elif random_number == 2: @@ -867,7 +867,7 @@ label hg_pf_handjob_2_continue: if random_number == 1: her "I don't want to say that..." ("annoyed", "base", "worried", "R") - gen "Oh, just do it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Oh, just do it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..........." ("annoyed", "base", "worried", "R") her "Manual user input..." ("scream", "closed", "angry", "mid") elif random_number == 2: @@ -932,12 +932,12 @@ label hg_pf_handjob_2_cumming: $ hermione.set_cum(breasts="light", body="light") gen "*Argh*! You whore!" ("angry", xpos="far_left", ypos="head") call nar(">The sensation of her skin under your engorged cock almost makes you lightheaded...") - her "Yes, [genie_name]! Just let it out!" ("base", "narrow", "worried", "down", xpos="right", ypos="base") + her "Yes, [name_genie_hermione]! Just let it out!" ("base", "narrow", "worried", "down", xpos="right", ypos="base") $ hermione.set_cum(breasts="heavy", face="light") gen "*Argh*! Fucking slut!" ("angry", xpos="far_left", ypos="head") her "Ah!! It's so hot!" ("smile", "narrow", "base", "mid_soft") her "And it's getting everywhere! So much of it!" ("soft", "narrow", "annoyed", "up") - her "...[genie_name]." + her "...[name_genie_hermione]." $ hermione.set_cum(body="heavy") gen "*Argh*!!!" ("angry", xpos="far_left", ypos="head") gen "............" ("base", xpos="far_left", ypos="head") @@ -948,7 +948,7 @@ label hg_pf_handjob_2_cumming: gen "I think I am done..." ("base", xpos="far_left", ypos="head") her "Ah, alright..." ("angry", "wink", "base", "mid") her ".............." ("base", "narrow", "worried", "down") - her "You came so much this time, [genie_name]..." ("soft", "narrow", "annoyed", "up") + her "You came so much this time, [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") call ctc call hide_characters @@ -980,14 +980,14 @@ label hg_pf_handjob_2_cumming: else: her "It may soak through a little here and there, but I doubt that anyone will notice if I wear a robe." ("base", "happyCl", "base", "mid") gen "*Hmm*... You could just put it in your mouth next time, and avoid the trouble..." ("base", xpos="far_left", ypos="head") - her "And swallow your hot spunk like that, [genie_name]?" ("angry", "wink", "base", "mid") + her "And swallow your hot spunk like that, [name_genie_hermione]?" ("angry", "wink", "base", "mid") if hermione.is_worn("top"): gen "Would keep your clothes clean." ("base", xpos="far_left", ypos="head") else: gen "Would keep your sweet tits clean." ("base", xpos="far_left", ypos="head") if hg_blowjob.trigger == False: # Hasn't done blowjobs yet. - her "With all due respect [genie_name]..." ("upset", "closed", "base", "mid") + her "With all due respect [name_genie_hermione]..." ("upset", "closed", "base", "mid") her "Not for the meagre {number=current_payout} points..." ("angry", "wink", "base", "mid") her "Speaking of which. Can I get may payment now please?" else: @@ -1035,12 +1035,12 @@ label hg_pf_handjob_2_cumming: gen "Well, I think that's about it..." ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "[genie_name]! What have you done?" ("scream", "happyCl", "worried", "mid") + her "[name_genie_hermione]! What have you done?" ("scream", "happyCl", "worried", "mid") gen "What?" ("base", xpos="far_left", ypos="head") - her "You came all over me, [genie_name]..." ("scream", "happyCl", "worried", "mid") + her "You came all over me, [name_genie_hermione]..." ("scream", "happyCl", "worried", "mid") her "What a mess..." ("angry", "narrow", "base", "down") - her "[genie_name], you should have warned me." ("upset", "closed", "base", "mid") - gen "It's your fault, [hermione_name]!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], you should have warned me." ("upset", "closed", "base", "mid") + gen "It's your fault, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "My fault?" ("angry", "base", "base", "mid") gen "Yes! You got me going too well..." ("base", xpos="far_left", ypos="head") gen "I forgot about everything else..." ("base", xpos="far_left", ypos="head") @@ -1054,7 +1054,7 @@ label hg_pf_handjob_2_cumming: "-Cum in her mouth!-" if hg_blowjob.trigger == True: # Has done blowjobs already. call bld - gen "Open your mouth, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Open your mouth, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "What?!" ("open", "wide", "base", "stare", ypos="head", flip=False) if hermione.is_worn("top"): gen "Open your mouth, or I'll have to cover your clothes!" ("angry", xpos="far_left", ypos="head") @@ -1082,9 +1082,9 @@ label hg_pf_handjob_2_cumming: gen "*Ah-ah*..." ("angry", xpos="far_left", ypos="head") gen "This feels great..." ("angry", xpos="far_left", ypos="head") her "*Gulp*! *Gulp*! *Gulp*!" ("full_cum", "narrow", "annoyed", "up") - gen "I think that's it, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "I think that's it, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You can let go now..." ("base", xpos="far_left", ypos="head") - gen "...[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "...[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") call her_chibi("stand","desk","base") call gen_chibi("sit_behind_desk") @@ -1095,7 +1095,7 @@ label hg_pf_handjob_2_cumming: her "........................................." her "*GULP*!!!" ("cum", "happyCl", "worried", "mid") her "*Gu-ah-a*..." ("open_wide_tongue", "narrow", "base", "down") - her "I swallowed it all, [genie_name]!" ("grin", "narrow", "base", "dead") + her "I swallowed it all, [name_genie_hermione]!" ("grin", "narrow", "base", "dead") gen "Good girl..." ("base", xpos="far_left", ypos="head") her "At one point I thought I was going to choke..." ("open", "narrow", "base", "dead") her "There was so much of it..." ("soft", "narrow", "base", "dead") @@ -1111,7 +1111,7 @@ label hg_pf_handjob_2_cumming: her "I can just go and spend some time with the guys in the common room now and nobody will know..." ("base", "narrow", "worried", "down") gen "Yes... With your belly full of semen..." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "base", "base", "mid") - her "... Can I just get paid now, please, [genie_name]?" + her "[name_genie_hermione]!" ("angry", "base", "base", "mid") + her "... Can I just get paid now, please, [name_genie_hermione]?" jump end_hg_pf_handjob diff --git a/game/scripts/characters/hermione/events/favors/give_me_a_tittyjob.rpy b/game/scripts/characters/hermione/events/favors/give_me_a_tittyjob.rpy index 461d8710..7f96704a 100644 --- a/game/scripts/characters/hermione/events/favors/give_me_a_tittyjob.rpy +++ b/game/scripts/characters/hermione/events/favors/give_me_a_tittyjob.rpy @@ -47,12 +47,12 @@ label hg_pf_titjob: # Points if her_tier <= 5: - gen "Yes, [hermione_name]. {number=current_payout} to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]. {number=current_payout} to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout else: - gen "You may leave now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You may leave now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("soft", "base", "base", "R") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "R") if game.daytime: her "Classes are about to start..." @@ -81,8 +81,8 @@ label hg_pf_titjob: label hg_pf_titjob_fail: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Have you ever given somebody a \"titjob\"?" ("base", xpos="far_left", ypos="head") $ hg_pf_titjob.fail_intentional() @@ -96,13 +96,13 @@ label hg_pf_titjob_fail: label hg_pf_titjob_T5_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "Now, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "Now, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Have you ever given someone a \"titjob\"?" ("base", xpos="far_left", ypos="head") her "A \"titjob\"?" ("annoyed", "narrow", "annoyed", "mid") gen "It's where you wrap those {i}fat tits{/i} of yours around a cock..." ("base", xpos="far_left", ypos="head") gen "And then shake them up and down, up and--" ("grin", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "Is that a yes?" ("base", xpos="far_left", ypos="head") her "..............." ("disgust", "narrow", "base", "mid_soft") her "{size=-7}No...{/size}" ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -114,10 +114,10 @@ label hg_pf_titjob_T5_intro_E1: her "I'm at a school... We get taught hundreds of things each day..." ("annoyed", "base", "angry", "mid") her "And giving \"titjobs\" isn't one of them..." ("angry", "base", "angry", "mid") gen "At least this is something you'll be able to use in the real world." ("base", xpos="far_left", ypos="head") - her "If you say so, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "If you say so, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") her "..." ("annoyed", "narrow", "angry", "mid") her "{size=-7}I want a hundred points for this...{/size}" ("angry", "happyCl", "worried", "mid", emote="sweat") - gen "Speak up, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Speak up, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "A hundred points!" ("scream", "happyCl", "worried", "mid") her "" ("annoyed", "narrow", "angry", "R") @@ -126,7 +126,7 @@ label hg_pf_titjob_T5_intro_E1: gen "(...)" ("base", xpos="far_left", ypos="head") "\"You'll get fifteen house points.\"" if her_mood == 0: $ her_mood += 7 - her "[genie_name], are you seriously expecting me to give you a titjob..." ("angry", "closed", "angry", "mid") + her "[name_genie_hermione], are you seriously expecting me to give you a titjob..." ("angry", "closed", "angry", "mid") her "For only a meagre fifteen points?!" ("scream", "base", "angry", "mid") her "" ("clench", "base", "angry", "mid") gen "Then how about twenty? Does that sound fair?" ("base", xpos="far_left", ypos="head") @@ -142,7 +142,7 @@ label hg_pf_titjob_T5_intro_E1: her "{number=current_payout} house points...?" ("open", "wink", "base", "mid") her "This could put Gryffindor back in the lead..." ("annoyed", "narrow", "worried", "down") gen "So... Is that a yes?" ("base", xpos="far_left", ypos="head") - her "It's a yes, [genie_name]..." ("open", "closed", "base", "mid") + her "It's a yes, [name_genie_hermione]..." ("open", "closed", "base", "mid") her "{number=current_payout} points sounds like a fair amount for--" ("open", "base", "base", "R") gen "For a titjob!" ("grin", xpos="far_left", ypos="head") her "(...)" ("annoyed", "base", "angry", "mid") @@ -154,15 +154,15 @@ label hg_pf_titjob_T5_intro_E1: her "{number=current_payout} house points?!" ("scream", "wide", "base", "mid") her "This might be enough to put Gryffindor in the lead!" ("smile", "wide", "base", "stare") gen "So... Is that a yes?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]!" ("smile", "happyCl", "base", "mid") + her "Yes, [name_genie_hermione]!" ("smile", "happyCl", "base", "mid") her "I shall do my best..." ("soft", "narrow", "base", "mid_soft", emote="happy") jump hg_pf_titjob_1 label hg_pf_titjob_T5_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], would you like to earn some house points again?" ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]..." ("base", "base", "base", "mid") + gen "[name_hermione_genie], would you like to earn some house points again?" ("base", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]..." ("base", "base", "base", "mid") her "What would I have to do to earn them?" ("open", "base", "base", "R") gen "Nothing you aren't already experienced with!" ("grin", xpos="far_left", ypos="head") gen "I'm just going to rub my cock between those precious tits of yours..." ("base", xpos="far_left", ypos="head") @@ -171,7 +171,7 @@ label hg_pf_titjob_T5_repeat: her "For {number=current_payout} house points?" ("open", "base", "angry", "mid") gen "{number=current_payout} house points, as always..." ("base", xpos="far_left", ypos="head") her "(...)" ("annoyed", "narrow", "angry", "R") - her "Very well, [genie_name]." ("open", "closed", "base", "mid") + her "Very well, [name_genie_hermione]." ("open", "closed", "base", "mid") her "But you have to promise me that you'll make it quick..." ("annoyed", "base", "angry", "mid") gen "..............." ("grin", xpos="far_left", ypos="head") @@ -185,30 +185,30 @@ label hg_pf_titjob_T5_repeat: label hg_pf_titjob_T6_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "How do you feel about wrapping those nice tits of yours around my cock again?" ("base", xpos="far_left", ypos="head") her "Only nice?" ("upset", "closed", "base", "mid") gen "Fine, fine." ("base", xpos="far_left", ypos="head") gen "How do you feel about wrapping those perfect tits of yours around my cock again?" ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Of course, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") gen "You like it when I call them perfect don't you?" ("base", xpos="far_left", ypos="head") her "............." ("base", "narrow", "worried", "down") gen "You don't have to answer, just bring those {b}perfect{/b} tits over here." ("grin", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("base", "happyCl", "worried", "mid") - her "yes, [genie_name]..." ("grin", "base", "base", "R") + her "yes, [name_genie_hermione]..." ("grin", "base", "base", "R") jump hg_pf_titjob_2 label hg_pf_titjob_T6_intro_E2: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I would very much like to see those perfect fun-bags of yours again..." ("base", xpos="far_left", ypos="head") gen "Wrapped around my cock!" ("grin", xpos="far_left", ypos="head") her "Oh...{w=0.4} Again?" ("base", "narrow", "worried", "down") her "For {number=current_payout} house points?" ("soft", "narrow", "base", "mid_soft") - gen "Yes, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "(...)" ("annoyed", "base", "base", "R") her "Very well then..." ("smile", "happyCl", "base", "mid") gen "Splendid!" ("grin", xpos="far_left", ypos="head") @@ -217,7 +217,7 @@ label hg_pf_titjob_T6_intro_E2: label hg_pf_titjob_T6_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], how would you like wrapping those perfect tits of yours around my cock again?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how would you like wrapping those perfect tits of yours around my cock again?" ("base", xpos="far_left", ypos="head") her "As long as I am getting paid..." ("soft", "happy", "base", "R") gen "Well, then... Time to earn those points!" ("grin", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("base", "narrow", "base", "up") @@ -243,7 +243,7 @@ label hg_pf_titjob_1: her "..........." ("disgust", "narrow", "worried", "down") if hg_pf_titjob.counter == 1: her "(It's so big...)" ("disgust", "narrow", "base", "down") - gen "Get to it, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Get to it, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Right..." ("angry", "happyCl", "worried", "mid", emote="sweat") $ hermione.strip("robe", "accessory") @@ -286,10 +286,10 @@ label hg_pf_titjob_1: gen "It feels amazing." ("base", xpos="far_left", ypos="head") her "Oh..." ("base", "happy", "base", "mid") her "......" - her "Thank you [genie_name]." ("base", "base", "base", "R") + her "Thank you [name_genie_hermione]." ("base", "base", "base", "R") her "............" ("annoyed", "narrow", "worried", "down") - her "[genie_name]...?" ("soft", "base", "base", "mid") + her "[name_genie_hermione]...?" ("soft", "base", "base", "mid") gen "What is it?" ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "7") her "Promise me you won't cum on my... face..." ("upset", "wink", "base", "mid") @@ -300,7 +300,7 @@ label hg_pf_titjob_1: "\"I promise not to cover that sweet little face of yours...\"": $ d_flag_01 = True #If TRUE Genie promised to warn her. $ dynamic_cg("herm_boob", "base", "6") - her "Thank you, [genie_name]." ("base", "happy", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happy", "base", "mid") "\"*Hmm*... We'll see how I feel later.\"": $ dynamic_cg("herm_boob", "base", "8") her "*Hmph*..." ("annoyed", "narrow", "annoyed", "mid") @@ -310,7 +310,7 @@ label hg_pf_titjob_1: her "............." ("disgust", "narrow", "worried", "down") gen "............." ("base", xpos="far_left", ypos="head") her "............." ("normal", "happyCl", "worried", "mid") - her "*Err*... [genie_name]?" + her "*Err*... [name_genie_hermione]?" gen "Yes, what is it?" ("base", xpos="far_left", ypos="head") her "Are you almost...{w=0.3} there?" ("open", "base", "base", "mid") gen "Why?" ("base", xpos="far_left", ypos="head") @@ -322,10 +322,10 @@ label hg_pf_titjob_1: her "She's already pretty upset with how much time I'm spending in here..." gen "Do you need the points or not?" ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "6") - her "I do, [genie_name]! I'm sorry..." ("grin", "happyCl", "worried", "mid") + her "I do, [name_genie_hermione]! I'm sorry..." ("grin", "happyCl", "worried", "mid") her "I'll just keep stroking it then..." gen "Well, there is a way to finish this up a bit faster..." ("base", xpos="far_left", ypos="head") - her "Really? What is it, [genie_name]?" ("base", "base", "base", "R") + her "Really? What is it, [name_genie_hermione]?" ("base", "base", "base", "R") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -354,7 +354,7 @@ label hg_pf_titjob_1: her "I'm sure he could get a good glimpse of my bra..." ("open", "base", "base", "R") gen "Do you have no shame?" ("grin", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "5") - her "[genie_name]! I was just trying to cool off..." ("base", "narrow", "worried", "down") + her "[name_genie_hermione]! I was just trying to cool off..." ("base", "narrow", "worried", "down") gen "I'm just kidding, keep going..." ("base", xpos="far_left", ypos="head") her ".............." ("base", "narrow", "base", "mid_soft") $ dynamic_cg("herm_boob", "base", "9") @@ -365,11 +365,11 @@ label hg_pf_titjob_1: $ dynamic_cg("herm_boob", "base", "10") her "Then suddenly I felt something sticky on my legs as he shot several ropes of cum under the table!" ("open_tongue", "narrow", "annoyed", "up") gen "!!!" ("angry", xpos="far_left", ypos="head") - her "Come on, [genie_name]! Cover me as well! Cover my tits in your cum!" ("grin", "base", "angry", "mid") + her "Come on, [name_genie_hermione]! Cover me as well! Cover my tits in your cum!" ("grin", "base", "angry", "mid") "\"Stick out your tongue!\"": $ dynamic_cg("herm_boob", "base", "5") - her "[genie_name]?" ("open", "wink", "base", "mid") + her "[name_genie_hermione]?" ("open", "wink", "base", "mid") gen "Just do it, slut!" ("angry", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "11") her "*Ehm*...{w=0.4} *Ike* *ees*?" ("open_wide_tongue", "narrow", "worried", "down") @@ -384,13 +384,13 @@ label hg_pf_titjob_1: her "I *eel* *ool*..." ("open_wide_tongue", "narrow", "worried", "down") gen "Yes! Drool all over those perfect tits of yours!" ("angry", xpos="far_left", ypos="head") her "*Erth-ect*?" ("open_tongue", "base", "base", "mid") - gen "As perfect as any mortal, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "As perfect as any mortal, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "11") her "......." ("base", "narrow", "base", "up") gen "Try to get it as close to the tip of my cock as you can..." ("base", xpos="far_left", ypos="head") her "............" ("normal", "happyCl", "worried", "mid") her "A-ha..." ("open_wide_tongue", "base", "base", "mid") - gen "Good, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her ".............." ("open_wide_tongue", "base", "base", "mid") gen "Yes, keep on stroking my cock." ("base", xpos="far_left", ypos="head") call nar(">You thrust up as she pushes her tits down causing the tip of your cock to touch her wet tongue.") @@ -418,7 +418,7 @@ label hg_pf_titjob_1: "-Cum in her mouth!-": $ her_mood += 3 call bld - gen "Here it comes, [hermione_name]!" ("angry", xpos="far_left", ypos="head") + gen "Here it comes, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "13") call her_chibi_scene("tj_pause", trans=d5) @@ -426,7 +426,7 @@ label hg_pf_titjob_1: her "What? already?!" ("shock", "wide", "base", "stare") gen "{size=+5}Yeah, your tits felt great!!!{/size}" ("angry", xpos="far_left", ypos="head") gen "{size=+5}You little whore!!!{/size}" ("angry", xpos="far_left", ypos="head") - her "No, [genie_name], wait, not on my face!" ("angry", "base", "base", "mid") + her "No, [name_genie_hermione], wait, not on my face!" ("angry", "base", "base", "mid") gen "{size=+5}Then open wide, slut!!{/size}" ("angry", xpos="far_left", ypos="head") her "Not my mou--" ("scream", "wide", "base", "stare") call nar(">You grab the back of Hermione's head and force your cock into her open mouth...") @@ -454,7 +454,7 @@ label hg_pf_titjob_1: her "......................." ("full_cum", "narrow", "worried", "down",cheeks="blush") gen "How are you feeling?" ("base", xpos="far_left", ypos="head") her "......................." ("full_cum", "narrow", "worried", "down",cheeks="blush") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") pause.2 call her_chibi_scene("tj_pause", trans=d5) @@ -479,7 +479,7 @@ label hg_pf_titjob_1: call nar(">Hermione lets go of your still pulsating cock...") her "*Ugh*...{w=0.4} You came so much!" ("angry", "happyCl", "worried", "mid", emote="sweat") her "I had to swallow most of it..." ("disgust", "narrow", "base", "down", emote="sweat") - gen "You did a great job, [hermione_name]!" ("grin", xpos="far_left", ypos="head") + gen "You did a great job, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") her "I don't want to hear it..." ("angry", "narrow", "angry", "R", emote="sweat") if game.daytime: her "I can't go to class like this..." ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -493,7 +493,7 @@ label hg_pf_titjob_1: gen "Then there wouldn't have been any clean up." ("base", xpos="far_left", ypos="head") her "Swallow? All of that?" ("angry", "narrow", "base", "down") her "I don't think I have enough room in my stomach..." - her "Could I please have my points now, [genie_name]?" ("soft", "base", "angry", "mid") + her "Could I please have my points now, [name_genie_hermione]?" ("soft", "base", "angry", "mid") "-Cover her tits!-": with hpunch @@ -529,7 +529,7 @@ label hg_pf_titjob_1: her ".........." ("soft", "base", "base", "mid",tears="soft") $ dynamic_cg("herm_boob", "base", "17") - her "[genie_name]! How could you cum this much?!" ("scream", "happyCl", "worried", "mid") + her "[name_genie_hermione]! How could you cum this much?!" ("scream", "happyCl", "worried", "mid") her "(It's like he dumped a bucket load all over my chest...)" ("disgust", "narrow", "base", "down") if game.daytime: her "I can't attend classes looking like this!" ("angry", "happyCl", "worried", "mid") @@ -537,7 +537,7 @@ label hg_pf_titjob_1: her "How am I supposed to go back to the Gryffindor common room like this?!" ("angry", "happyCl", "worried", "mid") gen "Just wipe it off..." ("base", xpos="far_left", ypos="head") her "..........................." ("angry", "narrow", "worried", "down") - her "I would like to get paid now, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "I would like to get paid now, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") $ achievements.unlock("hertits") @@ -569,7 +569,7 @@ label hg_pf_titjob_2: call her_chibi_scene("tj", trans=fade) call ctc - her "Do you enjoy it when I move them like this, [genie_name]?" ("grin", "base", "base", "R", ypos="head", flip=False) + her "Do you enjoy it when I move them like this, [name_genie_hermione]?" ("grin", "base", "base", "R", ypos="head", flip=False) call nar(">Hermione starts alternating her breasts as she tit-fucks you.") gen "Actually...{w=0.3} Yes! Very much!" ("grin", xpos="far_left", ypos="head") @@ -578,7 +578,7 @@ label hg_pf_titjob_2: gen "Yes, just like that..." ("base", xpos="far_left", ypos="head") gen "*Hmm*... You're getting pretty good at this." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "21") - her "Thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") her "I figured with how kind you've been it's the least I could do..." menu: @@ -591,7 +591,7 @@ label hg_pf_titjob_2: $ dynamic_cg("herm_boob", "base", "23") her "It's magnificent!" ("upset", "closed", "base", "mid") gen "go on..." ("base", xpos="far_left", ypos="head") - her "[genie_name], If you say that I have the perfect tits..." ("soft", "narrow", "annoyed", "up") + her "[name_genie_hermione], If you say that I have the perfect tits..." ("soft", "narrow", "annoyed", "up") call nar(">She squeezes her tits around your cock.") $ dynamic_cg("herm_boob", "base", "22") her "This, has to be the perfect cock!" ("grin", "narrow", "base", "dead") @@ -608,7 +608,7 @@ label hg_pf_titjob_2: $ dynamic_cg("herm_boob", "base", "25") her "I think your perfect cock should be shared around the school." ("scream", "closed", "angry", "mid") gen "Well, I wouldn't go that far--" ("base", xpos="far_left", ypos="head") - her "Listen to me, [genie_name]!" ("angry", "closed", "angry", "mid") + her "Listen to me, [name_genie_hermione]!" ("angry", "closed", "angry", "mid") her "I think it should be worshipped as part of the school curriculum!" ("soft", "narrow", "annoyed", "up") $ dynamic_cg("herm_boob", "base", "24") her "Girls will be required to come in and bask in its glory!" ("open_tongue", "narrow", "annoyed", "up") @@ -620,7 +620,7 @@ label hg_pf_titjob_2: her "Too much?" ("angry", "wink", "base", "mid") gen "Yeah, just a bit." ("base", xpos="far_left", ypos="head") - her "Sorry [genie_name], I got a bit carried away..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "Sorry [name_genie_hermione], I got a bit carried away..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "No worries. Just keep on massaging it with those big tits of yours." ("base", xpos="far_left", ypos="head") call her_chibi_scene("tj", trans=d5) @@ -662,7 +662,7 @@ label hg_pf_titjob_2: $ dynamic_cg("herm_boob", "base", "23") her "..................................." ("grin", "narrow", "base", "dead") $ dynamic_cg("herm_boob", "base", "21") - her "How was that, [genie_name]?" ("angry", "wink", "base", "mid") + her "How was that, [name_genie_hermione]?" ("angry", "wink", "base", "mid") gen "Perfect." ("base", xpos="far_left", ypos="head") "\"This is really good. Did you practise?\"": @@ -712,7 +712,7 @@ label hg_pf_titjob_2: her "As I was \"practising\" on her arm, she might have..." ("open", "base", "base", "R") $ dynamic_cg("herm_boob", "base", "24") her "Orgasmed..." ("soft", "narrow", "annoyed", "up") - gen "[hermione_name], you little slut!" ("angry", xpos="far_left", ypos="head") + gen "[name_hermione_genie], you little slut!" ("angry", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "23") her "It was just practice, nothing else!" ("grin", "happyCl", "worried", "mid", emote="sweat") her "*Err*... I mean..." ("angry", "wink", "base", "mid") @@ -745,14 +745,14 @@ label hg_pf_titjob_2_continue: her "I do not!" ("angry", "narrow", "base", "down", ypos="head", flip=False) gen "I know. Just say it." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "22") - her "My father? That's gross, [genie_name]! How could you suggest that I would want to fu--" ("soft", "narrow", "annoyed", "up") + her "My father? That's gross, [name_genie_hermione]! How could you suggest that I would want to fu--" ("soft", "narrow", "annoyed", "up") gen "Come on...{w=0.3} Just make something up." ("base", xpos="far_left", ypos="head") her "..........." ("angry", "wink", "base", "mid") her "Fine..." ("open", "narrow", "worried", "down") $ dynamic_cg("herm_boob", "base", "21") her "Sometimes when I hug him..." her "......." - gen "Go on [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Go on [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "22") her "I press my tits against him..." ("soft", "narrow", "annoyed", "up") gen "Do you think he enjoys it?" ("base", xpos="far_left", ypos="head") @@ -824,7 +824,7 @@ label hg_pf_titjob_2_cumming: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "I love your perfect tits!" ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_boob", "base", "22") - her "Thank you [genie_name]." ("soft", "narrow", "annoyed", "up", ypos="head", flip=False) + her "Thank you [name_genie_hermione]." ("soft", "narrow", "annoyed", "up", ypos="head", flip=False) $ dynamic_cg("herm_boob", "base", "23") her "Shall I rub them some more then?" call nar(">Hermione presses her tits together against your cock and begins rubbing it rapidly...") @@ -891,16 +891,16 @@ label hg_pf_titjob_2_cumming: her "Oh. I suppose so..." ("grin", "base", "base", "R") her "I mean... it doesn't taste that bad and I don't have to clean up afterwards." ("base", "happyCl", "base", "mid") gen "*Hmm*... You sure you wouldn't like people seeing your tits covered in cum..." ("base", xpos="far_left", ypos="head") - her "What? Walk around school covered in your cum, [genie_name]?" ("angry", "wink", "base", "mid") + her "What? Walk around school covered in your cum, [name_genie_hermione]?" ("angry", "wink", "base", "mid") if her_tier < 6: - her "With all due respect, [genie_name]..." ("upset", "closed", "base", "mid") + her "With all due respect, [name_genie_hermione]..." ("upset", "closed", "base", "mid") her "I don't plan on getting a reputation as a cum-loving whore..." ("angry", "wink", "base", "mid") her "Not like those Slytherin girls..." ("angry", "narrow", "angry", "R") else: her "*Hmm*..." ("soft", "happy", "base", "R") her "Maybe if you ask nicely..." ("soft", "narrow", "base", "mid_soft") - her "Will that be all, [genie_name]?" ("base", "closed", "base", "mid") + her "Will that be all, [name_genie_hermione]?" ("base", "closed", "base", "mid") "-Cum on her tits-": call her_chibi_scene("tj_pause", trans=d5) @@ -941,12 +941,12 @@ label hg_pf_titjob_2_cumming: call play_music("chipper_doodle") # HERMIONE'S THEME. $ dynamic_cg("herm_boob", "base", "35") - her "[genie_name]!" ("open", "happyCl", "worried", "mid") + her "[name_genie_hermione]!" ("open", "happyCl", "worried", "mid") gen "What?" ("base", xpos="far_left", ypos="head") her "You've covered my chest in cum..." ("angry", "happyCl", "worried", "mid") $ dynamic_cg("herm_boob", "base", "34") her "There's so much..." ("open", "base", "base", "R") - gen "It's your fault, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "It's your fault, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "My fault?" ("angry", "base", "base", "mid") gen "Yes! It's those perfect tits of yours..." ("base", xpos="far_left", ypos="head") gen "They just felt too good..." ("base", xpos="far_left", ypos="head") @@ -958,10 +958,10 @@ label hg_pf_titjob_2_cumming: gen "You could lick them clean..." ("base", xpos="far_left", ypos="head") if her_tier < 6: her "You want me to lick your cum off my tits?" ("soft", "narrow", "annoyed", "up") - her "I don't think so, [genie_name]..." ("soft", "narrow", "annoyed", "up") + her "I don't think so, [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") else: her "*Hmm*..." ("soft", "happy", "base", "R") her "Next time maybe... If you ask nicely..." ("grin", "happyCl", "base", "mid_soft") - her "Will that be all, [genie_name]?" ("base", "closed", "base", "mid") + her "Will that be all, [name_genie_hermione]?" ("base", "closed", "base", "mid") jump end_hg_pf_titjob diff --git a/game/scripts/characters/hermione/events/favors/grope_her.rpy b/game/scripts/characters/hermione/events/favors/grope_her.rpy index 2ed12306..d06e5af8 100644 --- a/game/scripts/characters/hermione/events/favors/grope_her.rpy +++ b/game/scripts/characters/hermione/events/favors/grope_her.rpy @@ -51,17 +51,17 @@ label hg_pf_grope: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") else: - gen "You may leave now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You may leave now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") if her_tier <= 2: her ".................." ("annoyed", "base", "worried", "R") - her "Thank you, [genie_name]..." + her "Thank you, [name_genie_hermione]..." elif her_tier <= 4: her ".................." ("base", "base", "base", "R") - her "Thank you, [genie_name]..." ("soft", "base", "base", "mid") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "mid") else: her ".................." ("soft", "narrow", "annoyed", "up") - her "Thank you, [genie_name]..." ("soft", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]..." ("soft", "narrow", "base", "mid_soft") if game.daytime: her "Now if you don't mind, I'd better go. My classes are about to start." @@ -99,7 +99,7 @@ label hg_pf_grope: # The heart icons for these events are 'black' label hg_pf_grope_T1_fail_intro: - gen "[hermione_name], would you mind if I play with your tits a little?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], would you mind if I play with your tits a little?" ("base", xpos="far_left", ypos="head") her "Play with...?" ("shock", "wide", "base", "stare") her "My tits?!" ("angry", "wide", "base", "mid") gen "Or your butt! I haven't fully decided yet!" ("grin", xpos="far_left", ypos="head") @@ -109,9 +109,9 @@ label hg_pf_grope_T1_fail_intro: jump too_much label hg_pf_grope_T1_fail_repeat: - gen "[hermione_name], I'd like to grope you a little!" ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I'd like to grope you a little!" ("grin", xpos="far_left", ypos="head") her "This again...?" ("angry", "base", "angry", "mid") - her "I've told you before, [genie_name], absolutely not!!" ("scream", "closed", "angry", "mid") + her "I've told you before, [name_genie_hermione], absolutely not!!" ("scream", "closed", "angry", "mid") her "By Merlin's beard..." ("angry", "base", "angry", "mid") gen "Please?" ("base", xpos="far_left", ypos="head") her "I'm leaving! Good day, Sir!" ("soft", "closed", "base", "mid") @@ -131,8 +131,8 @@ label hg_pf_grope_T1_fail_repeat: label hg_pf_grope_T2_intro_E1: stop music fadeout 2.0 - gen "Come closer [hermione_name]... Hop around my desk..." ("base", xpos="far_left", ypos="head") - her "*Ehm*... very well, [genie_name]." ("disgust", "narrow", "base", "down") + gen "Come closer [name_hermione_genie]... Hop around my desk..." ("base", xpos="far_left", ypos="head") + her "*Ehm*... very well, [name_genie_hermione]." ("disgust", "narrow", "base", "down") call her_walk("desk", "base", reduce=0.8) call blkfade @@ -142,12 +142,12 @@ label hg_pf_grope_T2_intro_E1: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "[genie_name].....?" ("annoyed", "base", "worried", "R", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("annoyed", "base", "worried", "R", ypos="head", flip=False) gen "..." ("base", xpos="far_left", ypos="head") menu: "\"I'm gonna molest your tits now.\"": - her "What? What do you mean, [genie_name]--" ("soft", "wide", "base", "stare") + her "What? What do you mean, [name_genie_hermione]--" ("soft", "wide", "base", "stare") if hermione.is_worn("top"): call nar(">You reach out swiftly and grab both of her tits through her clothes...") elif hermione.is_worn("bra"): @@ -164,7 +164,7 @@ label hg_pf_grope_T2_intro_E1: label hg_pf_grope_T2_E1: stop music fadeout 2.0 - gen "Come closer [hermione_name]... Hop around my desk..." ("base", xpos="far_left", ypos="head") + gen "Come closer [name_hermione_genie]... Hop around my desk..." ("base", xpos="far_left", ypos="head") her "..............." ("annoyed", "base", "angry", "mid") call her_walk("desk", "base", reduce=0.8) @@ -175,7 +175,7 @@ label hg_pf_grope_T2_E1: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "[genie_name].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) gen "..." ("base", xpos="far_left", ypos="head") menu: @@ -202,31 +202,31 @@ label hg_pf_grope_T2_E1: # Event 2 (i) - Hermione is indignant. label hg_pf_grope_T3_intro_E1: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "How would you like to earn some house points today?" ("base", xpos="far_left", ypos="head") her "And what would I need to do to earn them?" ("annoyed", "narrow", "annoyed", "mid") gen "Oh nothing too out of the ordinary." ("base", xpos="far_left", ypos="head") gen "You just stand here while I grope you for a bit..." ("base", xpos="far_left", ypos="head") - her "[genie_name]... I'd prefer it if you wouldn't make me such offers..." ("annoyed", "narrow", "annoyed", "mid") + her "[name_genie_hermione]... I'd prefer it if you wouldn't make me such offers..." ("annoyed", "narrow", "annoyed", "mid") gen "Why? Too hard to resist?" ("base", xpos="far_left", ypos="head") - her "Nothing like that, [genie_name]." + her "Nothing like that, [name_genie_hermione]." gen "Well, how about you come closer and bare your tits for me...?" ("base", xpos="far_left", ypos="head") gen "I feel like playing with them a little..." ("grin", xpos="far_left", ypos="head") her "!!!" ("open", "base", "base", "mid") gen "Or your butt..." ("base", xpos="far_left", ypos="head") gen "I'd like to give it a good squeeze." ("grin", xpos="far_left", ypos="head") - her "[genie_name]! Don't you think this is too much?" ("disgust", "narrow", "base", "mid_soft") + her "[name_genie_hermione]! Don't you think this is too much?" ("disgust", "narrow", "base", "mid_soft") gen "You think?" ("base", xpos="far_left", ypos="head") her "I am not one of those harlots from Slytherin, you know..." gen "I know... You are from {i}Gryfonmon{/i}... or something..." ("base", xpos="far_left", ypos="head") #<- GRYFFINDOR MISSPELLED ON PURPOSE - her "And if I don't feel like it, I don't have to sell you a single favour, [genie_name]!" ("annoyed", "base", "worried", "R") + her "And if I don't feel like it, I don't have to sell you a single favour, [name_genie_hermione]!" ("annoyed", "base", "worried", "R") gen "Of course..." ("base", xpos="far_left", ypos="head") her "..................." ("annoyed", "narrow", "angry", "R") gen "I'll give you {number=current_payout} house points for this." ("base", xpos="far_left", ypos="head") her "......................." ("disgust", "narrow", "base", "mid_soft") - her "All you are going to do is watch, [genie_name]?" + her "All you are going to do is watch, [name_genie_hermione]?" gen "Well, I feel more like touching, actually..." ("base", xpos="far_left", ypos="head") her "...................................." @@ -238,7 +238,7 @@ label hg_pf_grope_T3_intro_E1: call her_chibi_scene("behind_desk_front", trans=fade) pause .5 - her "[genie_name].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) gen "..." ("base", xpos="far_left", ypos="head") menu: @@ -249,7 +249,7 @@ label hg_pf_grope_T3_intro_E1: call nar(">You reach out swiftly and grab both of her tits through her bra...") else: call nar(">You reach out swiftly and grab both of her tits...") #Fallback, she'd usually wear a bra on this level. - her "[genie_name].....?" ("disgust", "happyCl", "worried", "mid") + her "[name_genie_hermione].....?" ("disgust", "happyCl", "worried", "mid") jump hg_pf_grope_breasts_T3 @@ -259,8 +259,8 @@ label hg_pf_grope_T3_intro_E1: jump hg_pf_grope_ass_T3 label hg_pf_grope_T3_E1: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "How would you like to earn some house points today?" ("base", xpos="far_left", ypos="head") her "And what would I need to do to earn them?" ("annoyed", "narrow", "annoyed", "mid") gen "Get squeezed!" ("grin", xpos="far_left", ypos="head") @@ -276,13 +276,13 @@ label hg_pf_grope_T3_E1: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "[genie_name].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("annoyed", "narrow", "angry", "R", ypos="head", flip=False) gen "..." ("base", xpos="far_left", ypos="head") menu: "\"I'm gonna molest your tits now.\"": #call nar(">You reach out swiftly and grab both of her tits through her uniform...") - her "[genie_name].....?" ("disgust", "happyCl", "worried", "mid") + her "[name_genie_hermione].....?" ("disgust", "happyCl", "worried", "mid") jump hg_pf_grope_breasts_T3 @@ -298,11 +298,11 @@ label hg_pf_grope_T3_E1: # Event 2 (i) - Hermione ejoys it. label hg_pf_grope_T4_intro_E1: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "Would you like to join me again?" ("base", xpos="far_left", ypos="head") gen "Behind my desk." ("grin", xpos="far_left", ypos="head") - her "Are you going to grope me again, [genie_name]?" ("soft", "narrow", "base", "mid_soft") + her "Are you going to grope me again, [name_genie_hermione]?" ("soft", "narrow", "base", "mid_soft") gen "You just read my mind!" ("grin", xpos="far_left", ypos="head") her "..................." ("disgust", "narrow", "base", "down") @@ -314,7 +314,7 @@ label hg_pf_grope_T4_intro_E1: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "[genie_name].....?" ("base", "narrow", "worried", "down", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("base", "narrow", "worried", "down", ypos="head", flip=False) gen "..." ("base", xpos="far_left", ypos="head") menu: @@ -329,9 +329,9 @@ label hg_pf_grope_T4_intro_E1: jump hg_pf_grope_ass_T4 label hg_pf_grope_T4_intro_E2: - gen "[hermione_name]. Come here and join me..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]. Come here and join me..." ("base", xpos="far_left", ypos="head") gen "I feel like playing with you a little." ("grin", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("soft", "base", "base", "R") + her "Yes, [name_genie_hermione]..." ("soft", "base", "base", "R") call her_walk("desk", "base", reduce=0.8) call blkfade @@ -341,7 +341,7 @@ label hg_pf_grope_T4_intro_E2: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "[genie_name].....?" ("soft", "narrow", "worried", "down", ypos="head", flip=False) + her "[name_genie_hermione].....?" ("soft", "narrow", "worried", "down", ypos="head", flip=False) gen "Yes?" ("base", xpos="far_left", ypos="head") her "Are you going to grope my breasts again?" ("soft", "base", "base", "mid") her "Or my bum?...." ("soft", "narrow", "base", "mid_soft") @@ -349,7 +349,7 @@ label hg_pf_grope_T4_intro_E2: menu: "\"I'm gonna play with your tits today.\"": - her "Of course, [genie_name]." ("base", "narrow", "worried", "down") + her "Of course, [name_genie_hermione]." ("base", "narrow", "worried", "down") if not hermione.is_worn("top") and hermione.is_worn("bra"): call nar(">You reach out swiftly and grab both of her tits through her bra...") @@ -361,13 +361,13 @@ label hg_pf_grope_T4_intro_E2: jump hg_pf_grope_breasts_T4 "\"I'm gonna play with your butt today.\"": - her "Of course, [genie_name]." ("base", "narrow", "worried", "down") + her "Of course, [name_genie_hermione]." ("base", "narrow", "worried", "down") call nar(">You reach out and place your hand on her butt cheeks...") jump hg_pf_grope_ass_T4 label hg_pf_grope_T4_E2: - gen "[hermione_name]. Come here and let me grope you!" ("grin", xpos="far_left", ypos="head") - her "Of course, [genie_name]..." ("base", "narrow", "base", "mid_soft") + gen "[name_hermione_genie]. Come here and let me grope you!" ("grin", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") call her_walk("desk", "base", reduce=0.8) call blkfade @@ -377,7 +377,7 @@ label hg_pf_grope_T4_E2: call her_chibi_scene("behind_desk_front", trans=fade) pause.5 - her "Are you going to grope my breasts today, [genie_name]?" ("soft", "narrow", "base", "R_soft", ypos="head", flip=False) + her "Are you going to grope my breasts today, [name_genie_hermione]?" ("soft", "narrow", "base", "R_soft", ypos="head", flip=False) her "Or my bum?...." ("soft", "narrow", "base", "mid_soft") gen "*Hmm*... What would you like?" ("base", xpos="far_left", ypos="head") @@ -386,15 +386,15 @@ label hg_pf_grope_T4_E2: if random_number == 1: her "I wouldn't mind it if you massaged my breasts a little..." ("soft", "narrow", "base", "R_soft") elif random_number == 2: - her "I wouldn't mind it if you caressed my bum a bit, [genie_name]..." ("soft", "narrow", "worried", "down") + her "I wouldn't mind it if you caressed my bum a bit, [name_genie_hermione]..." ("soft", "narrow", "worried", "down") else: - her "I wouldn't mind either today, [genie_name]." ("soft", "narrow", "base", "R_soft") + her "I wouldn't mind either today, [name_genie_hermione]." ("soft", "narrow", "base", "R_soft") gen "Very well then..." ("base", xpos="far_left", ypos="head") menu: "\"I'm gonna molest your tits now.\"": - her "Yes, [genie_name]." ("base", "narrow", "annoyed", "up") + her "Yes, [name_genie_hermione]." ("base", "narrow", "annoyed", "up") if not hermione.is_worn("top") and hermione.is_worn("bra"): call nar(">You reach out swiftly and grab both of her tits through her bra...") @@ -406,7 +406,7 @@ label hg_pf_grope_T4_E2: jump hg_pf_grope_breasts_T4 "\"I'm gonna play with your butt now.\"": - her "Yes, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Yes, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") call nar(">You reach out and place your hand on her butt cheeks...") jump hg_pf_grope_ass_T4 diff --git a/game/scripts/characters/hermione/events/favors/grope_her_ass.rpy b/game/scripts/characters/hermione/events/favors/grope_her_ass.rpy index 35f61a26..4cf1b298 100644 --- a/game/scripts/characters/hermione/events/favors/grope_her_ass.rpy +++ b/game/scripts/characters/hermione/events/favors/grope_her_ass.rpy @@ -6,14 +6,14 @@ label hg_pf_grope_ass_T2: stop music fadeout 5.0 call her_chibi_scene("grope_ass_front", trans=d7) - her "[genie_name]!?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) - gen "Relax, [hermione_name]. It will be the easiest {number=current_payout} points you've ever made, I promise." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) + gen "Relax, [name_hermione_genie]. It will be the easiest {number=current_payout} points you've ever made, I promise." ("base", xpos="far_left", ypos="head") gen "All I am going to do is squeeze your little butt a couple of times..." ("base", xpos="far_left", ypos="head") her "No! I demand you to stop!" ("scream", "closed", "angry", "mid", cheeks="blush") call her_chibi_scene("behind_desk_front", trans=d5) - her "This is inappropriate, [genie_name]................" ("angry", "closed", "angry", "mid", cheeks="blush") + her "This is inappropriate, [name_genie_hermione]................" ("angry", "closed", "angry", "mid", cheeks="blush") gen "Nobody needs to know how exactly you got the points..." ("base", xpos="far_left", ypos="head") her "But..." ("annoyed", "base", "angry", "mid") gen "Do it for {i}gravenboor{/i}..." ("base", xpos="far_left", ypos="head") @@ -26,10 +26,10 @@ label hg_pf_grope_ass_T2: menu: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - "\"Yes. Turn around, [hermione_name].\"": # Can fail + "\"Yes. Turn around, [name_hermione_genie].\"": # Can fail jump hg_pf_grope_ass_T2_back - "\"No. Just stand still, [hermione_name].\"": # Fails + "\"No. Just stand still, [name_hermione_genie].\"": # Fails jump hg_pf_grope_ass_T2_front label hg_pf_grope_ass_T2_front: @@ -41,13 +41,13 @@ label hg_pf_grope_ass_T2_front: call ctc her "(...)" ("disgust", "narrow", "base", "down", cheeks="blush") - her "I'm sorry, [genie_name]. But I can't do this!" ("soft", "narrow", "base", "down", cheeks="blush") + her "I'm sorry, [name_genie_hermione]. But I can't do this!" ("soft", "narrow", "base", "down", cheeks="blush") call her_chibi_scene("behind_desk_front", trans=d7) - gen "Can't do what [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Can't do what [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I can't do it when I can see you looking at me..." ("mad", "happyCl", "worried", "mid", cheeks="blush") - gen "That's the whole point [hermione_name], I want to look at you..." ("base", xpos="far_left", ypos="head") + gen "That's the whole point [name_hermione_genie], I want to look at you..." ("base", xpos="far_left", ypos="head") her "............." ("annoyed", "base", "worried", "mid", cheeks="blush") show screen blkfade @@ -59,7 +59,7 @@ label hg_pf_grope_ass_T2_front: hide screen blkfade with d3 - gen "What's the problem [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What's the problem [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "It's demeaning!" ("angry", "closed", "angry", "mid", cheeks="blush") gen "Wouldn't it be worse if I didn't want to look at you?" ("base", xpos="far_left", ypos="head") her "*ARGH* Whatever!!!" ("scream", "base", "angry", "mid", cheeks="blush") @@ -75,15 +75,15 @@ label hg_pf_grope_ass_T2_front: label hg_pf_grope_ass_T2_back: call her_chibi_scene("behind_desk_front", trans=d7) - her "As you say, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "As you say, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") call her_chibi_scene("behind_desk_back", trans=d5) call ctc her "............." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "..........................." ("annoyed", "base", "angry", "mid", cheeks="blush") - her "[genie_name], I would like to be done with this sooner rather than later..." ("soft", "closed", "angry", "mid", cheeks="blush") - gen "Don't rush me [hermione_name]... Let me savour the moment..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I would like to be done with this sooner rather than later..." ("soft", "closed", "angry", "mid", cheeks="blush") + gen "Don't rush me [name_hermione_genie]... Let me savour the moment..." ("base", xpos="far_left", ypos="head") her "............................." ("annoyed", "narrow", "angry", "R", cheeks="blush") menu: @@ -98,7 +98,7 @@ label hg_pf_grope_ass_T2_back: # Slap her! call slap_her #Calls slapping sound and visual. her "!!!!!!!!!!!!!" ("scream", "wide", "base", "stare", cheeks="blush") - her "[genie_name]!!?" ("scream", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione]!!?" ("scream", "wide", "base", "stare", cheeks="blush") menu: "\"Fine, fine... I just couldn't resist....\"": @@ -113,7 +113,7 @@ label hg_pf_grope_ass_T2_back: # Slap her! call slap_her #Calls slapping sound and visual. her "!!!!!!!!!!!!!" ("scream", "wide", "base", "stare", cheeks="blush") - her "[genie_name], what are you doing!?" ("angry", "closed", "angry", "mid", cheeks="blush") + her "[name_genie_hermione], what are you doing!?" ("angry", "closed", "angry", "mid", cheeks="blush") her "You said all you were going to do is touch!" ("angry", "base", "angry", "mid", cheeks="blush") menu: @@ -131,10 +131,10 @@ label hg_pf_grope_ass_T2_back: her "Ouch! It hurts!" ("angry", "closed", "angry", "mid", cheeks="blush") her "This is so demeaning!" ("angry", "base", "angry", "mid", cheeks="blush") her "You said all you were going to do is touch..." ("angry", "base", "angry", "mid", cheeks="blush") - gen "Just stand still, [hermione_name]!" ("angry", xpos="far_left", ypos="head") - her "I don't think so, [genie_name]!" ("angry", "happyCl", "worried", "mid", cheeks="blush") + gen "Just stand still, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") + her "I don't think so, [name_genie_hermione]!" ("angry", "happyCl", "worried", "mid", cheeks="blush") her "No amount of points are worth this humiliation!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") - her "You are abusing your power, [genie_name]!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") + her "You are abusing your power, [name_genie_hermione]!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") gen "What?" ("angry", xpos="far_left", ypos="head") her "I'm leaving!" ("angry", "happyCl", "worried", "mid", cheeks="blush", ypos="head", flip=False) @@ -145,7 +145,7 @@ label hg_pf_grope_ass_T2_back: gen "*Tsk*..." ("angry", xpos="far_left", ypos="head") "\"I... I apologise...\"": gen "...... It's not my fault......" ("base", xpos="far_left", ypos="head") - her "An apology won't be enough, [genie_name]!" ("angry", "base", "angry", "mid", cheeks="blush") + her "An apology won't be enough, [name_genie_hermione]!" ("angry", "base", "angry", "mid", cheeks="blush") gen "What else do you want? More points?" ("base", xpos="far_left", ypos="head") her "Yes, I believe I'm owed at least that much!" ("angry", "base", "angry", "mid", cheeks="blush") gen "{number=current_payout} is what we agreed on. You won't get any more than that." ("base", xpos="far_left", ypos="head") @@ -165,7 +165,7 @@ label hg_pf_grope_ass_T2_back: jump end_hermione_event "\"You are not getting any points for this!\"": - her "Ha! See if I care, [genie_name]!" ("angry", "base", "angry", "mid", cheeks="blush") + her "Ha! See if I care, [name_genie_hermione]!" ("angry", "base", "angry", "mid", cheeks="blush") call her_walk(action="leave") @@ -184,7 +184,7 @@ label hg_pf_grope_ass_T2_back: her "........................" ("angry", "base", "angry", "mid", cheeks="blush") her "This is not fair..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") gen "What? Hey, wait, don't you start crying on me..." ("base", xpos="far_left", ypos="head") - her "I hate you, [genie_name]! I hate you!" ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="messy") + her "I hate you, [name_genie_hermione]! I hate you!" ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="messy") # Hermione runs out of the room. call her_walk(action="run", xpos="door", speed=2, reduce=True) @@ -231,19 +231,19 @@ label hg_pf_grope_ass_T2_continue: label hg_pf_grope_ass_T3: call her_chibi_scene("behind_desk_front", trans=d7) - her "Do you want me to turn around then, [genie_name]?" ("base", "base", "base", "R", cheeks="blush", ypos="head", flip=False) + her "Do you want me to turn around then, [name_genie_hermione]?" ("base", "base", "base", "R", cheeks="blush", ypos="head", flip=False) call play_music("playful_tension") # SEX THEME. menu: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - "\"Yes. Turn around, [hermione_name].\"": - her "As you say, [genie_name]..." ("base", "base", "base", "R", cheeks="blush") + "\"Yes. Turn around, [name_hermione_genie].\"": + her "As you say, [name_genie_hermione]..." ("base", "base", "base", "R", cheeks="blush") jump hg_pf_grope_ass_T3_back - "\"No. Just stand still, [hermione_name].\"": - her "As you say, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush", ypos="head", flip=False) + "\"No. Just stand still, [name_hermione_genie].\"": + her "As you say, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush", ypos="head", flip=False) jump hg_pf_grope_ass_T3_front @@ -252,8 +252,8 @@ label hg_pf_grope_ass_T3_front: with d7 call ctc - her "[genie_name], please hurry up, before someone discovers us like this..." ("soft", "base", "base", "R", cheeks="blush", ypos="head", flip=False) - gen "What's the problem, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], please hurry up, before someone discovers us like this..." ("soft", "base", "base", "R", cheeks="blush", ypos="head", flip=False) + gen "What's the problem, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "You know you are doing this for your house." ("base", xpos="far_left", ypos="head") her "I do know." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "But not everyone would see it that way..." ("annoyed", "narrow", "angry", "R", cheeks="blush") @@ -266,7 +266,7 @@ label hg_pf_grope_ass_T3_front: her "!!!" ("mad", "wide", "base", "stare", cheeks="blush") gen "What is it?" ("base", xpos="far_left", ypos="head") - her "N-nothing, [genie_name]. Your hands are cold, that's all..." ("open", "base", "base", "R", cheeks="blush") + her "N-nothing, [name_genie_hermione]. Your hands are cold, that's all..." ("open", "base", "base", "R", cheeks="blush") call nar(">You run your hands up and down Hermione's legs...") her "........................." ("annoyed", "narrow", "angry", "R", cheeks="blush") @@ -274,12 +274,12 @@ label hg_pf_grope_ass_T3_front: call nar(">And give her Ass a good squeeze...") her "................." ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Don't look away, girl. I want you to look into my eyes." ("base", xpos="far_left", ypos="head") - her "I would rather not, [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "I would rather not, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Fine. Just keep on standing still then.\"": - her "Thank you, [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush", ypos="head", flip=False) + her "Thank you, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush", ypos="head", flip=False) call nar(">You massage her ass-cheeks lightly...") her "...................." ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -296,8 +296,8 @@ label hg_pf_grope_ass_T3_front: $ her_mood += 10 her "*Tsk*! {size=-5}(You wretched old--){/size}" ("angry", "happyCl", "worried", "mid", cheeks="blush", ypos="head", flip=False) - gen "Did you say something, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "It's nothing, [genie_name]." ("angry", "base", "angry", "mid") + gen "Did you say something, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "It's nothing, [name_genie_hermione]." ("angry", "base", "angry", "mid") call nar(">You massage her ass-cheeks lightly...","start") call nar(">Hermione maintains eye contact as she's been told...","end") @@ -332,7 +332,7 @@ label hg_pf_grope_ass_T3_back: "-Give her butt a slap-": call slap_her her "!!!!!!!!!!!!!" ("scream", "wide", "base", "stare", cheeks="blush") - her "[genie_name]....?" ("base", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione]....?" ("base", "base", "base", "R", cheeks="blush") pass @@ -345,7 +345,7 @@ label hg_pf_grope_ass_T3_back: "-Give her butt another slap-": call slap_her her "!!!!!!!!!!!!!" ("scream", "wide", "base", "stare", cheeks="blush") - her "[genie_name], what are you doing!?" ("base", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione], what are you doing!?" ("base", "base", "base", "R", cheeks="blush") her "You said all you are going to do is touch!" ("base", "base", "base", "R", cheeks="blush") pass @@ -359,7 +359,7 @@ label hg_pf_grope_ass_T3_back: "-Give her butt yet another slap-": call slap_her - her "[genie_name], not so loud, please..." ("silly", "narrow", "base", "up", cheeks="blush") + her "[name_genie_hermione], not so loud, please..." ("silly", "narrow", "base", "up", cheeks="blush") her "What if somebody hears us?" ("silly", "narrow", "base", "up", cheeks="blush") gen "Alright, alright... proceeding with groping then..." ("base", xpos="far_left", ypos="head") her "................" ("base", "base", "base", "R", cheeks="blush") @@ -372,11 +372,11 @@ label hg_pf_grope_ass_T3_continue: call ctc her "..................." ("base", "base", "base", "R", cheeks="blush", ypos="head", flip=False) - gen "You are being awfully quiet today, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You are being awfully quiet today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Am I...?" ("base", "base", "base", "R", cheeks="blush") if her_tier <= 5: - her "Well, you know me, [genie_name]..." ("base", "narrow", "base", "up", cheeks="blush") + her "Well, you know me, [name_genie_hermione]..." ("base", "narrow", "base", "up", cheeks="blush") her "I'm just happy to be able to do my part for the Gryffindor house..." ("base", "narrow", "base", "up", cheeks="blush") else: her "Please don't mind it and continue..." ("base", "narrow", "base", "up", cheeks="blush") @@ -388,18 +388,18 @@ label hg_pf_grope_ass_T3_continue: her "................" ("base", "base", "base", "R", cheeks="blush") her "!!!!!!?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) - gen "What is it, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "It's nothing [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") + gen "What is it, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "It's nothing [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "It's just..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "This is so... inappropriate..." ("angry", "happyCl", "worried", "mid", cheeks="blush") - gen "Relax, [hermione_name]. It's not like you are enjoying this..." ("base", xpos="far_left", ypos="head") + gen "Relax, [name_hermione_genie]. It's not like you are enjoying this..." ("base", xpos="far_left", ypos="head") her "What? Of course not! This is depraved..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "I am making this sacrifice for the honour of my house..." ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Yes, concentrate on that..." ("base", xpos="far_left", ypos="head") her "...................." ("angry", "base", "angry", "mid", cheeks="blush") call ctc - her "But, [genie_name]..." ("open", "base", "base", "R", cheeks="blush") + her "But, [name_genie_hermione]..." ("open", "base", "base", "R", cheeks="blush") her "Why are {size=+7}you{/size} doing this?" ("open", "base", "base", "R", cheeks="blush") menu: @@ -428,7 +428,7 @@ label hg_pf_grope_ass_T3_continue: menu: "-Slide your hands under her panties-" if hermione.is_worn("panties"): call nar(">You slowly slide one of your hands under the fabric of the girl's panties...") - her "[genie_name]... What are you...?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) + her "[name_genie_hermione]... What are you...?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) gen "That's alright, just think about those {number=current_payout} points your house is about to receive..." ("base", xpos="far_left", ypos="head") her "............." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -436,7 +436,7 @@ label hg_pf_grope_ass_T3_continue: "-Slide your hands across her pussy-" if not hermione.is_worn("panties"): call nar(">You slowly slide one of your hands across her pussy..") - her "[genie_name]... What are you...?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) + her "[name_genie_hermione]... What are you...?" ("mad", "wide", "base", "stare", cheeks="blush", ypos="head", flip=False) gen "That's alright, just think about those {number=current_payout} points your house is about to receive..." ("base", xpos="far_left", ypos="head") her "............." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -448,7 +448,7 @@ label hg_pf_grope_ass_T3_continue: menu: "-Prod her pussy with one of your fingers-": call nar(">You slide one of your fingers down and place it against the girls slit...") - her "[genie_name]? No! What are you...?" ("mad", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione]? No! What are you...?" ("mad", "wide", "base", "stare", cheeks="blush") call nar(">Hermione tries to pull away from you...") $ her_mood += 3 @@ -465,7 +465,7 @@ label hg_pf_grope_ass_T3_continue: "-Prod her butthole instead-": call nar(">You place one of your thumbs against the girls butthole...") - her "[genie_name]? No! What are you doing!?" ("mad", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione]? No! What are you doing!?" ("mad", "wide", "base", "stare", cheeks="blush") $ her_mood += 3 menu: @@ -489,7 +489,7 @@ label hg_pf_grope_ass_T3_fail: call her_chibi_scene("behind_desk_front", trans=hpunch) - her "This is not what we agreed on, [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "This is not what we agreed on, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "More points is it?" ("base", xpos="far_left", ypos="head") her "More..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "{size=+7}Points?!{/size}" ("scream", "happyCl", "worried", "mid", cheeks="blush", trans=hpunch) @@ -514,12 +514,12 @@ label hg_pf_grope_ass_T3_fail: her "Shut up!" ("scream", "happyCl", "worried", "mid", cheeks="blush", ypos="head") her "{size=+7}The terms should've been stated before commencing the--{/size}" ("scream", "happyCl", "worried", "mid", cheeks="blush", trans=hpunch) gen "Commencing--" ("base", xpos="far_left", ypos="head") - gen "Oh, snap out of it [hermione_name], You got paid didn't you?" ("base", xpos="far_left", ypos="head") + gen "Oh, snap out of it [name_hermione_genie], You got paid didn't you?" ("base", xpos="far_left", ypos="head") her "..." ("mad", "happyCl", "worried", "mid", cheeks="blush") gen "Don't act like you're not benefiting from this..." ("base", xpos="far_left", ypos="head") her "What ever..." ("angry", "base", "base", "R", cheeks="blush") - "\"Surely you can't be serious, [hermione_name]!\"": + "\"Surely you can't be serious, [name_hermione_genie]!\"": $ her_mood += 27 her "Yes... I Am!" ("scream", "happyCl", "worried", "mid", cheeks="blush", ypos="head") @@ -542,18 +542,18 @@ label hg_pf_grope_ass_T3_fail: label hg_pf_grope_ass_T4: call her_chibi_scene("behind_desk_front", trans=d7) - her "Do you want me to turn around then, [genie_name]?" ("base", "base", "base", "R", cheeks="blush", ypos="head", flip=False) + her "Do you want me to turn around then, [name_genie_hermione]?" ("base", "base", "base", "R", cheeks="blush", ypos="head", flip=False) call play_music("playful_tension") menu: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - "\"Yes. Turn around, [hermione_name].\"": - her "As you say, [genie_name]..." ("base", "base", "base", "R", cheeks="blush") + "\"Yes. Turn around, [name_hermione_genie].\"": + her "As you say, [name_genie_hermione]..." ("base", "base", "base", "R", cheeks="blush") jump hg_pf_grope_ass_T4_back - "\"No. Just stand still, [hermione_name].\"": - her "As you say, [genie_name]..." ("soft", "base", "base", "mid", cheeks="blush", ypos="head", flip=False) + "\"No. Just stand still, [name_hermione_genie].\"": + her "As you say, [name_genie_hermione]..." ("soft", "base", "base", "mid", cheeks="blush", ypos="head", flip=False) jump hg_pf_grope_ass_T4_front label hg_pf_grope_ass_T4_front: @@ -583,7 +583,7 @@ label hg_pf_grope_ass_T4_front: call nar(">And give her Ass a good squeeze...") her "................." ("soft", "base", "base", "mid", cheeks="blush") gen "You're looking at me this time..." ("base", xpos="far_left", ypos="head") - her "Isn't that what you wanted, [genie_name]..." ("open", "base", "worried", "mid", cheeks="blush") + her "Isn't that what you wanted, [name_genie_hermione]..." ("open", "base", "worried", "mid", cheeks="blush") call nar(">You give her butt another firm squeeze as you gently move to massage her inner leg...") her "I'll take that as a yes..." ("base", "narrow", "annoyed", "up", cheeks="blush") @@ -612,7 +612,7 @@ label hg_pf_grope_ass_T4_front: pause.8 call nar(">You bring your hands out from between Hermione's legs and hold them up in front of her...") - gen "What would you call this then, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What would you call this then, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") call nar(">Hermione embarrassingly looks at you, as you present her with a sticky substance gleaming across your upper hand...") her "Oh..." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -652,7 +652,7 @@ label hg_pf_grope_ass_T4_back: gen "How does it feel?" ("base", xpos="far_left", ypos="head") her "How does what feel?" ("open", "narrow", "base", "mid_soft") gen "How does it feel to be presenting your butt to your headmaster?" ("base", xpos="far_left", ypos="head") - her "I don't know how to answer that, [genie_name]..." ("clench", "narrow", "base", "down", cheeks="blush") + her "I don't know how to answer that, [name_genie_hermione]..." ("clench", "narrow", "base", "down", cheeks="blush") her "Do I have to give you a response?" ("open", "base", "base", "mid", cheeks="blush") gen "Well, you don't have to..." ("base", xpos="far_left", ypos="head") her "It feels weird...{w} but..." ("disgust", "narrow", "worried", "down", cheeks="blush") @@ -662,7 +662,7 @@ label hg_pf_grope_ass_T4_back: pause.8 her "!!!" ("mad", "wide", "base", "stare", cheeks="blush") - her "[genie_name]!" ("clench", "base", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("clench", "base", "angry", "mid", cheeks="blush") gen "Sorry..." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "You should've warned me..." ("soft", "narrow", "angry", "R", cheeks="blush") @@ -683,7 +683,7 @@ label hg_pf_grope_ass_T4_back: "-Give her butt a squeeze-": call nar(">You spread your hands out and then suddenly tighten them firmly around Hermione's Butt cheeks...") her "!!!" ("clench", "wide", "base", "stare", cheeks="blush") - gen "Be careful what you wish for, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Be careful what you wish for, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Giving me free reign might show you just how greedy I can be..." ("base", xpos="far_left", ypos="head") her "..." ("angry", "narrow", "base", "R", cheeks="blush") gen "Although perhaps if you're lucky enough you could also receive some of my well known generosity..." ("base", xpos="far_left", ypos="head") @@ -692,7 +692,7 @@ label hg_pf_grope_ass_T4_back: "-Give her butt a slap-": call slap_her her "!!!!!!!!!!!!!" ("angry", "wide", "base", "stare", cheeks="blush") - her "[genie_name]!" ("clench", "narrow", "base", "R", cheeks="blush") + her "[name_genie_hermione]!" ("clench", "narrow", "base", "R", cheeks="blush") gen "Did you not just say it didn't matter to you how I wanted it?" ("base", xpos="far_left", ypos="head") @@ -708,8 +708,8 @@ label hg_pf_grope_ass_T4_back: call nar(">You put your hands back on her butt and then start moving them down towards her inner thighs...") call nar(">As you move your palms further and further up, you feel a slight wetness between her legs...") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Y-Yes... [genie_name]?" ("angry", "narrow", "base", "R", cheeks="blush") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Y-Yes... [name_genie_hermione]?" ("angry", "narrow", "base", "R", cheeks="blush") gen "Are you...{w} *Hmm*... Never mind..." ("base", xpos="far_left", ypos="head") her "..." ("angry", "narrow", "base", "down", cheeks="blush") call nar(">You gently begin massaging her with your thumbs...") @@ -744,7 +744,7 @@ label hg_pf_grope_ass_T4_continue: call nar(">You slowly slide one of your hands under the fabric of the girl's panties...") else: call nar(">You slowly slide one of your hands across her pussy..") - her "[genie_name]... What are you...?" ("open", "base", "base", "R", cheeks="blush", ypos="head", flip=False) + her "[name_genie_hermione]... What are you...?" ("open", "base", "base", "R", cheeks="blush", ypos="head", flip=False) if her_tier <= 5: gen "It's alright, just think about those {number=current_payout} points your house is about to receive..." ("base", xpos="far_left", ypos="head") @@ -756,7 +756,7 @@ label hg_pf_grope_ass_T4_continue: menu: "-Prod her pussy with one of your fingers-": ">You slide one of your fingers down and place it against the girl's little slit..." - her "[genie_name]?" ("base", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione]?" ("base", "base", "base", "R", cheeks="blush") menu: "-Force your finger into her pussy!-": @@ -766,9 +766,9 @@ label hg_pf_grope_ass_T4_continue: her "*Ah*..." ("silly", "narrow", "base", "mid_soft", cheeks="blush") her "It's inside of me..." ("disgust", "narrow", "worried", "down", cheeks="blush") - her "No, [genie_name], you must stop now..." ("disgust", "base", "base", "mid_soft", cheeks="blush") + her "No, [name_genie_hermione], you must stop now..." ("disgust", "base", "base", "mid_soft", cheeks="blush") gen "Why? You don't like it?" ("base", xpos="far_left", ypos="head") - her "It doesn't matter whether I like this or not, [genie_name]." ("soft", "narrow", "base", "mid_soft", cheeks="blush") + her "It doesn't matter whether I like this or not, [name_genie_hermione]." ("soft", "narrow", "base", "mid_soft", cheeks="blush") call nar(">You take your fingers out and move them across her slit...") her "You know why I'm doing this..." ("clench", "narrow", "worried", "down", cheeks="blush") her "...." ("disgust", "narrow", "worried", "down", cheeks="blush") @@ -796,8 +796,8 @@ label hg_pf_grope_ass_T4_continue: else: her "Yes..." ("angry", "narrow", "annoyed", "up", cheeks="blush") her "That felt really good!" ("soft", "narrow", "base", "mid_soft", cheeks="blush") - gen "Any time, [hermione_name]!" ("grin", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft", cheeks="blush") + gen "Any time, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft", cheeks="blush") jump end_hg_pf_grope @@ -809,7 +809,7 @@ label hg_pf_grope_ass_T4_continue: "-Prod her butthole instead-": ">You place one of your thumbs against the girl's little butthole..." - her "[genie_name]? What are you doing?" ("base", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione]? What are you doing?" ("base", "base", "base", "R", cheeks="blush") menu: "-Force your thumb into her butthole-": @@ -819,9 +819,9 @@ label hg_pf_grope_ass_T4_continue: ">It's very tight and warm inside..." her "*Ah*..." ("silly", "narrow", "base", "mid_soft", cheeks="blush") her "It's inside of me..." - her "No, [genie_name], you must stop now..." ("base", "narrow", "base", "mid_soft", cheeks="blush") + her "No, [name_genie_hermione], you must stop now..." ("base", "narrow", "base", "mid_soft", cheeks="blush") gen "Why? You don't like it?" ("base", xpos="far_left", ypos="head") - her "It doesn't matter whether I like this or not, [genie_name]." + her "It doesn't matter whether I like this or not, [name_genie_hermione]." her "You know why I'm doing this..." her "And it is wrong for me to let you do this to me for a meagre {number=current_payout} points..." ">Hermione pulls away from you..." diff --git a/game/scripts/characters/hermione/events/favors/grope_her_breasts.rpy b/game/scripts/characters/hermione/events/favors/grope_her_breasts.rpy index cece9d89..ccec3f11 100644 --- a/game/scripts/characters/hermione/events/favors/grope_her_breasts.rpy +++ b/game/scripts/characters/hermione/events/favors/grope_her_breasts.rpy @@ -18,12 +18,12 @@ label hg_pf_grope_breasts_T2: her "??!" ("base", "narrow", "base", "up", cheeks="blush") call play_music("playful_tension") #SEX THEME. - her "[genie_name], what are you--?" ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") + her "[name_genie_hermione], what are you--?" ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") call nar(">She tries to pull away again.") call nar(">You squeeze her tits like a vice.") - her "[genie_name], you're hurting me!" ("angry", "squint", "base", "mid", cheeks="blush") - gen "Then stand still, [hermione_name]!" ("angry", xpos="far_left", ypos="head") + her "[name_genie_hermione], you're hurting me!" ("angry", "squint", "base", "mid", cheeks="blush") + gen "Then stand still, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") her "B-but..." ("soft", "wide", "base", "stare") gen "All I want to do is squeeze your tits a little, then you will get your points!" ("base", xpos="far_left", ypos="head") her "B-but... this is..." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -40,8 +40,8 @@ label hg_pf_grope_breasts_T2: call nar(">You put strength into your hold...") her "my........." ("disgust", "narrow", "base", "down", cheeks="blush") call nar(">You squeeze her tits even harder...") - her "[genie_name], you're hurting them..." ("shock", "happyCl", "worried", "mid") - gen "Be quiet [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], you're hurting them..." ("shock", "happyCl", "worried", "mid") + gen "Be quiet [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Ouch........." ("disgust", "narrow", "base", "down", cheeks="blush") call nar(">You squeeze her ample tits with all your strength.") her "Ah! It hurts!" ("angry", "squint", "base", "mid", cheeks="blush") @@ -57,14 +57,14 @@ label hg_pf_grope_breasts_T2: "-Give her tits a tender massage-": $ her_mood += 3 call nar(">You start massaging Hermione's beasts through her clothes...") - her "[genie_name]...?" ("shock", "happyCl", "worried", "mid") - gen "The points, [hermione_name]... You need the points. Concentrate on that." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]...?" ("shock", "happyCl", "worried", "mid") + gen "The points, [name_hermione_genie]... You need the points. Concentrate on that." ("base", xpos="far_left", ypos="head") her "Yes..." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "Yes, for the honour of the Gryffindor house..." ("angry", "happyCl", "worried", "mid", cheeks="blush") "*Squeeze-squeeze*" call nar(">You keep massaging her tits...","start") call nar(">You give one of her breasts a few pinches trying to locate the nipple...","end") - her "[genie_name]... you're pinching me...?" ("shock", "happyCl", "worried", "mid") + her "[name_genie_hermione]... you're pinching me...?" ("shock", "happyCl", "worried", "mid") call nar(">Your attempts prove to be fruitless though. The fabric of her clothes is quite thick...") her "Gryffindor........." ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -89,7 +89,7 @@ label hg_pf_grope_breasts_T3: # Favour fails if you Slap them. if hg_strip.trigger: menu: "\"First, lift up your top\"" if hermione.is_worn("top"): - her "[genie_name]?!" ("clench", "base", "base", "mid") + her "[name_genie_hermione]?!" ("clench", "base", "base", "mid") gen "What? It's not like I haven't seen them before..." ("base", xpos="far_left", ypos="head") her "But!" ("clench", "narrow", "base", "down") call play_music("playful_tension") # SEX THEME. @@ -139,7 +139,7 @@ label hg_pf_grope_breasts_T3: # Favour fails if you Slap them. her "!!!" ("scream", "wide", "base", "stare", cheeks="blush") her "Ouch! It hurts! *SOB*!" ("angry", "base", "worried", "mid", cheeks="blush") gen "Did you like it though?" ("base", xpos="far_left", ypos="head") - her "Did I... \"like it\", [genie_name]...?" ("annoyed", "narrow", "annoyed", "mid") + her "Did I... \"like it\", [name_genie_hermione]...?" ("annoyed", "narrow", "annoyed", "mid") her "What girl in her right mind would like to be treated this way?" stop music fadeout 1.0 @@ -162,30 +162,30 @@ label hg_pf_grope_breasts_T3_continue: call ctc her ".............................." ("angry", "narrow", "base", "down") - gen "You have great tits, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You have great tits, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "...................................." ("angry", "narrow", "base", "down") gen "You like it when I squeeze them like this?" ("base", xpos="far_left", ypos="head") - her "Excuse me, [genie_name], but you are confusing me with one of those lowly harlots again..." ("upset", "closed", "base", "mid") + her "Excuse me, [name_genie_hermione], but you are confusing me with one of those lowly harlots again..." ("upset", "closed", "base", "mid") her "I am only letting you fondle me because I am getting paid for it..." ("upset", "closed", "base", "mid") her "Not because I enjoy it..." ("upset", "closed", "base", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") gen "So, you're more like a prostitute then..." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "wide", "base", "stare") + her "[name_genie_hermione]!" ("angry", "wide", "base", "stare") her "Prostitutes are paid to have sex with men..." ("angry", "wide", "base", "stare") her "I'd never do something like that!" ("upset", "closed", "base", "mid") call nar(">You squeeze one of the girl's tits tightly and give the other a couple of firm tugs.") her "*Ah*..." ("open", "happyCl", "worried", "mid") - gen "Enjoying yourself, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Enjoying yourself, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") - her "[genie_name], I am only doing this--" ("upset", "closed", "base", "mid") + her "[name_genie_hermione], I am only doing this--" ("upset", "closed", "base", "mid") call nar(">You squeeze both of her tits with force...") her "*Ah*..." ("shock", "happyCl", "worried", "mid") - gen "Tell me you like this, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "[genie_name], I am only letting you do this to me because--" ("open", "happyCl", "worried", "mid") + gen "Tell me you like this, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I am only letting you do this to me because--" ("open", "happyCl", "worried", "mid") gen "I know, I know..." ("base", xpos="far_left", ypos="head") gen "You are starting to sound like a broken record." ("base", xpos="far_left", ypos="head") her "...." ("annoyed", "narrow", "annoyed", "mid") @@ -259,10 +259,10 @@ label hg_pf_grope_breasts_T4_naked: her "!!!" ("scream", "wide", "base", "stare", cheeks="blush") her "Ouch!" ("angry", "base", "worried", "mid", cheeks="blush") - her "[genie_name], what did you do that for?" + her "[name_genie_hermione], what did you do that for?" gen "Dunno... Seemed like a good idea..." ("base", xpos="far_left", ypos="head") gen "Did you like it?" ("base", xpos="far_left", ypos="head") - her "... Of course not, [genie_name]." ("annoyed", "closed", "base", "mid") + her "... Of course not, [name_genie_hermione]." ("annoyed", "closed", "base", "mid") gen "Let's try this again, then." ("base", xpos="far_left", ypos="head") her "What?" ("annoyed", "base", "base", "mid") call slap_her @@ -271,7 +271,7 @@ label hg_pf_grope_breasts_T4_naked: her "Ouch! Stop hurting me!" gen "Admit that you enjoy it and I will." ("base", xpos="far_left", ypos="head") her "But I don't..." ("disgust", "narrow", "base", "down") - her "And if you plan to keep on doing this to me, [genie_name]..." + her "And if you plan to keep on doing this to me, [name_genie_hermione]..." her "... then I think I should leave." ("annoyed", "narrow", "annoyed", "mid") gen "Fine, fine..." ("base", xpos="far_left", ypos="head") @@ -290,7 +290,7 @@ label hg_pf_grope_breasts_T4_clothed: her "................" ("base", "narrow", "base", "up", cheeks="blush") menu: - "\"Do you enjoy this, [hermione_name]?\"": + "\"Do you enjoy this, [name_hermione_genie]?\"": her "What...?" ("base", "base", "base", "R", cheeks="blush") her "Oh, I don't mind it..." ("base", "base", "base", "R", cheeks="blush") "*squeeze-squeeze-squeeze*" @@ -305,7 +305,7 @@ label hg_pf_grope_breasts_T4_clothed: gen "Really? It seems to me as if you love it." ("base", xpos="far_left", ypos="head") her "I wouldn't say that I love it..." ("base", "narrow", "base", "up", cheeks="blush") call nar(">You keep on massaging her tits through her uniform...") - gen "What would you say then, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What would you say then, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I just like it, {size=-4}a lot{heart}{/size}" ("base", "narrow", "base", "up", cheeks="blush") jump hg_pf_grope_breasts_T4_continue @@ -316,12 +316,12 @@ label hg_pf_grope_breasts_T4_clothed: her "Ouch..." ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") call nar(">You pull on her tits again. This time much stronger.","start") with vpunch - her "Ouch! [genie_name], what are you trying to do...?" ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") + her "Ouch! [name_genie_hermione], what are you trying to do...?" ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") call nar(">You jerk the girl down by her tits with all your strength...","start") with vpunch with vpunch call nar(">Hermione almost loses balance...","end") - her "*Panting* What are you doing, [genie_name]...?" ("open", "base", "base", "R", cheeks="blush") + her "*Panting* What are you doing, [name_genie_hermione]...?" ("open", "base", "base", "R", cheeks="blush") her "You don't need to be so rough with me....{heart}" ("base", "base", "base", "R", cheeks="blush") jump hg_pf_grope_breasts_T4_continue @@ -334,40 +334,40 @@ label hg_pf_grope_breasts_T4_continue: call nar(">You squeeze her tits a few more times, then give them a firm tug...") - her "*Ah*... [genie_name]..." ("open", "base", "base", "mid") + her "*Ah*... [name_genie_hermione]..." ("open", "base", "base", "mid") gen "What? You enjoy this, don't you?" ("base", xpos="far_left", ypos="head") her "No... I..." ("open", "base", "base", "mid") - gen "Don't you lie to your headmaster, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Don't you lie to your headmaster, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") call nar(">You squeeze her tits again...") her "*Ah*..." ("open", "narrow", "worried", "down") - her "I am not lying, [genie_name]..." ("open", "narrow", "worried", "down") + her "I am not lying, [name_genie_hermione]..." ("open", "narrow", "worried", "down") her "Why would I enjoy this?" ("open", "base", "base", "mid") - gen "I don't know [hermione_name]. You tell me." ("base", xpos="far_left", ypos="head") + gen "I don't know [name_hermione_genie]. You tell me." ("base", xpos="far_left", ypos="head") call nar(">You keep massaging her breasts...") her "*Ah*... I..." ("open", "base", "base", "mid") gen "Yes, what is it?" ("base", xpos="far_left", ypos="head") - her "It's... It's nothing, [genie_name]..." ("angry", "base", "base", "mid") + her "It's... It's nothing, [name_genie_hermione]..." ("angry", "base", "base", "mid") gen "Oh, I think it's something." ("base", xpos="far_left", ypos="head") gen "I think you like me squeezing your tits like this." ("base", xpos="far_left", ypos="head") - her "[genie_name], please..." ("angry", "narrow", "base", "down") + her "[name_genie_hermione], please..." ("angry", "narrow", "base", "down") if game.daytime: her "Classes are about to start..." ("angry", "narrow", "base", "down") else: her "It's getting late..." ("angry", "narrow", "base", "down") - her "Can I go now, [genie_name]? Please?" ("angry", "base", "base", "mid") + her "Can I go now, [name_genie_hermione]? Please?" ("angry", "base", "base", "mid") gen "Sure, go ahead..." ("base", xpos="far_left", ypos="head") pause 2 her "..............." ("angry", "narrow", "base", "down") pause.2 - her "[genie_name], you're... Still... Holding me." ("angry", "base", "base", "mid") + her "[name_genie_hermione], you're... Still... Holding me." ("angry", "base", "base", "mid") gen "Oh, right... my bad." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/hermione/events/favors/lets_have_sex.rpy b/game/scripts/characters/hermione/events/favors/lets_have_sex.rpy index 2b05c14f..c2924a7b 100644 --- a/game/scripts/characters/hermione/events/favors/lets_have_sex.rpy +++ b/game/scripts/characters/hermione/events/favors/lets_have_sex.rpy @@ -45,9 +45,9 @@ label hg_pf_sex: her "" ("normal", "base", "base", "mid", cheeks="blush", xpos="mid", ypos="base", flip=False, trans=blackfade) # Points - gen "Alright then, [hermione_name]. {number=current_payout} points to the Gryffindor house." ("base", xpos="far_left", ypos="head") + gen "Alright then, [name_hermione_genie]. {number=current_payout} points to the Gryffindor house." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout - her "Thank you, [genie_name]..." ("open", "base", "base", "R", cheeks="blush") + her "Thank you, [name_genie_hermione]..." ("open", "base", "base", "R", cheeks="blush") # Hermione leaves her "Did you need anything else?" ("normal", "base", "base", "mid", cheeks="blush") @@ -77,7 +77,7 @@ label hg_pf_sex: label hg_pf_sex_fail: call bld - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Why don't you come over here and I pound your pussy for a bit..." ("base", xpos="far_left", ypos="head") gen "With my cock!" ("grin", xpos="far_left", ypos="head") @@ -94,16 +94,16 @@ label hg_pf_sex_fail: label hg_pf_sex_T6_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("soft", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("soft", "base", "base", "mid") gen "The favour I will be buying from you today..." ("base", xpos="far_left", ypos="head") her ".......?" ("base", "base", "base", "mid") gen "How should I put this delicately...?" ("base", xpos="far_left", ypos="head") - her "Is it sex, [genie_name]?" ("base", "squint", "base", "mid") + her "Is it sex, [name_genie_hermione]?" ("base", "squint", "base", "mid") gen "Well, yes. How did you...?" ("base", xpos="far_left", ypos="head") her "Not a terribly difficult deduction all things considered..." ("base", "narrow", "base", "mid_soft") gen "You don't mind then?" ("base", xpos="far_left", ypos="head") - her "Of course, I mind, [genie_name]!" ("upset", "closed", "base", "mid") + her "Of course, I mind, [name_genie_hermione]!" ("upset", "closed", "base", "mid") her "I am not a prostitute!" gen "But you'll do it anyway??" ("base", xpos="far_left", ypos="head") if not is_in_lead(gryffindor): @@ -117,7 +117,7 @@ label hg_pf_sex_T6_intro_E1: gen "Great!" ("base", xpos="far_left", ypos="head") gen "Get over here then!" ("base", xpos="far_left", ypos="head") - her "*Ehm*...{w=0.4} How do you...{w=0.4} How do you want me [genie_name]?" ("angry", "narrow", "base", "down", cheeks="blush") + her "*Ehm*...{w=0.4} How do you...{w=0.4} How do you want me [name_genie_hermione]?" ("angry", "narrow", "base", "down", cheeks="blush") menu: "\"I want you in your school uniform, just how I met you!\"": @@ -156,7 +156,7 @@ label hg_pf_sex_T6_intro_E1: with d5 her "............." ("upset", "closed", "base", "mid", flip=True, trans=dissolve) - gen "Relax, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Relax, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her ".............." ("disgust", "base", "annoyed", "L") gen "Are you ready?" ("base", xpos="far_left", ypos="head") her "No..." ("annoyed", "narrow", "annoyed", "mid") @@ -169,12 +169,12 @@ label hg_pf_sex_T6_intro_E1: label hg_pf_sex_T6_intro_E2: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Last night I had a dream..." ("base", xpos="far_left", ypos="head") gen "You were lying on my desk and I was fucking your tight pussy like a madman..." ("grin", xpos="far_left", ypos="head") - her "In that dream, [genie_name]..." ("upset", "closed", "base", "mid") + her "In that dream, [name_genie_hermione]..." ("upset", "closed", "base", "mid") her "Did I happen to receive sixty-five house points afterwards?" ("angry", "base", "angry", "mid") - gen "Why yes, you did, [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "Why yes, you did, [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") her "..............................." ("disgust", "narrow", "base", "mid") if hermione.is_any_worn("robe", "accessory"): $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -233,9 +233,9 @@ label hg_pf_sex_T6_intro_E2: label hg_pf_sex_T6_intro_E3: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], are you keeping your pussy wet and ready for me?" ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("scream", "closed", "angry", "mid") - gen "Just say \"I do\", [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], are you keeping your pussy wet and ready for me?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!" ("scream", "closed", "angry", "mid") + gen "Just say \"I do\", [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..........." ("open", "base", "base", "mid") her "I do..." ("angry", "narrow", "base", "down") if hermione.is_any_worn("robe", "accessory"): @@ -305,9 +305,9 @@ label hg_pf_sex_T6_intro_E3: label hg_pf_sex_T6_E3: # repeats her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], are you keeping your pussy wet and ready for me?" ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("upset", "base", "worried", "down") - gen "Just say \"I do\", [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], are you keeping your pussy wet and ready for me?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]..." ("upset", "base", "worried", "down") + gen "Just say \"I do\", [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..........." ("open", "base", "base", "mid") her "I do..." ("soft", "narrow", "base", "R") if hermione.is_any_worn("robe", "accessory"): @@ -317,7 +317,7 @@ label hg_pf_sex_T6_E3: # repeats gen "Great, then you know what's coming..." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "down") - her "How would you want me, [genie_name]?" ("soft", "narrow", "base", "R") + her "How would you want me, [name_genie_hermione]?" ("soft", "narrow", "base", "R") menu: gen "*Hmm*..." @@ -427,7 +427,7 @@ label hg_sex_1: show her_sex_personal mouth_angry eyebrows_base eyes_base_mid tears_soft as cg her "*A-ha*...{w=0.3} It's too big..." show her_sex_personal mouth_angry eyebrows_base eyes_happycl tears_soft_blink as cg - her "You will rip me apart, [genie_name]!" + her "You will rip me apart, [name_genie_hermione]!" show her_sex_personal hold_grin as cg gen "Nonsense! My cock is of a regular size." @@ -441,7 +441,7 @@ label hg_sex_1: menu: "\"You should be ashamed of yourself!\"": show her_sex_personal mouth_mad eyebrows_worried eyes_narrow_r cheeks_blush as cg - her "I am not ashamed, [genie_name]!" + her "I am not ashamed, [name_genie_hermione]!" show her_sex_personal mouth_open eyebrows_worried eyes_narrow_down cheeks_blush as cg her "I am doing this for the sake of my house!" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_mid cheeks_blush as cg @@ -460,10 +460,10 @@ label hg_sex_1: her "*Ah-a*...{heart}" show her_sex_personal mouth_disgust eyebrows_base eyes_narrow_down cheeks_blush as cg - her "I don't know what you mean, [genie_name]." + her "I don't know what you mean, [name_genie_hermione]." gen "It seems to me that you are enjoying this a little bit too much." show her_sex_personal mouth_annoyed eyebrows_angry eyes_narrow_down cheeks_blush as cg - her "I'm not, [genie_name]!" + her "I'm not, [name_genie_hermione]!" gen "Really?" show her_sex_personal mouth_normal eyebrows_angry eyes_narrow_down cheeks_blush as cg @@ -504,7 +504,7 @@ label hg_sex_1: "\"So... What's new in your life?\"": show her_sex_personal mouth_open eyebrows_base eyes_base_r - her "...[genie_name]?" + her "...[name_genie_hermione]?" gen "Just trying to have a polite conversation." show her_sex_personal mouth_open eyebrows_base eyes_narrow_r cheeks_blush as cg her "*Ah-ah*...{heart} But-- *Ah*...{heart}{heart}" @@ -514,13 +514,13 @@ label hg_sex_1: her "My parents?" show her_sex_personal mouth_open eyebrows_worried eyes_narrow_down cheeks_blush as cg - her "[genie_name], *Ah-ah*...{w=0.3} Please...{w=0.4} I cannot talk." + her "[name_genie_hermione], *Ah-ah*...{w=0.3} Please...{w=0.4} I cannot talk." gen "Why not? Enjoying this too much?" show her_sex_personal mouth_disgust eyebrows_worried eyes_happycl cheeks_blush as cg her "I am-- *Ah*...{w=0.3} I am not...{heart}" gen "I think you are." show her_sex_personal mouth_annoyed eyebrows_worried eyes_happycl cheeks_blush as cg - her "I am only doing this for the points, [genie_name]..." + her "I am only doing this for the points, [name_genie_hermione]..." gen "Oh, I see..." gen "So you are like a prostitute then." @@ -535,7 +535,7 @@ label hg_sex_1: her "I am not a prostitute..." show her_sex_personal mouth_mad eyebrows_base eyes_narrow_r cheeks_blush tears_soft as cg - her "Why are you being so mean to me, [genie_name]?" + her "Why are you being so mean to me, [name_genie_hermione]?" gen "I think you like it when I'm mean." show her_sex_personal mouth_clench eyebrows_worried eyes_narrow_mid cheeks_blush tears_soft as cg @@ -585,7 +585,7 @@ label hg_sex_1: her "*Ah*...{w=0.3} *ah*..." show her_sex_personal mouth_soft eyebrows_base eyes_base_mid cheeks_blush as cg - her "*Ah*...{w=0.4} [genie_name]?" + her "*Ah*...{w=0.4} [name_genie_hermione]?" gen "What is it?" show her_sex_personal mouth_soft eyebrows_worried eyes_closed cheeks_blush as cg @@ -596,14 +596,14 @@ label hg_sex_1: gen "Very much so!" show her_sex_personal hold as cg - gen "Why do you ask [hermione_name]?" + gen "Why do you ask [name_hermione_genie]?" show her_sex_personal mouth_clench eyebrows_worried eyes_closed cheeks_blush as cg her "....................." show her_sex_personal mouth_angry eyebrows_worried eyes_closed cheeks_blush as cg her "*Ah*...{w=0.3} You...{w=0.2} You just got so quiet..." - gen "Just enjoying the moment, [hermione_name]." + gen "Just enjoying the moment, [name_hermione_genie]." gen "What about you? You alright?" show her_sex_personal mouth_open eyebrows_worried eyes_narrow_mid cheeks_blush as cg her "*Ah*...{w=0.3} {heart}yes...{heart}" @@ -618,14 +618,14 @@ label hg_sex_1: gen "You need me to slow down or something?" show her_sex_personal mouth_open eyebrows_base eyes_wide_down cheeks_blush as cg - her "No, [genie_name]...{w=0.4} You don't have to--" + her "No, [name_genie_hermione]...{w=0.4} You don't have to--" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_down cheeks_blush as cg her "Please, don't mind me...{w=0.4} Enjoy yourself." show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_down cheeks_blush as cg her "I will--{w=0.2} *Ah*...{w=0.3} Get used to it eventually..." - gen "As you say, [hermione_name]..." + gen "As you say, [name_hermione_genie]..." call ctc gen "Lean forward a bit will you, I want to grab that ass of yours..." show her_sex_personal mouth_soft eyebrows_annoyed eyes_narrow_down cheeks_blush as cg @@ -656,7 +656,7 @@ label hg_sex_1: her "Yes--{w=0.2} *ah*...{heart}" show her_sex_personal mouth_disgust eyebrows_worried eyes_narrow_mid cheeks_blush as cg her "If I'll be able to walk..." - gen "*Ght*! {heart} Yes, you always say the right things, [hermione_name]!" + gen "*Ght*! {heart} Yes, you always say the right things, [name_hermione_genie]!" show her_sex_personal mouth_angry eyebrows_base eyes_base_mid cheeks_blush as cg her "Aah! I can't hold it!" @@ -669,9 +669,9 @@ label hg_sex_1: gen "*huh*? You alright?" call nar(">Hermione's legs are shaking...") - gen "[hermione_name]?" + gen "[name_hermione_genie]?" show her_sex_personal mouth_grin eyebrows_annoyed eyes_wide_stare cheeks_blush as cg - her "{heart}{heart}{heart}I--{w=0.2} I think I'm cumming, [genie_name]!{heart}{heart}{heart}" + her "{heart}{heart}{heart}I--{w=0.2} I think I'm cumming, [name_genie_hermione]!{heart}{heart}{heart}" show her_sex_personal caress_grin as cg gen "*Tch*... You nasty slut!" @@ -693,7 +693,7 @@ label hg_sex_1: play bg_sounds "sounds/slickloopveryfast.ogg" fadeout 2 show her_sex_personal mouth_mad eyebrows_base eyes_wide_mid cheeks_blush as cg - her "[genie_name]!" + her "[name_genie_hermione]!" show her_sex_personal mouth_angry eyebrows_base eyes_narrow_stare cheeks_blush as cg @@ -701,7 +701,7 @@ label hg_sex_1: gen "Who told you that you could cum, slut? This is your punishment!" show her_sex_personal mouth_open_wide_tongue eyebrows_worried eyes_narrow_mid cheeks_blush as cg - her "[genie_name], no, *ah-a*!{heart}" + her "[name_genie_hermione], no, *ah-a*!{heart}" show her_sex_personal mouth_crooked_smile eyebrows_worried eyes_closed cheeks_blush as cg her "*Ah-a*...{heart}{w=0.2}I will go insane!{heart}{heart}{heart}" @@ -786,7 +786,7 @@ label hg_sex_1: gen "Good." gen "Did you enjoy getting fucked by your headmaster?" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_r cheeks_blush as cg - her "[genie_name], I am only doing this for my house." + her "[name_genie_hermione], I am only doing this for my house." gen "Seriously? Still?" show her_sex_personal mouth_disgust eyebrows_worried eyes_narrow_r cheeks_blush as cg her "Could I just get paid now... please?" @@ -851,14 +851,14 @@ label hg_sex_1: her "What if I get pregnant?" gen "Nah, you will be alright..." show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_down cheeks_blush as cg - her "B-But... How would you know, [genie_name]?" + her "B-But... How would you know, [name_genie_hermione]?" gen "We {i}witchers{/i} are infertile." show her_sex_personal mouth_angry eyebrows_worried eyes_base_down cheeks_blush as cg her "{i}Witchers{/i}?" gen "Sure... You are a witch, that makes me {i}a witcher{/i}, right?" gen "And everyone knows that {i}witchers{/i} are infertile..." show her_sex_personal mouth_disgust eyebrows_base eyes_narrow_r cheeks_blush as cg - her "[genie_name], you make no sense..." + her "[name_genie_hermione], you make no sense..." show her_sex_personal mouth_disgust eyebrows_base eyes_narrow_mid cheeks_blush as cg her "Can I please just get paid now...?" gen "Certainly..." @@ -940,16 +940,16 @@ label hg_sex_2: her "*Ah*...{heart}" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_mid cheeks_blush as cg - her "That's all-- *Ah*... because of you [genie_name]...{heart}" + her "That's all-- *Ah*... because of you [name_genie_hermione]...{heart}" show her_sex_personal mouth_open_tongue eyebrows_annoyed eyes_narrow_up cheeks_blush as cg her "You are ruining my cute little pussy with your monstrous penis...{heart}" show her_sex_personal hold_grin as cg - if genie_name == "Master": + if name_genie_hermione == "Master": gen "*Agh*...{w=0.3} You deserve it!" - elif genie_name == "Daddy": + elif name_genie_hermione == "Daddy": gen "*Agh*, you naughty girl!" else: gen "*Agh*, you whore!" @@ -958,7 +958,7 @@ label hg_sex_2: gen "Do you like it when I fuck you like this?" show her_sex_personal mouth_base eyebrows_worried eyes_narrow_mid cheeks_blush as cg - her "Yes, [genie_name]...{heart}" + her "Yes, [name_genie_hermione]...{heart}" menu: gen "..." @@ -972,7 +972,7 @@ label hg_sex_2: her "Whoa!" gen "Well?" show her_sex_personal mouth_base eyebrows_annoyed eyes_narrow_r cheeks_blush as cg - her "I...{w=0.4} I do--{w=0.2} *Ah*...{w=0.4} I love it, [genie_name]... {heart}" + her "I...{w=0.4} I do--{w=0.2} *Ah*...{w=0.4} I love it, [name_genie_hermione]... {heart}" gen "Good girl!" gen "Just relax and take my cock!" @@ -984,7 +984,7 @@ label hg_sex_2: show her_sex_personal mouth_open_tongue eyebrows_annoyed eyes_happycl cheeks_blush as cg her "*Ah*...{heart}{heart}" - if hermione_name == "Angel": + if name_hermione_genie == "Angel": gen "Yes, my little angel..." else: gen "Yes, my little princess..." @@ -996,7 +996,7 @@ label hg_sex_2: her "No, please don't call me that now...{w=0.4} *Ah*...{heart}" show her_sex_personal mouth_disgust eyebrows_worried eyes_narrow_down cheeks_blush as cg her "My daddy used to call me that when I was little..." - if genie_name == "Daddy": + if name_genie_hermione == "Daddy": gen "Well, you don't seem to mind calling me daddy!" gen "Right now I am your daddy!" else: @@ -1004,7 +1004,7 @@ label hg_sex_2: show her_sex_personal mouth_angry eyebrows_worried eyes_happycl cheeks_blush as cg her "*Ah*...{w=0.3}{heart} *Ah-ah*...{heart}{heart}" - if hermione_name == "Angel": + if name_hermione_genie == "Angel": gen "And you are my slutty angel!" else: gen "And you are my little princess-slut!" @@ -1012,8 +1012,8 @@ label hg_sex_2: show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush as cg her "*Ah*...{w=0.3}{heart} *Mmm*...{heart}{heart}{heart}" - if genie_name == "Daddy": - her "[genie_name]...{heart}{heart}{heart}" + if name_genie_hermione == "Daddy": + her "[name_genie_hermione]...{heart}{heart}{heart}" "-Be mean to her!-": #Can add in more nickname variations here (the derogatory ones) gen "Yes, you slut!" @@ -1034,21 +1034,21 @@ label hg_sex_2: show her_sex_personal mouth_angry eyebrows_worried eyes_base_down cheeks_blush tears_soft as cg call nar(">You begin pumping your cock deep inside Hermione's pussy, her legs hitting the edge of your desk as you smack your pelvis hard up against her ass.") show her_sex_personal mouth_mad eyebrows_worried eyes_happycl cheeks_blush tears_soft_blink as cg - her "*Ah*...{heart} [genie_name]..." + her "*Ah*...{heart} [name_genie_hermione]..." gen "You nasty slut!" show her_sex_personal mouth_open_tongue eyebrows_worried eyes_narrow_mid cheeks_blush tears_soft as cg her "*Ah*...{w=0.3}{heart} *Ah-a*...{heart}" - gen "You are a disgrace, [hermione_name]!" + gen "You are a disgrace, [name_hermione_genie]!" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_down cheeks_blush tears_soft as cg her "*Ah-ah*...{heart}{heart}{heart}" gen "Your parents sent you here to study, not to screw your teachers!" show her_sex_personal mouth_disgust eyebrows_worried eyes_happycl cheeks_blush tears_soft_blink as cg her "*Ah-a*...{w=0.4}{heart} But I am only doing this--" - if genie_name == "Master": + if name_genie_hermione == "Master": gen "As if...{w=0.4} I can hear that tone in your voice every time you call me master..." gen "You're nothing but a cock-sleeve for me to do with as I please and you know it..." - elif genie_name == "Daddy": + elif name_genie_hermione == "Daddy": gen "What would your father say if he knew you're calling me daddy?" else: gen "I've never cared about why you are doing this, you ignorant cocksucker!" @@ -1089,7 +1089,7 @@ label hg_sex_2: #Note: Once Spread on Desk CG is ready we'll add menu option here to flip her over onto the desk (new writing) or continue fucking her from behind. show her_sex_personal mouth_normal eyebrows_worried eyes_narrow_down cheeks_blush as cg - her "*Ehm*...{w=0.4} [genie_name]..." + her "*Ehm*...{w=0.4} [name_genie_hermione]..." gen "Yes?" show her_sex_personal mouth_open eyebrows_annoyed eyes_narrow_down cheeks_blush as cg her "You think you could--{w=0.3} *Ah*..." @@ -1137,16 +1137,16 @@ label hg_sex_2: gen "And some more!" call slap_her - if genie_name == "Master": + if name_genie_hermione == "Master": show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_mid cheeks_blush tears_soft as cg - her "*Ah*...{w=0.3} Punish me [genie_name]!" - elif genie_name == "Daddy": + her "*Ah*...{w=0.3} Punish me [name_genie_hermione]!" + elif name_genie_hermione == "Daddy": gen "For being such a..." call slap_her gen "For being such a...{fast} naughty girl!" call slap_her show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_mid cheeks_blush tears_soft as cg - her "*Ahh*...{w=0.3} I'm sorry [genie_name]..." + her "*Ahh*...{w=0.3} I'm sorry [name_genie_hermione]..." else: show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_mid cheeks_blush tears_soft as cg her "*Ahh*!{w=0.3} Yes!" @@ -1158,26 +1158,26 @@ label hg_sex_2: call slap_her call slap_her - if genie_name == "Master": + if name_genie_hermione == "Master": show her_sex_personal mouth_grin eyebrows_base eyes_happycl cheeks_blush tears_soft_blink as cg - her "*Aah*!!!{heart}{heart}{heart} Harder...{w=0.4} Harder [genie_name]!{heart}{heart}{heart}" + her "*Aah*!!!{heart}{heart}{heart} Harder...{w=0.4} Harder [name_genie_hermione]!{heart}{heart}{heart}" call slap_her call slap_her call slap_her show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush tears_soft as cg - her "Thank you...{heart}{heart}{heart}{w=0.5} Thank you [genie_name]...{heart}{heart}{heart}" - elif genie_name == "Daddy": + her "Thank you...{heart}{heart}{heart}{w=0.5} Thank you [name_genie_hermione]...{heart}{heart}{heart}" + elif name_genie_hermione == "Daddy": show her_sex_personal mouth_grin eyebrows_base eyes_happycl cheeks_blush tears_soft_blink as cg - her "[genie_name]!{heart}{heart}{heart}" + her "[name_genie_hermione]!{heart}{heart}{heart}" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush tears_soft as cg - her "I'm sorry...{heart}{heart}{heart}{w=0.5} For being such a bad girl [genie_name]...{heart}{heart}{heart}" + her "I'm sorry...{heart}{heart}{heart}{w=0.5} For being such a bad girl [name_genie_hermione]...{heart}{heart}{heart}" else: show her_sex_personal mouth_grin eyebrows_base eyes_happycl cheeks_blush tears_soft_blink as cg her "*Aah*!!!{heart}{heart}{heart} IT HURTS!{heart}{heart}{heart}" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush tears_soft as cg her "It hurts...{heart}{heart}{heart}{w=0.5} It hurts so good...{heart}{heart}{heart}" gen "*Hmm*?" - gen "Why are your legs shaking, [hermione_name]?" + gen "Why are your legs shaking, [name_hermione_genie]?" gen "Are you cumming?" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush tears_soft as cg @@ -1240,10 +1240,10 @@ label hg_sex_2: show her_sex_personal mouth_grin eyebrows_base eyes_narrow_stare as cg her "*Ah*...{heart}" - if genie_name == "Master": + if name_genie_hermione == "Master": gen "You alright there, fuckhole?" else: - gen "You alright there, [hermione_name]?" + gen "You alright there, [name_hermione_genie]?" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_stare as cg her "Yes...{w=0.3} I..." @@ -1254,7 +1254,7 @@ label hg_sex_2: show her_sex_personal mouth_clench eyebrows_base eyes_base_stare cheeks_blush as cg her "!!!" show her_sex_personal mouth_clench eyebrows_base eyes_base_r cheeks_blush as cg - her "You came inside of me, [genie_name]!" + her "You came inside of me, [name_genie_hermione]!" gen "I sure did." @@ -1269,7 +1269,7 @@ label hg_sex_2: her "I...{w=0.4} I think I came several times..." show her_sex_personal mouth_base eyebrows_base eyes_narrow_down cheeks_blush as cg - her "Maybe you are right, [genie_name]...{w=0.4} Perhaps I shouldn't worry so much." + her "Maybe you are right, [name_genie_hermione]...{w=0.4} Perhaps I shouldn't worry so much." show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_r cheeks_blush as cg her "*Ehm*...{w=0.4} Can I get my payment now?" gen "As you wish." @@ -1318,7 +1318,7 @@ label hg_sex_2: with d5 $ renpy.sound.play("sounds/slick_02.ogg") - gen "{size=+7}That's it [hermione_name], take this!!!!!!!!!!!!!!!!{/size}" + gen "{size=+7}That's it [name_hermione_genie], take this!!!!!!!!!!!!!!!!{/size}" show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_r cheeks_blush as cg show her_sex_personal cum_outside2 as cg pause .8 @@ -1344,7 +1344,7 @@ label hg_sex_2: gen "*Ah*...{w=0.4} All over your ass..." show her_sex_personal mouth_grin eyebrows_worried eyes_base_mid cheeks_blush tears_soft as cg her "*Ah-ah*...{heart}" - gen "You alright there, [hermione_name]?" + gen "You alright there, [name_hermione_genie]?" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_stare as cg her "Yes...{w=0.3} I--" @@ -1356,12 +1356,12 @@ label hg_sex_2: show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_down cheeks_blush as cg her "I...{w=0.4} I think I came several times..." - if genie_name == "Master": + if name_genie_hermione == "Master": gen "Naughty...{w=0.4} But I'll allow it..." - elif genie_name == "Daddy": + elif name_genie_hermione == "Daddy": gen "Good girl..." show her_sex_personal mouth_open eyebrows_worried eyes_narrow_r cheeks_blush as cg - her "*Ehm*...{w=0.4} Can I get my payment now [genie_name]?" + her "*Ehm*...{w=0.4} Can I get my payment now [name_genie_hermione]?" gen "Of course!" show screen blkfade @@ -1381,7 +1381,7 @@ label hg_sex_3: ### Will be added with Missionary pose ### #gen "Let's see... How shall we do this..." - #her "[genie_name]?" + #her "[name_genie_hermione]?" #menu: #"-Flip her onto the desk-": #jump hg_sex_missionary @@ -1451,7 +1451,7 @@ label hg_sex_3: her "*Mmm*....{heart}" menu: "-Agree with her-": - gen "Indeed [hermione_name]... A perfectly normal response to getting ploughed by your headmaster." + gen "Indeed [name_hermione_genie]... A perfectly normal response to getting ploughed by your headmaster." show her_sex_personal mouth_soft eyebrows_base eyes_narrow_mid cheeks_blush as cg her "{heart}*Mmm*...{heart}" gen "Because why shouldn't you enjoy it..." @@ -1461,7 +1461,7 @@ label hg_sex_3: gen "Why not let yourself have a bit of fun!" show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_mid cheeks_blush as cg her "*Ah*...{w=0.3} Yes...{w=0.3} I've deserved this..." - gen "That's right [hermione_name]..." + gen "That's right [name_hermione_genie]..." gen "This is your reward..." show her_sex_personal mouth_base eyebrows_worried eyes_narrow_mid cheeks_blush as cg her "*Mmm*...{w=0.3} {heart}My reward{heart}..." @@ -1482,25 +1482,25 @@ label hg_sex_3: show her_sex_personal mouth_angry eyebrows_base eyes_base_r cheeks_blush as cg her "Whoa!" - gen "You've got to be quick on your feet if you want to stay on top [hermione_name]..." + gen "You've got to be quick on your feet if you want to stay on top [name_hermione_genie]..." show her_sex_personal caress_grin as cg gen "(On top of this dick.)" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_r cheeks_blush as cg - her "*Ah*...{w=0.3} Yes, [genie_name]..." - if genie_name == "Master": + her "*Ah*...{w=0.3} Yes, [name_genie_hermione]..." + if name_genie_hermione == "Master": gen "Master...{w=0.3} Oh how I love it when you call me that..." - gen "That's it [hermione_name]...{w=0.3} Take good care of your master..." - elif genie_name == "Daddy": + gen "That's it [name_hermione_genie]...{w=0.3} Take good care of your master..." + elif name_genie_hermione == "Daddy": gen "Yes, that's it...{w=0.3} I'm your daddy..." - if hermione_name == "Angel": + if name_hermione_genie == "Angel": gen "And you're my sweet little angel..." - elif hermione_name == "Princess": + elif name_hermione_genie == "Princess": gen "And you're my sweet little princess..." show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush as cg - her "*Ah*...{w=0.3}[genie_name] please..." - elif genie_name == "Fuckmachine9000": + her "*Ah*...{w=0.3}[name_genie_hermione] please..." + elif name_genie_hermione == "Fuckmachine9000": gen "That's it, feel the power of the greatest fuck machine of all time!" show her_sex_personal mouth_grin eyebrows_annoyed eyes_narrow_r cheeks_blush as cg @@ -1518,7 +1518,7 @@ label hg_sex_3: if random_number == 1: gen "Maybe for a slut." show her_sex_personal mouth_disgust eyebrows_worried eyes_narrow_mid cheeks_blush as cg - her "*Ah*...{w=0.3} Don't--{w=0.2} *Ah*...{w=0.3} Don't call me that [genie_name]..." + her "*Ah*...{w=0.3} Don't--{w=0.2} *Ah*...{w=0.3} Don't call me that [name_genie_hermione]..." gen "How else would you explain being so wet already?" gen "Probably been touching yourself in class no doubt..." show her_sex_personal mouth_upset eyebrows_worried eyes_happycl cheeks_blush as cg @@ -1530,7 +1530,7 @@ label hg_sex_3: show her_sex_personal mouth_angry eyebrows_base eyes_narrow_down cheeks_blush as cg her "I--{w=0.2} *Ah*...{w=0.3} Of course I am!" show her_sex_personal mouth_disgust eyebrows_base eyes_narrow_r cheeks_blush as cg - her "Don't...{w=0.3} *Ah*...{w=0.3} Don't be so crude [genie_name]..." + her "Don't...{w=0.3} *Ah*...{w=0.3} Don't be so crude [name_genie_hermione]..." gen "Then I suppose the wet spot on your chair that miss Tonks told me about was a mere fabrication..." show her_sex_personal mouth_angry eyebrows_worried eyes_wide_mid cheeks_blush as cg her "*She--{w=0.2} She knows?!" @@ -1582,7 +1582,7 @@ label hg_sex_3: her "All those Slytherin--{w=0.2} *Ah*...{w=0.3} Whores..." gen "You're no different to them.... You're nothing but a cum hungry slut!" show her_sex_personal mouth_angry eyebrows_annoyed eyes_happy_r cheeks_blush as cg - her "[genie_name]!" + her "[name_genie_hermione]!" show her_sex_personal lean_forward caress as cg: ease_quad 1.0 offset (-65, -240) zoom 0.45 rotate -4 @@ -1614,8 +1614,8 @@ label hg_sex_3: her "*Mmm*...{w=0.2} More...{heart}" gen "What was that?" show her_sex_personal mouth_soft eyebrows_base eyes_narrow_up cheeks_blush as cg - her "Don't...{w=0.2} Please don't make me say it [genie_name]..." - gen "You're never going to amount to anything if you don't take what you want [hermione_name]..." + her "Don't...{w=0.2} Please don't make me say it [name_genie_hermione]..." + gen "You're never going to amount to anything if you don't take what you want [name_hermione_genie]..." gen "For example..." show her_sex_personal bent_over grab as cg: @@ -1632,14 +1632,14 @@ label hg_sex_3: play bg_sounds "sounds/sexloopveryfast.ogg" fadeout 2 show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_up cheeks_blush as cg - her "[genie_name]!" - gen "There you go [hermione_name]!" + her "[name_genie_hermione]!" + gen "There you go [name_hermione_genie]!" gen "Isn't this what you wanted?" show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_up cheeks_blush as cg her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." gen "Say it!" show her_sex_personal mouth_clench eyebrows_base eyes_narrow_down cheeks_blush as cg - her "*Ah*...{w=0.2} *Ah*...{w=0.2} [genie_name]..." + her "*Ah*...{w=0.2} *Ah*...{w=0.2} [name_genie_hermione]..." show her_sex_personal mouth_grin eyebrows_base eyes_narrow_down cheeks_blush as cg her "Not so fast..." show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush as cg @@ -1660,7 +1660,7 @@ label hg_sex_3: her "*Ah*...{w=0.2} *Ah*... But..." show her_sex_personal mouth_angry eyebrows_base eyes_narrow_down cheeks_blush as cg her "I did what you--" - gen "You need to know your place [hermione_name]!" + gen "You need to know your place [name_hermione_genie]!" show her_sex_personal mouth_angry eyebrows_worried eyes_narrow_down cheeks_blush as cg her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." gen "I'm the one giving out the points am I not?" @@ -1668,7 +1668,7 @@ label hg_sex_3: her "*Ah*...{w=0.3} Yes...{w=0.3} But..." gen "I should be the one to make demands!" show her_sex_personal mouth_angry eyebrows_base eyes_narrow_r cheeks_blush as cg - her "*Ah*... Yes, [genie_name]... I'm--" + her "*Ah*... Yes, [name_genie_hermione]... I'm--" gen "Naughty girls such as yourself should be punished!" call slap_her @@ -1714,18 +1714,18 @@ label hg_sex_3: $ renpy.sound.play("sounds/slick_01.ogg") with kissiris show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush as cg - her "{size=+7}*Aah*!!!{heart}{heart}{heart} [genie_name]{/size}!" + her "{size=+7}*Aah*!!!{heart}{heart}{heart} [name_genie_hermione]{/size}!" - if genie_name == "Master": - gen "Yes, I'm your Master [hermione_name]..." + if name_genie_hermione == "Master": + gen "Yes, I'm your Master [name_hermione_genie]..." gen "And you're nothing but my slave to do with as I please..." - elif genie_name == "Daddy": - gen "That's it [hermione_name]... Let your daddy take good care of you..." + elif name_genie_hermione == "Daddy": + gen "That's it [name_hermione_genie]... Let your daddy take good care of you..." call nar(">Hermione clenches her thighs around your cock as waves of pleasure washes over her.") - gen "Cumming again are we [hermione_name]?" + gen "Cumming again are we [name_hermione_genie]?" show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_down cheeks_blush as cg her "{heart}*Ah*...{w=0.2} *Ah-ha*...{heart}" @@ -1736,28 +1736,28 @@ label hg_sex_3: call slap_her show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush as cg - her "{heart}*Ah*...{w=0.2} [genie_name] I--{heart}" + her "{heart}*Ah*...{w=0.2} [name_genie_hermione] I--{heart}" call slap_her show her_sex_personal mouth_grin eyebrows_worried eyes_happycl cheeks_blush as cg her "*Ah*..." - if genie_name == "Master": + if name_genie_hermione == "Master": gen "Cumming before her master..." - elif genie_name == "Daddy": + elif name_genie_hermione == "Daddy": gen "Is that how you treat your daddy?" call slap_her show her_sex_personal mouth_soft eyebrows_base eyes_narrow_up cheeks_blush as cg - her "*Ah*... [genie_name], I'm sorry!" + her "*Ah*... [name_genie_hermione], I'm sorry!" gen "You better be sorry!" call slap_her show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush as cg - her "*Ah*... [genie_name]... I-- I can't stop it... I'm--" + her "*Ah*... [name_genie_hermione]... I-- I can't stop it... I'm--" gen "Don't you dare cum again!" call slap_her @@ -1780,7 +1780,7 @@ label hg_sex_3: show her_sex_personal mouth_soft eyebrows_worried eyes_closed cheeks_blush as cg her "*Ah*...{w=0.3} *Ah*...{w=0.3} *Ah*..." show her_sex_personal mouth_soft eyebrows_base eyes_narrow_mid cheeks_blush as cg - her "[genie_name]..." + her "[name_genie_hermione]..." show her_sex_personal mouth_base eyebrows_base eyes_narrow_mid cheeks_blush as cg her "Please..." show her_sex_personal mouth_angry eyebrows_base eyes_closed cheeks_blush as cg @@ -1790,7 +1790,7 @@ label hg_sex_3: play bg_sounds "sounds/sexloopveryfast.ogg" fadeout 2 call nar(">You push Hermione down even harder onto the desk as you pick up the pace once again.") - if genie_name == "Master": + if name_genie_hermione == "Master": call nar(">The sound of Hermione's moans fill the room as her master shows no mercy.") else: call nar(">The sounds of Hermione's moans fill the room as you feel yourself getting closer to the edge.") @@ -1798,11 +1798,11 @@ label hg_sex_3: show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_mid cheeks_blush as cg her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." show her_sex_personal mouth_soft eyebrows_worried eyes_narrow_up cheeks_blush as cg - her "*Ah*...{w=0.3} [genie_name]...{w=0.3} Please tell me you're close..." + her "*Ah*...{w=0.3} [name_genie_hermione]...{w=0.3} Please tell me you're close..." show her_sex_personal mouth_angry eyebrows_base eyes_narrow_up cheeks_blush as cg her "I don't...{w=0.3} *Ah*...{w=0.3} I don't think I can--" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_mid cheeks_blush as cg - her "{size=+7}I'm-- I'm cumming, [genie_name]!{/size}" + her "{size=+7}I'm-- I'm cumming, [name_genie_hermione]!{/size}" gen "{size=+7}Me too!{/size}" menu: "-Fill her up!-": @@ -1821,22 +1821,22 @@ label hg_sex_3: $ hermione.set_cum(pussy="light") show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush as cg - her "{heart}[genie_name] I'm--{heart}" + her "{heart}[name_genie_hermione] I'm--{heart}" $ renpy.sound.play("sounds/slick_01.ogg") with kissiris show her_sex_personal mouth_soft eyebrows_base eyes_narrow_up cheeks_blush as cg her "{heart}*Ngh*{heart}" - gen "That's it [hermione_name]!" + gen "That's it [name_hermione_genie]!" gen "{size=+15}Cum for me!!!!!!!!!!!!!!!!{/size}" show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush as cg - her "[genie_name], you're--" + her "[name_genie_hermione], you're--" $ renpy.sound.play("sounds/slick_01.ogg") with kissiris show her_sex_personal mouth_open_tongue eyebrows_base eyes_narrow_up cheeks_blush as cg her "{heart}*Ah*!{heart}" - gen "Take my seed, [hermione_name]!" + gen "Take my seed, [name_hermione_genie]!" stop bg_sounds fadeout 2 $ renpy.sound.play("sounds/slick_01.ogg") @@ -1901,7 +1901,7 @@ label hg_sex_3: with d5 $ renpy.sound.play("sounds/slick_02.ogg") - gen "{size=+15}Take this, [hermione_name]!!!!!!!!!!!!!!!!{/size}" + gen "{size=+15}Take this, [name_hermione_genie]!!!!!!!!!!!!!!!!{/size}" show her_sex_personal mouth_grin eyebrows_worried eyes_narrow_r cheeks_blush as cg show her_sex_personal cum_outside2 as cg pause .8 @@ -1929,17 +1929,17 @@ label hg_sex_3: her "..." show her_sex_personal mouth_grin eyebrows_base eyes_narrow_up cheeks_blush as cg her "{heart}*Mmmmm*....{heart}" - if genie_name == "Master": + if name_genie_hermione == "Master": gen "Good slave..." gen "Letting your master coat your precious body with his semen..." - elif genie_name == "Daddy": - gen "That's it [hermione_name]..." + elif name_genie_hermione == "Daddy": + gen "That's it [name_hermione_genie]..." gen "You've been such a good girl, letting your daddy release his seed on you..." else: - gen "Good job [hermione_name]..." + gen "Good job [name_hermione_genie]..." gen "You've very much earned your points today." show her_sex_personal mouth_base eyebrows_base eyes_narrow_mid cheeks_blush as cg - her "Thank you, [genie_name]..." + her "Thank you, [name_genie_hermione]..." gen "You can get up now..." show her_sex_personal mouth_soft eyebrows_base eyes_narrow_mid cheeks_blush as cg her "I...{w=0.4} I might need a moment..." diff --git a/game/scripts/characters/hermione/events/favors/lets_have_sex_anal.rpy b/game/scripts/characters/hermione/events/favors/lets_have_sex_anal.rpy index eeb18913..0a4e05e5 100644 --- a/game/scripts/characters/hermione/events/favors/lets_have_sex_anal.rpy +++ b/game/scripts/characters/hermione/events/favors/lets_have_sex_anal.rpy @@ -9,8 +9,8 @@ label hg_anal_sex_1_intro: $ current_payout = 90 $ hg_pf_sex.change_icon(a="heart_half", b="heart_red") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "[genie_name]...?" ("annoyed", "happy", "base", "mid", flip=True) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]...?" ("annoyed", "happy", "base", "mid", flip=True) gen "How familiar are you with the term \"Anal Sex\"?" ("base", xpos="far_left", ypos="head") her "What?!" ("soft", "wide", "worried", "mid") gen "Answer the question..." ("base", xpos="far_left", ypos="head") @@ -75,7 +75,7 @@ label hg_anal_sex_1_intro: $ genie_doll_armfix = "images/CG/her_sex/caress_armfix.webp" with d3 - her "Ouch! What are you doing, [genie_name]?" ("mad", "happyCl", "worried", "mid",tears="soft_blink") + her "Ouch! What are you doing, [name_genie_hermione]?" ("mad", "happyCl", "worried", "mid",tears="soft_blink") gen "Yeah, this won't work either..." gen "*Hmm*..." gen "Alright, I think I know what we should do." @@ -86,11 +86,11 @@ label hg_anal_sex_1_intro: gen "..." "\"I think I'll spit on it and just force it in!\"": call play_music("playful_tension") # SEX THEME. - her "Force it in, [genie_name]?!" ("clench", "wide", "base", "R") + her "Force it in, [name_genie_hermione]?!" ("clench", "wide", "base", "R") $ renpy.play('sounds/spit.ogg') #Sound of spiting. gen "*SPIT*!" her "*Eeeeeew*!" ("disgust", "happyCl", "worried", "mid") - her "No, [genie_name], wait! Maybe if I just relax--" ("clench", "happy", "worried", "R") + her "No, [name_genie_hermione], wait! Maybe if I just relax--" ("clench", "happy", "worried", "R") gen "No need, here I come!" with hpunch her "AAAAH!" ("mad", "wide", "worried", "mid", tears="soft") @@ -99,7 +99,7 @@ label hg_anal_sex_1_intro: her "No, you're hurting me! You are hurting me!" ("scream", "wide", "base", "R", tears="soft") gen "Almost! Almost!" her "Ah! It hurts!" ("clench", "happyCl", "worried", "mid") - gen "Shut it, [hermione_name]! I'm doing you a favour!" + gen "Shut it, [name_hermione_genie]! I'm doing you a favour!" gen "Your anus is so tight it's completely unfuckable!" her "Then stop, please!" ("mad", "happyCl", "worried", "mid",tears="soft_blink") @@ -114,7 +114,7 @@ label hg_anal_sex_1_intro: gen "You know... people." gen "*Argh*, dammit... My dick is hurting too now." - her "Stop then! Stop, [genie_name]!" ("open", "happyCl", "worried", "mid", tears="soft_blink") + her "Stop then! Stop, [name_genie_hermione]!" ("open", "happyCl", "worried", "mid", tears="soft_blink") her "I've changed my mind! I don't need these points!" ("angry", "narrow", "base", "R", tears="soft") gen "I think I'm almost..." @@ -190,16 +190,16 @@ label hg_anal_sex_1_intro: $ genie_doll = "caress" her "....................." ("angry", "base", "base", "R",cheeks="blush",tears="soft") - gen "You alright there, [hermione_name]?" - her "*Ah*...{w=0.3} You are...{w=0.3} Stretching me out from the inside... [genie_name]." ("clench", "base", "worried", "mid", cheeks="blush",tears="soft") + gen "You alright there, [name_hermione_genie]?" + her "*Ah*...{w=0.3} You are...{w=0.3} Stretching me out from the inside... [name_genie_hermione]." ("clench", "base", "worried", "mid", cheeks="blush",tears="soft") her "And it still hurts..." ("angry", "happy", "base", "mid",cheeks="blush") gen "*Hmm*..." gen "Maybe not enough lubrication...?" - gen "Come on down, [hermione_name]. Suck my dick some more." + gen "Come on down, [name_hermione_genie]. Suck my dick some more." her "What? But..." ("clench", "base", "worried", "mid", cheeks="blush",tears="soft") her "But it's dirty... It's been inside already." ("disgust", "happy", "base", "R", cheeks="blush", tears="soft") gen "Yes, it's been inside, but that doesn't mean it's dirty." - gen "Come on now, [hermione_name]. Suck it some more." + gen "Come on now, [name_hermione_genie]. Suck it some more." her "..........." ("annoyed", "narrow", "base", "down", cheeks="blush", tears="soft") hide screen animatedCG @@ -233,16 +233,16 @@ label hg_anal_sex_1_intro: gen "I'll take it slow for now..." play bg_sounds "sounds/slickloop.ogg" fadein 2 - her "*Ah*...{w=0.4} thank you, [genie_name]." ("mad", "narrow", "base", "down", cheeks="blush", tears="soft") + her "*Ah*...{w=0.4} thank you, [name_genie_hermione]." ("mad", "narrow", "base", "down", cheeks="blush", tears="soft") gen "Oh...{w=0.3} yes...{w=0.3} this feels great..." her "..........." ("angry", "narrow", "base", "mid", cheeks="blush", tears="soft") gen "*Ah*...{w=0.3} So tight..." her "................" ("angry", "narrow", "base", "down",cheeks="blush",tears="soft") - gen "Why are you being so quiet [hermione_name]?" + gen "Why are you being so quiet [name_hermione_genie]?" her "Because this is painful..." ("disgust", "narrow", "worried", "R", cheeks="blush", tears="soft") - her "And I just want you to cum sooner, [genie_name]..." ("disgust", "narrow", "base", "down", cheeks="blush", tears="soft") + her "And I just want you to cum sooner, [name_genie_hermione]..." ("disgust", "narrow", "base", "down", cheeks="blush", tears="soft") gen "So you stifle your cries of pain?" - her "Yes [genie_name]. *Sob*!" ("angry", "narrow", "base", "stare",cheeks="blush",tears="soft") + her "Yes [name_genie_hermione]. *Sob*!" ("angry", "narrow", "base", "stare",cheeks="blush",tears="soft") gen "Don't do that." gen "Sob, scream, and cry as much as you wish!" her "B-but--" ("disgust", "narrow", "worried", "down", cheeks="blush", tears="soft") @@ -265,7 +265,7 @@ label hg_anal_sex_1_intro: $ anal_lube_ITEM.owned -= 1 call play_music("playful_tension") # SEX THEME. - her "Lubrication, [genie_name]?!" ("angry", "wide", "base", "stare") + her "Lubrication, [name_genie_hermione]?!" ("angry", "wide", "base", "stare") gen "*Shhh*... Just stay still." $ renpy.sound.play("sounds/slick_01.ogg") @@ -282,7 +282,7 @@ label hg_anal_sex_1_intro: her "Ahhh! It's cold!" ("clench", "happyCl", "worried", "mid") call nar(">You thoroughly lubricate her asshole.") gen "That should do it." - her "No, [genie_name], wait! Maybe--" ("angry", "base", "worried", "mid") + her "No, [name_genie_hermione], wait! Maybe--" ("angry", "base", "worried", "mid") $ hermione.set_pose("CG_lean_forward") $ hermione.strip("bottom", "panties") @@ -309,10 +309,10 @@ label hg_anal_sex_1_intro: gen "*Argh* Fuck, I can't pull out!" her "Ah! It hurts!" ("open", "base", "worried", "down", cheeks="blush", tears="soft") - gen "Then stop clenching on me so hard, [hermione_name]!" + gen "Then stop clenching on me so hard, [name_hermione_genie]!" gen "Your anus is so tight I can't even move!" her "Please, do something!" ("mad", "narrow", "worried", "mid", cheeks="blush", tears="soft") - gen "I'm trying, [hermione_name]!" + gen "I'm trying, [name_hermione_genie]!" her "Then try harder!" ("clench", "wide", "annoyed", "R", cheeks="blush", tears="soft") call slap_her her "..........!" ("angry", "happyCl", "base", "down", cheeks="blush", tears="soft") @@ -342,7 +342,7 @@ label hg_anal_sex_1_intro: $ genie_doll = "caress_grin" gen "Let's try it again..." - her "No! Stop, [genie_name]!" ("disgust", "wide", "worried", "R", cheeks="blush", tears="soft") + her "No! Stop, [name_genie_hermione]!" ("disgust", "wide", "worried", "R", cheeks="blush", tears="soft") her "I've changed my mind! I don't need these points!" ("mad", "wide", "worried", "R", cheeks="blush", tears="soft") gen "It will be fine this time, trust me..." @@ -454,7 +454,7 @@ label hg_anal_sex_1_intro: her "*SOB*! I HATE YOU..." ("angry", "happy", "base", "R", cheeks="blush", tears="soft") her "{size=+5}I HATE YOU AND YOUR NASTY OLD COCK!{/size}" ("clench", "base", "annoyed", "down", cheeks="blush", tears="soft") - gen "*Agh*...{w=0.3} Shut it, [hermione_name]!" + gen "*Agh*...{w=0.3} Shut it, [name_hermione_genie]!" if hermione.is_worn("bottom"): call nar(">Hermione clenches her ass again and you watch as another glob of cum leaks out.") @@ -465,12 +465,12 @@ label hg_anal_sex_1_intro: gen "Whew!... I think that was the last of it." gen "You alright?" her "Yes...{w=0.4} *Sob*!" ("angry", "narrow", "base", "down", cheeks="blush", tears="soft") - her "My butt hurts, but I am alright, [genie_name]..." ("soft", "narrow", "base", "R", cheeks="blush", tears="soft") + her "My butt hurts, but I am alright, [name_genie_hermione]..." ("soft", "narrow", "base", "R", cheeks="blush", tears="soft") gen "Well, you took my dick stoically, all things considered..." - her "Thank you [genie_name]..." ("base", "narrow", "worried", "down", cheeks="blush", tears="soft") + her "Thank you [name_genie_hermione]..." ("base", "narrow", "worried", "down", cheeks="blush", tears="soft") call ctc - her "I apologise for saying that I hate you, [genie_name]..." ("open", "narrow", "base", "R", cheeks="blush", tears="soft") + her "I apologise for saying that I hate you, [name_genie_hermione]..." ("open", "narrow", "base", "R", cheeks="blush", tears="soft") her "Your cock is not nasty..." ("angry", "narrow", "worried", "down", cheeks="blush") her "I suppose when you call me a \"whore\" you don't actually mean it..." ("open", "narrow", "worried", "down", cheeks="blush") gen "Right..." @@ -522,9 +522,9 @@ label hg_anal_sex_1_intro: play bg_sounds "sounds/sexloopveryfast.ogg" call nar(">Not showing the girl any mercy you thrust your hips hard against her, pushing your cock down to the hilt into her ass.") - her "*Ah*...{w=0.3} *Ah*...{w=0.3} [genie_name]..." ("angry", "narrow", "base", "R", cheeks="blush", tears="soft") + her "*Ah*...{w=0.3} *Ah*...{w=0.3} [name_genie_hermione]..." ("angry", "narrow", "base", "R", cheeks="blush", tears="soft") her "You're...{w=0.3} *Ah*...{w=0.3} You're tearing me apart..." ("angry", "narrow", "base", "stare", cheeks="blush", tears="soft_blink") - gen "You aint seen nothing yet [hermione_name]!" + gen "You aint seen nothing yet [name_hermione_genie]!" play bg_sounds "sounds/sexloopfast.ogg" call nar(">You slow down your thrusting until finally...") @@ -570,14 +570,14 @@ label hg_anal_sex_1_intro: gen "Well, I'm done...{w=0.4} You can get off my desk now." - her "Yes, [genie_name]...{w=0.3} Just...{w=0.3} Give me a minute..." ("soft", "narrow", "base", "down", cheeks="blush", tears="soft") + her "Yes, [name_genie_hermione]...{w=0.3} Just...{w=0.3} Give me a minute..." ("soft", "narrow", "base", "down", cheeks="blush", tears="soft") gen "You feeling alright?" her "It still hurts a little, but..." ("soft", "narrow", "base", "R", cheeks="blush", tears="soft") gen "But what?" - her "But in a good way... [genie_name]." ("soft", "narrow", "base", "down", cheeks="blush", tears="soft") + her "But in a good way... [name_genie_hermione]." ("soft", "narrow", "base", "down", cheeks="blush", tears="soft") gen "In a good way, *huh*?" gen "*Heh*...{w=0.3} You cute, little minx." - her "Can I get paid now, [genie_name]?" ("angry", "narrow", "base", "R", cheeks="blush", tears="soft") + her "Can I get paid now, [name_genie_hermione]?" ("angry", "narrow", "base", "R", cheeks="blush", tears="soft") gen "Certainly!" @@ -597,8 +597,8 @@ label hg_anal_sex_2_intro: $ current_payout = 90 $ hg_pf_sex.change_icon(a="heart_half", b="heart_red") - gen "How about another assfuck, [hermione_name]?" - her "Of course, [genie_name]." ("base", "narrow", "base", "up", flip=True) + gen "How about another assfuck, [name_hermione_genie]?" + her "Of course, [name_genie_hermione]." ("base", "narrow", "base", "up", flip=True) gen "*Hngh*! You little minx!" show screen blkfade @@ -645,7 +645,7 @@ label hg_anal_sex_2_intro: gen "Oh, ye-es!" her "*Ah*..." ("grin", "narrow", "worried", "mid") - gen "It seems like your butthole has become a bit more welcoming, [hermione_name]." + gen "It seems like your butthole has become a bit more welcoming, [name_hermione_genie]." gen "I'm going to start moving now..." play bg_sounds "sounds/slickloop.ogg" fadein 2 @@ -656,12 +656,12 @@ label hg_anal_sex_2_intro: her "*Ah*...{w=0.3} *Ah*...{w=0.3} Yes..." ("open", "narrow", "base", "down") her "I suppose I am..." ("base", "narrow", "base", "down") gen "Although that is what I'd expect from such a--" - if hermione_name == "Whore": + if name_hermione_genie == "Whore": her "I am a whore after all... I'm here to do whatever it is you need..." ("base", "narrow", "base", "mid") $ genie_doll = "hold_grin" gen "That you are..." else: - her "Please [genie_name]...{w=0.3} Call me a \"whore\"..." ("grin", "narrow", "base", "down", cheeks="blush") + her "Please [name_genie_hermione]...{w=0.3} Call me a \"whore\"..." ("grin", "narrow", "base", "down", cheeks="blush") $ genie_doll = "hold_grin" gen "*He-Heh*...{w=0.3} You don't have to ask me twice!" gen "Now bend over so I can fuck your ass more easily, whore!" @@ -679,39 +679,39 @@ label hg_anal_sex_2_intro: her "*Mmm*...{w=0.3} So aggressive..." ("base", "narrow", "base", "R") $ genie_doll = "caress_grin" - if genie_name == "Master": + if name_genie_hermione == "Master": gen "That's what you deserve for being such a slut!" - elif genie_name == "Daddy": + elif name_genie_hermione == "Daddy": gen "That's for you get for being such a naughty girl!" her "..." ("base", "narrow", "base", "mid", cheeks="blush") her "...{fast}..." ("normal", "narrow", "base", "R", cheeks="blush") - her "[genie_name]?" ("open", "narrow", "worried", "R", cheeks="blush") + her "[name_genie_hermione]?" ("open", "narrow", "worried", "R", cheeks="blush") $ genie_doll = "caress" gen "Yes, whore?" her "*Ehm*..." ("angry", "narrow", "base", "mid", cheeks="blush") - her "Would you marry me, [genie_name]?" ("angry", "happy", "base", "down", cheeks="blush") + her "Would you marry me, [name_genie_hermione]?" ("angry", "happy", "base", "down", cheeks="blush") with hpunch stop bg_sounds fadeout 2 gen "{size=+9}WHAT?!{/size}" - gen "Don't tell me you're pregnant, [hermione_name]!" + gen "Don't tell me you're pregnant, [name_hermione_genie]!" gen "We witchers are infertile!" her "Right... You expect me to believe that?" ("disgust", "narrow", "worried", "R", cheeks="blush") gen "*Err*..." - her "I couldn't get pregnant the way we are doing it anyway, [genie_name]..." ("soft", "narrow", "worried", "down", cheeks="blush") + her "I couldn't get pregnant the way we are doing it anyway, [name_genie_hermione]..." ("soft", "narrow", "worried", "down", cheeks="blush") gen "Good point..." play bg_sounds "sounds/sexloopfast.ogg" her "*Ah*..." ("angry", "base", "base", "mid", cheeks="blush") gen "What is this talk of marriage then?" - her "You misunderstood me [genie_name]." ("clench", "narrow", "base", "R", cheeks="blush") + her "You misunderstood me [name_genie_hermione]." ("clench", "narrow", "base", "R", cheeks="blush") her "I meant to say, would you marry a girl {size=+5}like{/size} me?" ("soft", "narrow", "base", "mid", cheeks="blush") - her "I would never propose to a man with his cock in my ass, [genie_name]..." ("base", "narrow", "worried", "L", cheeks="blush", emote="sweat") + her "I would never propose to a man with his cock in my ass, [name_genie_hermione]..." ("base", "narrow", "worried", "L", cheeks="blush", emote="sweat") gen "Good. Because I don't think any man would be able to say {i}no{/i}." #STRIP top and bra (all) @@ -738,20 +738,20 @@ label hg_anal_sex_2_intro: gen "Well, hypothetically speaking of course..." her "...{w=0.3} of course.{heart}" ("base", "narrow", "base", "R", cheeks="blush") her ".............." ("base", "narrow", "base", "down", cheeks="blush") - her "But why do you say that, [genie_name]?" ("normal", "happy", "base", "R", cheeks="blush") + her "But why do you say that, [name_genie_hermione]?" ("normal", "happy", "base", "R", cheeks="blush") gen "*Huh*?" - gen "What do you mean {i}why{/i}, [hermione_name]?" + gen "What do you mean {i}why{/i}, [name_hermione_genie]?" gen "You are young and attractive..." gen "Tight asshole, full tits and a wet little pussy..." her "...{heart}" ("soft", "narrow", "worried", "R", cheeks="blush") gen "You will make some lucky guy a very happy man one day, whore." - if hermione_name == "Whore": + if name_hermione_genie == "Whore": her "*Mmm*...{w=0.3} I love it when you call me that..." ("grin", "narrow", "annoyed", "up", cheeks="blush") else: - gen "*Uhm*... I mean, [hermione_name]." - her "No, {i}whore{/i} is good. Call me that, [genie_name]." ("grin", "narrow", "annoyed", "up", cheeks="blush") + gen "*Uhm*... I mean, [name_hermione_genie]." + her "No, {i}whore{/i} is good. Call me that, [name_genie_hermione]." ("grin", "narrow", "annoyed", "up", cheeks="blush") gen "See?{w=0.3} You are a great catch, I'm telling you, whore." - her "*Ah*...{heart}{w=0.3} Thank you, [genie_name]." ("grin", "narrow", "base", "down", cheeks="blush", tears="soft") + her "*Ah*...{heart}{w=0.3} Thank you, [name_genie_hermione]." ("grin", "narrow", "base", "down", cheeks="blush", tears="soft") gen "*Huh*?" gen "Are you crying?" @@ -763,12 +763,12 @@ label hg_anal_sex_2_intro: her "...{w=0.3} No one will ever want me." ("angry", "happy", "base", "mid",cheeks="blush",tears="soft") gen "Oh, they will want you alright!" her "What?{w=0.3} But you said..." ("open", "wide", "worried", "stare",cheeks="blush",tears="soft") - gen "Marriage, [hermione_name]...{w=0.3} Marriage is impossible for you." + gen "Marriage, [name_hermione_genie]...{w=0.3} Marriage is impossible for you." gen "But as a man-pleaser you are a great catch!" her "Really?" ("open", "wide", "worried", "stare",cheeks="blush",tears="soft") gen "Are you kidding me?!" gen "Young, hot, and slutty. You could have any man you want!" - her "I think you may be right, [genie_name]." ("base", "narrow", "worried", "mid",cheeks="blush",tears="soft") + her "I think you may be right, [name_genie_hermione]." ("base", "narrow", "worried", "mid",cheeks="blush",tears="soft") gen "I know I am right, whore." gen "Now wiggle that little ass of yours a little." her "Like this?" ("angry", "base", "worried", "mid", cheeks="blush",tears="soft") @@ -782,9 +782,9 @@ label hg_anal_sex_2_intro: her "Yes, yes...{heart}{w=0.3} I am a whore...{heart}" ("angry", "base", "worried", "mid", cheeks="blush",tears="soft") gen "Are you crying?" - her "Amongst other things, [genie_name]...{heart}{heart}{heart}" ("angry", "narrow", "base", "stare", cheeks="blush",tears="soft") + her "Amongst other things, [name_genie_hermione]...{heart}{heart}{heart}" ("angry", "narrow", "base", "stare", cheeks="blush",tears="soft") gen "Amongst other things?" - her "I'm cumming [genie_name]...{heart}{heart}{heart}" ("smile", "narrow", "annoyed", "up", cheeks="blush", tears="soft") + her "I'm cumming [name_genie_hermione]...{heart}{heart}{heart}" ("smile", "narrow", "annoyed", "up", cheeks="blush", tears="soft") gen "*Agh*! My cock!" gen "Relax your muscles a little, would you?" her "BUT I'M CUMMING!{heart}{heart}{heart}" ("open", "happyCl", "worried", "mid", cheeks="blush", tears="soft_blink") @@ -801,7 +801,7 @@ label hg_anal_sex_2_intro: call nar(">You push Hermione down onto the desk... Pumping your cock deep inside her ass, your pelvis smacks loudly against her cheeks.") her "*Ah-hah*...{w=0.3} So deep..." ("mad", "narrow", "base", "down", cheeks="blush", tears="soft") - her "{size=+7}I'm--{w=0.3} I'm cumming [genie_name]!!!{/size}" ("angry", "narrow", "worried", "stare", cheeks="blush", tears="soft") + her "{size=+7}I'm--{w=0.3} I'm cumming [name_genie_hermione]!!!{/size}" ("angry", "narrow", "worried", "stare", cheeks="blush", tears="soft") gen "{size=+7}Me too!{/size}" menu: @@ -840,7 +840,7 @@ label hg_anal_sex_2_intro: else: $ hermione.set_cum(pussy="heavy") - her "*Ah*...{heart}{w=0.3} your cum, [genie_name]...{heart}" ("base", "narrow", "worried", "R", cheeks="blush", tears="soft") + her "*Ah*...{heart}{w=0.3} your cum, [name_genie_hermione]...{heart}" ("base", "narrow", "worried", "R", cheeks="blush", tears="soft") gen "*Ah*...{w=0.3} Yes..." her "*Ah*...{w=0.3} *Ah*...{w=0.3} *Ah*...{w=0.3}{heart}" ("base", "narrow", "worried", "down", cheeks="blush", tears="soft") gen "Well... Suppose it's time for you to get your points..." @@ -920,16 +920,16 @@ label hg_anal_sex_2_intro: her "{heart}{heart}*Mmm*...{heart}{heart}" ("grin", "narrow", "worried", "down", cheeks="blush") gen "Well, this was intense..." her "*Ah-ha*...{heart} *Ah*...{heart}" ("crooked_smile", "narrow", "base", "down", cheeks="blush", tears="soft") - gen "Are You alright, [hermione_name]?" + gen "Are You alright, [name_hermione_genie]?" her "I think so...{w=0.3} I'm not sure..." ("grin", "narrow", "base", "stare",cheeks="blush",tears="soft") - her "I think I may still be cumming, [genie_name]." ("base", "narrow", "base", "R", cheeks="blush", tears="soft") + her "I think I may still be cumming, [name_genie_hermione]." ("base", "narrow", "base", "R", cheeks="blush", tears="soft") her "Or maybe not..." ("grin", "narrow", "worried", "mid", cheeks="blush", tears="soft") her "Everything is in a daze...{w=0.3} And my legs feel so weak..." ("grin", "narrow", "worried", "down", cheeks="blush", tears="soft") if game.daytime: - gen "Well you better get on your feet so you can receive your payment, [hermione_name]... You've still got lessons to get to." + gen "Well you better get on your feet so you can receive your payment, [name_hermione_genie]... You've still got lessons to get to." else: gen "Then I better get to awarding your points so you can get some rest..." - her "Oh...{w=0.3} Of course [genie_name]..." ("grin", "narrow", "worried", "R", cheeks="blush", tears="soft") + her "Oh...{w=0.3} Of course [name_genie_hermione]..." ("grin", "narrow", "worried", "R", cheeks="blush", tears="soft") show screen blkfade with d5 @@ -950,7 +950,7 @@ label hg_anal_sex_3: ### Will be added with Missionary pose ### #gen "Let's see... How shall we do this..." - #her "[genie_name]?" + #her "[name_genie_hermione]?" #menu: #"-Flip her onto the desk-": #jump hg_sex_missionary_anal @@ -1022,7 +1022,7 @@ label hg_anal_sex_3: her "*Ah*..." ("soft", "narrow", "worried", "mid", cheeks="blush") $ genie_doll = "hold" - gen "*Hmm*... This does feel a lot easier than before, you haven't pre-lubed your butthole have you [hermione_name]?" + gen "*Hmm*... This does feel a lot easier than before, you haven't pre-lubed your butthole have you [name_hermione_genie]?" her "*Ah*...{w=0.4} *Ehm*..." ("angry", "narrow", "base", "down", cheeks="blush") @@ -1033,16 +1033,16 @@ label hg_anal_sex_3: $ genie_doll = "hold" gen "So, where is it? I didn't see you bring it in." - her "*Ah*...{w=0.4} *Ah*...{w=0.4} I--{w=0.2} I left it outside your door [genie_name]..." ("soft", "narrow", "base", "mid", cheeks="blush") + her "*Ah*...{w=0.4} *Ah*...{w=0.4} I--{w=0.2} I left it outside your door [name_genie_hermione]..." ("soft", "narrow", "base", "mid", cheeks="blush") gen "You don't say..." gen "Aren't you worried what people might think if they saw a bottle of lube out there?" - her "*Ah*...{w=0.4} *Ah*...{w=0.4} No, [genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") + her "*Ah*...{w=0.4} *Ah*...{w=0.4} No, [name_genie_hermione]..." ("soft", "closed", "base", "mid", cheeks="blush") her "They--{w=0.2} *Ah*...{w=0.4} They would probably hear my--{w=0.4} *Ah*...{w=0.2} Moaning through the door anyway so why--{w=0.2} *Ah*...{w=0.4} Why even bother..." ("open", "narrow", "worried", "mid", cheeks="blush") menu: "-Chastise her-": gen "So you don't care at all?" - her "*Ah*...{w=0.4} I don't, [genie_name]..." ("base", "narrow", "base", "down", cheeks="blush") + her "*Ah*...{w=0.4} I don't, [name_genie_hermione]..." ("base", "narrow", "base", "down", cheeks="blush") gen "What if one of your Gryffindor friends suddenly turned up outside my door?" her "They--{w=0.2} *Ah*...{w=0.4} They wouldn't..." ("open", "narrow", "worried", "R", cheeks="blush") gen "Are you sure? I mean it's not like the door is locked or anything..." @@ -1062,9 +1062,9 @@ label hg_anal_sex_3: gen "What if I told you that I requested them to be here?" her "*Ah*...{w=0.4} You...{w=0.4} You wouldn't..." ("clench", "happy", "base", "R", cheeks="blush") gen "Don't you think it's about time they saw exactly what lengths you've gone through to help your house?" - her "*Ah*...{w=0.3} [genie_name]...{w=0.3} I told you...{w=0.3} They can't--" ("angry", "happy", "annoyed", "mid", cheeks="blush") + her "*Ah*...{w=0.3} [name_genie_hermione]...{w=0.3} I told you...{w=0.3} They can't--" ("angry", "happy", "annoyed", "mid", cheeks="blush") gen "I bet you'd like nothing more than one of your friends walking through that door to see you taking my dick up your ass..." - her "Please [genie_name]... Don't tell me you've--" ("clench", "happyCl", "base", "mid", cheeks="blush") + her "Please [name_genie_hermione]... Don't tell me you've--" ("clench", "happyCl", "base", "mid", cheeks="blush") play bg_sounds "sounds/sexloopfast.ogg" @@ -1075,7 +1075,7 @@ label hg_anal_sex_3: her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." ("open", "happyCl", "annoyed", "mid", cheeks="blush") gen "I bet the entire castle can hear your moans and cheeks slapping..." her "*Ah*...{w=0.2} *Ah*...{w=0.2} They--{w=0.2} *Ah*...{w=0.4} They wouldn't...." ("angry", "happyCl", "worried", "mid", cheeks="blush") - gen "Do you think they'd recognize the sound of your voice, [hermione_name]?" + gen "Do you think they'd recognize the sound of your voice, [name_hermione_genie]?" her "*Ah*...{w=0.4} Of course they--" ("upset", "happyCl", "worried", "mid", cheeks="blush") gen "Of course they would..." gen "With how wet you've been lately..." @@ -1090,7 +1090,7 @@ label hg_anal_sex_3: "\"Anal beads?\"": her "A-- Anal beads?!" ("clench", "narrow", "base", "down", cheeks="blush") her "Of course I haven't!" ("disgust", "narrow", "base", "R", cheeks="blush") - gen "*Hmm*...{w=0.4} Could've fooled me [hermione_name]...{w=0.4} You don't normally get used to taking it in the ass this easily..." + gen "*Hmm*...{w=0.4} Could've fooled me [name_hermione_genie]...{w=0.4} You don't normally get used to taking it in the ass this easily..." her "*Hmph*..." ("upset", "narrow", "worried", "L", cheeks="blush") her "I suppose I'm just a natural..." ("open", "narrow", "worried", "L", cheeks="blush") gen "Clearly..." @@ -1099,7 +1099,7 @@ label hg_anal_sex_3: "-Reward her bravery-": gen "Well then I suppose you wouldn't mind me going all out on you then..." gen "After all, it's not like you'd be able to moan loud enough for anyone to hear you through the window..." - her "*Ah*...{w=0.2} Of course...{w=0.4} Go ahead, [genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + her "*Ah*...{w=0.2} Of course...{w=0.4} Go ahead, [name_genie_hermione]..." ("open", "closed", "base", "mid", cheeks="blush") play bg_sounds "sounds/slickloopfast.ogg" @@ -1108,8 +1108,8 @@ label hg_anal_sex_3: play bg_sounds "sounds/sexloopfast.ogg" - her "*Ah*...{w=0.2} *Ah*...{w=0.2} [genie_name]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") - gen "That's it [hermione_name]..." + her "*Ah*...{w=0.2} *Ah*...{w=0.2} [name_genie_hermione]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") + gen "That's it [name_hermione_genie]..." gen "Don't be afraid to show how much you're enjoying this..." her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." ("open", "happyCl", "base", "down", cheeks="blush") @@ -1132,7 +1132,7 @@ label hg_anal_sex_3: her "{size=+5}*Ah*!!!{/size}" ("open_tongue", "narrow", "base", "up", cheeks="blush") gen "There it is!" - gen "Well... I suppose you were right [hermione_name]..." + gen "Well... I suppose you were right [name_hermione_genie]..." call slap_her @@ -1153,9 +1153,9 @@ label hg_anal_sex_3: play bg_sounds "sounds/sexloopveryfast.ogg" call nar(">You push Hermione down onto the desk and begin fucking her asshole rapidly...") - her "*Ah*...{w=0.3} [genie_name]!" ("soft", "narrow", "base", "up", cheeks="blush") + her "*Ah*...{w=0.3} [name_genie_hermione]!" ("soft", "narrow", "base", "up", cheeks="blush") her "You're...{w=0.3} You're gonna break me!" ("grin", "narrow", "base", "up", cheeks="blush") - gen "I've already broken you, [hermione_name]!" + gen "I've already broken you, [name_hermione_genie]!" gen "Every time I've called you to my office you arrive here without a moment of hesitation." her "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*..." ("grin", "happyCl", "base", "down", cheeks="blush") gen "Even after the things I've done to you...{w=0.3} You can't wait to get back in here and do it again..." @@ -1182,7 +1182,7 @@ label hg_anal_sex_3: gen "You should be ashamed of yourself!" her "I--" ("angry", "base", "base", "mid", cheeks="blush") gen "Admit it!" - her "{size=+5}I'm cumming [genie_name]!{/size}" ("angry", "happyCl", "base", "mid", cheeks="blush") + her "{size=+5}I'm cumming [name_genie_hermione]!{/size}" ("angry", "happyCl", "base", "mid", cheeks="blush") gen "Oh, no you don't!" call slap_her @@ -1222,7 +1222,7 @@ label hg_anal_sex_3: $ renpy.sound.play("sounds/slick_01.ogg") call cum_block - her "*Ah*!{heart} Yes!{heart} Fill my tight little ass [genie_name]!{heart}" ("angry", "narrow", "annoyed", "up", cheeks="blush", tears="soft") + her "*Ah*!{heart} Yes!{heart} Fill my tight little ass [name_genie_hermione]!{heart}" ("angry", "narrow", "annoyed", "up", cheeks="blush", tears="soft") gen "{size=+15}Argh! Yes!{/size}" her "{size=+7}*Ah*! Fill your cum dumpster!!!!{heart}{heart}{heart}{/size}" ("crooked_smile", "narrow", "base", "mid", cheeks="blush", tears="soft") @@ -1239,8 +1239,8 @@ label hg_anal_sex_3: her "*Ah*...{heart}{w=0.3} My ass is so full...{heart}" ("grin", "narrow", "worried", "R", cheeks="blush", tears="soft") gen "*Ah*...{w=0.3} And you better keep it in there, slut." - her "*Ah*...{w=0.3} *Ah*...{w=0.3} yes [genie_name]...{heart}" ("base", "narrow", "worried", "down", cheeks="blush", tears="soft") - gen "*Hmm*... I think it's time for you to receive your points [hermione_name]..." + her "*Ah*...{w=0.3} *Ah*...{w=0.3} yes [name_genie_hermione]...{heart}" ("base", "narrow", "worried", "down", cheeks="blush", tears="soft") + gen "*Hmm*... I think it's time for you to receive your points [name_hermione_genie]..." $ renpy.sound.play("sounds/slick_02.ogg") $ genie_doll = "after" @@ -1281,7 +1281,7 @@ label hg_anal_sex_3: with d5 $ renpy.sound.play("sounds/slick_02.ogg") - her "*Ah-aha*! Yes [genie_name] cover me in cum! {heart}{heart}{heart}" ("grin", "narrow", "base", "down", cheeks="blush") + her "*Ah-aha*! Yes [name_genie_hermione] cover me in cum! {heart}{heart}{heart}" ("grin", "narrow", "base", "down", cheeks="blush") $ genie_doll = "after" @@ -1317,13 +1317,13 @@ label hg_anal_sex_3: her "*Ah-ha*...{heart} *Ah*...{heart}" ("crooked_smile", "narrow", "base", "down", cheeks="blush") her "Every...{w=0.4} Last..." ("grin", "narrow", "base", "stare",cheeks="blush") her "*Mmm*..." ("base", "narrow", "base", "mid", cheeks="blush") - gen "[hermione_name]?" + gen "[name_hermione_genie]?" her "..." ("base", "narrow", "base", "down", cheeks="blush") if game.daytime: gen "You've got class to get to..." else: gen "*Err*... Perhaps you should go get some rest..." - her "Oh...{w=0.3} Of course [genie_name]..." ("soft", "narrow", "worried", "down", cheeks="blush") + her "Oh...{w=0.3} Of course [name_genie_hermione]..." ("soft", "narrow", "worried", "down", cheeks="blush") her "Just give me a moment..." ("base", "narrow", "worried", "mid", cheeks="blush") show screen blkfade diff --git a/game/scripts/characters/hermione/events/favors/show_me_your_panties.rpy b/game/scripts/characters/hermione/events/favors/show_me_your_panties.rpy index b093236e..f7727a9f 100644 --- a/game/scripts/characters/hermione/events/favors/show_me_your_panties.rpy +++ b/game/scripts/characters/hermione/events/favors/show_me_your_panties.rpy @@ -44,7 +44,7 @@ label hg_pf_admire_panties: # If Hermione is at tier 4+, she does not care about points. if her_tier < 4 and current_payout > 0: $ gryffindor += current_payout - gen "{number=current_payout} points to Gryffindor, [hermione_name]. Well done." ("base", xpos="far_left", ypos="head") + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]. Well done." ("base", xpos="far_left", ypos="head") if hg_pf_admire_panties.counter == 1: # First time her "Another {number=current_payout} points..." ("base", "narrow", "worried", "down") @@ -55,7 +55,7 @@ label hg_pf_admire_panties: if game.daytime: her "Well, my classes are about to start..." ("open", "closed", "base", "mid") else: - her "It's getting pretty late, [genie_name]..." ("open", "closed", "base", "mid") + her "It's getting pretty late, [name_genie_hermione]..." ("open", "closed", "base", "mid") her "Will this be all?" ("open", "base", "base", "mid") gen "Yes, you can go now." ("base", xpos="far_left", ypos="head") @@ -99,13 +99,13 @@ label hg_pf_admire_panties_T1_intro_E1: gen "Nothing drastic, really..." ("base", xpos="far_left", ypos="head") gen "I just want you to show me your panties." ("base", xpos="far_left", ypos="head") her "My... panties...?" ("open", "base", "base", "mid") - her "[genie_name]!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "I know, I know, this a little weird..." ("base", xpos="far_left", ypos="head") her "{size=+7}A little !?{/size}" ("shock", "wide", "base", "stare") her "This is completely inappropriate!" gen "Listen, we need to go through this phase before we get to the good stuff, alright?" ("base", xpos="far_left", ypos="head") - her "The \"good stuff\"? [genie_name], I don't understand..." ("angry", "base", "base", "mid") - gen "What don't you understand, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "The \"good stuff\"? [name_genie_hermione], I don't understand..." ("angry", "base", "base", "mid") + gen "What don't you understand, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "Do you need these points or not?" ("base", xpos="far_left", ypos="head") her "I do..." ("disgust", "base", "base", "down") gen "Get up here and show them to me then..." ("base", xpos="far_left", ypos="head") @@ -177,7 +177,7 @@ label hg_pf_admire_panties_T1: # Call label # Event 2 (r) - Hermione is still not happy. label hg_pf_admire_panties_T2_intro_E1: - her "So, what will it be, [genie_name]?" + her "So, what will it be, [name_genie_hermione]?" gen "Nothing drastic, really..." ("base", xpos="far_left", ypos="head") gen "I just want you to show me your panties." ("base", xpos="far_left", ypos="head") @@ -194,7 +194,7 @@ label hg_pf_admire_panties_T2_intro_E1: jump end_hg_pf_admire_panties label hg_pf_admire_panties_T2_E1: - her "What will it be, [genie_name]?" + her "What will it be, [name_genie_hermione]?" gen "I'd like you to show me your panties again." ("base", xpos="far_left", ypos="head") her ".................." ("annoyed", "base", "worried", "R") her "Alright..." ("open", "base", "worried", "R") @@ -227,7 +227,7 @@ label hg_pf_admire_panties_T2: # Call label call play_music("playful_tension") - her "Here, [genie_name]..." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=d3) + her "Here, [name_genie_hermione]..." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=d3) call ctc menu: @@ -237,13 +237,13 @@ label hg_pf_admire_panties_T2: # Call label her "I know everyone will be so happy..." "\"I like your panties...\"": - her "Thank you, [genie_name]..." ("base", "happy", "base", "mid") + her "Thank you, [name_genie_hermione]..." ("base", "happy", "base", "mid") "-Keep looking into her eyes-": her ".............................." ("soft", "base", "base", "mid") her "...........................?" her "................................" ("grin", "base", "base", "R") - her "[genie_name], please... You are embarrassing me." ("grin", "happyCl", "worried", "mid",emote="sweat") + her "[name_genie_hermione], please... You are embarrassing me." ("grin", "happyCl", "worried", "mid",emote="sweat") call ctc return @@ -253,7 +253,7 @@ label hg_pf_admire_panties_T2: # Call label label hg_pf_admire_panties_T3_intro_E1: if hg_pf_admire_panties.counter == 1: - gen "[hermione_name], could you show me your panties?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], could you show me your panties?" ("base", xpos="far_left", ypos="head") if not hg_strip.trigger: her "My panties?" ("open", "narrow", "base", "mid") gen "If it's not too much trouble..." ("base", xpos="far_left", ypos="head") @@ -262,10 +262,10 @@ label hg_pf_admire_panties_T3_intro_E1: her "I suppose... If it's just my panties..." ("angry", "squint", "base", "R") gen "(You'd be so lucky...)" ("base", xpos="far_left", ypos="head") else: - gen "[hermione_name], I think it's time I took another look at your panties." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I think it's time I took another look at your panties." ("base", xpos="far_left", ypos="head") if not hg_strip.trigger: her "Again?" ("open", "narrow", "base", "mid") - gen "Yes, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay." ("angry", "squint", "base", "R") else: her "Just my panties, right?" ("open", "squint", "base", "mid") @@ -295,26 +295,26 @@ label hg_pf_admire_panties_T3_intro_E1: call play_music("playful_tension") her "There you go." ("base", "squint", "base", "mid", xpos="mid", ypos="base", trans=dissolve) - gen "Very good, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Very good, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") menu: "\"How are you feeling?\"": - her "[genie_name]?" ("soft", "squint", "base", "mid") + her "[name_genie_hermione]?" ("soft", "squint", "base", "mid") gen "How does it feel, knowing you're earning your house a lot of points." ("base", xpos="far_left", ypos="head") her "*Ehm*... Good?" ("angry", "happy", "base", "mid") her "I mean, as good as you could feel when you're showing the headmaster your panties." ("angry", "squint", "base", "R", cheeks="blush") gen "Glad to hear it." ("base", xpos="far_left", ypos="head") "-Stare at her face-": - gen "You've got a very pretty face, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "base", "mid") + gen "You've got a very pretty face, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("angry", "base", "base", "mid") her "I thought you were supposed to be looking at my panties." ("angry", "narrow", "base", "mid") gen "Does it matter where I'm looking?" ("base", xpos="far_left", ypos="head") her "*Hmm*...{w=0.4} Well as long as you're still paying me..." ("angry", "narrow", "base", "R", cheeks="blush") "-Stare at her panties-": her "..." ("base", "squint", "base", "mid") her "...{fast}..." ("normal", "squint", "base", "mid") - her "[genie_name]?" ("open", "squint", "base", "mid", cheeks="blush") - gen "Yes, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("open", "squint", "base", "mid", cheeks="blush") + gen "Yes, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "You're staring very intently..." ("angry", "narrow", "base", "R", cheeks="blush") gen "Of course, I'm savouring every moment." ("base", xpos="far_left", ypos="head") her "Right..." ("open", "narrow", "base", "down", cheeks="blush") @@ -323,7 +323,7 @@ label hg_pf_admire_panties_T3_intro_E1: her "Are we done?" ("open", "base", "base", "mid", cheeks="blush") gen "Not quite." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("angry", "base", "base", "mid", cheeks="blush") gen "First I'd like you to take those panties off." ("base", xpos="far_left", ypos="head") if not hg_strip.trigger: @@ -370,12 +370,12 @@ label hg_pf_admire_panties_T3_intro_E1: $ hermione.wear("panties") her "Okay, that's{fast} enough..." ("open", "squint", "base", "mid", cheeks="blush") - gen "Very well, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Very well, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") jump end_hg_pf_admire_panties label hg_pf_admire_panties_T3_E1: - gen "[hermione_name], I think it's time I took another look at your panties." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I think it's time I took another look at your panties." ("base", xpos="far_left", ypos="head") her "Just my panties?" ("open", "narrow", "base", "mid") gen "*Hmm*... We'll see..." ("base", xpos="far_left", ypos="head") her "Alright..." ("open", "squint", "base", "mid") @@ -414,16 +414,16 @@ label hg_pf_admire_panties_T3_E1: gen "Right..." ("base", xpos="far_left", ypos="head") gen "(Then why not just pretend you're in the shower and bare it all.)" ("base", xpos="far_left", ypos="head") "\"Do you like showing off your panties?\"": - her "Like, [genie_name]?" ("open", "squint", "base", "mid") - gen "Yes [hermione_name]... Do you enjoy it?" ("base", xpos="far_left", ypos="head") + her "Like, [name_genie_hermione]?" ("open", "squint", "base", "mid") + gen "Yes [name_hermione_genie]... Do you enjoy it?" ("base", xpos="far_left", ypos="head") her "*Hmm*... I don't mind it I guess..." ("open", "squint", "base", "R") her "As long as it makes my house happy." ("base", "base", "base", "mid") gen "I'm sure it does." ("base", xpos="far_left", ypos="head") "-Stare at her panties-": her "..." ("base", "squint", "base", "mid") her "...{fast}..." ("normal", "squint", "base", "mid") - her "[genie_name]?" ("open", "squint", "base", "mid") - gen "Yes, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("open", "squint", "base", "mid") + gen "Yes, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Do you have to stare so intently at them?" ("angry", "squint", "base", "mid") gen "I don't." ("base", xpos="far_left", ypos="head") gen "..." ("base", xpos="far_left", ypos="head") @@ -433,7 +433,7 @@ label hg_pf_admire_panties_T3_E1: menu: "\"Now take them off.\"": - her "[genie_name]!" ("angry", "narrow", "base", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "narrow", "base", "mid", cheeks="blush") gen "What?" ("base", xpos="far_left", ypos="head") gen "Surely you knew this was coming..." ("base", xpos="far_left", ypos="head") her "*Hmph*... I suppose..." ("clench", "narrow", "base", "R", cheeks="blush") @@ -450,7 +450,7 @@ label hg_pf_admire_panties_T3_E1: her "..." ("angry", "narrow", "base", "R", cheeks="blush") #Looks at genie her "Okay, that's--" ("clench", "narrow", "base", "down", cheeks="blush") gen "Wait!" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "squint", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("angry", "squint", "base", "mid", cheeks="blush") gen "I'm not done yet." ("base", xpos="far_left", ypos="head") her "But you said--" ("open", "squint", "worried", "mid", cheeks="blush") gen "Quiet." ("base", xpos="far_left", ypos="head") @@ -471,11 +471,11 @@ label hg_pf_admire_panties_T3_E1: ## Can unequip underwear in wardrobe at this stage ## label hg_pf_admire_panties_T4_intro_E1: if hg_pf_admire_panties.counter == 1: - gen "[hermione_name], I'd like you to show me your panties, if that's not too much trouble." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I'd like you to show me your panties, if that's not too much trouble." ("base", xpos="far_left", ypos="head") else: - gen "[hermione_name], I'd like you to show me your panties again, if that's not too much trouble." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I'd like you to show me your panties again, if that's not too much trouble." ("base", xpos="far_left", ypos="head") her "My panties?" ("open", "narrow", "worried", "down") - gen "Yes [hermione_name]... Get up here will you..." ("base", xpos="far_left", ypos="head") + gen "Yes [name_hermione_genie]... Get up here will you..." ("base", xpos="far_left", ypos="head") her "Oh, Okay..." ("base", "narrow", "base", "down", cheeks="blush") call hide_characters @@ -518,17 +518,17 @@ label hg_pf_admire_panties_T4_intro_E1: call ctc # No Panties! - gen "Where are your panties, [hermione_name]?" ("angry", xpos="far_left", ypos="head") + gen "Where are your panties, [name_hermione_genie]?" ("angry", xpos="far_left", ypos="head") her "Oh, lately I just don't feel like wearing them..." ("base", "narrow", "worried", "down", cheeks="blush") else: call her_chibi("stand", "desk", "base") her "*Ehm*..." ("open", "squint", "base", "R", cheeks="blush", xpos="mid", ypos="base") - her "You asked me not to wear any panties [genie_name]..." ("base", "narrow", "worried", "down", cheeks="blush") + her "You asked me not to wear any panties [name_genie_hermione]..." ("base", "narrow", "worried", "down", cheeks="blush") gen "Oh... So I did..." ("base", xpos="far_left", ypos="head") gen "I just wanted to make sure you followed my instructions..." ("base", xpos="far_left", ypos="head") - gen "Well done [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "narrow", "worried", "mid", cheeks="blush") + gen "Well done [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione]..." ("base", "narrow", "worried", "mid", cheeks="blush") menu: "\"You little slut!\"": @@ -539,7 +539,7 @@ label hg_pf_admire_panties_T4_intro_E1: menu: "\"Absolutely!\"": gen "Ten additional points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]!" ("base", "happyCl", "worried", "mid") + her "Thank you, [name_genie_hermione]!" ("base", "happyCl", "worried", "mid") $ gryffindor+= 10 @@ -565,7 +565,7 @@ label hg_pf_admire_panties_T4_intro_E1: jump end_hg_pf_admire_panties label hg_pf_admire_panties_T4_E1: - gen "[hermione_name], I'd like you to show me your panties again if possible." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I'd like you to show me your panties again if possible." ("base", xpos="far_left", ypos="head") her "Oh..." ("open", "narrow", "worried", "down") her "Well, that might be an issue..." ("base", "narrow", "base", "down", cheeks="blush") @@ -606,16 +606,16 @@ label hg_pf_admire_panties_T4_E1: call ctc # No Panties! - gen "No panties again, [hermione_name]?" ("grin", xpos="far_left", ypos="head") + gen "No panties again, [name_hermione_genie]?" ("grin", xpos="far_left", ypos="head") her "Well... what's the point if they're just going to be in the way all the time..." ("base", "narrow", "worried", "down", cheeks="blush") else: call her_chibi("stand", "desk", "base") her "I'm not wearing any panties right now..." ("base", "narrow", "base", "mid", cheeks="blush", xpos="mid", ypos="base", trans=dissolve) her "Was I supposed to? I'm sure you asked me not to wear them..." ("open", "narrow", "worried", "down", cheeks="blush") - gen "So I did... Good job [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "So I did... Good job [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I'm glad that I can count on you doing what I ask of you." ("base", xpos="far_left", ypos="head") - her "Oh... Thank you [genie_name]." ("base", "narrow", "worried", "mid", cheeks="blush") + her "Oh... Thank you [name_genie_hermione]." ("base", "narrow", "worried", "mid", cheeks="blush") menu: "\"You little slut!\"": @@ -627,7 +627,7 @@ label hg_pf_admire_panties_T4_E1: "\"Absolutely!\"": gen "Absolutely!" ("base", xpos="far_left", ypos="head") gen "Ten additional points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]!" ("base", "happyCl", "worried", "mid") + her "Thank you, [name_genie_hermione]!" ("base", "happyCl", "worried", "mid") $ gryffindor+= 10 @@ -654,11 +654,11 @@ label hg_pf_admire_panties_T4_E1: pass - her "I could put my panties back on for you, if you'd like that, [genie_name]?" ("open", "base", "base", "mid") + her "I could put my panties back on for you, if you'd like that, [name_genie_hermione]?" ("open", "base", "base", "mid") menu: "\"Yes, put them back on!\"": - her "Alright, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Alright, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") hide hermione_main with d3 ">Hermione puts on her panties." @@ -674,7 +674,7 @@ label hg_pf_admire_panties_T4_E1: her "I hope you like them..." ("soft", "base", "base", "R") "\"No, keep them off!\"": - her "Of course, [genie_name]." ("soft", "narrow", "base", "mid") + her "Of course, [name_genie_hermione]." ("soft", "narrow", "base", "mid") $ hermione.unequip("panties") call ctc @@ -683,7 +683,7 @@ label hg_pf_admire_panties_T4_E1: label hg_pf_admire_panties_T4_E2: - gen "[hermione_name], show me those cute panties of yours again." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], show me those cute panties of yours again." ("base", xpos="far_left", ypos="head") her "Oh..." ("open", "narrow", "worried", "down") her "Okay..." ("base", "narrow", "base", "down", cheeks="blush") @@ -712,18 +712,18 @@ label hg_pf_admire_panties_T4_E2: # No Panties. if not hermione.is_worn("panties"): - gen "Where are your panties, [hermione_name]?" ("grin", xpos="far_left", ypos="head") + gen "Where are your panties, [name_hermione_genie]?" ("grin", xpos="far_left", ypos="head") her "You asked me not to wear any..." ("open", "squint", "base", "mid") gen "Oh right..." ("base", xpos="far_left", ypos="head") her "Most of the time I just leave them in the Gryffindor common room..." ("base", "squint", "base", "R") her "But I got them with me this time." ("base", "base", "base", "mid") call ctc - her "If you'd like, [genie_name], I could put my panties back on for you." ("soft", "narrow", "base", "mid_soft") + her "If you'd like, [name_genie_hermione], I could put my panties back on for you." ("soft", "narrow", "base", "mid_soft") menu: "\"Yes, put them back on!\"": - her "Alright, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Alright, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") hide hermione_main with d3 ">Hermione puts on her panties." @@ -739,22 +739,22 @@ label hg_pf_admire_panties_T4_E2: her "I hope you like them..." ("soft", "base", "base", "mid") "\"No, keep them off!\"": - her "Of course, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Of course, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") $ hermione.unequip("panties") call ctc else: - her "Do you like them, [genie_name]?" ("base", "narrow", "base", "mid_soft") - gen "Indeed I do, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Do you like them, [name_genie_hermione]?" ("base", "narrow", "base", "mid_soft") + gen "Indeed I do, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call ctc - her "I could take them off, if you'd like that, [genie_name]." ("open", "base", "base", "R") + her "I could take them off, if you'd like that, [name_genie_hermione]." ("open", "base", "base", "R") menu: "\"Yes, Take them off!\"": - her "Alright, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Alright, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") gen "And keep them off from now on!" ("base", xpos="far_left", ypos="head") - her "Whatever you want, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Whatever you want, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") hide hermione_main with d3 call nar(">Hermione takes off her panties.") @@ -764,10 +764,10 @@ label hg_pf_admire_panties_T4_E2: her "" ("base", "narrow", "base", "mid_soft") call ctc - her "I hope you like it, [genie_name]..." ("angry", "wink", "base", "mid") + her "I hope you like it, [name_genie_hermione]..." ("angry", "wink", "base", "mid") "\"No, keep them on!\"": - her "Sure, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Sure, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") call ctc jump end_hg_pf_admire_panties diff --git a/game/scripts/characters/hermione/events/favors/show_me_your_tits.rpy b/game/scripts/characters/hermione/events/favors/show_me_your_tits.rpy index 82481807..6885e56d 100644 --- a/game/scripts/characters/hermione/events/favors/show_me_your_tits.rpy +++ b/game/scripts/characters/hermione/events/favors/show_me_your_tits.rpy @@ -48,13 +48,13 @@ label hg_pf_admire_breasts: if her_tier <= 2: her ".................." ("annoyed", "base", "worried", "R") - her "Thank you, [genie_name]..." ("open", "base", "base", "R") + her "Thank you, [name_genie_hermione]..." ("open", "base", "base", "R") elif her_tier <= 5: her ".................." ("annoyed", "base", "worried", "R") - her "Thank you, [genie_name]..." ("soft", "base", "base", "mid") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "mid") else: her ".................." ("base", "happyCl", "base", "mid") - her "Thank you, [genie_name]..." ("soft", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]..." ("soft", "narrow", "base", "mid_soft") if game.daytime: her "Now if you don't mind I'd better go. my classes are about to start." @@ -103,8 +103,8 @@ label hg_pf_admire_breasts: label hg_pf_admire_breasts_T1_intro_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("normal", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]..." ("normal", "base", "base", "mid") gen "Has anyone ever told you what sweet-looking breasts you have?" ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 her "!!!" ("shock", "wide", "base", "stare") @@ -113,7 +113,7 @@ label hg_pf_admire_breasts_T1_intro_E1: gen "And show me what's underneath..." ("grin", xpos="far_left", ypos="head") her "Why would I--?!" ("angry", "wide", "base", "mid") - her "[genie_name], I refuse to bare my breasts for you!" ("open", "closed", "angry", "mid") + her "[name_genie_hermione], I refuse to bare my breasts for you!" ("open", "closed", "angry", "mid") her "How could you even suggest such a thing?!" ("angry", "base", "angry", "mid") gen "Don't you want to earn some house points?" ("base", xpos="far_left", ypos="head") her "Yes... But not in a way such as this!" ("angry", "narrow", "angry", "R") @@ -130,15 +130,15 @@ label hg_pf_admire_breasts_T1_intro_E1: gen "(...)" ("base", xpos="far_left", ypos="head") menu: - "\"Very well, [hermione_name].\"": + "\"Very well, [name_hermione_genie].\"": gen "Better than nothing I guess..." ("base", xpos="far_left", ypos="head") pass - "\"That won't be enough, [hermione_name]...\"": + "\"That won't be enough, [name_hermione_genie]...\"": gen "I'm not giving Gryffindor {number=current_payout} whole points for a mere glimpse..." ("angry", xpos="far_left", ypos="head") her "But--" ("open", "wide", "base", "stare") gen "No buts! You are dismissed." ("base", xpos="far_left", ypos="head") - her "Please, [genie_name]. I need those points!" ("disgust", "happyCl", "worried", "mid") + her "Please, [name_genie_hermione]. I need those points!" ("disgust", "happyCl", "worried", "mid") gen "Then might I suggest you put in some work to earn them..." ("base", xpos="far_left", ypos="head") her "(................)" ("annoyed", "narrow", "angry", "R") gen "Have a nice day, Miss Granger." ("base", xpos="far_left", ypos="head") @@ -193,7 +193,7 @@ label hg_pf_admire_breasts_T1_intro_E1: label hg_pf_admire_breasts_T1_intro_E2: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], Is it just me?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], Is it just me?" ("base", xpos="far_left", ypos="head") gen "Or is it getting really hot in here?!" ("grin", xpos="far_left", ypos="head") her "Sir...?" ("open", "wink", "base", "mid") gen "Take off your top for me, would you..." ("base", xpos="far_left", ypos="head") @@ -252,7 +252,7 @@ label hg_pf_admire_breasts_T1_intro_E2: label hg_pf_admire_breasts_T1_E2: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], how would you like to lift up your top for me?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how would you like to lift up your top for me?" ("base", xpos="far_left", ypos="head") her "Will I be getting points for this, Sir?" ("annoyed", "base", "angry", "mid") gen "Of course. {number=current_payout} points, as always." ("grin", xpos="far_left", ypos="head") her "(...............)" ("annoyed", "base", "angry", "mid") @@ -280,7 +280,7 @@ label hg_pf_admire_breasts_T1: # Call label call ctc gen "............." ("base", xpos="far_left", ypos="head") - gen "Very good, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Very good, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Can I get my points then?" ("disgust", "happyCl", "worried", "mid") gen "Of course..." ("base", xpos="far_left", ypos="head") @@ -298,8 +298,8 @@ label hg_pf_admire_breasts_T1: # Call label label hg_pf_admire_breasts_T2_intro_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("normal", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]..." ("normal", "base", "base", "mid") gen "How much will it cost me to see your tits?" ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 @@ -307,17 +307,17 @@ label hg_pf_admire_breasts_T2_intro_E1: her "How much will it cost you to...?" ("open", "base", "base", "mid") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "[genie_name]!" ("scream", "closed", "angry", "mid") + her "[name_genie_hermione]!" ("scream", "closed", "angry", "mid") gen "*Hmm*... I thought your house could use some extra points..." ("base", xpos="far_left", ypos="head") gen "But I guess I was wrong..." ("base", xpos="far_left", ypos="head") her ".........?" ("open", "base", "base", "mid") gen "Please don't mind me..." ("base", xpos="far_left", ypos="head") gen "All I want to do is help you..." ("base", xpos="far_left", ypos="head") her "............." ("annoyed", "base", "worried", "R") - her "Two hundred house points, [genie_name]." ("normal", "happyCl", "worried", "mid") - gen "So if I give you two hundred house points, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Two hundred house points, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid") + gen "So if I give you two hundred house points, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You will shamelessly bare your melons before me?" ("base", xpos="far_left", ypos="head") - her "[genie_name]! No need to be so vulgar!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]! No need to be so vulgar!" ("angry", "base", "angry", "mid") else: her "How much..." ("open", "base", "base", "mid") @@ -336,16 +336,16 @@ label hg_pf_admire_breasts_T2_intro_E1: her "Really?" ("open", "base", "base", "mid") gen "Well?" ("base", xpos="far_left", ypos="head") her "......................................" ("annoyed", "base", "worried", "R") - her "You have to promise me not to touch them, [genie_name]." + her "You have to promise me not to touch them, [name_genie_hermione]." gen "Sure, sure..." ("base", xpos="far_left", ypos="head") - her "I am only doing this for the honour of my house, [genie_name]!" ("scream", "happyCl", "worried", "mid") + her "I am only doing this for the honour of my house, [name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") pass "\"I will give you five points to see your tits.\"": her "Five?!" ("scream", "wide", "base", "mid") - her "[genie_name], I am not going to expose myself for a meagre five points!" ("angry", "base", "angry", "mid",emote="angry") - gen "Well, your tits sure aren't worth two hundred, [hermione_name]!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I am not going to expose myself for a meagre five points!" ("angry", "base", "angry", "mid",emote="angry") + gen "Well, your tits sure aren't worth two hundred, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "(They aren't?)" ("annoyed", "narrow", "worried", "down") her "Maybe one hundred - then?" ("annoyed", "narrow", "angry", "R") @@ -357,7 +357,7 @@ label hg_pf_admire_breasts_T2_intro_E1: her "................." ("annoyed", "wide", "base", "stare") her "A hundred points..." ("annoyed", "base", "base", "R") her "So be it..." ("mad", "narrow", "base", "R") - her "You have to promise me not to touch them, [genie_name]." + her "You have to promise me not to touch them, [name_genie_hermione]." gen "Sure, sure..." ("base", xpos="far_left", ypos="head") her "So be it..." ("smile", "happyCl", "base", "mid") @@ -368,7 +368,7 @@ label hg_pf_admire_breasts_T2_intro_E1: $ her_mood += 9 her "..............." ("annoyed", "narrow", "worried", "down") - her "You have to promise me not to touch them, [genie_name]." + her "You have to promise me not to touch them, [name_genie_hermione]." gen "Sure, sure..." ("base", xpos="far_left", ypos="head") her "Well, so be it..." ("clench", "narrow", "base", "down") @@ -393,17 +393,17 @@ label hg_pf_admire_breasts_T2_intro_E1: label hg_pf_admire_breasts_T2_intro_E2: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], how would you like to show me your breasts again?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how would you like to show me your breasts again?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "I'd rather not, [genie_name]..." ("annoyed", "narrow", "annoyed", "mid") + her "I'd rather not, [name_genie_hermione]..." ("annoyed", "narrow", "annoyed", "mid") gen "Are you sure?" ("base", xpos="far_left", ypos="head") gen "You could earn twenty-five house points for it!" ("grin", xpos="far_left", ypos="head") her "............." ("annoyed", "base", "worried", "R") - her "Very well, [genie_name]." ("angry", "base", "angry", "mid") + her "Very well, [name_genie_hermione]." ("angry", "base", "angry", "mid") her "But you better keep your hands to yourself!" ("annoyed", "narrow", "angry", "R", cheeks="blush") her "Don't you dare touch them!" ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "You need to promise me, [genie_name]!" ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "You need to promise me, [name_genie_hermione]!" ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Of course. I promise I won't touch..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -413,13 +413,13 @@ label hg_pf_admire_breasts_T2_intro_E2: label hg_pf_admire_breasts_T2_E2: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], I would very much like to see your breasts again!" ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I would very much like to see your breasts again!" ("grin", xpos="far_left", ypos="head") her "............." ("annoyed", "base", "worried", "R") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "Very well, [genie_name]." ("angry", "base", "angry", "mid") + her "Very well, [name_genie_hermione]." ("angry", "base", "angry", "mid") her "But you are not allowed to touch them!" ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "Promise me, [genie_name]!" ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "Promise me, [name_genie_hermione]!" ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Of course. I promise..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -437,11 +437,11 @@ label hg_pf_admire_breasts_T2_E2: label hg_pf_admire_breasts_T3_intro_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("annoyed", "narrow", "angry", "R") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("annoyed", "narrow", "angry", "R") gen "I need to see your tits." ("base", xpos="far_left", ypos="head") her "............" ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "Do you promise not to touch, [genie_name]?" ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "Do you promise not to touch, [name_genie_hermione]?" ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Of course." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -451,8 +451,8 @@ label hg_pf_admire_breasts_T3_intro_E1: label hg_pf_admire_breasts_T3_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "I need to see your tits, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Are you only going to watch, [genie_name]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") + gen "I need to see your tits, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Are you only going to watch, [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Of course..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -471,15 +471,15 @@ label hg_pf_admire_breasts_T3_E1: label hg_pf_admire_breasts_T4_intro_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("soft", "narrow", "base", "mid_soft") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("soft", "narrow", "base", "mid_soft") gen "Did I ever tell you what magnificent tits you have?" ("base", xpos="far_left", ypos="head") her "............" ("clench", "narrow", "base", "down", cheeks="blush") - her "Why do you have to be so vulgar, [genie_name]?!" ("clench", "happyCl", "worried", "mid", cheeks="blush") + her "Why do you have to be so vulgar, [name_genie_hermione]?!" ("clench", "happyCl", "worried", "mid", cheeks="blush") gen "Just take the compliment and come a bit closer to show them to me..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("base", "narrow", "worried", "down", cheeks="blush") + her "Yes, [name_genie_hermione]..." ("base", "narrow", "worried", "down", cheeks="blush") - her "Are you only going to watch, [genie_name]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "Are you only going to watch, [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Of course..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -489,10 +489,10 @@ label hg_pf_admire_breasts_T4_intro_E1: label hg_pf_admire_breasts_T4_E1: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "I need to see your tits, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("base", "narrow", "base", "up", cheeks="blush") + gen "I need to see your tits, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]." ("base", "narrow", "base", "up", cheeks="blush") - her "Are you only going to watch, [genie_name]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "Are you only going to watch, [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Of course..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 @@ -502,10 +502,10 @@ label hg_pf_admire_breasts_T4_E1: label hg_pf_admire_breasts_T4_E2: her "" ("normal", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "I have to see your marvellous knockers, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("base", "narrow", "base", "up", cheeks="blush") + gen "I have to see your marvellous knockers, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]." ("base", "narrow", "base", "up", cheeks="blush") - her "Are you only going to watch, [genie_name]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "Are you only going to watch, [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Of course..." ("base", xpos="far_left", ypos="head") $ current_payout = 25 diff --git a/game/scripts/characters/hermione/events/favors/show_me_your_tits_branches.rpy b/game/scripts/characters/hermione/events/favors/show_me_your_tits_branches.rpy index d1974d07..6c165ced 100644 --- a/game/scripts/characters/hermione/events/favors/show_me_your_tits_branches.rpy +++ b/game/scripts/characters/hermione/events/favors/show_me_your_tits_branches.rpy @@ -35,7 +35,7 @@ label hg_pf_admire_breasts_transition: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") if her_tier <= 2: her "{size=-5}(My breasts are completely exposed...){/size}" ("disgust", "narrow", "base", "down", cheeks="blush") - gen "Come closer [hermione_name], let me take a better look..." ("base", xpos="far_left", ypos="head") + gen "Come closer [name_hermione_genie], let me take a better look..." ("base", xpos="far_left", ypos="head") # Move to desk hide screen bld1 @@ -125,19 +125,19 @@ label hg_pf_admire_breasts_T2_touch: # Not a Call label call bld ">You reach out and dig your fingers into the girl's ample flesh..." - her "[genie_name], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") # Start Groping call her_chibi_scene("grope_tits") call ctc - gen "Relax, [hermione_name]. Just stand still!" ("base", xpos="far_left", ypos="head") + gen "Relax, [name_hermione_genie]. Just stand still!" ("base", xpos="far_left", ypos="head") gen "Oh... Those are some nice titties you've got..." ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "No, [genie_name], please! You mustn't do this..." ("shock", "happyCl", "worried", "mid") + her "No, [name_genie_hermione], please! You mustn't do this..." ("shock", "happyCl", "worried", "mid") gen "This won't take long, just stand still." ("base", xpos="far_left", ypos="head") - her "[genie_name], I didn't agree to this!" ("angry", "base", "angry", "mid", cheeks="blush") + her "[name_genie_hermione], I didn't agree to this!" ("angry", "base", "angry", "mid", cheeks="blush") with hpunch her "You must unhand me now!!!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") @@ -153,11 +153,11 @@ label hg_pf_admire_breasts_T2_touch: # Not a Call label pause .5 her "I think I'd better go..." ("angry", "happyCl", "worried", "mid", cheeks="blush", xpos="mid", ypos="base") - gen "Go ahead, [hermione_name]. You are not getting paid if you do..." ("base", xpos="far_left", ypos="head") + gen "Go ahead, [name_hermione_genie]. You are not getting paid if you do..." ("base", xpos="far_left", ypos="head") her "But I showed you my..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "And you touched me..." ("angry", "base", "angry", "mid", cheeks="blush") her "And I am getting nothing in return?" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") - gen "You are dismissed, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You are dismissed, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "*Grr*.........." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "{size=-5}(Burn in hell, you wretched old--){/size}" ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -181,8 +181,8 @@ label hg_pf_admire_breasts_T2_masturbate: # Not a Call label with d3 call play_music("chipper_doodle") # HERMIONE'S THEME. - her "[genie_name]?!!" ("angry", "wide", "base", "stare") - gen "Just stand still, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?!!" ("angry", "wide", "base", "stare") + gen "Just stand still, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") # Start Jerking Off. hide screen bld1 @@ -198,11 +198,11 @@ label hg_pf_admire_breasts_T2_masturbate: # Not a Call label call bld call nar(">You stare at Hermione's breasts with hunger...") - her "[genie_name], what are you...?" ("shock", "happyCl", "worried", "mid") + her "[name_genie_hermione], what are you...?" ("shock", "happyCl", "worried", "mid") call nar(">You keep stroking your hard cock...") - her "[genie_name], no..." ("disgust", "narrow", "base", "down", cheeks="blush") + her "[name_genie_hermione], no..." ("disgust", "narrow", "base", "down", cheeks="blush") her "You must... Put it away..." ("disgust", "narrow", "base", "down", cheeks="blush") - gen "Stop whining [hermione_name]. I'm not touching you, am I?" ("base", xpos="far_left", ypos="head") + gen "Stop whining [name_hermione_genie]. I'm not touching you, am I?" ("base", xpos="far_left", ypos="head") her "But..." ("angry", "happyCl", "worried", "mid", cheeks="blush") her "But I didn't agree to this!" ("angry", "base", "angry", "mid", cheeks="blush") her "I..." ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -212,25 +212,25 @@ label hg_pf_admire_breasts_T2_masturbate: # Not a Call label "\"Leave now, and you'll get no points!\"": $ her_mood += 30 - her "After {size=+5}this{/size}? Are you kidding me, [genie_name]?" ("scream", "wide", "base", "stare", cheeks="blush") + her "After {size=+5}this{/size}? Are you kidding me, [name_genie_hermione]?" ("scream", "wide", "base", "stare", cheeks="blush") her "I showed you my..." ("scream", "wide", "base", "stare", cheeks="blush") her ".........." ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "I am not going to sell you a single favour anymore, [genie_name]!" ("angry", "base", "angry", "mid", cheeks="blush") + her "I am not going to sell you a single favour anymore, [name_genie_hermione]!" ("angry", "base", "angry", "mid", cheeks="blush") show screen blkfade with d3 $ renpy.sound.play("sounds/cloth_sound3.ogg") ">Hermione pulls away from you and covers up..." - gen "Don't you dare to leave me in this state, [hermione_name]!" ("angry", xpos="far_left", ypos="head") + gen "Don't you dare to leave me in this state, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") $ hermione.wear("all") call her_chibi_scene("reset","desk","base", trans=fade) pause .5 - her "I am not setting a foot into your office ever again, [genie_name]!" ("angry", "squint", "base", "mid", cheeks="blush", xpos="mid", ypos="base") + her "I am not setting a foot into your office ever again, [name_genie_hermione]!" ("angry", "squint", "base", "mid", cheeks="blush", xpos="mid", ypos="base") gen "Come on, now. Just say something dirty! I'm almost there!" ("angry", xpos="far_left", ypos="head") - her "You are a horrible person, [genie_name]..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "You are a horrible person, [name_genie_hermione]..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") call her_walk(action="run", xpos="door", speed=2, reduce=True) with hpunch @@ -247,11 +247,11 @@ label hg_pf_admire_breasts_T2_masturbate: # Not a Call label $ her_mood += 35 ">You start jerking your cock furiously!" - her "No, [genie_name], stop!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") + her "No, [name_genie_hermione], stop!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") ">You jerk it even faster!" - her "[genie_name], think I will be leaving now..." ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "[name_genie_hermione], think I will be leaving now..." ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "No, wait, I'm almost there!" ("angry", xpos="far_left", ypos="head") - her "Ew! [genie_name]!" ("angry", "squint", "base", "mid", cheeks="blush") + her "Ew! [name_genie_hermione]!" ("angry", "squint", "base", "mid", cheeks="blush") show screen blkfade with d3 @@ -296,7 +296,7 @@ label hg_pf_admire_breasts_T3_promise: her "Thank--" her "..........." ("annoyed", "base", "base", "mid") - her "You are being inappropriate, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "You are being inappropriate, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") return @@ -316,15 +316,15 @@ label hg_pf_admire_breasts_T3_touch: with d3 ">You reach out and dig your fingers into the girl's ample flesh..." - her "[genie_name], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") # Start Groping call her_chibi_scene("grope_tits") call ctc call bld - gen "Relax, [hermione_name]. Just stand still!" ("base", xpos="far_left", ypos="head") - her "I didn't agree to this, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") + gen "Relax, [name_hermione_genie]. Just stand still!" ("base", xpos="far_left", ypos="head") + her "I didn't agree to this, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "I don't think you should..." ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Don't you like it...?" ("base", xpos="far_left", ypos="head") her "What?" ("disgust", "narrow", "base", "down", cheeks="blush") @@ -332,7 +332,7 @@ label hg_pf_admire_breasts_T3_touch: her "..............." ("disgust", "narrow", "base", "down", cheeks="blush") gen "Admit it, you like it a little bit..." ("base", xpos="far_left", ypos="head") her "{size=-5}(So strange to see my breasts in someone else's hands...){/size}" ("disgust", "narrow", "base", "down", cheeks="blush") - her "[genie_name], I am letting you do this to me to help my house out, nothing more!" ("shock", "happyCl", "worried", "mid") + her "[name_genie_hermione], I am letting you do this to me to help my house out, nothing more!" ("shock", "happyCl", "worried", "mid") her "Please, unhand me now!" ("annoyed", "narrow", "angry", "R", cheeks="blush") show screen blkfade with d5 @@ -346,7 +346,7 @@ label hg_pf_admire_breasts_T3_touch: hide screen blkfade with d5 - her "You promised not to touch, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "You promised not to touch, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "It was hard to resist..." ("base", xpos="far_left", ypos="head") pause.8 @@ -369,7 +369,7 @@ label hg_pf_admire_breasts_T3_masturbate: ">You take your cock out and start stroking it..." - her "[genie_name]?" ("angry", "wide", "base", "stare") + her "[name_genie_hermione]?" ("angry", "wide", "base", "stare") ">You stare at Hermione's breasts with hunger..." #Start Jerking Off. @@ -378,12 +378,12 @@ label hg_pf_admire_breasts_T3_masturbate: call her_chibi_scene("grope_tits_jerk_off", trans=fade) call ctc - her "[genie_name], I didn't agree to this..." ("shock", "happyCl", "worried", "mid") - gen "What are you complaining about, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I didn't agree to this..." ("shock", "happyCl", "worried", "mid") + gen "What are you complaining about, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "I'm not even touching you..." ("base", xpos="far_left", ypos="head") - her "Yes, but you are... touching yourself, [genie_name]." ("shock", "happyCl", "worried", "mid") + her "Yes, but you are... touching yourself, [name_genie_hermione]." ("shock", "happyCl", "worried", "mid") call nar(">You pick up the pace...") - gen "just stand still, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "just stand still, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "It will be over soon." ("base", xpos="far_left", ypos="head") her ".................." ("shock", "happyCl", "worried", "mid") her "(It's so big...)" ("disgust", "narrow", "base", "down", cheeks="blush") @@ -391,11 +391,11 @@ label hg_pf_admire_breasts_T3_masturbate: gen "Yes, with your tits all naked..." ("base", xpos="far_left", ypos="head") her ".............." ("disgust", "narrow", "base", "down", cheeks="blush") her "well, so be it..." ("open", "base", "base", "R", cheeks="blush") - her "You can keep touching yourself, [genie_name]..." ("open", "base", "base", "R", cheeks="blush") + her "You can keep touching yourself, [name_genie_hermione]..." ("open", "base", "base", "R", cheeks="blush") her "But you must promise me not to..." ("soft", "base", "base", "R", cheeks="blush") her "Not to... *Ehm*..." ("open", "base", "base", "R", cheeks="blush") her "Not to discharge..." ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "Not in front of me, [genie_name]..." ("angry", "base", "angry", "mid") + her "Not in front of me, [name_genie_hermione]..." ("angry", "base", "angry", "mid") gen "Fine, whatever..." ("base", xpos="far_left", ypos="head") gen "Oh, you little slut. You nasty little slut!" ("base", xpos="far_left", ypos="head") her "......................." ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -440,12 +440,12 @@ label hg_pf_admire_breasts_T3_masturbate: - her "[genie_name], no, you promised!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") + her "[name_genie_hermione], no, you promised!" ("scream", "base", "angry", "mid", cheeks="blush",emote="angry") gen "Oh, this is great, yes..." ("angry", xpos="far_left", ypos="head") call her_chibi_scene("grope_tits_cum_done") - her "[genie_name], how could you...?" ("angry", "squint", "base", "mid", cheeks="blush") + her "[name_genie_hermione], how could you...?" ("angry", "squint", "base", "mid", cheeks="blush") gen "Oh, this was quite amazing..." ("base", xpos="far_left", ypos="head") her "" ("disgust", "narrow", "base", "down", xpos="mid", ypos="base") @@ -453,7 +453,7 @@ label hg_pf_admire_breasts_T3_masturbate: her "My body..." her "It's been defiled..." - gen "Don't worry, I will give you your house points, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Don't worry, I will give you your house points, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You did good." ("base", xpos="far_left", ypos="head") her "................" @@ -476,7 +476,7 @@ label hg_pf_admire_breasts_T3_masturbate: her "" ("angry", "base", "angry", "mid") call ctc - her "How could you do this to me, [genie_name]?!" + her "How could you do this to me, [name_genie_hermione]?!" her "You gave me your word!" hide hermione_main with d3 @@ -512,12 +512,12 @@ label hg_pf_admire_breasts_T4_look: # Call label call ctc menu: - "\"You have great tits, [hermione_name].\"": - her "You really think so [genie_name]?" ("annoyed", "base", "base", "mid") - her "I am glad you like them, [genie_name]..." ("base", "closed", "base", "mid") + "\"You have great tits, [name_hermione_genie].\"": + her "You really think so [name_genie_hermione]?" ("annoyed", "base", "base", "mid") + her "I am glad you like them, [name_genie_hermione]..." ("base", "closed", "base", "mid") "\"Your tits are alright I suppose...\"": her "*huh*?" ("annoyed", "base", "base", "mid") - her "Does this mean you don't like them, [genie_name]?" + her "Does this mean you don't like them, [name_genie_hermione]?" her "I'm sorry..." ("disgust", "narrow", "base", "down") call blktone @@ -525,7 +525,7 @@ label hg_pf_admire_breasts_T4_look: # Call label call hide_blktone call ctc - gen "Alright, we're done here, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Alright, we're done here, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "............." pause.5 @@ -543,44 +543,44 @@ label hg_pf_admire_breasts_T4_touch: # Call label with d3 ">You reach out and dig your fingers into the girl's ample flesh..." - her "[genie_name], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") + her "[name_genie_hermione], what are you doing?" ("mad", "wide", "base", "stare", cheeks="blush") # Start Groping call her_chibi_scene("grope_tits") call ctc call bld - gen "Relax, [hermione_name]. Just stand still!" ("base", xpos="far_left", ypos="head") + gen "Relax, [name_hermione_genie]. Just stand still!" ("base", xpos="far_left", ypos="head") her "But..." ("disgust", "narrow", "base", "down", cheeks="blush") her "*Ah*...{heart}" ("shock", "happyCl", "worried", "mid") her "I didn't agree to this..." ("disgust", "narrow", "base", "down", cheeks="blush") gen "But you like it, don't you?" ("base", xpos="far_left", ypos="head") if her_whoring >= 17: - her "I love it [genie_name]!{heart}" ("open", "base", "base", "R", cheeks="blush") + her "I love it [name_genie_hermione]!{heart}" ("open", "base", "base", "R", cheeks="blush") else: - her "I do not, [genie_name]!{heart}" ("shock", "happyCl", "worried", "mid") + her "I do not, [name_genie_hermione]!{heart}" ("shock", "happyCl", "worried", "mid") call blktone ">You give her tits a couple of firm squeezes..." call hide_blktone if her_whoring >= 17: - her "[genie_name], you promised not to touch..." ("base", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione], you promised not to touch..." ("base", "base", "base", "R", cheeks="blush") gen "I know, I know... But it's hard to resist..." ("base", xpos="far_left", ypos="head") her ".................{heart}{heart}{heart}" ("base", "narrow", "base", "up", cheeks="blush") else: - her "[genie_name], you promised not to touch..." ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "[name_genie_hermione], you promised not to touch..." ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "I know, I know... But it's hard to resist..." ("base", xpos="far_left", ypos="head") her "................." ("angry", "base", "angry", "mid", cheeks="blush") her ".................... *Ah*...{heart}" ("base", "narrow", "base", "up", cheeks="blush") - her "[genie_name], you need to stop now..." ("base", "narrow", "base", "up", cheeks="blush") + her "[name_genie_hermione], you need to stop now..." ("base", "narrow", "base", "up", cheeks="blush") gen "Just a bit longer..." ("base", xpos="far_left", ypos="head") call nar(">You keep on massaging the girl's breasts...") - her "[genie_name]... please, stop this..." ("open", "narrow", "base", "up", cheeks="blush") + her "[name_genie_hermione]... please, stop this..." ("open", "narrow", "base", "up", cheeks="blush") gen "Why? Because you like it too much?" ("base", xpos="far_left", ypos="head") if her_whoring < 17: her "No it's not that..." ("base", "base", "base", "R", cheeks="blush") @@ -588,7 +588,7 @@ label hg_pf_admire_breasts_T4_touch: # Call label call nar(">You pull the tits in opposite directions and then squish them together...") - her "*Ah*...{heart} [genie_name], I really need to go..." ("base", "narrow", "base", "up", cheeks="blush") + her "*Ah*...{heart} [name_genie_hermione], I really need to go..." ("base", "narrow", "base", "up", cheeks="blush") if game.daytime: her "That's right... the classes are about to start..." ("open", "base", "base", "R", cheeks="blush") else: @@ -607,9 +607,9 @@ label hg_pf_admire_breasts_T4_touch: # Call label with d5 if her_whoring >= 17: - her "You will have to make it up to me for breaking your promise, [genie_name]." ("base", "base", "base", "R", cheeks="blush") + her "You will have to make it up to me for breaking your promise, [name_genie_hermione]." ("base", "base", "base", "R", cheeks="blush") else: - her "Please don't think I forgot that you broke your promise, [genie_name]." ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "Please don't think I forgot that you broke your promise, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Right..." ("base", xpos="far_left", ypos="head") @@ -622,7 +622,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label with d3 ">You take your cock out and start stroking it..." - her "[genie_name]?" ("base", "narrow", "base", "up", cheeks="blush") + her "[name_genie_hermione]?" ("base", "narrow", "base", "up", cheeks="blush") ">You stare at Hermione's breasts with hunger..." # Start Jerking off. @@ -632,11 +632,11 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label call ctc if her_whoring < 17: - her "[genie_name], actually I never agreed to this..." ("shock", "happyCl", "worried", "mid") - gen "What are you complaining about, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], actually I never agreed to this..." ("shock", "happyCl", "worried", "mid") + gen "What are you complaining about, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "I'm not even touching you..." ("base", xpos="far_left", ypos="head") - her "Yes, but you are... touching yourself, [genie_name]." ("clench", "happyCl", "worried", "mid") - gen "Just stand still, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Yes, but you are... touching yourself, [name_genie_hermione]." ("clench", "happyCl", "worried", "mid") + gen "Just stand still, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "It will be over soon." ("base", xpos="far_left", ypos="head") her ".................." ("angry", "happyCl", "worried", "mid") gen "Yes... Yes, like this..." ("base", xpos="far_left", ypos="head") @@ -646,7 +646,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label her "But you must promise me not to..." ("soft", "base", "base", "R", cheeks="blush") her "Not to... *Ehm*..." ("open", "base", "base", "R", cheeks="blush") her "Not to discharge..." ("annoyed", "narrow", "angry", "R", cheeks="blush") - her "Not on me, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") + her "Not on me, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush") gen "Fine, whatever..." ("base", xpos="far_left", ypos="head") gen "Oh, you little slut. You nasty little slut!" ("base", xpos="far_left", ypos="head") her "......................." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -657,7 +657,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label else: # Different posing than above. her "*Ah*..." ("base", "narrow", "base", "up", cheeks="blush") her "It's so big..." ("open", "base", "base", "R", cheeks="blush") - her "You just couldn't help yourself, could you [genie_name]?" ("base", "base", "base", "R", cheeks="blush") + her "You just couldn't help yourself, could you [name_genie_hermione]?" ("base", "base", "base", "R", cheeks="blush") her ".................." ("base", "narrow", "base", "up", cheeks="blush") gen "Yes... Yes, just like that..." ("base", xpos="far_left", ypos="head") gen "... with your tits all exposed..." ("base", xpos="far_left", ypos="head") @@ -665,7 +665,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label her "well, so be it..." ("open", "base", "base", "R", cheeks="blush") her "But you must promise me not to..." ("soft", "base", "base", "R", cheeks="blush") her "Not to... *Ehm*..." ("open", "base", "base", "R", cheeks="blush") - her "Not to cum on me, [genie_name]..." ("base", "narrow", "base", "up", cheeks="blush") + her "Not to cum on me, [name_genie_hermione]..." ("base", "narrow", "base", "up", cheeks="blush") gen "Fine, whatever..." ("base", xpos="far_left", ypos="head") gen "Oh, you little slut. You nasty little slut!" ("base", xpos="far_left", ypos="head") her "......................." ("base", "narrow", "base", "up", cheeks="blush") @@ -680,7 +680,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label gen "Oh, alright..." ("base", xpos="far_left", ypos="head") gen "I'd better stop now I suppose..." ("base", xpos="far_left", ypos="head") her "..............." ("disgust", "narrow", "base", "down", cheeks="blush") - her "*Ehm*... I read that it's bad for you, [genie_name]..." ("disgust", "narrow", "base", "down", cheeks="blush") + her "*Ehm*... I read that it's bad for you, [name_genie_hermione]..." ("disgust", "narrow", "base", "down", cheeks="blush") gen "*huh*?" ("base", xpos="far_left", ypos="head") her "It is bad for your health to just hold it in like this..." ("angry", "closed", "worried", "mid", cheeks="blush") her "*Ehm*..." ("disgust", "narrow", "base", "down", cheeks="blush") @@ -700,7 +700,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label $ hermione.set_cum(body="light") call bld - her "[genie_name], I didn't mean that you could release your... semen on me, [genie_name]..." ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") + her "[name_genie_hermione], I didn't mean that you could release your... semen on me, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", cheeks="blush",emote="sweat") gen "Oh, this is great, yes..." ("angry", xpos="far_left", ypos="head") call her_chibi_scene("grope_tits_cum_done") @@ -713,10 +713,10 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label call ctc her "My body is all sticky though..." - gen "Don't worry, I will give you your house points, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Don't worry, I will give you your house points, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You did good." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("base", "closed", "base", "mid") + her "Thank you [name_genie_hermione]." ("base", "closed", "base", "mid") her "Now I need to clean myself up..." ("annoyed", "closed", "base", "mid") show screen blkfade @@ -755,7 +755,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label call ctc her "*Ah*...{heart} It's so hot...{heart}" ("clench", "happyCl", "worried", "mid", cheeks="blush") - her "[genie_name], you promised..." ("angry", "happyCl", "worried", "mid", cheeks="blush", emote="sweat") + her "[name_genie_hermione], you promised..." ("angry", "happyCl", "worried", "mid", cheeks="blush", emote="sweat") gen "Oh, this is great, yes..." ("angry", xpos="far_left", ypos="head") call her_chibi_scene("grope_tits_cum_done") @@ -771,7 +771,7 @@ label hg_pf_admire_breasts_T4_masturbate: # Call label gen "Don't worry, it looks good on you." ("base", xpos="far_left", ypos="head") gen "You did great." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("open", "closed", "base", "mid") + her "Thank you [name_genie_hermione]." ("open", "closed", "base", "mid") her "Now I need to clean myself up..." ("annoyed", "closed", "base", "mid") call ctc diff --git a/game/scripts/characters/hermione/events/favors/suck_it.rpy b/game/scripts/characters/hermione/events/favors/suck_it.rpy index d7acc5e6..e481206b 100644 --- a/game/scripts/characters/hermione/events/favors/suck_it.rpy +++ b/game/scripts/characters/hermione/events/favors/suck_it.rpy @@ -50,15 +50,15 @@ label hg_pf_blowjob: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) if her_tier < 6: - gen "Yes, [hermione_name]. {number=current_payout} points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]. {number=current_payout} points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout else: - gen "You can go now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You can go now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") if mouth_full_of_cum: her "..." ("full_cum", "narrow", "annoyed", "up", cheeks="blush", tears="mascara") else: - her "Thank you, [genie_name]..." ("soft", "base", "base", "R") + her "Thank you, [name_genie_hermione]..." ("soft", "base", "base", "R") # Hermione leaves call her_walk("door", "base") @@ -82,8 +82,8 @@ label hg_pf_blowjob: label hg_pf_blowjob_fail: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I plan to grant Gryffindor {number=current_payout} house points today..." ("base", xpos="far_left", ypos="head") gen "If you suck me off..." ("base", xpos="far_left", ypos="head") @@ -98,8 +98,8 @@ label hg_pf_blowjob_fail: label hg_pf_blowjob_T4_fail_intro: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I plan to grant Gryffindor {number=current_payout} house points today..." ("base", xpos="far_left", ypos="head") gen "If you suck me off..." ("base", xpos="far_left", ypos="head") her "Suck you...{w=0.3} off?" ("disgust", "wide", "base", "mid") @@ -115,7 +115,7 @@ label hg_pf_blowjob_T4_fail_intro: gen "By sucking on my cock! Indeed you did!" ("grin", xpos="far_left", ypos="head") her "No! I was merely stroking it... and..." ("silly", "happyCl", "worried", "mid") her "I gave it a short kiss, but..." ("disgust", "narrow", "worried", "down", cheeks="blush") - her "I'm sorry [genie_name], but I don't think I can do \"that\"!" ("open", "base", "worried", "R", cheeks="blush") + her "I'm sorry [name_genie_hermione], but I don't think I can do \"that\"!" ("open", "base", "worried", "R", cheeks="blush") else: gen "Preferably..." ("base", xpos="far_left", ypos="head") gen "But I'm always open to try out new things!" ("grin", xpos="far_left", ypos="head") @@ -135,8 +135,8 @@ label hg_pf_blowjob_T4_fail_intro: label hg_pf_blowjob_T4_fail_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I plan to grant Gryffindor {number=current_payout} house points today..." ("base", xpos="far_left", ypos="head") her "And let me guess..." ("open", "closed", "angry", "mid") her "You'd like me to \"suck you off\" for it?" ("open", "base", "angry", "mid") @@ -154,7 +154,7 @@ label hg_pf_blowjob_T4_fail_repeat: her "It was nothing more than a short kiss..." ("annoyed", "base", "angry", "mid") gen "Still counts as a blowjob..." ("base", xpos="far_left", ypos="head") - her "[genie_name], I've told you this last time..." ("open", "closed", "base", "mid") + her "[name_genie_hermione], I've told you this last time..." ("open", "closed", "base", "mid") her "I refuse to do this sort of thing..." ("normal", "base", "angry", "mid") her "I have to go now..." ("annoyed", "narrow", "angry", "R") @@ -173,8 +173,8 @@ label hg_pf_blowjob_T4_fail_repeat: label hg_pf_blowjob_T5_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "I plan to grant Gryffindor {number=current_payout} house points today..." ("base", xpos="far_left", ypos="head") gen "If you suck me off..." ("base", xpos="far_left", ypos="head") her "Oh..." ("open", "narrow", "worried", "down") @@ -196,22 +196,22 @@ label hg_pf_blowjob_T5_intro_E1: label hg_pf_blowjob_T5_intro_E2: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") gen "How about another blowjob?" ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # SEX THEME. - her "[genie_name], how dare you propose such a thing to one of your pupils!" ("scream", "base", "angry", "mid", emote="angry") + her "[name_genie_hermione], how dare you propose such a thing to one of your pupils!" ("scream", "base", "angry", "mid", emote="angry") gen "Wha--...?" ("base", xpos="far_left", ypos="head") her "This is unbecoming of a man of your standing." ("scream", "base", "angry", "mid", emote="angry") - her "You should be ashamed of yourself [genie_name]!" ("angry", "base", "angry", "mid") + her "You should be ashamed of yourself [name_genie_hermione]!" ("angry", "base", "angry", "mid") menu: gen "???" ("base", xpos="far_left", ypos="head") "\"Fine. No points to you then! Leave!\"": call play_music("chipper_doodle") # HERMIONE'S THEME. - her "[genie_name], calm down, please." ("grin", "happyCl", "worried", "mid", emote="sweat") - gen "You are dismissed, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name], please, I didn't mean any of the things I said." ("grin", "happyCl", "worried", "mid", emote="sweat") + her "[name_genie_hermione], calm down, please." ("grin", "happyCl", "worried", "mid", emote="sweat") + gen "You are dismissed, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], please, I didn't mean any of the things I said." ("grin", "happyCl", "worried", "mid", emote="sweat") gen "What?" ("base", xpos="far_left", ypos="head") "\"*Ehm*... I am sorry?\"": @@ -219,7 +219,7 @@ label hg_pf_blowjob_T5_intro_E2: her "*Giggle*" ("base", "base", "base", "mid") gen "*huh*?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "I got you... [genie_name]." ("grin", "happyCl", "worried", "mid", emote="sweat") + her "I got you... [name_genie_hermione]." ("grin", "happyCl", "worried", "mid", emote="sweat") gen "What?" ("base", xpos="far_left", ypos="head") "-Two can play that game...-": @@ -228,7 +228,7 @@ label hg_pf_blowjob_T5_intro_E2: her "........?" ("soft", "base", "base", "mid") gen "A student caught me in the act and will report me to the ministry of magic." ("base", xpos="far_left", ypos="head") gen "I guess I'll have to sign a resignation and step down being a headmaster." ("base", xpos="far_left", ypos="head") - her "[genie_name]?!" ("open", "wide", "worried", "mid") + her "[name_genie_hermione]?!" ("open", "wide", "worried", "mid") call play_music("chipper_doodle") # HERMIONE'S THEME. gen "*he-he* If you could only see your face." ("grin", xpos="far_left", ypos="head") her "what.." ("soft", "wide", "worried", "mid") @@ -241,7 +241,7 @@ label hg_pf_blowjob_T5_intro_E2: her "So I was just trying to imagine how the \"old me\" would've reacted to this." gen "So..." ("base", xpos="far_left", ypos="head") gen "You were messing with me then?" ("angry", xpos="far_left", ypos="head") - her "*Ehm*... I'm sorry [genie_name], I didn't mean to..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "*Ehm*... I'm sorry [name_genie_hermione], I didn't mean to..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "You nasty little slut! You must be punished!" ("angry", xpos="far_left", ypos="head") gen "I'll punish you with my cock!" ("grin", xpos="far_left", ypos="head") her "..............................." ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -251,7 +251,7 @@ label hg_pf_blowjob_T5_intro_E2: label hg_pf_blowjob_T5_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) call play_music("playful_tension") # SEX THEME. - gen "How would you like to give me another blowjob, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How would you like to give me another blowjob, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I suppose I can do that..." ("base", "narrow", "worried", "down") gen "Come here then!" ("grin", xpos="far_left", ypos="head") @@ -265,31 +265,31 @@ label hg_pf_blowjob_T5_repeat: label hg_pf_blowjob_T6_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "Tell me, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Tell me, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Have you been behaving yourself lately?" ("grin", xpos="far_left", ypos="head") - her "Me? Of course, [genie_name]." ("open", "base", "base", "mid") + her "Me? Of course, [name_genie_hermione]." ("open", "base", "base", "mid") her "I'm always trying to behave my best at school--" ("open", "base", "base", "R") her "Oh...{w} I mean... No, Sir!" ("soft", "narrow", "annoyed", "up") call play_music("playful_tension") # SEX THEME. - her "I've been a very, very bad girl, [genie_name]!" ("soft", "narrow", "base", "mid_soft") + her "I've been a very, very bad girl, [name_genie_hermione]!" ("soft", "narrow", "base", "mid_soft") gen "..............." ("grin", xpos="far_left", ypos="head") - gen "Tell me, what wrongs did you do, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Tell me, what wrongs did you do, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("disgust", "narrow", "worried", "down") her "I sucked off my headmaster's cock..." ("soft", "narrow", "worried", "down") gen "Yes you did!" ("grin", xpos="far_left", ypos="head") her "And not just to earn those points..." ("disgust", "happyCl", "worried", "mid") gen "What? Why else?" ("base", xpos="far_left", ypos="head") her "I did it because I like doing it..." ("disgust", "narrow", "base", "R_soft") - her "I like sucking cock, [genie_name]!" ("soft", "narrow", "base", "mid_soft", cheeks="blush") + her "I like sucking cock, [name_genie_hermione]!" ("soft", "narrow", "base", "mid_soft", cheeks="blush") gen "Yes! You dirty slut!" ("angry", xpos="far_left", ypos="head") gen "Girls like you need to be punished!" ("angry", xpos="far_left", ypos="head") gen "Don't you think so too, Miss Granger?" ("grin", xpos="far_left", ypos="head") her "..............................." ("clench", "narrow", "base", "down", cheeks="blush") - her "Yes, [genie_name]..." ("soft", "narrow", "base", "mid_soft", cheeks="blush") + her "Yes, [name_genie_hermione]..." ("soft", "narrow", "base", "mid_soft", cheeks="blush") her "I need to be punished!" ("base", "narrow", "base", "mid_soft") gen "Beg me for it, you slut!" ("angry", xpos="far_left", ypos="head") - her "Please punish me with your cock, [genie_name]!" ("soft", "narrow", "base", "mid_soft") + her "Please punish me with your cock, [name_genie_hermione]!" ("soft", "narrow", "base", "mid_soft") her "I beg you!" ("soft", "narrow", "base", "mid_soft") gen "Come here, you dirty little minx!" ("angry", xpos="far_left", ypos="head") her "{heart}{heart}{heart}" ("base", "narrow", "annoyed", "up") @@ -302,16 +302,16 @@ label hg_pf_blowjob_T6_intro_E1: label hg_pf_blowjob_T6_hidden_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) call play_music("playful_tension") # SEX THEME. - gen "Suck my dick, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Anything for you, [genie_name]..." ("base", "narrow", "base", "mid_soft") + gen "Suck my dick, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Anything for you, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") jump hg_pf_hidden_blowjob label hg_pf_blowjob_T6_repeat: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) call play_music("playful_tension") # SEX THEME. - gen "Suck my dick, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Anything for you, [genie_name]..." ("base", "narrow", "base", "mid_soft") + gen "Suck my dick, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Anything for you, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") jump hg_pf_blowjob_2 @@ -366,7 +366,7 @@ label hg_pf_blowjob_1: her "*Gulp*--" ("open_wide_tongue", "narrow", "base", "up") call her_chibi_scene("bj_pause") - her "That's not what we stand for, [genie_name]." ("angry", "base", "base", "mid") + her "That's not what we stand for, [name_genie_hermione]." ("angry", "base", "base", "mid") gen "What do you mean?" ("base", xpos="far_left", ypos="head") her "The \"MRM\" is about gender equality." ("open", "closed", "base", "mid") her "We are not as much against selling sexual favours to the teachers..." @@ -374,7 +374,7 @@ label hg_pf_blowjob_1: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "This conversation is starting to bore me..." ("base", xpos="far_left", ypos="head") gen "Suck on my cock some more before we continue." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Of course, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") call her_chibi_scene("bj", trans=d3) pause.8 @@ -388,7 +388,7 @@ label hg_pf_blowjob_1: gen "And yet, you are the biggest offender by far." ("base", xpos="far_left", ypos="head") her "But what choice do I have?" ("upset", "closed", "base", "mid") her "I've been put in a very difficult position..." - gen "The cock, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "The cock, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Right, sorry..." ("upset", "closed", "base", "mid") call her_chibi_scene("bj", trans=d3) @@ -397,7 +397,7 @@ label hg_pf_blowjob_1: her "*Slurp*--" ("open_wide_tongue", "narrow", "annoyed", "up") call her_chibi_scene("bj_pause") - her "This one time we had a meeting right after I sold you another favour, [genie_name]." ("angry", "base", "base", "mid") + her "This one time we had a meeting right after I sold you another favour, [name_genie_hermione]." ("angry", "base", "base", "mid") her "I had to give a speech with my clothes all messy and stained." her "It felt awful that I had to do that..." gen "You did enjoy it a little bit though..." ("base", xpos="far_left", ypos="head") @@ -409,7 +409,7 @@ label hg_pf_blowjob_1: her "And it made me feel even worse about myself." gen "You poor thing." ("base", xpos="far_left", ypos="head") gen "Cock back in the mouth." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]." ("angry", "base", "base", "mid") + her "Yes, [name_genie_hermione]." ("angry", "base", "base", "mid") call her_chibi_scene("bj", trans=d3) pause.8 @@ -422,7 +422,7 @@ label hg_pf_blowjob_1: her "Although at first they were against sending me to some \"Bogus boarding school\"." ("angry", "base", "base", "mid") her "Took some effort to convince them that \"Hogwarts\" is a respectable institution." ("base", "happyCl", "base", "mid") gen "Yes, a respectable institution indeed." ("base", xpos="far_left", ypos="head") - gen "Cock back in your mouth, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Cock back in your mouth, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj", trans=d3) pause.8 @@ -430,7 +430,7 @@ label hg_pf_blowjob_1: gen "Yes, just keep at it for a while..." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gltch*! *Gulp*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Good, good..." ("base", xpos="far_left", ypos="head") - gen "So, what would your folks say if they were to see you now, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "So, what would your folks say if they were to see you now, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Slurp*--" ("open_wide_tongue", "narrow", "annoyed", "up") call her_chibi_scene("bj_pause") @@ -449,7 +449,7 @@ label hg_pf_blowjob_1: her "*Slurp*--" call her_chibi_scene("bj_pause") - her "What can I say that you don't already know, [genie_name]?" ("soft", "base", "base", "R") + her "What can I say that you don't already know, [name_genie_hermione]?" ("soft", "base", "base", "R") gen "Yes... *Ehm*... I know everything of course." ("base", xpos="far_left", ypos="head") gen "But I want to see how much you know." ("base", xpos="far_left", ypos="head") gen "To test your knowledge on the subject." ("base", xpos="far_left", ypos="head") @@ -459,7 +459,7 @@ label hg_pf_blowjob_1: call her_chibi_scene("bj", trans=d3) pause.8 her "*Slurp*! *Slurp*! *Gulp*!" ("open_wide_tongue", "narrow", "base", "up") - gen "Oh, yes... Take as much time as you need, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Oh, yes... Take as much time as you need, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gulp*! *Slurp*!" ("open_wide_tongue", "narrow", "base", "up") her "*Gulp*--" ("open_wide_tongue", "narrow", "annoyed", "up") @@ -493,11 +493,11 @@ label hg_pf_blowjob_1: gen "And you being a nasty slut..." ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj_pause") - her "[genie_name]!" ("scream", "base", "angry", "mid", emote="angry") + her "[name_genie_hermione]!" ("scream", "base", "angry", "mid", emote="angry") gen "But to be honest..." ("base", xpos="far_left", ypos="head") gen "\"Daring, nerve, fire, recklessness\"..." ("base", xpos="far_left", ypos="head") gen "That sort of describes your personality quite well..." ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("base", "base", "base", "mid") + her "[name_genie_hermione]..." ("base", "base", "base", "mid") call her_chibi_scene("bj", trans=d3) pause.8 @@ -512,7 +512,7 @@ label hg_pf_blowjob_1: her "*Slurp*--" ("open_wide_tongue", "narrow", "annoyed", "up") call her_chibi_scene("bj_pause") - her "[genie_name]... I am a... whore." ("open", "narrow", "worried", "down") + her "[name_genie_hermione]... I am a... whore." ("open", "narrow", "worried", "down") gen "What?" ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj") @@ -527,7 +527,7 @@ label hg_pf_blowjob_1: her "*Slurp*! *Gulp*! *Slurp*!" ("open_wide_tongue", "narrow", "annoyed", "up") call her_chibi_scene("bj_pause") - her "Please, [genie_name]. Cum for me." ("soft", "narrow", "annoyed", "up") + her "Please, [name_genie_hermione]. Cum for me." ("soft", "narrow", "annoyed", "up") with hpunch gen "*Argh*! You little...!!!" ("angry", xpos="far_left", ypos="head") gen "{size=-4}(Here it comes. Should I give her a warning?){/size}" ("angry", xpos="far_left", ypos="head") @@ -536,7 +536,7 @@ label hg_pf_blowjob_1: gen "..." ("base", xpos="far_left", ypos="head") "-Warn her-": her "Yes, I love to suck and--" ("soft", "narrow", "annoyed", "up") - gen "Heads up, [hermione_name]! Here it comes!" ("angry", xpos="far_left", ypos="head") + gen "Heads up, [name_hermione_genie]! Here it comes!" ("angry", xpos="far_left", ypos="head") her "!!!" ("angry", "wide", "base", "stare") call her_chibi_scene("bj", trans=d5) @@ -565,14 +565,14 @@ label hg_pf_blowjob_1: call bld gen "Well, I think that's it." ("base", xpos="far_left", ypos="head") her ".............." ("cum", "happyCl", "worried", "mid") - gen "Are you alright there, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("grin", "narrow", "base", "dead") + gen "Are you alright there, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]..." ("grin", "narrow", "base", "dead") her "You came so much..." gen "You managed to swallow it all though." ("base", xpos="far_left", ypos="head") her "Yes... I thought I would choke..." ("grin", "narrow", "base", "dead") her "But I made a promise to myself that I won't let go of your penis no matter what!" gen "Good girl." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("grin", "narrow", "base", "dead") + her "Thank you, [name_genie_hermione]." ("grin", "narrow", "base", "dead") her "But, still... You came so much..." her "I almost feel as if I just got fed..." ("soft", "narrow", "annoyed", "up") her "My stomach is so full..." @@ -599,11 +599,11 @@ label hg_pf_blowjob_1: call ctc $ hermione.set_cum(face="heavy") - her "[genie_name]..." ("shock", "wide", "base", "stare") - gen "Don't you move now, [hermione_name]." ("angry", xpos="far_left", ypos="head") + her "[name_genie_hermione]..." ("shock", "wide", "base", "stare") + gen "Don't you move now, [name_hermione_genie]." ("angry", xpos="far_left", ypos="head") $ hermione.set_cum(breasts="light") gen "Yes, just be still and take it." ("angry", xpos="far_left", ypos="head") - gen "*Argh*! You little slut! You make me cum hard, [hermione_name]!" ("angry", xpos="far_left", ypos="head") + gen "*Argh*! You little slut! You make me cum hard, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") her ".............." ("angry", "base", "base", "mid", tears="soft") gen "Whew..." ("base", xpos="far_left", ypos="head") @@ -623,7 +623,7 @@ label hg_pf_blowjob_1: her "*huh*?" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "And would rather go outside looking like this." ("base", xpos="far_left", ypos="head") gen "Let everyone see what a nasty little slut you are." ("base", xpos="far_left", ypos="head") - her "Of course not, [genie_name]!" ("angry", "happyCl", "worried", "mid", emote="sweat") + her "Of course not, [name_genie_hermione]!" ("angry", "happyCl", "worried", "mid", emote="sweat") stop music fadeout 1.0 if game.daytime: @@ -632,7 +632,7 @@ label hg_pf_blowjob_1: gen "It's getting late..." ("base", xpos="far_left", ypos="head") her "Yes..." ("angry", "happyCl", "worried", "mid", emote="sweat") - her "Can I get paid before I leave, [genie_name]?" ("upset", "wink", "base", "mid") + her "Can I get paid before I leave, [name_genie_hermione]?" ("upset", "wink", "base", "mid") jump end_hg_pf_blowjob @@ -688,8 +688,8 @@ label hg_hidden_blowjob_snape: call her_chibi_scene("bj_pause", trans=d5) pause.8 - her "([genie_name], what should I do?)" ("shock", "wide", "base", "stare") - gen "Just keep sucking my cock, [hermione_name]. This doesn't concern you." ("base", xpos="far_left", ypos="head") + her "([name_genie_hermione], what should I do?)" ("shock", "wide", "base", "stare") + gen "Just keep sucking my cock, [name_hermione_genie]. This doesn't concern you." ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj", trans=d5) pause.8 @@ -700,7 +700,7 @@ label hg_hidden_blowjob_snape: sna "Are you there? I need to talk to you." her "(It's professor Snape!)" ("open_wide_tongue", "base", "base", "mid") call her_chibi_scene("bj_pause") - her "{size=-2}[genie_name], please, send him away, I beg you!{/size}" ("angry", "base", "base", "mid") + her "{size=-2}[name_genie_hermione], please, send him away, I beg you!{/size}" ("angry", "base", "base", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -708,7 +708,7 @@ label hg_hidden_blowjob_snape: pass "\"I am busy right now, Severus.\"": - her "{size=-2}Thank you, [genie_name].{/size}" ("angry", "base", "base", "mid") + her "{size=-2}Thank you, [name_genie_hermione].{/size}" ("angry", "base", "base", "mid") sna "Busy? With what?" sna "All you do is sit on you arse all day." sna "I really need to talk to you about something." @@ -723,7 +723,7 @@ label hg_hidden_blowjob_snape: $ her_mood = 30 stop music fadeout 1.0 - her "{size=-2}[genie_name], no!{/size}" ("angry", "base", "angry", "mid", emote="angry") + her "{size=-2}[name_genie_hermione], no!{/size}" ("angry", "base", "angry", "mid", emote="angry") call nar(">Hermione gives your balls a firm twist full of frustration.") gen "Ouch!" ("angry", xpos="far_left", ypos="head") @@ -801,11 +801,11 @@ label hg_hidden_blowjob_luna: #TODO Once Luna X Hermione sex scenes are added, a call her_chibi_scene("bj_pause", trans=d5) pause.8 - her "{size=-2}[genie_name], what should I do?{/size}" ("shock", "wide", "base", "stare") - gen "Just keep sucking my cock, [hermione_name]. This doesn't concern you..." ("base", xpos="far_left", ypos="head") + her "{size=-2}[name_genie_hermione], what should I do?{/size}" ("shock", "wide", "base", "stare") + gen "Just keep sucking my cock, [name_hermione_genie]. This doesn't concern you..." ("base", xpos="far_left", ypos="head") lun "Sir? Are you there? I need to talk to you." her "(It's Luna!)" ("disgust", "wide", "base", "stare") - her "{size=-2}Please, [genie_name], send her away, I beg you!{/size}" ("shock", "happyCl", "worried", "mid") + her "{size=-2}Please, [name_genie_hermione], send her away, I beg you!{/size}" ("shock", "happyCl", "worried", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -813,7 +813,7 @@ label hg_hidden_blowjob_luna: #TODO Once Luna X Hermione sex scenes are added, a pass "\"I am busy right now, Miss Lovegood.\"": - her "{size=-2}Thank you, [genie_name]{/size}." ("angry", "base", "base", "mid") + her "{size=-2}Thank you, [name_genie_hermione]{/size}." ("angry", "base", "base", "mid") lun "Oh... I suppose I'll visit you later then, sir." if game.daytime: lun "Have a good day!" @@ -827,14 +827,14 @@ label hg_hidden_blowjob_luna: #TODO Once Luna X Hermione sex scenes are added, a $ her_mood += 10 stop music fadeout 1.0 - her "{size=-2}[genie_name], no! Why would you let-{/size}" ("angry", "base", "angry", "mid", emote="angry") - gen "{size=-2}Quiet, [hermione_name]! Unless you want to get noticed...{/size}" ("base", xpos="far_left", ypos="head") + her "{size=-2}[name_genie_hermione], no! Why would you let-{/size}" ("angry", "base", "angry", "mid", emote="angry") + gen "{size=-2}Quiet, [name_hermione_genie]! Unless you want to get noticed...{/size}" ("base", xpos="far_left", ypos="head") #Luna comes in call lun_walk("mid", action="enter") - lun "Hello, [lun_genie_name]." ("base", "base", "base", "mid", xpos="base", ypos="head") - gen "{size=-4}[hermione_name]...{/size}" ("base", xpos="far_left", ypos="head") + lun "Hello, [name_genie_luna]." ("base", "base", "base", "mid", xpos="base", ypos="head") + gen "{size=-4}[name_hermione_genie]...{/size}" ("base", xpos="far_left", ypos="head") her "..." ("soft", "happy", "worried", "up") gen "Miss Lovegood, you wouldn't believe what I'm--" ("base", xpos="far_left", ypos="head") her "..." ("clench", "wide", "base", "mid") @@ -971,11 +971,11 @@ label hg_hidden_blowjob_tonks: call her_chibi_scene("bj_pause", trans=d5) pause.8 - her "[genie_name], what should I do?" ("shock", "wide", "base", "stare") - gen "Just keep sucking my cock, [hermione_name]. This doesn't concern you." ("base", xpos="far_left", ypos="head") - ton "[ton_genie_name]? Is it okay if I come in?" + her "[name_genie_hermione], what should I do?" ("shock", "wide", "base", "stare") + gen "Just keep sucking my cock, [name_hermione_genie]. This doesn't concern you." ("base", xpos="far_left", ypos="head") + ton "[name_genie_tonks]? Is it okay if I come in?" her "(It's Professor Tonks!)" ("clench", "happyCl", "worried", "mid") - her "{size=-2}Please, [genie_name], don't let her in!{/size}" ("open", "base", "worried", "mid") + her "{size=-2}Please, [name_genie_hermione], don't let her in!{/size}" ("open", "base", "worried", "mid") her "I don't want my teacher to see me like this!" ("shock", "narrow", "worried", "down") menu: @@ -983,8 +983,8 @@ label hg_hidden_blowjob_tonks: "\"Please, come on in.\"": pass - "\"I am busy right now, [tonks_name].\"": - her "Thank you, [genie_name]." ("soft", "base", "base", "mid") + "\"I am busy right now, [name_tonks_genie].\"": + her "Thank you, [name_genie_hermione]." ("soft", "base", "base", "mid") ton "Busy?" ton "Could it be..." ton "Is Snape with you?" @@ -1022,8 +1022,8 @@ label hg_hidden_blowjob_tonks: gen "I said, leave!" ("angry", xpos="far_left", ypos="head") else: ton "I can help you jack off, if that's what you're--" - gen "Maybe later, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Okay, [ton_genie_name]." + gen "Maybe later, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Okay, [name_genie_tonks]." ton "*Giggle...*" her "{size=-4}(*Slurp*... *Slurp*... *Gulp*...){/size}" ("open_wide_tongue", "narrow", "annoyed", "up") gen "I think she's gone..." ("base", xpos="far_left", ypos="head") @@ -1038,7 +1038,7 @@ label hg_hidden_blowjob_tonks: $ tonks.equip(ton_outfit_default) stop music fadeout 1.0 - her "{size=-2}[genie_name], no! Please she will know that-{/size}" ("angry", "base", "angry", "mid", emote="angry") + her "{size=-2}[name_genie_hermione], no! Please she will know that-{/size}" ("angry", "base", "angry", "mid", emote="angry") gen "*Shhhhsh*... Keep your voice down..." ("base", xpos="far_left", ypos="head") #Tonks comes in @@ -1081,7 +1081,7 @@ label hg_hidden_blowjob_tonks: "-Lie-": gen "... Just polishing...{w=0.5} the woodwork." ("base", xpos="far_left", ypos="head") ton "Like I'm going to believe that..." ("upset", "base", "base", "downR") - ton "Are you masturbating, [ton_genie_name]?" ("horny", "base", "raised", "mid") + ton "Are you masturbating, [name_genie_tonks]?" ("horny", "base", "raised", "mid") if ton_friendship < 50: ton "Or perhaps somebody else has their tongue wrapped around it?" ("soft", "base", "raised", "L") @@ -1095,7 +1095,7 @@ label hg_hidden_blowjob_tonks: call her_chibi_scene("bj_pause", trans=d5) her "{size=-4}What??{/size}" ("open_wide_tongue", "narrow", "base", "up") ton "What was that?" ("open", "base", "raised", "mid") - ton "[ton_genie_name]?!" ("grin", "base", "base", "mid") + ton "[name_genie_tonks]?!" ("grin", "base", "base", "mid") gen "*Ehm*-{w=0.5} My belly?" ("base", xpos="far_left", ypos="head") ton "Sounded like somebody doesn't know how to deep throat a dick properly..." ("open", "base", "base", "R") @@ -1141,7 +1141,7 @@ label hg_hidden_blowjob_tonks: ton "Is that really, {w=0.5}Miss Hermione Granger,{w=0.5} back there?" ("horny", "narrow", "base", "mid") ton "That's so hard to believe!" ("open", "base", "raised", "L") - ton "Or perhaps, you are just fucking with me, [ton_genie_name]..." ("soft", "base", "base", "mid") + ton "Or perhaps, you are just fucking with me, [name_genie_tonks]..." ("soft", "base", "base", "mid") gen "I'm not fucking with you..." ("base", xpos="far_left", ypos="head") gen "... I'm fucking her mouth." ("grin", xpos="far_left", ypos="head") ton "That's too good to be true!" ("horny", "narrow", "base", "stare") @@ -1159,7 +1159,7 @@ label hg_hidden_blowjob_tonks: call her_chibi_scene("bj", trans=d5) - gen "You can't give her that many points, [tonks_name]! She's already getting {number=current_payout} from me!" ("angry", xpos="far_left", ypos="head") + gen "You can't give her that many points, [name_tonks_genie]! She's already getting {number=current_payout} from me!" ("angry", xpos="far_left", ypos="head") gen "Do you even realise how many days I'll have to spend with Snape, of all people, to get even with Slytherin again, after this?" ("base", xpos="far_left", ypos="head") ton "So what? The girl has clearly earned it!" ("soft", "base", "annoyed", "mid") ton "Sucking her headmaster's cock..." ("horny", "base", "annoyed", "down") @@ -1206,7 +1206,7 @@ label hg_hidden_blowjob_tonks: her "{size=-4}(She'd do what?... *Slurp*... *Slurp*... *Gulp*...){/size}" ("open_wide_tongue", "narrow", "worried", "up") gen "You can both have it!" ("grin", xpos="far_left", ypos="head") - ton "I'm sorry, [ton_genie_name]... I'm already pre-occupied with something..." ("open", "narrow", "base", "R") + ton "I'm sorry, [name_genie_tonks]... I'm already pre-occupied with something..." ("open", "narrow", "base", "R") if game.daytime: ton "Teaching our second-years how to cast a simple deflection spell..." ("open", "base", "raised", "down") else: @@ -1235,12 +1235,12 @@ label hg_hidden_blowjob_tonks: ton "Yes, but sixty-nine is so much better!" ("horny", "base", "raised", "mid") ton "Don't you think so too, Miss Granger?" ("base", "base", "angry", "down") her "*Ehm*... Yes. Thank you, professor Tonks." ("disgust", "happyCl", "worried", "mid") - gen "Less talking, more sucking, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "Sorry, [genie_name]..." ("soft", "narrow", "annoyed", "up") + gen "Less talking, more sucking, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "Sorry, [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") call her_chibi_scene("bj", trans=d5) her "{size=-4}(*Slurp*... *Slurp*... *Gulp*...){/size}" ("open_wide_tongue", "narrow", "annoyed", "up") - ton "I'm going to have to go, [ton_genie_name]." ("open", "closed", "shocked", "mid") + ton "I'm going to have to go, [name_genie_tonks]." ("open", "closed", "shocked", "mid") ton "Wish I could watch you two a little longer..." ("soft", "base", "base", "L") ton "But I have to head back to my office." ("open", "base", "base", "downR") gen "What a shame." ("base", xpos="far_left", ypos="head") @@ -1283,7 +1283,7 @@ label hg_hidden_blowjob_cumming: her "*Gobble*! *Gobble*! *Gobble*!" ("open_wide_tongue", "narrow", "annoyed", "up") call her_chibi_scene("bj_pause", trans=d5) - her "[genie_name]?" ("soft", "narrow", "annoyed", "up") + her "[name_genie_hermione]?" ("soft", "narrow", "annoyed", "up") gen "*Hmm*?" ("base", xpos="far_left", ypos="head") her "Are you going to cum on my face today?" ("soft", "narrow", "annoyed", "up") her "Or do you plan to cum in my mouth?" @@ -1301,9 +1301,9 @@ label hg_hidden_blowjob_cumming: her "I see..." ("grin", "narrow", "base", "dead") gen "Why do you ask?" ("base", xpos="far_left", ypos="head") her "Well, I am trying to watch my calorie-intake..." ("soft", "narrow", "annoyed", "up") - her "I just wonder how much calories your load contains, [genie_name]." + her "I just wonder how much calories your load contains, [name_genie_hermione]." her "Maybe I should skip my next meal..." - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Yes?" ("soft", "narrow", "annoyed", "up") gen "Dick back in the mouth." ("base", xpos="far_left", ypos="head") @@ -1316,11 +1316,11 @@ label hg_hidden_blowjob_cumming: gen "There is only one way to find out for sure." ("base", xpos="far_left", ypos="head") "\"What would you like?\"": - her "If it is all the same to you, [genie_name]..." ("soft", "narrow", "annoyed", "up") + her "If it is all the same to you, [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") $ random_number = renpy.random.randint(1, 2) if random_number == 1: - her "I would like you to cum on my face, [genie_name]." ("grin", "narrow", "base", "dead") + her "I would like you to cum on my face, [name_genie_hermione]." ("grin", "narrow", "base", "dead") her "I read that it's good for the skin." else: her "I would like you to cum in my mouth." ("grin", "narrow", "base", "dead") @@ -1336,7 +1336,7 @@ label hg_hidden_blowjob_cumming: call her_chibi_scene("bj", trans=d5) her "*Slurp*! *Slurp*! *Slurp*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "You are getting better at this [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You are getting better at this [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Slurp*! *Gulp*!" ("open_wide_tongue", "narrow", "base", "up") gen "Okay, say something nasty now..." ("base", xpos="far_left", ypos="head") her "*Slurp*--?" ("open_wide_tongue", "narrow", "annoyed", "up") @@ -1346,23 +1346,23 @@ label hg_hidden_blowjob_cumming: her "*Uhm*..." ("angry", "narrow", "base", "down") her "I eat cockroaches?" ("angry", "base", "base", "mid") gen "What the fuck?" ("base", xpos="far_left", ypos="head") - her "T-they are pretty nasty, [genie_name]..." ("angry", "base", "base", "mid") - gen "No, [hermione_name], I mean something dirty!" ("base", xpos="far_left", ypos="head") + her "T-they are pretty nasty, [name_genie_hermione]..." ("angry", "base", "base", "mid") + gen "No, [name_hermione_genie], I mean something dirty!" ("base", xpos="far_left", ypos="head") gen "And don't you dare to say \"mud\"!" ("base", xpos="far_left", ypos="head") gen "I mean dirty in a sexual way!" ("base", xpos="far_left", ypos="head") her "Oh... *Ehm*..." ("angry", "narrow", "base", "down") gen "Ah, never mind, the moment is gone..." ("base", xpos="far_left", ypos="head") - her "*Ehm*... I'm sorry, [genie_name]." ("angry", "base", "base", "mid") + her "*Ehm*... I'm sorry, [name_genie_hermione]." ("angry", "base", "base", "mid") gen "Yeah, whatever. Make it up to me by sucking my cock harder." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("upset", "closed", "base", "mid") + her "Of course, [name_genie_hermione]." ("upset", "closed", "base", "mid") else: - her "I'm a cumslut, [genie_name]." ("base", "squint", "base", "mid") + her "I'm a cumslut, [name_genie_hermione]." ("base", "squint", "base", "mid") her "A slut for your cum." ("base", "narrow", "base", "mid_soft") - gen "That's it, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "It's all I can think about [genie_name]." ("base", "narrow", "worried", "down") + gen "That's it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "It's all I can think about [name_genie_hermione]." ("base", "narrow", "worried", "down") her "Sucking your dirty old cock..." - gen "Well you better get back to it then [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("grin", "narrow", "base", "dead") + gen "Well you better get back to it then [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("grin", "narrow", "base", "dead") gen "You're welcome, cumslut." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "base", "up") @@ -1374,7 +1374,7 @@ label hg_hidden_blowjob_cumming: her "*Slurp*! *Slurp*! *Slurp*!" ("open_wide_tongue", "narrow", "base", "up") gen "Yes, definitely." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gobble*! *Gobble*!" ("open_wide_tongue", "narrow", "base", "up") - gen "Alright, [hermione_name], this is the final stretch." ("base", xpos="far_left", ypos="head") + gen "Alright, [name_hermione_genie], this is the final stretch." ("base", xpos="far_left", ypos="head") gen "Show me what you've got." ("angry", xpos="far_left", ypos="head") her "*Gobble-goble-slurp-goble*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Yes, like that!" ("angry", xpos="far_left", ypos="head") @@ -1385,7 +1385,7 @@ label hg_hidden_blowjob_cumming: menu: gen "!!!" ("angry", xpos="far_left", ypos="head") "-Cum in her mouth-": - gen "Here it comes, [hermione_name]! get ready to swallow, and fast!" ("angry", xpos="far_left", ypos="head") + gen "Here it comes, [name_hermione_genie]! get ready to swallow, and fast!" ("angry", xpos="far_left", ypos="head") her "!!!" ("open_wide_tongue", "narrow", "base", "up") call cum_block @@ -1417,10 +1417,10 @@ label hg_hidden_blowjob_cumming: her "*Gua-ha*..." ("open_wide_tongue", "base", "base", "mid") gen "You alright?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "Yes, [genie_name]..." ("grin", "narrow", "base", "dead") + her "Yes, [name_genie_hermione]..." ("grin", "narrow", "base", "dead") gen "Going to skip your next meal?" ("base", xpos="far_left", ypos="head") her "I think so..." ("grin", "narrow", "base", "dead") - her "You always cum so much, [genie_name]..." + her "You always cum so much, [name_genie_hermione]..." gen "Heh... And whose fault is that??" ("base", xpos="far_left", ypos="head") her "............." ("grin", "narrow", "base", "dead") #Smile. her "Can I get paid now?" @@ -1435,8 +1435,8 @@ label hg_hidden_blowjob_cumming: "-Cum on her face-": call her_chibi_scene("bj_pause", trans=d5) - gen "Ready for your facial, [hermione_name]?" ("angry", xpos="far_left", ypos="head") - her "Yes, [genie_name]!" ("grin", "narrow", "base", "dead") + gen "Ready for your facial, [name_hermione_genie]?" ("angry", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]!" ("grin", "narrow", "base", "dead") gen "Here it comes then!" ("angry", xpos="far_left", ypos="head") call cum_block @@ -1452,20 +1452,20 @@ label hg_hidden_blowjob_cumming: $ hermione.set_cum(face="heavy") - her "[genie_name]..." ("shock", "wide", "base", "stare") + her "[name_genie_hermione]..." ("shock", "wide", "base", "stare") gen "All over your fucking face!" ("angry", xpos="far_left", ypos="head") her "*Aaah*!" ("grin", "narrow", "base", "dead") call her_chibi_scene("bj_cum_out_done", trans=d5) gen "Well, I'm done." ("base", xpos="far_left", ypos="head") her "...................................." ("grin", "narrow", "base", "dead") - gen "I said it's over, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Yes, I heard you [genie_name]..." ("grin", "narrow", "base", "dead") + gen "I said it's over, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Yes, I heard you [name_genie_hermione]..." ("grin", "narrow", "base", "dead") gen "So... Aren't you going to clean up?" ("base", xpos="far_left", ypos="head") her "In a moment..." ("grin", "narrow", "base", "dead") her "I'm giving my skin time to soak in the anti-oxidants..." gen "*Hmm*... I find this quite hot..." ("base", xpos="far_left", ypos="head") - gen "Take your time, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Take your time, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call blkfade stop music fadeout 1.0 @@ -1478,9 +1478,9 @@ label hg_hidden_blowjob_cumming: call hide_blkfade pause.5 - her "I take it you enjoyed yourself, [genie_name]?" ("angry", "wink", "base", "mid") + her "I take it you enjoyed yourself, [name_genie_hermione]?" ("angry", "wink", "base", "mid") call play_music("chipper_doodle") # HERMIONE'S THEME. - gen "Yes I did, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes I did, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Good, so Can I get paid now?" ("grin", "narrow", "base", "dead") if her_tier >= 6: @@ -1517,7 +1517,7 @@ label hg_pf_blowjob_2: call her_chibi_scene("bj_pause", trans=d5) pause.8 - her "[genie_name]?" ("base", "narrow", "worried", "down") + her "[name_genie_hermione]?" ("base", "narrow", "worried", "down") gen "*Hmm*?" ("base", xpos="far_left", ypos="head") her "How would you like me to please you today?" ("soft", "narrow", "annoyed", "up") @@ -1608,7 +1608,7 @@ label hg_pf_blowjob_2: her "*Slurp*! *Slurp*! *Slurp*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Come on princess." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gobble*! *Gobble*!" ("open_wide_tongue", "narrow", "base", "up") - gen "Alright, [hermione_name], almost there." ("base", xpos="far_left", ypos="head") + gen "Alright, [name_hermione_genie], almost there." ("base", xpos="far_left", ypos="head") gen "Make daddy proud!" ("angry", xpos="far_left", ypos="head") her "*Gobble-goble-slurp-goble*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Yes, like that!" ("angry", xpos="far_left", ypos="head") @@ -1619,7 +1619,7 @@ label hg_pf_blowjob_2: menu: gen "!!!" ("angry", xpos="far_left", ypos="head") "-Cum in her mouth-": - gen "Here it comes, [hermione_name]! Here comes daddy!" ("angry", xpos="far_left", ypos="head") + gen "Here it comes, [name_hermione_genie]! Here comes daddy!" ("angry", xpos="far_left", ypos="head") her "!!!" ("open_wide_tongue", "narrow", "base", "up") call cum_block @@ -1692,13 +1692,13 @@ label hg_pf_blowjob_2: call bld gen "Well, I'm done." ("base", xpos="far_left", ypos="head") her "...................................." ("grin", "narrow", "base", "dead") - gen "I said it's over, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I said it's over, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Yes, I heard you, daddy..." ("grin", "narrow", "base", "dead") gen "So... Aren't you going to clean up?" ("base", xpos="far_left", ypos="head") her "In a minute..." ("grin", "narrow", "base", "dead") her "I'm just savouring the moment..." gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "Take your time, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Take your time, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 call blkfade @@ -1709,8 +1709,8 @@ label hg_pf_blowjob_2: pause.8 call play_music("chipper_doodle") # HERMIONE'S THEME. - her "I take it you enjoyed yourself, [genie_name]?" ("angry", "wink", "base", "mid") - gen "Yes I did, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "I take it you enjoyed yourself, [name_genie_hermione]?" ("angry", "wink", "base", "mid") + gen "Yes I did, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") "\"Worship my cock.\"": her "Worship it?" ("angry", "wink", "base", "mid") @@ -1726,7 +1726,7 @@ label hg_pf_blowjob_2: gen "Tell me how much you love my cock." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gobble*! *Slurp*!" ("open_wide_tongue", "narrow", "base", "up") call her_chibi_scene("bj_pause", trans=d5) - her "So much, [genie_name]..." ("soft", "narrow", "annoyed", "up") + her "So much, [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") call her_chibi_scene("bj", trans=d5) her "*Slurp*! *Gobble*! *Slurp*!" ("open_wide_tongue", "narrow", "base", "up") call her_chibi_scene("bj_pause", trans=d5) @@ -1761,7 +1761,7 @@ label hg_pf_blowjob_2: gen "Is that so?" ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj_pause", trans=d5) - her "Yes [genie_name]..." ("soft", "narrow", "base", "dead") + her "Yes [name_genie_hermione]..." ("soft", "narrow", "base", "dead") call her_chibi_scene("bj", trans=d5) her "*Gobble*! *lick*! *Gobble*!" ("open_wide_tongue", "narrow", "base", "up") call her_chibi_scene("bj_pause", trans=d5) @@ -1798,12 +1798,12 @@ label hg_pf_blowjob_2: her "*Gobble*! *lick*! *Gobble*!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "That's it cock-slut, Almost there..." ("base", xpos="far_left", ypos="head") call her_chibi_scene("bj_pause", trans=d5) - her "Where do you want to cum today [genie_name]?" ("soft", "narrow", "annoyed", "up") + her "Where do you want to cum today [name_genie_hermione]?" ("soft", "narrow", "annoyed", "up") her "I know it's greedy of me to ask..." ("angry", "narrow", "base", "down") her "But can you cum in my mouth?" ("angry", "wink", "base", "mid") her "{size=-4}Please...{/size} I promise I won't waste a drop." ("soft", "narrow", "annoyed", "up") gen "I think that can be arranged..." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]!" ("smile", "happyCl", "base", "mid", cheeks="blush", emote="happy") + her "Thank you [name_genie_hermione]!" ("smile", "happyCl", "base", "mid", cheeks="blush", emote="happy") call her_chibi_scene("bj", trans=d5) call nar(">Hermione devours your cock with renewed vigour.") her "*Slurp*! *Gulp*! *Slurp*!" ("open_wide_tongue", "narrow", "annoyed", "up") @@ -1813,14 +1813,14 @@ label hg_pf_blowjob_2: her "*Slurp*! *Slurp*! *Slurp*!" ("open_wide_tongue", "narrow", "base", "up") gen "Come on cum-whore." ("base", xpos="far_left", ypos="head") her "*Slurp*! *Gobble*! *Gobble*!" ("open_wide_tongue", "narrow", "worried", "down") - gen "Alright, [hermione_name], almost there." ("base", xpos="far_left", ypos="head") + gen "Alright, [name_hermione_genie], almost there." ("base", xpos="far_left", ypos="head") gen "Deeper now!" ("angry", xpos="far_left", ypos="head") her "!!! *Gobble-goble-slurp-goble*! !!!" ("open_wide_tongue", "narrow", "annoyed", "up") gen "Yes, like that!" ("angry", xpos="far_left", ypos="head") her "{size=+5}!!! *Gobble-gobble-slurp-gobble!* !!!{/size}" ("open_wide_tongue", "narrow", "annoyed", "up") gen "{size=+5}Yes! Yes! Yes! Yes!{/size}" ("angry", xpos="far_left", ypos="head") gen "*Ghr*!!!" ("angry", xpos="far_left", ypos="head") - gen "Here it comes, [hermione_name]! Here's your reward!" ("angry", xpos="far_left", ypos="head") + gen "Here it comes, [name_hermione_genie]! Here's your reward!" ("angry", xpos="far_left", ypos="head") her "!!!" ("open_wide_tongue", "narrow", "worried", "down") call cum_block diff --git a/game/scripts/characters/hermione/events/favors/talk_to_me.rpy b/game/scripts/characters/hermione/events/favors/talk_to_me.rpy index e131f9b6..e3fa0844 100644 --- a/game/scripts/characters/hermione/events/favors/talk_to_me.rpy +++ b/game/scripts/characters/hermione/events/favors/talk_to_me.rpy @@ -36,10 +36,10 @@ label hg_pf_talk: # Points if her_tier <= 3: $ gryffindor += current_payout - gen "{number=current_payout} points to Gryffindor, [hermione_name]. Well done." ("base", xpos="far_left", ypos="head") + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]. Well done." ("base", xpos="far_left", ypos="head") elif her_tier == 4 and hg_pf_talk.points == 1: - gen "{number=current_payout} points to Gryffindor, [hermione_name]. Well done." ("base", xpos="far_left", ypos="head") - her "Oh, don't worry about the points, [genie_name]. We were just having a nice talk." + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]. Well done." ("base", xpos="far_left", ypos="head") + her "Oh, don't worry about the points, [name_genie_hermione]. We were just having a nice talk." gen "Really? What about Gryffindor winning the cup?" ("base", xpos="far_left", ypos="head") her "It's only {number=current_payout} points..." ("soft", "base", "base", "R") gen "If you say so." ("base", xpos="far_left", ypos="head") @@ -52,7 +52,7 @@ label hg_pf_talk: else: her "Will this be all then?" ("soft", "base", "base", "mid") gen "Yes, you can go now." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." # Hermione leaves call her_walk("door", "base") @@ -125,7 +125,7 @@ label hg_pf_talk_T1: # Call label with d3 pause.8 - her "[genie_name], what are you doing?" ("open", "base", "base", "mid", xpos="mid", trans=d3) + her "[name_genie_hermione], what are you doing?" ("open", "base", "base", "mid", xpos="mid", trans=d3) gen "What? Oh, it's nothing. Just scratching my leg." ("base", xpos="far_left", ypos="head") gen "You were saying?" ("base", xpos="far_left", ypos="head") her "Yes... Well, that test I failed..." ("open", "base", "base", "mid") @@ -133,7 +133,7 @@ label hg_pf_talk_T1: # Call label "-Participate in the conversation-": $ genie_masturbating = False #NOT JERKING OFF. gen "Yes, what a tragedy that was..." ("base", xpos="far_left", ypos="head") - her "Exactly! I'm glad you understand, [genie_name]." ("open", "base", "angry", "mid") + her "Exactly! I'm glad you understand, [name_genie_hermione]." ("open", "base", "angry", "mid") her "Come to think of it, I don't feel like talking about it anymore..." ("annoyed", "narrow", "worried", "down") gen "Alright, what else has happened lately?" ("base", xpos="far_left", ypos="head") @@ -146,7 +146,7 @@ label hg_pf_talk_T1: # Call label else: gen "(Professor Sprout... *He-he*, what a ridiculous name...)" ("grin", xpos="far_left", ypos="head") - her "Did you say something, [genie_name]?" ("normal", "squint", "angry", "mid") + her "Did you say something, [name_genie_hermione]?" ("normal", "squint", "angry", "mid") gen "It's nothing, keep going..." ("base", xpos="far_left", ypos="head") her "Well, some students are making fun of professor Quirrell behind his back..." ("open", "base", "base", "mid") @@ -171,7 +171,7 @@ label hg_pf_talk_T1: # Call label else: gen "*snore*........" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]?" ("angry", "base", "angry", "mid") gen "Yes, yes, I'm totally listening..." ("base", xpos="far_left", ypos="head") gen "This is all very self-righteous, er..." ("base", xpos="far_left", ypos="head") gen "I mean, very invigorating and stuff..." ("base", xpos="far_left", ypos="head") @@ -200,7 +200,7 @@ label hg_pf_talk_T2_intro_E1: label hg_pf_talk_T2_E1: if hg_jerkoff.trigger: - her "Another talk, [hermione_name]?" ("soft", "base", "base", "mid") + her "Another talk, [name_hermione_genie]?" ("soft", "base", "base", "mid") her "(I hope he doesn't do \"that\" again...)" ("disgust", "narrow", "base", "down") else: her "Of course, Sir." ("soft", "base", "base", "R") @@ -216,15 +216,15 @@ label hg_pf_talk_T2: her "My life has been quite uneventful lately, to be honest..." ("annoyed", "narrow", "angry", "R") her "*Hmm*..." ("annoyed", "base", "base", "R") her "There is a fierce competition going on between the Slytherin and the Gryffindor house." ("open", "closed", "base", "mid") - her "To be honest, [genie_name], there should be none..." ("open", "narrow", "angry", "R") + her "To be honest, [name_genie_hermione], there should be none..." ("open", "narrow", "angry", "R") her "Gryffindor would have been in the lead if not for those Slytherin harlots..." ("annoyed", "base", "angry", "mid") her "The things I hear those girls do - simply to get a few extra points..." ("angry", "narrow", "angry", "R") her "How despicable!" ("open", "closed", "angry", "mid") - gen "What does this make you then, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What does this make you then, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Exactly!" ("normal", "base", "base", "mid") gen "*huh*?" ("base", xpos="far_left", ypos="head") her "I have to work even harder to compensate for the damage those nasty girls are doing..." ("open", "closed", "angry", "mid") - her "Thank you for helping me out, [genie_name]." ("normal", "base", "base", "mid") + her "Thank you for helping me out, [name_genie_hermione]." ("normal", "base", "base", "mid") menu: "-Start jerking off-": @@ -237,7 +237,7 @@ label hg_pf_talk_T2: with d3 pause.8 - her "[genie_name], what are you doing?" ("open", "base", "base", "mid") + her "[name_genie_hermione], what are you doing?" ("open", "base", "base", "mid") her "You are not.....?" ("open", "base", "worried", "mid") her "Are you...?" ("annoyed", "base", "worried", "R") gen "What? Oh, it's nothing. Keep going." ("base", xpos="far_left", ypos="head") @@ -284,10 +284,10 @@ label hg_pf_talk_T2: gen "*Argh*! YES!" ("angry", xpos="far_left", ypos="head") if hg_jerkoff.trigger: - her "I can't believe it, [genie_name]!" ("soft", "base", "angry", "mid") + her "I can't believe it, [name_genie_hermione]!" ("soft", "base", "angry", "mid") her "You were touching yourself!{w} Again!" ("angry", "base", "angry", "mid") else: - her "You were touching yourself, [genie_name]!" ("angry", "base", "angry", "mid") + her "You were touching yourself, [name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "What? No, I was just... Ah, shit, this feels good..." ("angry", xpos="far_left", ypos="head") @@ -297,7 +297,7 @@ label hg_pf_talk_T2: pause.8 her "This is disgusting! How could you!?" ("scream", "happyCl", "worried", "mid") - her "[genie_name], you are the headmaster! You are supposed to set a good example!" ("scream", "base", "angry", "mid") + her "[name_genie_hermione], you are the headmaster! You are supposed to set a good example!" ("scream", "base", "angry", "mid") gen "Hey, little Missy, are you going to judge me or do you want your points?" ("base", xpos="far_left", ypos="head") her "My points please, I believe I earned those." ("angry", "happyCl", "worried", "mid",emote="sweat") gen "Yes, you did." ("base", xpos="far_left", ypos="head") @@ -311,7 +311,7 @@ label hg_pf_talk_T2: $ hg_jerkoff.triggered() # .trigger = True, .counter += 1 else: - her "We need to put an end to this behaviour, [genie_name]!" ("open", "closed", "base", "mid") + her "We need to put an end to this behaviour, [name_genie_hermione]!" ("open", "closed", "base", "mid") gen "Yeah, sure..." ("base", xpos="far_left", ypos="head") her "So you agree with me then?" ("base", "narrow", "base", "mid_soft") her "I think we need to implement a new penalty system to punish girls who are known to sell favours..." ("open", "base", "base", "R") @@ -319,7 +319,7 @@ label hg_pf_talk_T2: her "This will also help the boys in our school to feel less discriminated against!" ("open", "closed", "base", "mid") gen "The boys?" ("base", xpos="far_left", ypos="head") gen "Oh, right... Nobody wants to buy sexual favours from them... Poor bastards." ("base", xpos="far_left", ypos="head") - her "I'm so glad that you understand my concerns, [genie_name]." ("base", "base", "base", "mid") + her "I'm so glad that you understand my concerns, [name_genie_hermione]." ("base", "base", "base", "mid") gen "Yes, yes, sure..." ("base", xpos="far_left", ypos="head") return @@ -333,7 +333,7 @@ label hg_pf_talk_T2: # Favours can revolve around Cho, Luna, Tonks label hg_pf_talk_T3_intro_E1: - gen "Let's have another chat, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Let's have another chat, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay..." ("annoyed", "base", "worried", "mid") gen "I'd like you to tell me a bit about your day." ("base", xpos="far_left", ypos="head") her "Are you going to...{w=0.8} touch yourself again sir?" ("open", "squint", "base", "mid") @@ -358,7 +358,7 @@ label hg_pf_talk_T3_intro_E2: # Start event chronologically $ hg_pf_talk_tonks.start() "-Decide against it-": - gen "Let's have another chat, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Let's have another chat, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay..." ("base", "base", "base", "mid") call hg_pf_talk_T3 @@ -376,7 +376,7 @@ label hg_pf_talk_T3_repeat: # Start event chronologically $ hg_pf_talk_tonks.start() "-Decide against it-": - gen "Tell me about your day, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Tell me about your day, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay..." ("base", "base", "base", "mid") call hg_pf_talk_T3 @@ -397,10 +397,10 @@ label hg_pf_talk_T3: call gen_chibi("jerk_off_behind_desk") with d3 pause.8 - her "[genie_name], I hoped we wouldn't do this again..." ("open", "squint", "base", "mid") + her "[name_genie_hermione], I hoped we wouldn't do this again..." ("open", "squint", "base", "mid") her "Are you actually... Masturbating again?" ("disgust", "squint", "base", "mid") gen "Me? I'd never do such a thing. Ever..." ("base", xpos="far_left", ypos="head") - gen "Anyhow... Don't forget why you're here, [hermione_name]. To earn some points..." ("base", xpos="far_left", ypos="head") + gen "Anyhow... Don't forget why you're here, [name_hermione_genie]. To earn some points..." ("base", xpos="far_left", ypos="head") "-Participate in the conversation-": $ genie_masturbating = False @@ -417,7 +417,7 @@ label hg_pf_talk_T3: if genie_masturbating: gen "*Hmm* I bet they were..." ("base", xpos="far_left", ypos="head") her "*UGH* Do you have to keep touching yourself professor?" ("disgust", "narrow", "worried", "down", cheeks="blush") - gen "Just keep talking [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Just keep talking [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Fine..." ("annoyed", "narrow", "angry", "R", cheeks="blush") else: gen "Is that so?" ("base", xpos="far_left", ypos="head") @@ -487,9 +487,9 @@ label hg_pf_talk_T3: call play_music("playful_tension") if her_tier <= 4: $ her_mood = +7 - her "[genie_name]...{w} did you just...?" ("disgust", "narrow", "base", "down") + her "[name_genie_hermione]...{w} did you just...?" ("disgust", "narrow", "base", "down") else: - her "[genie_name]...{w} did you just...?" ("soft", "narrow", "worried", "down") + her "[name_genie_hermione]...{w} did you just...?" ("soft", "narrow", "worried", "down") call hide_characters hide screen bld1 @@ -504,7 +504,7 @@ label hg_pf_talk_T3: call bld gen "That felt amazing..." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "base", "mid_soft", xpos="mid", ypos="base") - gen "You shouldn't hold it in, [hermione_name]... It could help you relax a bit." ("grin", xpos="far_left", ypos="head") + gen "You shouldn't hold it in, [name_hermione_genie]... It could help you relax a bit." ("grin", xpos="far_left", ypos="head") gen "All great wizards do it..." ("base", xpos="far_left", ypos="head") her "(.........)" ("annoyed", "narrow", "angry", "R") gen "I could even go fetch that massager for you if you'd like." ("base", xpos="far_left", ypos="head") @@ -514,7 +514,7 @@ label hg_pf_talk_T3: gen "Loosen up a bit won't you, I'll figure something out don't you worry..." ("base", xpos="far_left", ypos="head") her "{size=-4}I am not-{/size}" ("annoyed", "happyCl", "worried", "mid") her "(...................)" ("disgust", "base", "worried", "mid") - gen "You've done well today [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You've done well today [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "You've soiled your entire desk!" ("mad", "wide", "base", "stare") gen "I'm sure it will be cleaned at one point or another..." ("base", xpos="far_left", ypos="head") if her_tier <= 4: @@ -546,7 +546,7 @@ label hg_pf_talk_T3: $ renpy.sound.play("sounds/glass_shatter.ogg") her "..." ("mad", "wide", "base", "stare", cheeks="blush") her "I...{w} I'm sorry professor!" - gen "I didn't take you for such a naughty girl, [hermione_name]!" ("grin", xpos="far_left", ypos="head") + gen "I didn't take you for such a naughty girl, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") gen "Here we were having an innocent conversation about back massagers and you spring all this on me." ("grin", xpos="far_left", ypos="head") her "Professor... I didn't mean." ("soft", "happyCl", "worried", "mid", cheeks="blush") gen "Don't you 'Professor' me..." ("grin", xpos="far_left", ypos="head") @@ -560,17 +560,17 @@ label hg_pf_talk_T3: label hg_pf_talk_tonks_T3_intro_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], for today's favour I'd like to bring in a guest to join us." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], for today's favour I'd like to bring in a guest to join us." ("base", xpos="far_left", ypos="head") her "What? Didn't we decide it was going to be between just you and I?" ("open", "squint", "angry", "mid") gen "Well, why only the two of us when there is the option to bring another person in?" ("base", xpos="far_left", ypos="head") her "The option to?" ("normal", "squint", "angry", "mid") her "Sorry, I'm not following..." ("normal", "squint", "base", "mid") - gen "[hermione_name], what is your opinion of Miss Tonks?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], what is your opinion of Miss Tonks?" ("base", xpos="far_left", ypos="head") her "Well, she's a very talented witch... You'd have to be to become an auror." ("open", "closed", "base", "mid") gen "Wouldn't it be great if we could have another chat with each other?" ("base", xpos="far_left", ypos="head") gen "I heard you already had a bit of a talk previously." ("base", xpos="far_left", ypos="head") her "You knew about that?" ("angry", "base", "worried", "mid", cheeks="blush") - gen "I'm the headmaster [hermione_name]...{w} It's my job to know what goes on within the castle." ("base", xpos="far_left", ypos="head") + gen "I'm the headmaster [name_hermione_genie]...{w} It's my job to know what goes on within the castle." ("base", xpos="far_left", ypos="head") gen "She was the one that suggested you try selling some favours yourself, was it not?" ("base", xpos="far_left", ypos="head") her "Well..." ("disgust", "narrow", "base", "down") gen "I think it could be quite nice to have a little conversation - all of us together." ("base", xpos="far_left", ypos="head") @@ -579,7 +579,7 @@ label hg_pf_talk_tonks_T3_intro_E1: gen "And you'd be awarded points of course." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "base", "base", "R") her "Would I be getting any extra points for this?" ("open", "base", "base", "mid") - gen "Well, that will be up to Miss Tonks, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, that will be up to Miss Tonks, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay... Just let me get more presentable." ("base", "base", "base", "mid") gen "Great, I'll call for her then..." ("base", xpos="far_left", ypos="head") @@ -595,7 +595,7 @@ label hg_pf_talk_tonks_T3_E1: gen "For today's favour of course!" ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "mid_soft") her "Will I get any extra points for this?" ("open", "base", "base", "mid") - gen "Well, that will be up to Miss Tonks, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, that will be up to Miss Tonks, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Fine.. Just let me get more presentable." ("base", "base", "worried", "R") call hg_pf_talk_tonks @@ -847,7 +847,7 @@ label hg_pf_talk_tonks: gen "(And they're not the only ones being ecstatic!)" ("angry", xpos="far_left", ypos="head") "*fap-fap-fap*" gen "(I'm getting close. Maybe I should ask her about something else...)" ("base", xpos="far_left", ypos="head") - $ tmp_name = hermione_name[:3] + $ tmp_name = name_hermione_genie[:3] gen "[tmp_name]-...{w=0.3} *Ugh*... Miss Granger..." ("angry", xpos="far_left", ypos="head") gen "Why don't you tell us more about..." ("angry", xpos="far_left", ypos="head") else: @@ -1107,7 +1107,7 @@ label hg_pf_talk_tonks: if genie_masturbating: gen "(And you loved every second of it, I bet you were totally wet under those panties!)" ("angry", xpos="far_left", ypos="head") if hermione.is_worn("panties"): - gen "(Not that you wear any anymore, don't you [hermione_name]?)" ("grin", xpos="far_left", ypos="head") + gen "(Not that you wear any anymore, don't you [name_hermione_genie]?)" ("grin", xpos="far_left", ypos="head") ton "And how did that make you feel?" ("soft", "base", "raised", "L", cheeks="blush") her "Humiliated!" ("annoyed", "narrow", "base", "R_soft", cheeks="blush") ton "And your headmaster, did he enjoy it?" ("base", "narrow", "raised", "mid") diff --git a/game/scripts/characters/hermione/events/forest.rpy b/game/scripts/characters/hermione/events/forest.rpy index 0dd7c6df..53a99f7f 100644 --- a/game/scripts/characters/hermione/events/forest.rpy +++ b/game/scripts/characters/hermione/events/forest.rpy @@ -25,7 +25,7 @@ label forest_BJ_1: #BJ in the forest interrupted by moaning myrtle with d3 gen "Miss Granger? What are you doing out here at this time of night?" ("base", xpos="far_left", ypos="head") - her "[genie_name]! I, ugh, I wasn't doing anything bad, I swear!" ("angry", "wide", "base", "R", xpos="base", ypos="base", trans=d5) + her "[name_genie_hermione]! I, ugh, I wasn't doing anything bad, I swear!" ("angry", "wide", "base", "R", xpos="base", ypos="base", trans=d5) gen "..." ("base", xpos="far_left", ypos="head") her "Ugh, fine! If you must know, I was out here gathering up some mastic resin." ("upset", "narrow", "worried", "down") her "I know Students aren't {i}technically{/i} supposed to touch the stuff since it's normally just used to make belch powder..." ("annoyed", "base", "base", "R") @@ -70,7 +70,7 @@ label forest_BJ_1: #BJ in the forest interrupted by moaning myrtle her "*Mmmm*... I don't think I'll ever get sick of this cock..." gen "It'll get sick of having to wait for you to put it in your mouth though." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_forest", "base", "2", "overlay") - her "*Hmph*... now, now, [genie_name], patience is a virtue..." + her "*Hmph*... now, now, [name_genie_hermione], patience is a virtue..." $ dynamic_cg("herm_forest", "base", "3", "overlay") her "Besides, doesn't my hand feel nice?" gen "Not as nice as your mouth." ("base", xpos="far_left", ypos="head") @@ -155,7 +155,7 @@ label forest_BJ_2: gen "More late night gardening?" ("base", xpos="far_left", ypos="head") pause.1 - her "{size=+10}[genie_name]!{/size}" ("shock", "wide", "base", "stare", xpos="base", ypos="base", trans=hpunch) + her "{size=+10}[name_genie_hermione]!{/size}" ("shock", "wide", "base", "stare", xpos="base", ypos="base", trans=hpunch) her "Ugh... Don't startle me like that!" ("annoyed", "base", "base", "R") her "And yes, I've been collecting some mushroom samples." ("soft", "base", "base", "mid") gen "Cool..." ("base", xpos="far_left", ypos="head") @@ -181,7 +181,7 @@ label forest_BJ_2: her "It's the gossip I'm worried about..." gen "Gossip?" ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_forest", "base", "13", "overlay") - her "Stop playing dumb, [genie_name]! Everyone knows Myrtle's the biggest gossip in the history of gossips..." + her "Stop playing dumb, [name_genie_hermione]! Everyone knows Myrtle's the biggest gossip in the history of gossips..." $ dynamic_cg("herm_forest", "base", "4", "overlay") ">Hermione quickly pops your cock into her mouth in between her words..." $ dynamic_cg("herm_forest", "base", "10", "overlay") @@ -314,7 +314,7 @@ label forest_BJ_3: #Complete BJ with Myrtle appearing after the cumshot hide screen blkfade with d3 - gen "Aren't you usually out here to collect some forbidden plant, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Aren't you usually out here to collect some forbidden plant, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Not always... Sometimes I just come out here to enjoy the cool air..." ("soft", "base", "base", "R", xpos="base", ypos="base", trans=d5) gen "I see..." ("base", xpos="far_left", ypos="head") gen "So you're not waiting out here for your headmaster to arrive, just so you can suck his cock in public?" ("base", xpos="far_left", ypos="head") @@ -346,7 +346,7 @@ label forest_BJ_3: #Complete BJ with Myrtle appearing after the cumshot her "*glck* *shlrp* *Gluck*" $ dynamic_cg("herm_forest", "base", "17", "overlay") her "*Ah*....{heart}{heart}{heart}" - her "Thank you for being here tonight, [genie_name]...." + her "Thank you for being here tonight, [name_genie_hermione]...." $ dynamic_cg("herm_forest", "base", "16", "overlay") her "*glck* *shlrp* *Gluck*" $ dynamic_cg("herm_forest", "base", "19", "overlay") @@ -359,7 +359,7 @@ label forest_BJ_3: #Complete BJ with Myrtle appearing after the cumshot $ dynamic_cg("herm_forest", "base", "27", "overlay") ">In response, hermione thrusts her entire lithe frame forwards, forcing your thick cock all the way down her throat." $ dynamic_cg("herm_forest", "base", "28", "overlay") - gen "Ugh.... that's it, [hermione_name]!" ("grin", xpos="far_left", ypos="head") + gen "Ugh.... that's it, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") $ dynamic_cg("herm_forest", "base", "29", "overlay") gen "How are you able to go so deep?..." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_forest", "base", "17", "overlay") @@ -525,7 +525,7 @@ label forest_BJ_3: #Complete BJ with Myrtle appearing after the cumshot ">Eventually, your orgasm comes to a halt and you finally pull your sloppy cock out of Hermione's well used hole..." ">She collapses onto her robe, no longer held up by your member." - gen "You did good, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You did good, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Wouldn't you say the same, ghost?" ("base", xpos="far_left", ypos="head") gen "Ghost?" ("base", xpos="far_left", ypos="head") gen "Oh well..." ("base", xpos="far_left", ypos="head") @@ -540,7 +540,7 @@ label forest_BJ_3: #Complete BJ with Myrtle appearing after the cumshot gen "(I suppose I should...)" ("base", xpos="far_left", ypos="head") ">You use a rag and wipe her face clean." her "*zzz* no... *zzz* I wanna be a.. *zzz* cumslut... *zzz*" - gen "*Shhh*... Don't worry, [hermione_name], I will give you more tomorrow." ("base", xpos="far_left", ypos="head") + gen "*Shhh*... Don't worry, [name_hermione_genie], I will give you more tomorrow." ("base", xpos="far_left", ypos="head") "-leave her be-": gen "(She looks better like this anyway...)" ("base", xpos="far_left", ypos="head") ">As you turn to leave, you notice a content smile form over Hermione's face as she pulls her sheets up over her shoulders." @@ -568,8 +568,8 @@ label forest_BJ_4: #Moaning myrtle dirty talk (Repeatable) (Threaten to expose) hide screen blkfade with d3 - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "About time you got here, [genie_name]!" ("upset", "narrow", "annoyed", "mid", xpos="base", ypos="base", trans=d5) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "About time you got here, [name_genie_hermione]!" ("upset", "narrow", "annoyed", "mid", xpos="base", ypos="base", trans=d5) her "Do you know how long I've been waiting out here in the cold?" ("annoyed", "happy", "base", "mid") menu: @@ -596,7 +596,7 @@ label forest_BJ_4: #Moaning myrtle dirty talk (Repeatable) (Threaten to expose) $ dynamic_cg("herm_forest", "base", "17", "overlay") her "This almost makes waiting out in the cold worth it..." gen "Only almost?" ("base", xpos="far_left", ypos="head") - her "Well it's not the real reason I'm down here, [genie_name]..." + her "Well it's not the real reason I'm down here, [name_genie_hermione]..." $ dynamic_cg("herm_forest", "base", "19", "overlay") her "this is..." $ dynamic_cg("herm_forest", "base", "16", "overlay") @@ -605,7 +605,7 @@ label forest_BJ_4: #Moaning myrtle dirty talk (Repeatable) (Threaten to expose) $ dynamic_cg("herm_forest", "base", "18", "overlay") her "*slurp* *glck* *slrp*" $ dynamic_cg("herm_forest", "base", "20", "overlay") - gen "*Ughhhh*.... that's it, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "*Ughhhh*.... that's it, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Be a good little cockslut for your headmaster..." ("base", xpos="far_left", ypos="head") $ dynamic_cg("herm_forest", "base", "16", "overlay") her "*slurp*{heart}*slurp*{heart}*glck*" diff --git a/game/scripts/characters/hermione/events/intro.rpy b/game/scripts/characters/hermione/events/intro.rpy index 9bdb9ea9..8e5052bb 100644 --- a/game/scripts/characters/hermione/events/intro.rpy +++ b/game/scripts/characters/hermione/events/intro.rpy @@ -1349,7 +1349,7 @@ label hermione_intro_E6: "\"*Ha-ha-ha*, perfect!\"": her "What?" ("open", "base", "angry", "mid") her "But that's my normal face!" ("angry", "base", "angry", "mid") - gen "*he-he-he* Don't get mad, [hermione_name], I'm just messing with you." ("grin", xpos="far_left", ypos="head") + gen "*he-he-he* Don't get mad, [name_hermione_genie], I'm just messing with you." ("grin", xpos="far_left", ypos="head") gen "Although you look cute when you're upset." ("base", xpos="far_left", ypos="head") her "......." ("annoyed", "base", "worried", "R", cheeks="blush") jump hermione_intro_E6.end diff --git a/game/scripts/characters/hermione/events/items/butt_plugs.rpy b/game/scripts/characters/hermione/events/items/butt_plugs.rpy index 94f09fa0..f5e445ad 100644 --- a/game/scripts/characters/hermione/events/items/butt_plugs.rpy +++ b/game/scripts/characters/hermione/events/items/butt_plugs.rpy @@ -23,7 +23,7 @@ label hg_butt_plugs: if not her_buttplug_small1.unlocked: # First time with small butt plug - gen "[hermione_name], I want you to do something different today..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I want you to do something different today..." ("base", xpos="far_left", ypos="head") her "..........." ("soft", "base", "base", "mid",xpos="right",ypos="base") call nar(">You pull a large sized butt plug out from under your desk and place it in front of her.") @@ -49,11 +49,11 @@ label hg_butt_plugs: gen "It just looks like a fake tail, No one will be able to tell what it really is." ("base", xpos="far_left", ypos="head") her "{size=+5}That's not the point!{/size}" ("scream", "closed", "angry", "mid") her "I'm not going to put that ridiculous thing anywhere near my butt!" - her "We are done here, [genie_name]!" ("angry", "base", "angry", "mid",emote="angry") + her "We are done here, [name_genie_hermione]!" ("angry", "base", "angry", "mid",emote="angry") gen "Alright, alright, calm down..." ("base", xpos="far_left", ypos="head") - her "I most certainly will not, [genie_name]! That thing is beyond absurd!" ("scream", "closed", "angry", "mid") + her "I most certainly will not, [name_genie_hermione]! That thing is beyond absurd!" ("scream", "closed", "angry", "mid") gen "Alright, fine, maybe I underestimated how large it is..." ("base", xpos="far_left", ypos="head") - her "You think [genie_name]?! I'd like to see you try and fit it up your--" ("angry", "base", "angry", "mid") + her "You think [name_genie_hermione]?! I'd like to see you try and fit it up your--" ("angry", "base", "angry", "mid") gen "Alright, alright..." ("base", xpos="far_left", ypos="head") her "........." ("annoyed", "narrow", "annoyed", "mid") gen "How about we try one a little less... ambitious?" ("base", xpos="far_left", ypos="head") @@ -74,14 +74,14 @@ label hg_butt_plugs: gen "Fantastic." ("base", xpos="far_left", ypos="head") gen "Will you be putting it in now then?" ("base", xpos="far_left", ypos="head") her "........" ("annoyed", "narrow", "angry", "R") - her "I'll do it in the girls' bathroom, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "I'll do it in the girls' bathroom, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") gen "*Hmm*... Alright, I'll see you tonight then." ("base", xpos="far_left", ypos="head") else: $ ev_her_small_plug.enqueue() # Repeat with small butt plug if her_whoring > 21: call play_music("chipper_doodle") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "What do you think about wearing a butt pl--?" ("base", xpos="far_left", ypos="head") her "I'll do it." ("grin", "base", "base", "R",xpos="right",ypos="base") gen "You're eager." ("base", xpos="far_left", ypos="head") @@ -90,7 +90,7 @@ label hg_butt_plugs: ">You pull out the small sized butt plug and hand it to her." ">Hermione turns around and lifts her skirt giving you a full view as she inserts it." her "{heart}*Ah*{heart}..." ("grin", "narrow", "annoyed", "up") - her "I will, [genie_name]. Thank you." ("base", "happyCl", "base", "mid") + her "I will, [name_genie_hermione]. Thank you." ("base", "happyCl", "base", "mid") elif her_whoring >= 19: ">You pull out the large sized butt plug." @@ -120,7 +120,7 @@ label hg_butt_plugs: her "{heart}*Ah*{heart}..." ("grin", "narrow", "annoyed", "up") her "I better head to class..." ("soft", "happy", "base", "R") - gen "See you tonight [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "See you tonight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "{size=-5}({heart}it feels so good{heart}){/size}" ("grin", "narrow", "annoyed", "up") else: @@ -131,7 +131,7 @@ label hg_butt_plugs: gen "Sure, why not?" ("base", xpos="far_left", ypos="head") gen "And another fifty-five house points for the Gryffindor house of course." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "base", "worried", "R") - gen "So... Are you okay with that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "So... Are you okay with that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I suppose so..." ("annoyed", "narrow", "angry", "R") ">You pull out the small sized butt plug and hand it to her." gen "Fantastic! See you after class." ("base", xpos="far_left", ypos="head") @@ -144,7 +144,7 @@ label hg_butt_plugs: if not her_buttplug_medium1.unlocked: # First time with medium butt plug - gen "[hermione_name], I want you to try something different today..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I want you to try something different today..." ("base", xpos="far_left", ypos="head") her "..........." ("soft", "base", "base", "mid",xpos="right",ypos="base") call nar(">You pull the medium sized butt plug out from under your desk and place it in front of her.") @@ -162,7 +162,7 @@ label hg_butt_plugs: her "Surely, you can't be expecting me to have that large tail sticking out around the school!" ("annoyed", "base", "angry", "mid") gen "I can and do expect you to, unless you want our little trading game to come to a halt..." ("base", xpos="far_left", ypos="head") her "But it's so long! everyone will be able to see it!" ("normal", "happyCl", "worried", "mid") - gen "That's the point, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "That's the point, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "..........." ("angry", "happyCl", "worried", "mid",emote="sweat") her "I want a hundred points." ("annoyed", "base", "angry", "mid") @@ -172,7 +172,7 @@ label hg_butt_plugs: her "What? Right now!?." ("angry", "happyCl", "worried", "mid") her "In front of you?" ("angry", "wink", "base", "mid") - gen "You said you wanted a hundred points [hermione_name]... It's more than fair." ("base", xpos="far_left", ypos="head") + gen "You said you wanted a hundred points [name_hermione_genie]... It's more than fair." ("base", xpos="far_left", ypos="head") her "*Ugh*...{w=0.4} Fine." ("angry", "narrow", "base", "down") ">You hand her the butt plug." her "{size=-7}It's so big...{/size}" ("clench", "narrow", "base", "down") @@ -200,7 +200,7 @@ label hg_butt_plugs: her "............." ("angry", "base", "base", "mid") her "..." ("angry", "narrow", "base", "down") her "Well...{w=0.4} I Better get to....{w=0.4} Class..." ("angry", "wink", "base", "mid") - gen "See you tonight [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "See you tonight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") "\"You'll get seventy points.\"": $ current_payout = 70 @@ -209,8 +209,8 @@ label hg_butt_plugs: her "Alright then, just don't expect me to show it to you!" ("angry", "base", "angry", "mid") gen "As long as you wear it to class, you'll get your seventy points." ("base", xpos="far_left", ypos="head") ">You hand her the butt plug." - her "Will that be all [genie_name]?." ("annoyed", "narrow", "annoyed", "mid") - gen "Yes [hermione_name], see you tonight." ("base", xpos="far_left", ypos="head") + her "Will that be all [name_genie_hermione]?." ("annoyed", "narrow", "annoyed", "mid") + gen "Yes [name_hermione_genie], see you tonight." ("base", xpos="far_left", ypos="head") her "{size=-5}(Not even a hundred points...){/size}" ("annoyed", "narrow", "angry", "R") else: # Repeat with medium butt plug @@ -222,7 +222,7 @@ label hg_butt_plugs: her "...{w=0.4} Again?" ("angry", "narrow", "base", "down") gen "Why not? It will be the easiest fifty-five points you'll ever earn!" ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "base", "worried", "R") - gen "Do you have a problem with it, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Do you have a problem with it, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I suppose not..." ("annoyed", "narrow", "angry", "R") ">You hand her the butt plug." gen "Fantastic! See you after class." ("base", xpos="far_left", ypos="head") @@ -236,7 +236,7 @@ label hg_butt_plugs: her "Oh... I suppose so." ("soft", "happy", "base", "R",xpos="right",ypos="base") her "But is it alright if I ask you something first?" ("open", "narrow", "worried", "down") - gen "What's that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What's that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Don't you worry about us getting caught?" ("annoyed", "base", "base", "mid") gen "Why would I?" ("base", xpos="far_left", ypos="head") her "Well, it's just that...{w=0.4} Making me wear something like this draws a lot of attention." ("open", "base", "worried", "R") @@ -256,7 +256,7 @@ label hg_butt_plugs: menu: "\"Done\"": $ current_payout += 10 - her "Thank you [genie_name], you won't regret it..." ("open", "base", "base", "R") + her "Thank you [name_genie_hermione], you won't regret it..." ("open", "base", "base", "R") "\"Five is all I can do.\"": $ current_payout += 5 @@ -270,12 +270,12 @@ label hg_butt_plugs: her "{heart}{heart}{heart}*Ah*{heart}{heart}{heart}..." ("grin", "narrow", "annoyed", "up") her "I better...{w=0.4}*Ah*...{w=0.4} Head to class..." ("soft", "happy", "base", "R") - gen "See you tonight, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "See you tonight, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "{size=-5}({heart}So...{w=0.4} Good...{heart}){/size}" ("grin", "narrow", "annoyed", "up") else: call play_music("chipper_doodle") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "What do you think about wearing a butt pl--?" ("base", xpos="far_left", ypos="head") her "I'll do it." ("grin", "base", "base", "R",xpos="right",ypos="base") gen "You're eager. I haven't even said which one yet..." ("base", xpos="far_left", ypos="head") @@ -285,7 +285,7 @@ label hg_butt_plugs: ">You hand her the butt plug." ">Hermione lifts her skirt giving you a full view as she inserts it." her "{heart}*Ah*{heart}..." ("grin", "narrow", "annoyed", "up") - her "Thank you [genie_name]!" ("open", "base", "base", "R") + her "Thank you [name_genie_hermione]!" ("open", "base", "base", "R") her "{size=-5}({heart}it feels so good... I might have to buy my own...{heart}){/size}" ("grin", "narrow", "annoyed", "up") "-Large, magical-": @@ -298,7 +298,7 @@ label hg_butt_plugs: # First time with large butt plug call play_music("chipper_doodle") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "What do you think about wearing a butt pl--?" ("base", xpos="far_left", ypos="head") her "I'll do it." ("grin", "base", "base", "R",xpos="right",ypos="base") gen "You're eager. I haven't even said which one yet..." ("base", xpos="far_left", ypos="head") @@ -307,11 +307,11 @@ label hg_butt_plugs: gen "Well seeing as how you did ask for the big one..." ("base", xpos="far_left", ypos="head") call nar(">You hand her the large sized butt plug.") her "!!!" ("angry", "narrow", "base", "down") - her "This isn't the one I meant [genie_name]..." ("angry", "narrow", "base", "down") + her "This isn't the one I meant [name_genie_hermione]..." ("angry", "narrow", "base", "down") gen "Didn't you ask for the big one?" ("base", xpos="far_left", ypos="head") her "I did--" ("grin", "narrow", "annoyed", "up") gen "Well this is the {b}big{/b} one." ("base", xpos="far_left", ypos="head") - her "But, [genie_name]... I don't even think this will fit." ("disgust", "base", "base", "mid",cheeks="blush") + her "But, [name_genie_hermione]... I don't even think this will fit." ("disgust", "base", "base", "mid",cheeks="blush") gen "Never say never!" ("base", xpos="far_left", ypos="head") her "You can't be serious!" ("scream", "narrow", "worried", "down") her "This thing is ridiculous!" ("open", "closed", "base", "mid") @@ -321,9 +321,9 @@ label hg_butt_plugs: gen "You did great, taking my cock up your ass!" ("grin", xpos="far_left", ypos="head") - her "[genie_name]!" ("shock", "wide", "base", "mid",cheeks="blush") + her "[name_genie_hermione]!" ("shock", "wide", "base", "mid",cheeks="blush") gen "Come on..." ("base", xpos="far_left", ypos="head") - her "This is too much [genie_name]! even your cock isn't this {b}thick{/b}..." ("open", "narrow", "angry", "R") + her "This is too much [name_genie_hermione]! even your cock isn't this {b}thick{/b}..." ("open", "narrow", "angry", "R") gen "Nothing a little spit can't solve!" ("base", xpos="far_left", ypos="head") her "Don't be ridiculous! This is beyond spit!" ("open", "closed", "base", "mid") her "Unless you have some sort of actual {i}lubricant{/i} in your possession, I don't think I'll be letting this thing anywhere near my--" ("open", "base", "angry", "mid") @@ -342,7 +342,7 @@ label hg_butt_plugs: call give_gift(">You hand hermione the jar of anal lubricant.",anal_lube_ITEM) her "!!!" ("clench", "wide", "base", "stare") - her "I wasn't being serious, [genie_name]!" ("scream", "base", "angry", "mid") + her "I wasn't being serious, [name_genie_hermione]!" ("scream", "base", "angry", "mid") gen "Didn't you say you needed some lube to do it? I've got you some, right here." ("base", xpos="far_left", ypos="head") her "Yes, but I didn't actually expect you to have a jar of lube in your desk!" ("open", "narrow", "angry", "R") gen "Really? You didn't think I'd foresee this occasion?" ("base", xpos="far_left", ypos="head") @@ -356,7 +356,7 @@ label hg_butt_plugs: her "There's barely even enough here to cover it..." ("open", "narrow", "worried", "down") her "(There's no way this thing will fit.)" ("disgust", "narrow", "base", "down") call nar(">Hermione slowly places the lubed up butt plug to her anus.") - her "I'm telling you, [genie_name], this isn't going to--" ("open", "closed", "base", "mid") + her "I'm telling you, [name_genie_hermione], this isn't going to--" ("open", "closed", "base", "mid") her "{size=+10}!!!{/size}" ("soft", "wide", "base", "stare",cheeks="blush",trans=hpunch) her "{size=+10}It's moving!{/size}" ("disgust", "happyCl", "worried", "mid") gen "Really?" ("base", xpos="far_left", ypos="head") @@ -373,7 +373,7 @@ label hg_butt_plugs: her "{size=+5}incredible!{/size}" ("soft", "narrow", "annoyed", "up",cheeks="blush") her "............." ("disgust", "narrow", "annoyed", "up") - gen "Are you alright, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Are you alright, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her ".........................." ("soft", "narrow", "base", "up") her "*Ah*... Y--{w=0.2} yes..." ("open", "narrow", "base", "mid_soft") gen "Fantastic! I'll see you after class then." ("base", xpos="far_left", ypos="head") @@ -399,7 +399,7 @@ label hg_butt_plugs: her "True...{w=0.4} Here I go then..." ("soft", "narrow", "base", "mid",cheeks="blush") her "{heart}*Ah*{heart}..." ("silly", "narrow", "annoyed", "up",cheeks="blush") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft",cheeks="blush") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft",cheeks="blush") her "{size=-5}({heart}it feels so good... I might have to buy my own...{heart}){/size}" ("soft", "narrow", "annoyed", "up",cheeks="blush") hide hermione_main with d3 @@ -412,7 +412,7 @@ label hg_butt_plugs: $ ev_her_large_plug.enqueue() # Repeat with large butt plug call play_music("chipper_doodle") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "How do you feel about wearing another butt plug to class today?" ("base", xpos="far_left", ypos="head") her "..." ("base", "base", "base", "R",xpos="right",ypos="base") her "Which one?" ("grin", "base", "base", "mid") @@ -427,7 +427,7 @@ label hg_butt_plugs: her "{heart}*Ah*{heart}..." ("grin", "narrow", "annoyed", "up") gen "(Didn't even need any lube...)" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]!" ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]!" ("base", "narrow", "base", "mid_soft") her "{size=-5}({heart}it feels so good... I might have to buy my own...{heart}){/size}" ("soft", "narrow", "annoyed", "up") call her_walk(action="leave") @@ -444,15 +444,15 @@ label hg_butt_plugs_small_return: if her_whoring < 19: if random_number == 1: # Got distracted - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") her "It was awful... of course..." ("annoyed", "squint", "angry", "mid",xpos="right",ypos="base") - gen "Just tell me what happened, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "I've never been so uncomfortable in my life [genie_name]!" ("disgust", "narrow", "base", "mid_soft") + gen "Just tell me what happened, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "I've never been so uncomfortable in my life [name_genie_hermione]!" ("disgust", "narrow", "base", "mid_soft") her "I wasn't able to focus on anything all day!" ("annoyed", "narrow", "annoyed", "mid") gen "Why's that?" ("base", xpos="far_left", ypos="head") her "Whenever I was sitting down in class it just kept prodding me..." ("annoyed", "narrow", "angry", "R") - her "So naturally I had to adjust the way I was sitting, [genie_name]..." + her "So naturally I had to adjust the way I was sitting, [name_genie_hermione]..." her "but that just made it worse..." ("annoyed", "narrow", "angry", "R") gen "Do you think anyone else noticed you?" ("base", xpos="far_left", ypos="head") her "I've got no idea..." ("annoyed", "narrow", "annoyed", "mid") @@ -468,8 +468,8 @@ label hg_butt_plugs_small_return: elif random_number == 2: # Flashed a few Ravenclaw girls by accident - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") - her "It went well, [genie_name]..." ("open", "base", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") + her "It went well, [name_genie_hermione]..." ("open", "base", "base", "mid",xpos="right",ypos="base") call play_music("playful_tension") her "Barely anybody noticed that I was wearing it..." her "... Except for a few girls from Ravenclaw..." ("open", "base", "base", "mid",cheeks="blush") @@ -487,9 +487,9 @@ label hg_butt_plugs_small_return: elif random_number == 3: # Caught by Moaning Myrtle - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") - her "Awful, [genie_name]. Simply awful..." ("scream", "happyCl", "worried", "mid",xpos="right",ypos="base") + her "Awful, [name_genie_hermione]. Simply awful..." ("scream", "happyCl", "worried", "mid",xpos="right",ypos="base") gen "What happened?" ("base", xpos="far_left", ypos="head") her "Moaning Myrtle happened!" ("normal", "happyCl", "worried", "mid") gen "{i}Moaning Mittle{/i}?" ("base", xpos="far_left", ypos="head") @@ -506,7 +506,7 @@ label hg_butt_plugs_small_return: if random_number == 1: # Flashed Luna in the library call play_music("chipper_doodle") - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") her "Of course." ("open", "base", "base", "mid",xpos="right",ypos="base") gen "Excellent... So, did anyone notice?" ("base", xpos="far_left", ypos="head") her "*Ehm*... Well..." ("base", "narrow", "worried", "down") @@ -529,7 +529,7 @@ label hg_butt_plugs_small_return: her "Giving her a full view..." ("base", "narrow", "base", "up") gen "I see..." ("base", xpos="far_left", ypos="head") gen "So she saw how the tail was attached?" ("base", xpos="far_left", ypos="head") - her "*Hmm*... Maybe, [genie_name]..." ("soft", "happy", "base", "R") + her "*Hmm*... Maybe, [name_genie_hermione]..." ("soft", "happy", "base", "R") her "She was too stunned to say anything." gen "*Hmm*..." ("base", xpos="far_left", ypos="head") her "Knowing her, she might've just thought I grew a tail or something..." ("base", "narrow", "base", "mid_soft") @@ -537,8 +537,8 @@ label hg_butt_plugs_small_return: elif random_number == 2: # Couldn't focus and touched herself during class - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "I did, [genie_name]..." ("open", "closed", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "I did, [name_genie_hermione]..." ("open", "closed", "base", "mid",xpos="right",ypos="base") her "Although I'm still not sure how I feel about all of this..." ("annoyed", "base", "worried", "R") her "I was barely able to pay attention during class..." ("annoyed", "base", "worried", "R") her "I don't think I could even tell you which potion we were taught today..." ("open", "base", "base", "mid") @@ -552,32 +552,32 @@ label hg_butt_plugs_small_return: her "But it just made Herbology worse..." ("open", "narrow", "worried", "down") her "I just had to touch myself during the later half of the class..." ("clench", "narrow", "base", "down") gen "During class?" ("base", xpos="far_left", ypos="head") - her "Yeah...{w=0.4} Do you...{w=0.4} *Ehm*... Do you think anyone noticed, [genie_name]?" ("open", "happy", "base", "mid",cheeks="blush") + her "Yeah...{w=0.4} Do you...{w=0.4} *Ehm*... Do you think anyone noticed, [name_genie_hermione]?" ("open", "happy", "base", "mid",cheeks="blush") menu: - "\"Noticed? Of course not, [hermione_name]!\"": + "\"Noticed? Of course not, [name_hermione_genie]!\"": her ".............." ("base", "base", "base", "R",cheeks="blush") - her "Hopefully you're right, [genie_name]..." ("base", "narrow", "worried", "down") + her "Hopefully you're right, [name_genie_hermione]..." ("base", "narrow", "worried", "down") her "I did try to be as discreet as possible..." her "I don't think..." ("soft", "narrow", "annoyed", "up") her "Well, I {b}hope{/b} I wasn't making too much noise..." ("grin", "base", "base", "R") - her "[genie_name], can I get paid now, please?" ("base", "narrow", "base", "mid_soft",xpos="right",ypos="base",trans=fade) + her "[name_genie_hermione], can I get paid now, please?" ("base", "narrow", "base", "mid_soft",xpos="right",ypos="base",trans=fade) her "......" "\"Of course they noticed!\"": gen "Do you honestly believe that no one noticed you touching yourself?" ("base", xpos="far_left", ypos="head") - her "I was afraid that you would say that, [genie_name]..." ("mad", "happyCl", "worried", "mid",tears="soft_blink") + her "I was afraid that you would say that, [name_genie_hermione]..." ("mad", "happyCl", "worried", "mid",tears="soft_blink") gen "To think that you'd do such a thing, surrounded by your classmates..." ("base", xpos="far_left", ypos="head") her "........" ("mad", "happyCl", "worried", "mid",tears="soft_blink") gen "You're lucky that nobody called you out on it..." ("base", xpos="far_left", ypos="head") - her "[genie_name], can I get paid now, please?" ("angry", "base", "base", "mid",tears="soft",xpos="right",ypos="base",trans=fade) + her "[name_genie_hermione], can I get paid now, please?" ("angry", "base", "base", "mid",tears="soft",xpos="right",ypos="base",trans=fade) gen "Certainly." ("base", xpos="far_left", ypos="head") elif random_number == 3: # Nothing happened - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]. I did." ("open", "closed", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]. I did." ("open", "closed", "base", "mid",xpos="right",ypos="base") gen "Great. Tell me more." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") her "Well, there's not much to tell..." ("open", "base", "base", "mid") @@ -586,17 +586,17 @@ label hg_butt_plugs_small_return: her "All in all it was a fairly regular day..." her "Well as regular as it could have been with a plug up my butt." ("annoyed", "narrow", "angry", "R") gen "And nobody noticed?" ("base", xpos="far_left", ypos="head") - her "I don't think so, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "I don't think so, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") gen "Well I suppose something interesting can't happen everyday." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "base", "base", "R",xpos="right",ypos="base",trans=fade) else: if random_number == 1: # Pleasured herself in class - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]." ("base", "base", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]." ("base", "base", "base", "mid",xpos="right",ypos="base") gen "Well? How was your day?" ("base", xpos="far_left", ypos="head") - her "Great, [genie_name]... Just... great." ("base", "narrow", "base", "up") + her "Great, [name_genie_hermione]... Just... great." ("base", "narrow", "base", "up") gen "Go on..." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") her "I managed to work out how to deal with this thing being inside me all day..." ("soft", "happy", "base", "R") @@ -615,7 +615,7 @@ label hg_butt_plugs_small_return: her "That's when I finally tried sitting right on the edge of my chair while rocking my hips..." ("base", "squint", "base", "mid") her "{heart}{heart}{heart}" ("soft", "narrow", "annoyed", "up") gen "So you worked out how to pleasure yourself in class." ("base", xpos="far_left", ypos="head") - her "I did, [genie_name]..." ("base", "narrow", "worried", "down") + her "I did, [name_genie_hermione]..." ("base", "narrow", "worried", "down") her "Although I worry that if I do it too often it will really start to affect my grades..." gen "Well I'm sure that missing a class or two isn't enough for you not to be able to catch up." ("base", xpos="far_left", ypos="head") her "One or two?" ("angry", "wink", "base", "mid") @@ -623,12 +623,12 @@ label hg_butt_plugs_small_return: gen "Hold on, you're saying that you spent all of today's classes pleasuring yourself?" ("base", xpos="far_left", ypos="head") her ".........." ("soft", "narrow", "annoyed", "up") her "" (xpos="right",ypos="base",trans=fade) - gen "Nice work, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nice work, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") elif random_number == 2: # Colin Creevey took an upskirt photo - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]." ("base", "base", "base", "mid", xpos="right", ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="right", ypos="base") her "Although...{w=0.4} *Ehm*..." ("open", "base", "worried", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") her "Well, I may have gotten a bit more attention than I had hoped for..." ("disgust", "narrow", "base", "down") @@ -649,20 +649,20 @@ label hg_butt_plugs_small_return: her "Luckily I managed to grab him and made him promise not to show anyone the photo..." ("open", "narrow", "worried", "down") her "... In exchange I did have to let him take a few more though..." gen "You... Let him take more pictures? Wouldn't that make it worse?" ("base", xpos="far_left", ypos="head") - her "Of course not [genie_name], Gryffindors are always true to their word!" ("annoyed", "closed", "base", "mid") + her "Of course not [name_genie_hermione], Gryffindors are always true to their word!" ("annoyed", "closed", "base", "mid") her "Although the thought did cross my mind...." ("open", "narrow", "worried", "down") her "If he released them then I'm sure that any time someone saw me they'd try and see whether or not I had a plug inside me..." ("base", "narrow", "worried", "down") her "In any case, I'm certain that he won't release any of those photos!" ("open", "closed", "base", "mid") gen "If you say so..." ("base", xpos="far_left", ypos="head") her "He's not an idiot... He'd know that if he were to spread those photos around it would tarnish not just my reputation but Gryffindor as a whole." ("clench", "narrow", "base", "down") her "" ("base", "narrow", "base", "mid_soft") - gen "Very well... In that case, it sounds like a job well done [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Very well... In that case, it sounds like a job well done [name_hermione_genie]." ("base", xpos="far_left", ypos="head") elif random_number == 3: # Flashed students on her way to class call play_music("chipper_doodle") - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes, I did [genie_name]..." ("base", "squint", "base", "mid", xpos="right", ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes, I did [name_genie_hermione]..." ("base", "squint", "base", "mid", xpos="right", ypos="base") gen "Did anyone notice?" ("base", xpos="far_left", ypos="head") her "*Hmm*...{w=0.4} Maybe..." her "I may have gotten a little too confident..." @@ -670,7 +670,7 @@ label hg_butt_plugs_small_return: her "Well, I was walking to divination class and ended up in front of a group of students..." ("open", "closed", "base", "mid") her "And seeing as how they were behind me on the stairs, they may have been able to... See it." ("base", "narrow", "base", "mid_soft") gen "You're not expecting me to grant you extra points for showing them, are you?" ("base", xpos="far_left", ypos="head") - her "Of course not, [genie_name]." ("base", "base", "base", "R", cheeks="blush") + her "Of course not, [name_genie_hermione]." ("base", "base", "base", "R", cheeks="blush") gen "Then why do it?" ("base", xpos="far_left", ypos="head") her "I don't know... As I said, I was probably being a bit too confident..." ("open", "happy", "base", "mid", cheeks="blush") gen "Well, hopefully they didn't see it then." ("base", xpos="far_left", ypos="head") @@ -679,12 +679,12 @@ label hg_butt_plugs_small_return: gen "So...{w=0.4} What you're saying is that you wanted to make sure that they saw it?" ("base", xpos="far_left", ypos="head") gen "Sounds to me like you're enjoying students seeing you like this..." ("base", xpos="far_left", ypos="head") her "If that's what you want to believe..." ("open", "base", "base", "R") - gen "Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("base", "narrow", "worried", "down") $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." call her_walk(action="leave") @@ -700,11 +700,11 @@ label hg_butt_plugs_medium_return: if her_whoring <= 21: if random_number == 1: # Stood in front during potions class - gen "[hermione_name], how's your day been?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how's your day been?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") her "Awful...{w=0.4} Simply awful..." ("annoyed", "squint", "angry", "mid",xpos="right",ypos="base") gen "What happened?" ("base", xpos="far_left", ypos="head") - her "Professor Snape happened, [genie_name]!" ("annoyed", "narrow", "angry", "R") + her "Professor Snape happened, [name_genie_hermione]!" ("annoyed", "narrow", "angry", "R") her "I've never been so embarrassed in my life!" ("annoyed", "narrow", "annoyed", "mid") gen "Severus? What did he do this time?" ("base", xpos="far_left", ypos="head") her "Well, apparently I dared to suggest there was a better way to properly crush a Sopophorous bean..." ("annoyed", "narrow", "angry", "R") @@ -723,8 +723,8 @@ label hg_butt_plugs_medium_return: elif random_number == 2: # Flashed some Hufflepuffs - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") - her "It went well, [genie_name]..." ("open", "base", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") + her "It went well, [name_genie_hermione]..." ("open", "base", "base", "mid",xpos="right",ypos="base") call play_music("playful_tension") her "A group of students from Hufflepuff even complimented me on it..." her "... They said that it looked cute..." ("grin", "base", "base", "R") @@ -744,7 +744,7 @@ label hg_butt_plugs_medium_return: $ buttplug_magic_known = True - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") her "What on earth did you do to this thing?!" ("scream", "happyCl", "worried", "mid",xpos="right",ypos="base") gen "What happened?" ("base", xpos="far_left", ypos="head") @@ -760,15 +760,15 @@ label hg_butt_plugs_medium_return: her "The vibrations were so intense that my knees gave out and I collapsed onto my bed!" ("angry", "narrow", "base", "down") gen "(Is she making this up?)" ("base", xpos="far_left", ypos="head") gen "Well... I'll be sure to inspect it thoroughly and remove this curse..." ("base", xpos="far_left", ypos="head") - her "Oh... *Ehm*... No, it's fine really [genie_name], you can leave it the way it is." ("clench", "narrow", "base", "down") - gen "Alright then... good work [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Oh... *Ehm*... No, it's fine really [name_genie_hermione], you can leave it the way it is." ("clench", "narrow", "base", "down") + gen "Alright then... good work [name_hermione_genie]." ("base", xpos="far_left", ypos="head") elif her_whoring <= 23: if random_number == 1: # Luna played with it in the library call play_music("chipper_doodle") - gen "[hermione_name], did you have fun?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], did you have fun?" ("base", xpos="far_left", ypos="head") her "*Ehm*... I suppose you could say that." ("base", "narrow", "worried", "down",xpos="right",ypos="base") gen "Anything interesting happen?" ("base", xpos="far_left", ypos="head") her "Yes... Well I might've... *Ehm*..." ("base", "narrow", "worried", "down") @@ -796,14 +796,14 @@ label hg_butt_plugs_medium_return: elif random_number == 2: # Friend played with it - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "I did, [genie_name]." ("open", "closed", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "I did, [name_genie_hermione]." ("open", "closed", "base", "mid",xpos="right",ypos="base") her "Only... *Ehm*..." ("grin", "base", "base", "R") - gen "What is it this time [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What is it this time [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Well... One of my friends..." ("base", "base", "base", "mid") her "Well, I told her about the tail..." ("base", "base", "base", "R",cheeks="blush") her "And how it works..." - gen "Just say it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Just say it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Well, we decided to skip Herbology class together..." ("open", "base", "base", "R") call play_music("playful_tension") her "And then she sort of grabbed it..." ("grin", "narrow", "annoyed", "up") @@ -814,22 +814,22 @@ label hg_butt_plugs_medium_return: if hg_pr_kiss.counter >= 1: her "*Err*... maybe..." ("open", "happy", "base", "mid",cheeks="blush") gen "What did you do?" ("base", xpos="far_left", ypos="head") - her "Well I don't want to say too much [genie_name]." ("base", "base", "base", "R",cheeks="blush") + her "Well I don't want to say too much [name_genie_hermione]." ("base", "base", "base", "R",cheeks="blush") her "But after she saw what it was doing to me..." her "She insisted that I let her have a go..." her "And that's all I'll say..." ("base", "narrow", "worried", "down") - gen "*Hmm*... I suppose you've earned your points [hermione_name], even if you are secretive about it..." ("base", xpos="far_left", ypos="head") + gen "*Hmm*... I suppose you've earned your points [name_hermione_genie], even if you are secretive about it..." ("base", xpos="far_left", ypos="head") else: her "... No." ("open", "narrow", "worried", "down") gen "Why not?" ("base", xpos="far_left", ypos="head") - her "Well I don't mind letting her touch the tail [genie_name]." ("annoyed", "base", "base", "mid") + her "Well I don't mind letting her touch the tail [name_genie_hermione]." ("annoyed", "base", "base", "mid") her "But anything else..." - gen "Very good [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very good [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") elif random_number == 3: # Called a slut by Slytherin girls - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]. I did." ("annoyed", "narrow", "angry", "R",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]. I did." ("annoyed", "narrow", "angry", "R",xpos="right",ypos="base") gen "Great. Tell me more." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") her "Well, there's not much to tell..." ("open", "narrow", "worried", "down") @@ -846,8 +846,8 @@ label hg_butt_plugs_medium_return: if random_number == 1: # Groped by students - gen "[hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") - her "Awful... I was attacked by a group of rabid students, [genie_name]." ("scream", "closed", "angry", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") + her "Awful... I was attacked by a group of rabid students, [name_genie_hermione]." ("scream", "closed", "angry", "mid",xpos="right",ypos="base") gen "Attacked? By How many?" ("base", xpos="far_left", ypos="head") her "Six!" ("annoyed", "base", "angry", "mid") call play_music("playful_tension") @@ -876,25 +876,25 @@ label hg_butt_plugs_medium_return: her "......." ("base", "narrow", "worried", "down") gen "So, did you enjoy it?" ("base", xpos="far_left", ypos="head") her ".........." ("angry", "base", "base", "mid") - her "Truthfully [genie_name].... It was one of the most pleasurable experiences of my life..." ("grin", "narrow", "base", "dead") + her "Truthfully [name_genie_hermione].... It was one of the most pleasurable experiences of my life..." ("grin", "narrow", "base", "dead") her "All their hands touching it..." ("soft", "narrow", "annoyed", "up") her "Taking turns..." ("grin", "narrow", "annoyed", "up") her "All the while it was vibrating away..." ("base", "narrow", "worried", "down") her "I nearly passed out." ("silly", "narrow", "base", "dead") her "Especially when one of them pulled at it a bit..." ("silly", "narrow", "annoyed", "up") her "..." ("grin", "narrow", "annoyed", "up") - gen "Nice work, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nice work, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") elif random_number == 2: # Glory hole with Female Student - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]..." ("base", "base", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]..." ("base", "base", "base", "mid",xpos="right",ypos="base") her "Did you know there are holes between the stalls in the girls' bathroom?" ("soft", "base", "base", "mid") gen "I did not, but What does that have to do with your butt plug?" ("base", xpos="far_left", ypos="head") her "Well, I noticed that the hole is the same height as the tail..." ("grin", "base", "base", "R") her "..............." ("grin", "happyCl", "worried", "mid") - gen "Go on, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Go on, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") her "I might have put it through..." ("base", "narrow", "worried", "down") gen "What?" ("base", xpos="far_left", ypos="head") @@ -912,7 +912,7 @@ label hg_butt_plugs_medium_return: her "It was incredible... I could barely stand while it happened..." gen "Sounds like you had a good time." ("base", xpos="far_left", ypos="head") gen "Did you find out if it was a Slytherin or not?" ("base", xpos="far_left", ypos="head") - her "Unfortunately not... [genie_name]." ("open", "base", "worried", "mid") + her "Unfortunately not... [name_genie_hermione]." ("open", "base", "worried", "mid") her "Although truth be told, I'm not sure if I want to know..." ("open", "base", "worried", "mid") #Maybe this section could be a check in the future if we feel it's appropriate #her "It was at lunch, in the great hall." ("open", "closed", "base", "mid") @@ -921,15 +921,15 @@ label hg_butt_plugs_medium_return: #her "she couldn't take her eyes off of it..." #her "imagine that... Astoria Greengrass... pure-blood, licking my..." ("grin", "narrow", "annoyed", "up") #her "{heart}........{heart}" ("soft", "narrow", "annoyed", "up") - #gen "It sounds like you've earned your points today then [hermione_name]." ("base", xpos="far_left", ypos="head") + #gen "It sounds like you've earned your points today then [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "*Hmm*... That's too bad, perhaps you'll see them at that hole again some time." ("base", xpos="far_left", ypos="head") gen "Either way, you've surely earned your points." ("base", xpos="far_left", ypos="head") her "...{size=-7}(I would have done this for free...){/size}" ("base", "narrow", "worried", "down") elif random_number == 3: call play_music("chipper_doodle") - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes, I did [genie_name]..." ("base", "squint", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes, I did [name_genie_hermione]..." ("base", "squint", "base", "mid",xpos="right",ypos="base") gen "Anything interesting happen?" ("base", xpos="far_left", ypos="head") her "Yes!" her "I was walking down the hall and there were some students behind me..." ("base", "narrow", "base", "mid_soft") @@ -938,11 +938,11 @@ label hg_butt_plugs_medium_return: her "So I stopped and pretended to tie my shoelaces, keeping my knees straight and bending over as far as I could..." ("base", "narrow", "base", "mid_soft") gen "You exposed yourself in the middle of a corridor, just like that?" ("base", xpos="far_left", ypos="head") her "Expose? I'm not sure I know what you mean...{w=0.4} I was tying my shoelaces........" ("base", "base", "base", "R",cheeks="blush") - gen "Very good, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Very good, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." call her_walk(action="leave") @@ -955,7 +955,7 @@ label hg_butt_plugs_large_return: if random_number == 1: # Student tried to pull it out - gen "[hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") her "Awful, the worst thing possible happened!" ("scream", "closed", "angry", "mid",xpos="right",ypos="base") gen "The worst thing? Worse than someone catching you with a tail up your butt?" ("base", xpos="far_left", ypos="head") her "Yes, believe it or not." ("annoyed", "base", "angry", "mid") @@ -974,7 +974,7 @@ label hg_butt_plugs_large_return: her "What?!" ("scream", "wide", "angry", "mid") her "Why are you giving points to Slytherin?!" ("angry", "wide", "angry", "mid") gen "Such a one-liner ought to be rewarded!" ("base", xpos="far_left", ypos="head") - her "But [genie_name]! I'm doing this so that Gryffindor can get ahead of Slytherin!" ("upset", "base", "angry", "mid") + her "But [name_genie_hermione]! I'm doing this so that Gryffindor can get ahead of Slytherin!" ("upset", "base", "angry", "mid") gen "Oh, right..." ("base", xpos="far_left", ypos="head") gen "Ten points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 10 @@ -987,17 +987,17 @@ label hg_butt_plugs_large_return: her "..." ("disgust", "narrow", "base", "down") her "Can I have my points now?" ("open", "narrow", "worried", "down") gen "Certainly." ("base", xpos="far_left", ypos="head") - gen "Nice work, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nice work, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") elif random_number == 2: # Hermione is a Dragon - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]..." ("base", "base", "base", "mid", xpos="right", ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]..." ("base", "base", "base", "mid", xpos="right", ypos="base") her "I found the perfect opportunity to show it off today." ("soft", "base", "base", "mid") gen "Show it off? You actually showed it off to someone this time?" ("base", xpos="far_left", ypos="head") her "I did..." ("grin", "base", "base", "R") her "..............." ("grin", "happyCl", "worried", "mid") - gen "Go on, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Go on, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") her "Well, we're currently studying Dragons in our care of magical creatures lessons." ("base", "narrow", "base", "down") gen "Right?" ("base", xpos="far_left", ypos="head") @@ -1014,8 +1014,8 @@ label hg_butt_plugs_large_return: gen "I know, I just wanted to hear you say it." ("grin", xpos="far_left", ypos="head") gen "I suppose you better get some points, although I assume you've already earned a couple during that lesson." ("base", xpos="far_left", ypos="head") her "A couple..." ("grin", "base", "base", "R") - gen "You sure have good imagination to come up with and do something like this... [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("grin", "base", "base", "R") + gen "You sure have good imagination to come up with and do something like this... [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione]..." ("grin", "base", "base", "R") gen "Imagine dragons..." ("base", xpos="far_left", ypos="head") her "*Hmm*?" gen "Nevermind..." ("base", xpos="far_left", ypos="head") @@ -1023,8 +1023,8 @@ label hg_butt_plugs_large_return: elif random_number == 3: # Rides Hippogriff with it inside call play_music("chipper_doodle") - gen "[hermione_name], did you complete your task?" ("base", xpos="far_left", ypos="head") - her "Yes, I did [genie_name]..." ("base", "squint", "base", "mid",xpos="right",ypos="base") + gen "[name_hermione_genie], did you complete your task?" ("base", xpos="far_left", ypos="head") + her "Yes, I did [name_genie_hermione]..." ("base", "squint", "base", "mid",xpos="right",ypos="base") gen "Anything interesting happen?" ("base", xpos="far_left", ypos="head") her "Yes... As you probably know, you can't really sit very well with this thing inside." gen "Can't say that I have first hand experience..." ("base", xpos="far_left", ypos="head") @@ -1036,11 +1036,11 @@ label hg_butt_plugs_large_return: her "As in on their backs..." gen "Oh, Good... Can never be too careful these days..." ("base", xpos="far_left", ypos="head") her "It was quite an experience to say the least..." - gen "Very good, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Very good, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." call her_walk(action="leave") diff --git a/game/scripts/characters/hermione/events/items/collars.rpy b/game/scripts/characters/hermione/events/items/collars.rpy index 9d8cf0b7..27cd4314 100644 --- a/game/scripts/characters/hermione/events/items/collars.rpy +++ b/game/scripts/characters/hermione/events/items/collars.rpy @@ -43,7 +43,7 @@ label hg_collars: her "Phase one... What's phase two?" ("angry", "squint", "base", "mid") gen "You'll see once you've taken that top off." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "mid") - her "No, I'm sorry [genie_name]... But I don't think I will." ("annoyed", "narrow", "base", "R") + her "No, I'm sorry [name_genie_hermione]... But I don't think I will." ("annoyed", "narrow", "base", "R") gen "(Damn... Maybe I should get her more used to taking her top off before doing this...)" ("base", xpos="far_left", ypos="head") jump hermione_requests @@ -129,7 +129,7 @@ label hg_collars: gen "*Hmm*... Just to put on a magic collar?" ("base", xpos="far_left", ypos="head") gen "And here I thought you weren't worried about it..." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "R") - gen "Very well, [hermione_name]... Thirty points it is." ("base", xpos="far_left", ypos="head") + gen "Very well, [name_hermione_genie]... Thirty points it is." ("base", xpos="far_left", ypos="head") $ current_payout = 30 @@ -280,7 +280,7 @@ label slut_scene: $ renpy.play("sounds/flashbang.ogg") $ hermione.equip(her_neckwear_slut_collar) - $ hermione_name = "Slut" + $ name_hermione_genie = "Slut" with flashbulb gen "A slut!" ("grin", xpos="far_left", ypos="head") @@ -291,7 +291,7 @@ label slut_scene: gen "You won't. You'll have to embrace it." ("base", xpos="far_left", ypos="head") her "Embrace it!?" ("angry", "base", "base", "stare", tears="soft") gen "There's no coming back for a slut like you... Even if I leave, you'll just find some other cock to please." ("base", xpos="far_left", ypos="head") - her "[genie_name]... That's not true!" ("angry", "happyCl", "worried", "mid",emote="sweat") + her "[name_genie_hermione]... That's not true!" ("angry", "happyCl", "worried", "mid",emote="sweat") gen "Don't act like you don't already know this...{w} You know that deep down, you're a filthy slut." ("base", xpos="far_left", ypos="head") her "I am not!" ("angry", "happyCl", "worried", "stare") gen "Suck my cock." ("base", xpos="far_left", ypos="head") @@ -324,14 +324,14 @@ label slut_scene: gen "That's a good little slut..." ("base", xpos="far_left", ypos="head") gen "Now if you want to suck my cock, I expect you to ask nicely." ("base", xpos="far_left", ypos="head") her "What? Isn't it bad enough that the stupid collar said that I'm a slut! Just let me suck your cock!" ("clench", "happy", "base", "up", cheeks="blush", ypos="head") - gen "Well that's exactly it, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Well that's exactly it, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "Sluts beg for cock!" ("base", xpos="far_left", ypos="head") gen "I expect you to beg!" ("base", xpos="far_left", ypos="head") her "..." ("normal", "happyCl", "worried", "mid", cheeks="blush") - her "Please [genie_name], let me suck your cock." ("open", "happyCl", "base", "mid", cheeks="blush") + her "Please [name_genie_hermione], let me suck your cock." ("open", "happyCl", "base", "mid", cheeks="blush") gen "*Hmm*... That was \"almost\" good enough...{w=0.4} Try again." ("base", xpos="far_left", ypos="head") gen "Put some effort into it!" ("base", xpos="far_left", ypos="head") - her "Pretty please [genie_name], please let me suck your big beautiful cock." ("angry", "squint", "worried", "up", cheeks="blush") + her "Pretty please [name_genie_hermione], please let me suck your big beautiful cock." ("angry", "squint", "worried", "up", cheeks="blush") menu: "-Throat fuck-": @@ -344,20 +344,20 @@ label slut_scene: her "!!!" ("shock", "happyCl", "annoyed", "stare", cheeks="blush") call nar(">You feel her push back against your legs.") - gen "Now, now [hermione_name]... Good sluts know how to relax their throat..." ("base", xpos="far_left", ypos="head") + gen "Now, now [name_hermione_genie]... Good sluts know how to relax their throat..." ("base", xpos="far_left", ypos="head") her "*eeettss-hhooooo-hhhhggggg*!" ("open_wide_tongue", "narrow", "base", "up", cheeks="blush") gen "Let's go?" ("base", xpos="far_left", ypos="head") gen "Yeah, let's go!" ("base", xpos="far_left", ypos="head") her "..." ("open_wide_tongue", "closed", "angry", "mid") call nar(">Hermione's throat relaxes and allows you to enter.") gen "*Ughhh*! Your throat feels so good..." ("base", xpos="far_left", ypos="head") - gen "But that's to be expected from a hungry hole like yours... Isn't that right, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "But that's to be expected from a hungry hole like yours... Isn't that right, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") call nar(">Rolling her eyes, Hermione continues taking your cock deep into her throat.") her "*Slurp*! *Gltch*! *Gulp*!" ("open_wide_tongue", "narrow", "base", "stare_soft", cheeks="blush") gen "I asked you a question." ("base", xpos="far_left", ypos="head") her "*Cough*" ("open_wide_tongue", "wide", "worried", "up") her "*hhyyym-aaaa-hhhhtttt*" ("open_wide_tongue", "wide", "worried", "up") - gen "What was that [hermione_name]? I couldn't hear you over the sounds of you swallowing my cock." ("base", xpos="far_left", ypos="head") + gen "What was that [name_hermione_genie]? I couldn't hear you over the sounds of you swallowing my cock." ("base", xpos="far_left", ypos="head") her "*hhhhyyyyyym-aaaaaaa-hhhhhhhhttttttt*!" ("open_wide_tongue", "happyCl", "annoyed", "stare", cheeks="blush") call nar(">The vibrations from her throat as she tries to form a sentence sends a shiver down your shaft.") gen "*Ugh* Once more... I'm not sure I caught that." ("angry", xpos="far_left", ypos="head") @@ -375,7 +375,7 @@ label slut_scene: with d3 "-Let her suck you off-": - gen "Well, if you insist [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, if you insist [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call nar(">Hermione takes you into her waiting mouth.") call her_chibi_scene("bj") @@ -402,7 +402,7 @@ label slut_scene: call nar(">Hermione hurriedly takes your cock out of her mouth.") her "*Ahem*...{w=0.4} If that's what the collar says..." ("soft", "narrow", "worried", "R", cheeks="blush") gen "Good to hear you finally admit it. Now, back in the mouth." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]..." ("open", "base", "worried", "up", cheeks="blush") + her "Yes [name_genie_hermione]..." ("open", "base", "worried", "up", cheeks="blush") call nar(">Hermione takes you back into her mouth with renewed effort.") call her_chibi_scene("bj") @@ -467,13 +467,13 @@ label slut_scene: gen "Why? Worried someone's going to see how much of a slut you are?" ("base", xpos="far_left", ypos="head") her "You can't be serious!" ("upset", "happy", "worried", "stare", cheeks="blush") gen "I am... And if you ever want to suck my cock again you will do as I say." ("base", xpos="far_left", ypos="head") - her "...{w} Yes [genie_name]." ("annoyed", "narrow", "base", "R", cheeks="blush") + her "...{w} Yes [name_genie_hermione]." ("annoyed", "narrow", "base", "R", cheeks="blush") gen "Well then...{w=0.4} Get going." ("base", xpos="far_left", ypos="head") if game.daytime: - her "Bye then... [genie_name]." ("open", "narrow", "base", "mid_soft", cheeks="blush") + her "Bye then... [name_genie_hermione]." ("open", "narrow", "base", "mid_soft", cheeks="blush") else: - her "Good night then... [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Good night then... [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") gen "Until next time...{w=0.4} Slut." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "worried", "down", cheeks="blush") @@ -490,7 +490,7 @@ label whore_scene: #(locked behind public reputation and last sex event) $ renpy.play("sounds/flashbang.ogg") $ hermione.equip(her_neckwear_whore_collar) - $ hermione_name = "Whore" + $ name_hermione_genie = "Whore" with flashbulb gen "You are a--" ("base", xpos="far_left", ypos="head") @@ -504,7 +504,7 @@ label whore_scene: #(locked behind public reputation and last sex event) her "I'll be known as a slut for the rest of my life!" ("scream", "happyCl", "worried", "mid") her "I'll never be able to get a good job..." ("scream", "happyCl", "worried", "mid", tears="soft_blink") her "My friends will hate me..." ("angry", "happyCl", "worried", "mid", tears="soft_blink") - her "Please... The collar doesn't tell me that I'm a slut does it, [genie_name]?" ("angry", "wide", "worried", "mid") + her "Please... The collar doesn't tell me that I'm a slut does it, [name_genie_hermione]?" ("angry", "wide", "worried", "mid") gen "Well, you'll be happy to know that this Parkinson girl is incorrect, Miss Granger." ("base", xpos="far_left", ypos="head") gen "The collar doesn't say that you're a slut..." ("base", xpos="far_left", ypos="head") her "Oh, thank heavens..." ("grin", "base", "worried", "mid", tears="soft") @@ -517,7 +517,7 @@ label whore_scene: #(locked behind public reputation and last sex event) gen "I bet you'd beg your precious little friends to fuck you if I wasn't around and it would benefit you..." ("base", xpos="far_left", ypos="head") gen "Look at what you've become, nothing more than the school bicycle... Willing to give everyone a happy ride." ("base", xpos="far_left", ypos="head") gen "I wouldn't be worried about your friends finding out what you're doing in here. They're probably just waiting for a turn themselves..." ("base", xpos="far_left", ypos="head") - her "[genie_name] please...{w=0.4} You're being mean." ("shock", "happyCl", "worried", "mid") + her "[name_genie_hermione] please...{w=0.4} You're being mean." ("shock", "happyCl", "worried", "mid") gen "Oh, is the little whore getting upset? Don't worry, I'll make you feel all better." ("base", xpos="far_left", ypos="head") her "...How can you say that after--" ("angry", "happyCl", "worried", "mid") gen "Come over here and bend over." ("base", xpos="far_left", ypos="head") @@ -549,11 +549,11 @@ label whore_scene: #(locked behind public reputation and last sex event) gen "Such a good little whore you are...{w=0.4} Now, say aloud what you truly want..." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "worried", "down", cheeks="blush") - her "Please [genie_name]..." ("open", "narrow", "worried", "down", cheeks="blush") + her "Please [name_genie_hermione]..." ("open", "narrow", "worried", "down", cheeks="blush") gen "Please what?" ("base", xpos="far_left", ypos="head") her "{size=-4}Please...{w=04} Fuck me...{/size}" ("disgust", "base", "worried", "R", cheeks="blush") - gen "I'm not sure I heard you... Speak up [hermione_name]." ("base", xpos="far_left", ypos="head") - her "{size=+5}Please fuck me [genie_name]!{/size}" ("scream", "happyCl", "base", "stare", cheeks="blush") + gen "I'm not sure I heard you... Speak up [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "{size=+5}Please fuck me [name_genie_hermione]!{/size}" ("scream", "happyCl", "base", "stare", cheeks="blush") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "Not bad..." ("grin", xpos="far_left", ypos="head") @@ -571,8 +571,8 @@ label whore_scene: #(locked behind public reputation and last sex event) her "{heart}*Ah*...{heart}" ("open_tongue", "happyCl", "worried", "mid", cheeks="blush") gen "*Argh*...{w=0.4} How is your pussy still so tight?" ("base", xpos="far_left", ypos="head") gen "I thought that you would have loosened up after all the guys you've fucked." ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") - gen "Don't try and act coy with me [hermione_name]... We both know what you're up to when the lights go out." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]..." ("disgust", "happyCl", "worried", "mid", cheeks="blush") + gen "Don't try and act coy with me [name_hermione_genie]... We both know what you're up to when the lights go out." ("base", xpos="far_left", ypos="head") gen "Just admit what you are." ("base", xpos="far_left", ypos="head") her "{size=-4}A whore...{/size}" ("soft", "narrow", "worried", "up", cheeks="blush") gen "Who's a good little whore?" ("base", xpos="far_left", ypos="head") @@ -624,13 +624,13 @@ label whore_scene: #(locked behind public reputation and last sex event) gen "Ah..." ("grin", xpos="far_left", ypos="head") her "..." ("grin", "narrow", "base", "dead", cheeks="blush", tears="crying") gen "Well?" ("base", xpos="far_left", ypos="head") - gen "Show some gratitude, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "...{w=0.4} Thank you, [genie_name]." ("base", "narrow", "worried", "stare", cheeks="blush", tears="soft") + gen "Show some gratitude, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "...{w=0.4} Thank you, [name_genie_hermione]." ("base", "narrow", "worried", "stare", cheeks="blush", tears="soft") gen "\"Thank you...\"{w=0.4} For what? Don't be shy, slut." ("base", xpos="far_left", ypos="head") her "Thank you for...{w}{nw}" ("open", "closed", "worried", "stare", cheeks="blush") her "Thank you for...{fast} Cumming in my pussy..." ("base", "happy", "worried", "mid", cheeks="blush") gen "You're welcome girl. A good whore should always be grateful." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]..." ("base", "closed", "base", "mid", cheeks="blush") + her "Yes [name_genie_hermione]..." ("base", "closed", "base", "mid", cheeks="blush") hide hermione_main show screen blkfade @@ -675,8 +675,8 @@ label whore_scene: #(locked behind public reputation and last sex event) call give_reward(">A new collar has been unlocked in the wardrobe!") - her "Goodbye then, [genie_name]." ("soft", "narrow", "base", "R", cheeks="blush") - gen "Goodbye [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Goodbye then, [name_genie_hermione]." ("soft", "narrow", "base", "R", cheeks="blush") + gen "Goodbye [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") @@ -687,8 +687,8 @@ label slave_scene: $ renpy.play("sounds/flashbang.ogg") $ hermione.equip(her_neckwear_slave_collar) - $ hermione_name = "Slave" - $ genie_name = "Master" + $ name_hermione_genie = "Slave" + $ name_genie_hermione = "Master" with flashbulb her "It doesn't say slut does it?" ("open", "narrow", "base", "R") @@ -794,7 +794,7 @@ label slave_scene: call nar("You unleash a firm slap across her buttocks.") her "" ("open_tongue", "happyCl", "base", "up", cheeks="blush") call ctc - gen "That's not who I am to you [hermione_name]...{w=0.4} To you I am your master." ("base", xpos="far_left", ypos="head") + gen "That's not who I am to you [name_hermione_genie]...{w=0.4} To you I am your master." ("base", xpos="far_left", ypos="head") gen "Do you understand now?" ("base", xpos="far_left", ypos="head") her "Yes..." ("angry", "base", "base", "stare", tears="soft") @@ -817,15 +817,15 @@ label slave_scene: her "N--{w=0.4} No?" ("angry", "narrow", "worried", "stare", cheeks="blush", tears="soft") # confused gen "No, of course not..." ("base", xpos="far_left", ypos="head") gen "You're my {i}personal{/i} slave." ("base", xpos="far_left", ypos="head") - her "I--{w=0.2} I think I'm about to cum [genie_name]..." ("angry", "narrow", "worried", "R", cheeks="blush") + her "I--{w=0.2} I think I'm about to cum [name_genie_hermione]..." ("angry", "narrow", "worried", "R", cheeks="blush") call slap_her call nar(">You give Hermione a fierce slap across her left buttock.") gen "I am your master, and I will decide when you are allowed to cum. Got it?" ("base", xpos="far_left", ypos="head") - her "Please [genie_name]!" ("angry", "happyCl", "base", "mid", cheeks="blush") + her "Please [name_genie_hermione]!" ("angry", "happyCl", "base", "mid", cheeks="blush") gen "Not...{w=0.4} Yet!{w} Not until I say so..." ("base", xpos="far_left", ypos="head") - her "Please...{w=0.4}, I beg of you, [genie_name], I can't hold it!{heart}" ("angry", "narrow", "worried", "up", cheeks="blush") + her "Please...{w=0.4}, I beg of you, [name_genie_hermione], I can't hold it!{heart}" ("angry", "narrow", "worried", "up", cheeks="blush") gen "Then you better put some effort into it if you want me to finish sooner." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/sexloop.ogg" @@ -843,7 +843,7 @@ label slave_scene: $ renpy.sound.play("sounds/slick_01.ogg") stop bg_sounds fadeout 2 - her "[genie_name]{heart}{heart}... I--{w=0.2} I--{heart}" ("grin", "base", "base", "ahegao", cheeks="blush") + her "[name_genie_hermione]{heart}{heart}... I--{w=0.2} I--{heart}" ("grin", "base", "base", "ahegao", cheeks="blush") gen "Cum for your master, slut! Cum your brains out!" ("angry", xpos="far_left", ypos="head") $ renpy.sound.play("sounds/slick_01.ogg") with kissiris @@ -861,17 +861,17 @@ label slave_scene: call her_chibi_scene("sex_cum_in_done") - gen "What was that, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]! Thank you, [genie_name], thank you [genie_name].{heart}{heart}{heart}" ("grin", "narrow", "base", "dead", cheeks="blush") - gen "That's right, [hermione_name]... Know your place..." ("base", xpos="far_left", ypos="head") + gen "What was that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]! Thank you, [name_genie_hermione], thank you [name_genie_hermione].{heart}{heart}{heart}" ("grin", "narrow", "base", "dead", cheeks="blush") + gen "That's right, [name_hermione_genie]... Know your place..." ("base", xpos="far_left", ypos="head") call nar(">Hermione closes her eyes as she rides out the last of her orgasm.") - gen "On your knees [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "On your knees [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "W--{w=0.2} What?" ("soft", "happy", "worried", "R", cheeks="blush") gen "No questions." ("base", xpos="far_left", ypos="head") gen "Get off the desk and onto your knees." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("angry", "narrow", "base", "down", cheeks="blush") + her "Yes, [name_genie_hermione]..." ("angry", "narrow", "base", "down", cheeks="blush") call nar(">Hermione pulls herself off of your dick, turns around, and kneels in front of you.") @@ -883,15 +883,15 @@ label slave_scene: her "A slave." ("base", "narrow", "worried", "down", cheeks="blush") # Alternative: "A stupid sandwich." lol gen "Who do you belong to?" ("base", xpos="far_left", ypos="head") - her "To you, [genie_name]." ("open", "happy", "base", "up", cheeks="blush") + her "To you, [name_genie_hermione]." ("open", "happy", "base", "up", cheeks="blush") if not her_neckwear_slave_collar.unlocked: $ her_neckwear_slave_collar.unlock() gen "That's right... And because you've been such a good slave, I'm going to give you a present." ("base", xpos="far_left", ypos="head") - her "A present, [genie_name]?" ("soft", "happy", "base", "up") + her "A present, [name_genie_hermione]?" ("soft", "happy", "base", "up") gen "The collar you're wearing... I want you to keep it." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]! Thank you, [genie_name]!" ("angry", "happy", "base", "up") + her "Yes, [name_genie_hermione]! Thank you, [name_genie_hermione]!" ("angry", "happy", "base", "up") call give_reward(">A new collar has been unlocked in the wardrobe!") @@ -914,11 +914,11 @@ label slave_scene: her "..." ("base", "narrow", "worried", "down") # Look of adoration, waiting for a command gen "What is it? Speak up." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]. I was wondering if...--" ("soft", "narrow", "worried", "down") + her "Thank you, [name_genie_hermione]. I was wondering if...--" ("soft", "narrow", "worried", "down") gen "--If You could get house points for this? *Ha-ha-ha*, of course not...{w=0.5} Slaves aren't getting paid, that's what makes them slaves." ("base", xpos="far_left", ypos="head") her "I suppose you're right..." ("soft", "narrow", "base", "R", cheeks="blush") gen "Now be on your way, I will call for you if I need anything." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]!" ("soft", "closed", "base", "mid") + her "Yes, [name_genie_hermione]!" ("soft", "closed", "base", "mid") if her_outfit_last.has_any_type("clothes"): call nar(">Hermione grabs the pile of clothes lying nearby, not even bothering to put them back on.") @@ -938,7 +938,7 @@ label flasher_scene: $ renpy.play("sounds/flashbang.ogg") $ hermione.equip(her_neckwear_flasher_collar) $ hermione.strip("top", "bra") - $ hermione_name = "Flasher" + $ name_hermione_genie = "Flasher" with flashbulb her "Aaah!!!" @@ -1025,7 +1025,7 @@ label flasher_scene: if her_whoring < 19: # Wont admit it her "Hear... Hear what from me?" ("disgust", "happy", "base", "mid", cheeks="blush") gen "Tell me how much you're enjoying flaunting your naked body." ("base", xpos="far_left", ypos="head") - her "I...{w=0.4} I am just doing it for the points, [genie_name]!" ("angry", "happyCl", "worried", "R", cheeks="blush") + her "I...{w=0.4} I am just doing it for the points, [name_genie_hermione]!" ("angry", "happyCl", "worried", "R", cheeks="blush") call nar(">The collar once more tugs on the strings, making hermione gasp.") her "*Ah*..." ("soft", "happyCl", "base", "mid", cheeks="blush") #Horny her "..." ("disgust", "narrow", "base", "stare", cheeks="blush") #embarrased @@ -1033,15 +1033,15 @@ label flasher_scene: her "Yes, I--" ("angry", "narrow", "base", "down", cheeks="blush") call nar(">The collar tugs even harder, Hermione seemingly fighting conflicting emotions.") her "Ow!" ("angry", "happyCl", "base", "stare", cheeks="blush") - gen "Come on [hermione_name]... Even the collar knows that you're lying..." ("base", xpos="far_left", ypos="head") - her "S--{w=0.2} Sorry [genie_name]... But I cannot." ("disgust", "narrow", "worried", "stare", cheeks="blush") + gen "Come on [name_hermione_genie]... Even the collar knows that you're lying..." ("base", xpos="far_left", ypos="head") + her "S--{w=0.2} Sorry [name_genie_hermione]... But I cannot." ("disgust", "narrow", "worried", "stare", cheeks="blush") call nar(">As if trying to teach her a lesson, the collar pulls its strings with all its might, making Hermione yelp with pain.") her "Ouch!" ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="soft_blink") gen "Sounds more like you {i}don't want to{/i}, rather than {i}cannot{/i} admit it..." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "worried", "R", cheeks="blush", tears="soft") - gen "Very well then, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well then, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You may take the collar off." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("soft", "narrow", "worried", "down", cheeks="blush") + her "Thank you [name_genie_hermione]..." ("soft", "narrow", "worried", "down", cheeks="blush") elif her_whoring < 22: # Hesitates but will eventually admit it her "You... You want me to say that I..." ("open", "happy", "base", "R", cheeks="blush") @@ -1069,8 +1069,8 @@ label flasher_scene: her "Ouch!" ("angry", "wide", "worried", "stare", cheeks="blush") gen "*Heh-heh*..." ("grin", xpos="far_left", ypos="head") her "Can I take this off now?" ("open", "narrow", "annoyed", "R", cheeks="blush") - gen "Yes, you may take the collar off now, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("open", "narrow", "base", "mid", cheeks="blush") + gen "Yes, you may take the collar off now, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione]..." ("open", "narrow", "base", "mid", cheeks="blush") else: #Openly admits it, proves it to you call nar(">You watch as the strings attached to her new nipple piercings tug and pull, making her nipples harden.") @@ -1111,7 +1111,7 @@ label flasher_scene: gen "Ten points to Gryffindor!" ("grin", xpos="far_left", ypos="head") $ gryffindor += 10 - her "Thank you, [genie_name]..." ("grin", "narrow", "base", "mid", cheeks="blush") + her "Thank you, [name_genie_hermione]..." ("grin", "narrow", "base", "mid", cheeks="blush") call nar(">With a sensual step, Hermione turns around then bends down, showing you her ass and pussy in vivid details.") gen "Holy shit! This feels like a strip-club!" ("grin", xpos="far_left", ypos="head") @@ -1134,7 +1134,7 @@ label flasher_scene: her "I believe you got your proof..." ("smile", "narrow", "base", "mid", cheeks="blush") gen "What proof..." ("base", xpos="far_left", ypos="head") - gen "Oh! Yes... Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Oh! Yes... Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I haven't felt more convinced in my life." ("grin", xpos="far_left", ypos="head") $ renpy.play("sounds/collar_click.ogg") @@ -1148,12 +1148,12 @@ label flasher_scene: her "The strings disappeared!" ("soft", "happy", "base", "mid") gen "Convenient..." ("base", xpos="far_left", ypos="head") her "Is that everything, then?" ("open", "base", "base", "R") - gen "Yes, [hermione_name]... That shall do for today." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]... That shall do for today." ("base", xpos="far_left", ypos="head") if her_whoring < 19: $ gryffindor += current_payout - gen "{number=current_payout} points to Gryffindor, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") if not her_neckwear_flasher_collar.unlocked: $ her_neckwear_flasher_collar.unlock() @@ -1174,10 +1174,10 @@ label flasher_scene: if game.daytime: her "Have a Good day." ("soft", "base", "base", "R", cheeks="blush") - gen "Good day... [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good day... [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: her "Have a Good night." ("soft", "base", "base", "R", cheeks="blush") - gen "Good night... [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good night... [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") @@ -1198,7 +1198,7 @@ label good_girl_scene: her "Just as I thought..." ("grin", "closed", "base", "mid") her "I am a model student after all." ("open", "closed", "base", "mid") gen "(*Hmm*... The collar must be broken... I've been scammed!)" ("angry", xpos="far_left", ypos="head") - her "[genie_name]?" ("soft", "base", "base", "mid") + her "[name_genie_hermione]?" ("soft", "base", "base", "mid") elif her_whoring < 10: her "That's nice." ("base", "squint", "worried", "mid") @@ -1232,42 +1232,42 @@ label good_girl_scene: her "..." ("annoyed", "base", "base", "mid") her "There you are then..." ("open", "base", "base", "R") else: - her "Do you like them, [genie_name]." ("open", "base", "base", "mid", cheeks="blush") + her "Do you like them, [name_genie_hermione]." ("open", "base", "base", "mid", cheeks="blush") gen "Do you even have to ask?" ("grin", xpos="far_left", ypos="head") gen "Of course I do, they're great!" ("grin", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "closed", "base", "mid", cheeks="blush") + her "Thank you [name_genie_hermione]..." ("base", "closed", "base", "mid", cheeks="blush") call music_block else: #Not wearing either top nor bra her "So... Am I still getting paid?" ("base", "base", "base", "mid") her "I'm a bit confused..." ("base", "base", "base", "mid") - gen "Yes [hermione_name]... You'll get your points..." ("base", xpos="far_left", ypos="head") + gen "Yes [name_hermione_genie]... You'll get your points..." ("base", xpos="far_left", ypos="head") else: #19+ Not being paid. - her "Really, [genie_name]?" ("open", "wide", "worried", "mid") + her "Really, [name_genie_hermione]?" ("open", "wide", "worried", "mid") gen "That's right! Must be because of all the things you've been doing to help your friends." ("base", xpos="far_left", ypos="head") her "Thank heavens... I was so worried..." ("soft", "happyCl", "worried", "mid") gen "Of course! Not everyone would have been able to achieve what you have..." ("base", xpos="far_left", ypos="head") her "*sob*... I guess not..." ("angry", "base", "base", "mid", tears="soft") gen "It takes some real strength and determination!" ("base", xpos="far_left", ypos="head") - her "You really think so [genie_name]?" ("soft", "narrow", "base", "down") + her "You really think so [name_genie_hermione]?" ("soft", "narrow", "base", "down") gen "I do! you're a good girl Miss Granger..." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") gen "Once Gryffindor wins the house cup almost everyone will be so happy." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]... I can't wait!" ("base", "happyCl", "base", "mid") + her "Yes, [name_genie_hermione]... I can't wait!" ("base", "happyCl", "base", "mid") gen "*Sigh*" ("base", xpos="far_left", ypos="head") # Genie sighs because he was hoping that Hermione would present herself or something because the collar did nothing. - her "Is something the matter, [genie_name]?" ("base", "happyCl", "base", "mid") + her "Is something the matter, [name_genie_hermione]?" ("base", "happyCl", "base", "mid") gen "It's nothing. Don't worry about it." ("base", xpos="far_left", ypos="head") if her_whoring < 19: $ gryffindor += current_payout - gen "{number=current_payout} points to Gryffindor, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "happy", "base", "mid") + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("base", "happy", "base", "mid") ## End section ## - her "Is that everything, [genie_name]?" ("base", "base", "base", "mid") + her "Is that everything, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Yes, that shall do for today..." ("base", xpos="far_left", ypos="head") her "Alright then." ("base", "base", "base", "R") @@ -1281,7 +1281,7 @@ label good_girl_scene: her "Really?" ("open", "base", "base", "mid") gen "Yeah, sure, Why not... Should give me a good reminder to be more careful making decisions..." ("base", xpos="far_left", ypos="head") gen "(Maybe I should sell her some more favours until I give her another one...)" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "base", "base", "mid") + her "Thank you [name_genie_hermione]..." ("base", "base", "base", "mid") gen "(At least I can enjoy watching her wearing it...)" ("base", xpos="far_left", ypos="head") her "Just let me know if you need anything." ("open", "happy", "base", "mid") @@ -1291,7 +1291,7 @@ label good_girl_scene: her "Have a Good day." ("grin", "base", "base", "mid") else: her "Have a Good night." ("grin", "base", "base", "mid") - gen "You too [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You too [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") diff --git a/game/scripts/characters/hermione/events/items/vibrators.rpy b/game/scripts/characters/hermione/events/items/vibrators.rpy index 5260be51..4d08b292 100644 --- a/game/scripts/characters/hermione/events/items/vibrators.rpy +++ b/game/scripts/characters/hermione/events/items/vibrators.rpy @@ -13,7 +13,7 @@ label hg_vibrators: $ her_outfit_last.save() $ current_payout = 20 - gen "I've got a gift for you, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I've got a gift for you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "A gift?" ("open", "base", "base", "mid",xpos="base",ypos="base") gen "Yep, just come closer, close your eyes and put your hand in this box!" ("base", xpos="far_left", ypos="head") call her_walk("desk", "base") @@ -72,9 +72,9 @@ label hg_vibrators: her "A vibrator?" ("base", "squint", "base", "mid", cheeks="blush") gen "Indeed! Although, there's more than one!" ("grin", xpos="far_left", ypos="head") her "R--{w=0.2} really?" ("angry", "base", "base", "mid", cheeks="blush") - gen "Aren't you going to thank me for my generosity, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("open", "base", "base", "mid", cheeks="blush") - gen "Not with words, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Aren't you going to thank me for my generosity, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("open", "base", "base", "mid", cheeks="blush") + gen "Not with words, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") ">You hold up the remote, circling your finger suggestively over the power switch." her "You want me to put them to use?" ("open", "squint", "base", "mid", cheeks="blush") gen "If you please." ("base", xpos="far_left", ypos="head") @@ -132,7 +132,7 @@ label hg_vibrators: her "But then you'll see when I--" ("disgust", "narrow", "base", "mid", cheeks="blush") her "Could I at least wear some underwear?" ("open", "squint", "worried", "R", cheeks="blush") gen "If you must..." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "narrow", "base", "down", cheeks="blush") + her "Thank you [name_genie_hermione]..." ("base", "narrow", "base", "down", cheeks="blush") else: gen "Just tape them to your bits." ("base", xpos="far_left", ypos="head") # That's fanny her "Tape it to my bits?!" ("angry", "wide", "base", "mid", cheeks="blush") @@ -161,14 +161,14 @@ label hg_vibrators: if hermione.is_any_worn("clothes"): her "Can I put them inside my underwear like before?" ("open", "squint", "base", "mid", cheeks="blush") gen "Sure can." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("open", "squint", "base", "mid", cheeks="blush") + her "Thank you, [name_genie_hermione]." ("open", "squint", "base", "mid", cheeks="blush") else: her "I'll need wear some underwear over them, of course." ("open", "squint", "base", "R", cheeks="blush") gen "If you must..." ("base", xpos="far_left", ypos="head") else: if hermione.is_any_worn("clothes"): gen "And I want you to be naked..." ("base", xpos="far_left", ypos="head") - her "Certainly, [genie_name]." ("base", "squint", "base", "mid", cheeks="blush") + her "Certainly, [name_genie_hermione]." ("base", "squint", "base", "mid", cheeks="blush") her "Here I go..." ("open", "closed", "base", "mid", cheeks="blush") #blush @@ -263,7 +263,7 @@ label hg_vibrators: her "..." ("base", "narrow", "base", "down", cheeks="blush") #Looks down towards breasts annoyed her "..." ("base", "base", "base", "mid", cheeks="blush") #Looks up and sees you - her "[genie_name]! I asked you not to look!" ("angry", "base", "worried", "mid", cheeks="blush") + her "[name_genie_hermione]! I asked you not to look!" ("angry", "base", "worried", "mid", cheeks="blush") $ her_mood += 5 @@ -352,11 +352,11 @@ label her_vibrators_nevermind: pause 1 if game.daytime: - her "Good day to you, [genie_name]." ("open", "base", "base", "mid", cheeks="blush") + her "Good day to you, [name_genie_hermione]." ("open", "base", "base", "mid", cheeks="blush") gen "Until next time." ("base", xpos="far_left", ypos="head") else: - her "Good night, [genie_name]." ("open", "base", "base", "mid", cheeks="blush") - gen "Good night, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Good night, [name_genie_hermione]." ("open", "base", "base", "mid", cheeks="blush") + gen "Good night, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") @@ -383,7 +383,7 @@ label hg_vibrators_fail: gen "There it is!" ("grin", xpos="far_left", ypos="head") her "This... This is a vibrator!" ("angry", "happy", "worried", "mid", cheeks="blush") - gen "Vibrator{b}s{/b}, [hermione_name], plural." ("grin", xpos="far_left", ypos="head") + gen "Vibrator{b}s{/b}, [name_hermione_genie], plural." ("grin", xpos="far_left", ypos="head") gen "Now, if you could just put them to use--" ("grin", xpos="far_left", ypos="head") her "What!?!" ("angry", "wide", "base", "mid", cheeks="blush") her "You expect me to use them?!" ("open", "happy", "angry", "mid", cheeks="blush") @@ -405,7 +405,7 @@ label hg_vibrators_fail: her "What the--" ("angry", "base", "base", "mid") her "You...{w=0.4} You've bought me a vibrator?" ("angry", "happy", "worried", "mid", cheeks="blush") gen "Of course not...{w=0.4} I've bought an entire box filled with them!" ("grin", xpos="far_left", ypos="head") - her "[genie_name], this is hardly appropriate!" ("disgust", "happy", "worried", "mid", cheeks="blush") + her "[name_genie_hermione], this is hardly appropriate!" ("disgust", "happy", "worried", "mid", cheeks="blush") gen "How come?" ("base", xpos="far_left", ypos="head") her "Because...{w=0.4} Well..." ("annoyed", "happy", "worried", "R", cheeks="blush") gen "A healthy sex life is important to one's mental health. It helps to take the edge off of things." ("base", xpos="far_left", ypos="head") @@ -414,7 +414,7 @@ label hg_vibrators_fail: her "..." ("angry", "narrow", "worried", "down", cheeks="blush") #wide her "You mean right now?!" ("clench", "base", "worried", "mid", cheeks="blush") gen "Of course!" ("grin", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "happy", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "happy", "angry", "mid", cheeks="blush") gen "What?" ("base", xpos="far_left", ypos="head") her "I can't believe you would ask me to do such a thing!" ("angry", "narrow", "angry", "mid", cheeks="blush") her "I think I should go..." ("angry", "narrow", "base", "R", cheeks="blush") @@ -451,7 +451,7 @@ label hg_vibrators_fail: label hg_vibrators_fail_repeat: if her_tier < 3: - her "[genie_name]!" ("open", "squint", "annoyed", "mid") + her "[name_genie_hermione]!" ("open", "squint", "annoyed", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") her "I have already told you, I'm not going to use a vibrator in front of you!" ("angry", "squint", "angry", "mid") gen "Vibrator{b}s{/b}." ("base", xpos="far_left", ypos="head") @@ -490,9 +490,9 @@ label hg_vibrators_fail_repeat: call her_walk("door", "base") - $ _temp = genie_name[:2] #Nickname without last 2 letters + $ _temp = name_genie_hermione[:2] #Nickname without last 2 letters - gen "[hermione_name], you forgot the--" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], you forgot the--" ("base", xpos="far_left", ypos="head") call her_chibi("stand","door","base", flip=False) pause .4 @@ -530,12 +530,12 @@ label hg_vibrators_public: if her_tier_public >= 5: her "Don't tell me you're expecting of me to wear them in class?" ("angry", "base", "base", "mid", cheeks="blush") - gen "No, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "No, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Oh... Thank--" ("angry", "narrow", "base", "down", cheeks="blush") gen "I expect you to wear them outside class as well, for the entire day." ("base", xpos="far_left", ypos="head") her "The entire day?!" ("mad", "base", "base", "stare", cheeks="blush") #shocked but horny gen "That's right." ("grin", xpos="far_left", ypos="head") - her "But [genie_name], wearing them for the entire day is--" ("angry", "narrow", "base", "mid", cheeks="blush") + her "But [name_genie_hermione], wearing them for the entire day is--" ("angry", "narrow", "base", "mid", cheeks="blush") gen "{i}Blathering Blatherskite{/i}! I didn't think about chafing!" ("base", xpos="far_left", ypos="head") her "I wasn't--{w=0.2} I mean, yes, there's no way I could wear them under my clothes for the entire day!" ("grin", "happy", "base", "mid", cheeks="blush") gen "It's settled then. You'll wear them {i}without{/i} clothes." ("base", xpos="far_left", ypos="head") @@ -564,7 +564,7 @@ label hg_vibrators_public: elif her_tier_public == 4: her "You want me to wear them in class?!" ("angry", "base", "base", "mid", cheeks="blush") - gen "No, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "No, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Oh good, for a moment I thought--" ("base", "squint", "worried", "R", cheeks="blush") gen "I want you to wear them during break time as well!" ("base", xpos="far_left", ypos="head") her "" ("angry", "squint", "base", "stare", cheeks="blush") @@ -572,7 +572,7 @@ label hg_vibrators_public: gen "Of course, they should be turned on at all times." ("base", xpos="far_left", ypos="head") her "But that's--{w=0.2} Couldn't I just...{w=0.4} I don't know..." ("upset", "squint", "worried", "mid", cheeks="blush") if her_tier < 5: - gen "Quit complaining, [hermione_name], you're about to earn{number=current_payout} points for your house." ("base", xpos="far_left", ypos="head") + gen "Quit complaining, [name_hermione_genie], you're about to earn{number=current_payout} points for your house." ("base", xpos="far_left", ypos="head") gen "Surely that's more than enough of an incentive to broaden your sexual education." ("base", xpos="far_left", ypos="head") her "I am plenty sexually educated!" ("open", "closed", "annoyed", "mid", cheeks="blush") her "W-wait, that's not what I meant--" ("angry", "squint", "base", "stare", cheeks="blush") @@ -621,7 +621,7 @@ label hg_vibrators_public: gen "Let's do something else--" ("base", xpos="far_left", ypos="head") else: her "You want me to use them in class?!" ("angry", "wide", "base", "mid", cheeks="blush") - her "But [genie_name]! That's..." ("clench", "squint", "base", "mid", cheeks="blush") + her "But [name_genie_hermione]! That's..." ("clench", "squint", "base", "mid", cheeks="blush") gen "Surely you didn't think I just wanted you to wear them like a mere accessory, did you?" ("base", xpos="far_left", ypos="head") her "No, but I didn't think you would want me to attend classes wearing them either!" ("clench", "squint", "base", "mid", cheeks="blush") gen "Alright, fair..." ("base", xpos="far_left", ypos="head") @@ -641,7 +641,7 @@ label hg_vibrators_public: gen "Oh no... This time I want you to wear them the entire day." ("base", xpos="far_left", ypos="head") her "The entire day?!" ("angry", "wide", "base", "stare", cheeks="blush") gen "Yep, and you're not allowed to touch the controllers..." ("base", xpos="far_left", ypos="head") - her "But, [genie_name]!" ("clench", "base", "worried", "mid", cheeks="blush") + her "But, [name_genie_hermione]!" ("clench", "base", "worried", "mid", cheeks="blush") her "Wearing them through one class is one thing...{w=0.4} But wearing them for the entire day is just..." ("angry", "base", "worried", "mid", cheeks="blush") gen "They won't remain turned on the entire day...{w=0.4} I'm not that cruel." ("base", xpos="far_left", ypos="head") her "I thought when you said I can't touch the controls, you--" ("disgust", "squint", "base", "mid", cheeks="blush") @@ -660,14 +660,14 @@ label hg_vibrators_public: gen "Heh-heh..." ("base", xpos="far_left", ypos="head") gen "So, are you ready to learn something new today?" ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "down", cheeks="blush") - gen "Why the hesitance [hermione_name], you have already worn them once, so you know what to expect." ("grin", xpos="far_left", ypos="head") + gen "Why the hesitance [name_hermione_genie], you have already worn them once, so you know what to expect." ("grin", xpos="far_left", ypos="head") her "The problem isn't {i}the what{/i}, but {i}when{/i}..." ("angry", "narrow", "base", "R", cheeks="blush") her "Who knows what might happen if they go off at the wrong time." ("angry", "narrow", "base", "mid", cheeks="blush") her "What if they go off while I'm presenting something in front of the entire class?" ("angry", "closed", "worried", "mid", cheeks="blush") gen "You're talking as if anyone would pay any attention to the curriculum." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "mid", cheeks="blush") gen "And even in the unlikely event that someone does pay attention, just tell them it's your phone vibrating." ("base", xpos="far_left", ypos="head") - her "... Very funny, [genie_name]." ("disgust", "narrow", "base", "mid", cheeks="blush") + her "... Very funny, [name_genie_hermione]." ("disgust", "narrow", "base", "mid", cheeks="blush") gen "(Did I say something funny?)" ("base", xpos="far_left", ypos="head") # Genie isn't aware muggle devices do not work at hogwarts. her "I guess I could make something up..." ("open", "narrow", "base", "R", cheeks="blush") her "Okay...{w=0.4} I'll do it." ("open", "closed", "worried", "mid", cheeks="blush") @@ -675,11 +675,11 @@ label hg_vibrators_public: else: # Tried HIGH level before - her "Certainly, [genie_name]." ("open", "squint", "base", "R", cheeks="blush") + her "Certainly, [name_genie_hermione]." ("open", "squint", "base", "R", cheeks="blush") gen "Although..." ("base", xpos="far_left", ypos="head") her "Yes?" ("angry", "base", "base", "mid", cheeks="blush") gen "I've decided to go easy on you this time, so you will know the exact timing when vibrators go off--" ("base", xpos="far_left", ypos="head") - her "Really? Thank you [genie_name]!" ("grin", "base", "base", "mid", cheeks="blush") + her "Really? Thank you [name_genie_hermione]!" ("grin", "base", "base", "mid", cheeks="blush") gen "Under one condition..." ("base", xpos="far_left", ypos="head") her "...{w=0.4} what is the condition?" ("disgust", "squint", "base", "mid", cheeks="blush") gen "You have to accompany your friends to {i}gobbling stones{/i} again." ("grin", xpos="far_left", ypos="head") @@ -698,8 +698,8 @@ label hg_vibrators_public: gen "I knew you were the reasonable one." ("base", xpos="far_left", ypos="head") her "Unless..." ("soft", "narrow", "base", "mid", cheeks="blush") #enticing gen "Yes?" ("base", xpos="far_left", ypos="head") - her "There is some time left before classes start, if you wanted to check everything is in working order, [genie_name]?" ("soft", "squint", "base", "mid", cheeks="blush") # Enticing look - gen "Clever, but don't think you can get off the hook that easy, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "There is some time left before classes start, if you wanted to check everything is in working order, [name_genie_hermione]?" ("soft", "squint", "base", "mid", cheeks="blush") # Enticing look + gen "Clever, but don't think you can get off the hook that easy, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "*Hmph*..." ("annoyed", "narrow", "base", "R", cheeks="blush") #annoyed but blushing her "See you tonight then." ("open", "squint", "base", "R", cheeks="blush") gen "Enjoy!" ("base", xpos="far_left", ypos="head") @@ -777,7 +777,7 @@ label hg_vibrators_personal: play sound "sounds/click4.ogg" play bg_sounds "sounds/vibrator_high.ogg" - her "{cps=16}*Ahhhhhhhhh*{/cps} [genie_name]!!" ("disgust", "narrow", "base", "up", cheeks="blush") + her "{cps=16}*Ahhhhhhhhh*{/cps} [name_genie_hermione]!!" ("disgust", "narrow", "base", "up", cheeks="blush") gen "Oops, my bad! My hand slipped..." ("base", xpos="far_left", ypos="head") gen "(Wouldn't want to end it too soon...)" ("base", xpos="far_left", ypos="head") @@ -791,7 +791,7 @@ label hg_vibrators_personal: her "*Ah* W-Why?" ("angry", "squint", "worried", "mid", cheeks="blush") gen "You already know why..." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "worried", "down", cheeks="blush") - gen "I want to see it up close. Can you do that for me, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "I want to see it up close. Can you do that for me, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I...{w=0.3} I suppose..." ("soft", "narrow", "base", "down", cheeks="blush") gen "Go on then, plant those cheeks on the wood." ("base", xpos="far_left", ypos="head") her "If that's what you want... I guess it's fine..." ("normal", "narrow", "base", "down", cheeks="blush") @@ -845,13 +845,13 @@ label hg_vibrators_personal: gen "There it is! Now you're doing it." ("base", xpos="far_left", ypos="head") gen "Although, the {i}show{/i} part is quite lacking now." ("base", xpos="far_left", ypos="head") - gen "You're not going to get a good grade unless you do both, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You're not going to get a good grade unless you do both, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_squint_forward mouth_shocked as cg with d5 her "I--{w=0.2} *Ah*...{w=0.4} I'm being graded for this?" - gen "Of course... You should know that you get graded for every school activity by now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Of course... You should know that you get graded for every school activity by now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_upset eyes_squint_right mouth_horny as cg with d5 @@ -897,7 +897,7 @@ label hg_vibrators_personal: her "..." gen "(She's wet!)" ("angry", xpos="far_left", ypos="head") - gen "*Ahem*... Very good, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "*Ahem*... Very good, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Now keep them spread like that, and you'll earn yourself a good grade." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_worried eyes_squint_forward mouth_open as cg with d5 @@ -908,7 +908,7 @@ label hg_vibrators_personal: show her_vibrators_personal hermione1 eyebrows_upset mouth_shocked as cg with d5 her "Don't be ridiculous... It's not even a real grade..." - gen "Yet you still seem to care dearly about it, don't you [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Yet you still seem to care dearly about it, don't you [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") #Hermione legs closed show her_vibrators_personal hermione1 eyes_squint_right mouth_annoyed as cg with d5 @@ -930,23 +930,23 @@ label hg_vibrators_personal: #Hermione legs open show her_vibrators_personal hermione2 eyebrows_worried eyes_clenched mouth_shocked blush_heavy as cg with d5 - #her "[genie_name]!!!{w=0.4}{nw}" + #her "[name_genie_hermione]!!!{w=0.4}{nw}" #Hermione legs closed show her_vibrators_personal hermione1 mouth_worried blush_heavy as cg with d5 - #her "[genie_name]!!!{fast}" + #her "[name_genie_hermione]!!!{fast}" - her "[genie_name]!!! Turn it down!" + her "[name_genie_hermione]!!! Turn it down!" menu: "-Keep it going-": - gen "Legs open, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Legs open, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal hermione1 mouth_open as cg with d5 her "*Ah*...{w=0.2} *Ah*...{w=0.2} But--" - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") #Hermione legs open show her_vibrators_personal hermione2 as cg with d5 @@ -961,7 +961,7 @@ label hg_vibrators_personal: show her_vibrators_personal mouth_angry as cg with d5 - her "*Ah*...{w=0.2} Please, [genie_name]! It's too strong...!" + her "*Ah*...{w=0.2} Please, [name_genie_hermione]! It's too strong...!" gen "Alright, I can turn it down, but who's to say you wont change your mind again?" ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_worried mouth_worried as cg with d5 @@ -998,7 +998,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_upset eyes_squint_right mouth_open as cg with d5 - her "[genie_name], I am not--..." + her "[name_genie_hermione], I am not--..." show her_vibrators_personal eyes_squint_forward as cg with d5 @@ -1008,11 +1008,11 @@ label hg_vibrators_personal: gen "You're lucky I'm in a good mood, so I think I'll oblige you,{fast} for being so honest with yourself for once." ("base", xpos="far_left", ypos="head") gen "(She'll love this...)" ("grin", xpos="far_left", ypos="head") - gen "[hermione_name],{w=0.2} from now on you are not allowed to cum!{nw}" ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie],{w=0.2} from now on you are not allowed to cum!{nw}" ("grin", xpos="far_left", ypos="head") show her_vibrators_personal eyes_open_forward mouth_worried as cg - gen "[hermione_name], from now on you are not allowed to cum!{fast}" ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie], from now on you are not allowed to cum!{fast}" ("grin", xpos="far_left", ypos="head") show her_vibrators_personal eyes_squint_forward as cg with d5 @@ -1025,7 +1025,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_squint_forward mouth_open as cg with d5 - her "But, [genie_name]!" + her "But, [name_genie_hermione]!" gen "(Now she's getting into it...)" ("grin", xpos="far_left", ypos="head") gen "As your headmaster, I have the power over your grades, and shall you fail to meet my expectations... Well--" ("base", xpos="far_left", ypos="head") gen "--Naturally you'll have to be punished!" ("base", xpos="far_left", ypos="head") @@ -1055,7 +1055,7 @@ label hg_vibrators_personal: show her_vibrators_personal hermione2 eyebrows_worried eyes_squint_forward mouth_annoyed as cg with d5 call ctc - gen "Prepare yourself, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Prepare yourself, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "I could change the intensity at any moment!" ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_wide_forward mouth_open as cg with d5 @@ -1078,15 +1078,15 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_closed as cg with d5 - her "[genie_name], please...{w=0.4}{nw}" + her "[name_genie_hermione], please...{w=0.4}{nw}" show her_vibrators_personal mouth_worried as cg - her "[genie_name], please...{fast} If you keep it like this...{w=0.4} I'll...{w=0.4}{nw}" + her "[name_genie_hermione], please...{fast} If you keep it like this...{w=0.4} I'll...{w=0.4}{nw}" show her_vibrators_personal mouth_shocked as cg - her "[genie_name], please... If you keep it like this... I'll...{fast} I'll--" + her "[name_genie_hermione], please... If you keep it like this... I'll...{fast} I'll--" menu: "-Keep it going-": @@ -1154,8 +1154,8 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_open_forward as cg with d5 - her "[genie_name]?" - gen "You're doing this as a favour to {i}me{/i}, you had best not forget that, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" + gen "You're doing this as a favour to {i}me{/i}, you had best not forget that, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_squint_right mouth_annoyed as cg with d5 @@ -1166,9 +1166,9 @@ label hg_vibrators_personal: show her_vibrators_personal mouth_horny as cg with d5 - her "Yes, [genie_name]..." + her "Yes, [name_genie_hermione]..." gen "Good." ("base", xpos="far_left", ypos="head") - gen "Expect the unexpected, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Expect the unexpected, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_squint_forward as cg with d5 @@ -1193,7 +1193,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_upset eyes_clenched effects_wetness as cg with d5 - her "[genie_name]! I'll--" + her "[name_genie_hermione]! I'll--" "-Turn the intensity to Medium-": @@ -1238,7 +1238,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_squint_right as cg with d5 call ctc - gen "Getting there already, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Getting there already, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") show her_vibrators_personal mouth_horny as cg with d5 @@ -1262,7 +1262,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_neutral eyes_closed mouth_horny effects_wetness as cg with d5 pause .8 - gen "Are you sure? Looks to me as if you're about to cum, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Are you sure? Looks to me as if you're about to cum, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Or am I mistaken?" ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_upset mouth_open as cg with d5 @@ -1274,7 +1274,7 @@ label hg_vibrators_personal: her "*Ah*...{w=0.4} How do you--" gen "How do I know?" ("base", xpos="far_left", ypos="head") - gen "Experience, [hermione_name], experience...{w=0.4} You won't ever find anyone with as much experience as I have..." ("base", xpos="far_left", ypos="head") + gen "Experience, [name_hermione_genie], experience...{w=0.4} You won't ever find anyone with as much experience as I have..." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_neutral eyes_clenched as cg with d5 @@ -1305,7 +1305,7 @@ label hg_vibrators_personal: show her_vibrators_personal mouth_open as cg with d5 - her "*Ah*...{w=0.4} [genie_name], I don't know if--" + her "*Ah*...{w=0.4} [name_genie_hermione], I don't know if--" play sound "sounds/click4.ogg" play bg_sounds "sounds/vibrator_high.ogg" @@ -1324,19 +1324,19 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_squint_forward mouth_shocked as cg - her "[genie_name]...{w=0.4}{nw}" + her "[name_genie_hermione]...{w=0.4}{nw}" show her_vibrators_personal mouth_worried as cg - her "[genie_name]...{fast} Please..." + her "[name_genie_hermione]...{fast} Please..." - gen "Nuh-uh... Not yet, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nuh-uh... Not yet, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Patience is a virtue...{w=0.4} It's time you learn that." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_closed mouth_angry as cg with d5 her "But--" - gen "Remember why you're here, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Remember why you're here, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Our session won't end until I'm satisfied with the results." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyebrows_neutral as cg with d5 @@ -1352,7 +1352,7 @@ label hg_vibrators_personal: gen "I have full control of your fate, of course I'm enjoying it..." ("base", xpos="far_left", ypos="head") gen "I haven't had this much power at my fingertips for a long time..." ("base", xpos="far_left", ypos="head") her "..." - gen "How does that make you feel, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How does that make you feel, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") show her_vibrators_personal mouth_open as cg with d5 @@ -1417,7 +1417,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_worried eyes_squint_right mouth_horny as cg with d5 her "But I thought...{w=0.4} Well, I didn't think this would happen..." - gen "Always expect the unexpected in life, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Always expect the unexpected in life, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_squint_forward as cg with d5 @@ -1428,7 +1428,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_neutral mouth_annoyed as cg with d5 her "It was...?" - gen "Of course, and you did very well, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Of course, and you did very well, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_narrow_forward as cg with d5 @@ -1436,7 +1436,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_squint_right as cg with d5 - her "A-Alright then, whatever you say [genie_name]..." + her "A-Alright then, whatever you say [name_genie_hermione]..." call play_music("stop") show screen blkfade @@ -1466,13 +1466,13 @@ label hg_vibrators_personal: "-Give her a passing grade-": gen "You pass!" ("base", xpos="far_left", ypos="head") her "I... do?" ("disgust", "base", "base", "mid", cheeks="blush") - gen "Yes, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Just like I requested, you held well until the very end." ("base", xpos="far_left", ypos="head") gen "Of course, you better be ready, because at any moment, I could give you the signal to..." ("base", xpos="far_left", ypos="head") gen "Cum for me!" ("base", xpos="far_left", ypos="head") with vpunch her "..." ("angry", "wide", "base", "stare", cheeks="blush") #worried #shocked gen "Nah, I'm just kidding." ("grin", xpos="far_left", ypos="head") - her "V-Very funny, [genie_name]..." ("angry", "squint", "base", "mid", cheeks="blush") + her "V-Very funny, [name_genie_hermione]..." ("angry", "squint", "base", "mid", cheeks="blush") her "(I'm so on edge I almost came when he said it...)" ("angry", "happyCl", "base", "mid", cheeks="blush") her "Can I go now?" ("open", "happyCl", "base", "mid", cheeks="blush") gen "Sure, I won't keep you any longer." ("base", xpos="far_left", ypos="head") @@ -1485,15 +1485,15 @@ label hg_vibrators_personal: her "I--{w=0.2} I can't..." ("disgust", "happyCl", "base", "mid", cheeks="blush") gen "Oh, too bad, looks like you failed." ("base", xpos="far_left", ypos="head") her "You're joking..." ("disgust", "narrow", "base", "mid", cheeks="blush") - gen "I expected better from you, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Whatever you say [genie_name]." ("soft", "narrow", "base", "down", cheeks="blush") - gen "That shall do for now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I expected better from you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Whatever you say [name_genie_hermione]." ("soft", "narrow", "base", "down", cheeks="blush") + gen "That shall do for now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You may leave." ("base", xpos="far_left", ypos="head") if not her_outfit_vibrators.unlocked: her "" ("soft", "narrow", "base", "L", cheeks="blush") ">For a brief moment, you see Hermione's eyes flicker towards the vibrators left on your desk." - gen "Fine, you can take them and finish yourself off, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Fine, you can take them and finish yourself off, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Consider it a gift." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "base", "down", cheeks="blush") #blushing @@ -1527,7 +1527,7 @@ label hg_vibrators_personal: if not her_outfit_vibrators.unlocked: her "" ("disgust", "narrow", "base", "L") ">For a brief moment you see Hermione's eyes flicker towards the vibrators left on your desk." - gen "Fine, you can take them and finish yourself off, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Fine, you can take them and finish yourself off, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "I wasn't--" ("angry", "base", "base", "mid", cheeks="blush") gen "Consider it a gift." ("base", xpos="far_left", ypos="head") her "A-Alright..." ("disgust", "squint", "base", "mid", cheeks="blush") #blushing @@ -1548,19 +1548,19 @@ label hg_vibrators_personal: gen "I hope you're not planning to use those to finish yourself off." ("base", xpos="far_left", ypos="head") her "What do you mean? Didn't you gift me these?" ("angry", "base", "base", "mid") - gen "That I did, but I believe I haven't said you're allowed to cum just yet, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "That I did, but I believe I haven't said you're allowed to cum just yet, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "squint", "base", "mid", cheeks="blush") gen "Unless..." ("base", xpos="far_left", ypos="head") her "Yes?" ("angry", "base", "base", "mid", cheeks="blush") gen "Well, I may allow it, as long as you promise to practice edging." ("base", xpos="far_left", ypos="head") her "I wasn't going to--" ("clench", "base", "base", "mid", cheeks="blush") - gen "I expect great things from you, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "I expect great things from you, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Next time I shall grade you for your performance." ("base", xpos="far_left", ypos="head") her "(So he did remember...)" ("disgust", "base", "base", "R", cheeks="blush") her "Fine, I'll try to find an opportunity to practice in my... chambers." ("angry", "narrow", "base", "down", cheeks="blush") # Hermione makes an unintentioanl pun, Genie's influence is rubbing off on her. gen "Splendid!" ("grin", xpos="far_left", ypos="head") - gen "That will be all, [hermione_name]. You are dismissed." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + gen "That will be all, [name_hermione_genie]. You are dismissed." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]..." ("open", "closed", "base", "mid", cheeks="blush") gen "Until next time." ("base", xpos="far_left", ypos="head") $ her_mood += 10 @@ -1591,20 +1591,20 @@ label hg_vibrators_personal: show her_vibrators_personal eyes_squint_crossed as cg - her "*Ah*... *Ah*...{fast} [genie_name],{w=0.2} I can't--" + her "*Ah*... *Ah*...{fast} [name_genie_hermione],{w=0.2} I can't--" gen "Imagine what your peers would say... {i}Hermione Granger, failing a task set by her headmaster! What a disgrace!{/i}" ("base", xpos="far_left", ypos="head") gen "I thought you were better than this." ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_narrow_crossed mouth_angry as cg with d5 - her "[genie_name]--{w=0.2} *Ah*...{w=0.4} I can't control it!" - gen "Yes you can, [hermione_name]!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]--{w=0.2} *Ah*...{w=0.4} I can't control it!" + gen "Yes you can, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") show her_vibrators_personal eyes_clenched as cg with d5 her "{size=+4}{heart}*Nnngh*!{heart}{/size}" gen "Almost there..." ("base", xpos="far_left", ypos="head") - gen "{size=+5}Now! Cum for me, [hermione_name]!{/size}" ("base", xpos="far_left", ypos="head") with vpunch + gen "{size=+5}Now! Cum for me, [name_hermione_genie]!{/size}" ("base", xpos="far_left", ypos="head") with vpunch "-Turn the intensity to High-": @@ -1618,7 +1618,7 @@ label hg_vibrators_personal: show her_vibrators_personal eyebrows_worried eyes_squint_crossed as cg with d5 - her "*Aheeeee*!! [genie_name], I can't--" + her "*Aheeeee*!! [name_genie_hermione], I can't--" gen "Answer me!" ("base", xpos="far_left", ypos="head") her "*Ahhh*...{w=0.2} *Ahee*...{w=0.2} I..." gen "Tell me you want to cum!" ("base", xpos="far_left", ypos="head") @@ -1628,7 +1628,7 @@ label hg_vibrators_personal: her "*Ah*...{w=0.4}{size=+4} I want to cum!{/size}{heart}" gen "How much do you want it?" ("base", xpos="far_left", ypos="head") - her "{heart}{heart}{size=+4}A lot, please, [genie_name], please let me cum!!!{/size}{heart}{heart}" + her "{heart}{heart}{size=+4}A lot, please, [name_genie_hermione], please let me cum!!!{/size}{heart}{heart}" show her_vibrators_personal eyebrows_worried mouth_ahegao_wet as cg with d5 @@ -1713,11 +1713,11 @@ label hg_vibrators_personal: gen "--But..." ("base", xpos="far_left", ypos="head") her "...?" ("soft", "squint", "base", "mid", cheeks="blush") # Looks at genie full of hope gen "I'll still give you a pass!" ("base", xpos="far_left", ypos="head") - her "Oh! Thank you [genie_name]!" ("grin", "base", "base", "mid") + her "Oh! Thank you [name_genie_hermione]!" ("grin", "base", "base", "mid") else: gen "You pass!" ("base", xpos="far_left", ypos="head") - gen "Excellent performance, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Oh... why thank you, [genie_name]." ("base", "base", "base", "mid") + gen "Excellent performance, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Oh... why thank you, [name_genie_hermione]." ("base", "base", "base", "mid") if not her_outfit_vibrators.unlocked: her "Is there some kind of a reward?" ("base", "base", "base", "mid") @@ -1733,7 +1733,7 @@ label hg_vibrators_personal: gen "You fail!" ("base", xpos="far_left", ypos="head") her "I--{w=0.2} I fail?!" ("angry", "wide", "worried", "stare", cheeks="blush") - her "But [genie_name]!" ("angry", "wide", "base", "mid") + her "But [name_genie_hermione]!" ("angry", "wide", "base", "mid") her "I did what you asked of me!" ("clench", "base", "worried", "mid", cheeks="blush") if _temp_premature_finish: @@ -1742,10 +1742,10 @@ label hg_vibrators_personal: gen "I don't want to hear your excuses. My decision is final." ("base", xpos="far_left", ypos="head") her "*tsk* That's unfair!" ("disgust", "narrow", "annoyed", "down", cheeks="blush") else: - gen "Indeed, that you did, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Indeed, that you did, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Then why are you giving me a bad grade?" ("angry", "base", "worried", "mid", cheeks="blush") - gen "You seem very distraught by this, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You seem very distraught by this, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "I thought you said it wasn't even a real grade." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "base", "base", "stare", cheeks="blush") # Shocked by the realisation that Genie is right gen "Or are you merely looking for my approval?" ("base", xpos="far_left", ypos="head") @@ -1803,7 +1803,7 @@ label hg_vibrators_personal: her "*Ah*!" ("angry", "wide", "base", "stare", cheeks="blush") her "I wasn't ready!! Turn it off!" ("angry", "happyCl", "worried", "stare", cheeks="blush") - gen "Forfeiting the points already, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Forfeiting the points already, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "Well, if you insist." ("base", xpos="far_left", ypos="head") play sound "sounds/click4.ogg" @@ -1811,7 +1811,7 @@ label hg_vibrators_personal: her "Wait!" ("angry", "base", "base", "stare", cheeks="blush") gen "*Tsk* *Tsk*" ("base", xpos="far_left", ypos="head") - gen "Too late. You really should try to be a bit more decisive, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Too late. You really should try to be a bit more decisive, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I thought you were here to earn your house some points. I guess I was wrong." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "closed", "worried", "mid", cheeks="blush") her "Just...{w=0.4} Could you set it to the low setting? Please?" ("open", "squint", "worried", "R", cheeks="blush") @@ -1846,7 +1846,7 @@ label hg_vibrators_personal: her "W--{w=0.2}What?" ("angry", "base", "base", "mid", cheeks="blush") her "How was--{w=0.2} *Ah*...{w=0.2} my day?" ("open", "wink", "base", "mid", cheeks="blush") gen "Yes, tell me what you've been up to lately." ("base", xpos="far_left", ypos="head") - her "T-This isn't the right time, [genie_name]." ("angry", "wink", "base", "mid", cheeks="blush") + her "T-This isn't the right time, [name_genie_hermione]." ("angry", "wink", "base", "mid", cheeks="blush") gen "*Hmm*?" ("base", xpos="far_left", ypos="head") her "I--{w=0.2} *Ah*...{w=0.4} I'm a bit preoccupied..." ("clench", "closed", "worried", "mid", cheeks="blush") gen "Surely you can multitask, I do it all the time." ("base", xpos="far_left", ypos="head") @@ -1864,8 +1864,8 @@ label hg_vibrators_personal: her "{heart}*Ah*!!{heart}" ("grin", "narrow", "worried", "up", cheeks="blush") her "T-turn it down, {w=0.3}it's too intense!" ("clench", "happyCl", "worried", "mid", cheeks="blush") - gen "Some vibrations too much for you to handle, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name], turn it down this instance, {w=0.5}or I'm leaving!" ("angry", "happyCl", "angry", "stare", cheeks="blush") #mad + gen "Some vibrations too much for you to handle, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], turn it down this instance, {w=0.5}or I'm leaving!" ("angry", "happyCl", "angry", "stare", cheeks="blush") #mad gen "..." ("base", xpos="far_left", ypos="head") play sound "sounds/click4.ogg" @@ -1873,7 +1873,7 @@ label hg_vibrators_personal: gen "There... {w=0.4}Better?" ("base", xpos="far_left", ypos="head") her "*Hmph*." ("annoyed", "narrow", "angry", "R", cheeks="blush") #annoyed - gen "There's no need to be upset, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "There's no need to be upset, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "There is, if you keep turning it up like that without telling me!" ("angry", "narrow", "angry", "mid", cheeks="blush") gen "I just wanted to steer your thoughts away from your classmates, and it worked!" ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "R", cheeks="blush") @@ -1895,10 +1895,10 @@ label hg_vibrators_personal: play bg_sounds "sounds/vibrator_low.ogg" her "*Ah*..." ("open", "happyCl", "worried", "mid", cheeks="blush") - gen "If you want your points, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "If you want your points, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You can't just stand there and do nothing." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} W--{w=0.2}What?" ("angry", "squint", "base", "stare", cheeks="blush") #looks away - gen "You've heard me--{w=0.4}Look at me when I'm speaking to you, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "You've heard me--{w=0.4}Look at me when I'm speaking to you, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "..." ("soft", "squint", "worried", "mid", cheeks="blush") #Hermione looks at you, blushing gen "Well?" ("base", xpos="far_left", ypos="head") her "Well--{w=0.2} *Ah*...{w=0.4} Well, what?" ("angry", "squint", "worried", "mid", cheeks="blush") @@ -1911,14 +1911,14 @@ label hg_vibrators_personal: her "Although--{w=0.2} *Ah*...{w=0.4} As you already know, I've arrived late to a couple of them." ("open", "closed", "worried", "mid", cheeks="blush") gen "You have?" ("base", xpos="far_left", ypos="head") gen "Why are you being late to your classes?" ("base", xpos="far_left", ypos="head") - her "*Ah*...{w=0.4} That's--{w=0.2} *Ah*...{w=0.4} That's kind of your fault... [genie_name]... I mean we spend so much time in here and all--" ("angry", "narrow", "base", "R", cheeks="blush") + her "*Ah*...{w=0.4} That's--{w=0.2} *Ah*...{w=0.4} That's kind of your fault... [name_genie_hermione]... I mean we spend so much time in here and all--" ("angry", "narrow", "base", "R", cheeks="blush") menu: # Both result in the event ending. "-Be kind-": #Mood stays the same gen "Oh right..." ("base", xpos="far_left", ypos="head") - gen "No need to worry, [hermione_name]. You're helping out the Headmaster after all." ("base", xpos="far_left", ypos="head") + gen "No need to worry, [name_hermione_genie]. You're helping out the Headmaster after all." ("base", xpos="far_left", ypos="head") her "Oh, I wasn't worried about--" ("upset", "squint", "base", "R", cheeks="blush") gen "I'm sure that such a bright girl as yourself is able to keep up with the curriculum anyway." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} Yes, so far--" ("open", "closed", "base", "R", cheeks="blush") @@ -1930,7 +1930,7 @@ label hg_vibrators_personal: play bg_sounds "sounds/vibrator_medium.ogg" her "*Ah*!" ("angry", "wide", "worried", "stare", cheeks="blush") - her "[genie_name]...!" ("angry", "happyCl", "worried", "mid", cheeks="blush") + her "[name_genie_hermione]...!" ("angry", "happyCl", "worried", "mid", cheeks="blush") gen "Feels good, doesn't it?" ("base", xpos="far_left", ypos="head") gen "Let it be known that your headmaster rewards honesty." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} *Ah*...{w=0.4} I--" ("clench", "happyCl", "worried", "mid", cheeks="blush") @@ -1981,7 +1981,7 @@ label hg_vibrators_personal: play sound "sounds/click4.ogg" stop bg_sounds - gen "...{w=0.4} Very well, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "...{w=0.4} Very well, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: #Gets wet down her legs and leaves (No mood penalty) @@ -2048,7 +2048,7 @@ label hg_vibrators_personal: gen "Certainly." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout - gen "{number=current_payout} points to Gryffindor, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "{number=current_payout} points to Gryffindor, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Thanks..." ("annoyed", "narrow", "angry", "R", cheeks="blush") $ hermione.set_cum(None) @@ -2064,14 +2064,14 @@ label hg_vibrators_personal: "-Scold her-": gen "Blaming your headmaster, are we?" ("base", xpos="far_left", ypos="head") - her "But... [genie_name]." ("angry", "squint", "worried", "mid", cheeks="blush") + her "But... [name_genie_hermione]." ("angry", "squint", "worried", "mid", cheeks="blush") her "I'm not to blame if it's you who is keeping me--" ("angry", "squint", "worried", "mid", cheeks="blush") play sound "sounds/click4.ogg" play bg_sounds "sounds/vibrator_medium.ogg" her "Ah!" ("scream", "happyCl", "worried", "mid", cheeks="blush") - gen "That's not how you're supposed to speak to your headmaster, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "That's not how you're supposed to speak to your headmaster, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Tell me you're sorry and won't be late to classes again." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} *Ah*...{w=0.4} Alright--" ("open", "happyCl", "worried", "mid", cheeks="blush") her "I won't be late for classes again!" ("angry", "happyCl", "worried", "mid", cheeks="blush") @@ -2136,7 +2136,7 @@ label hg_vibrators_personal: her "W--{w=0.2} What?!?" ("angry", "wide", "worried", "down", cheeks="blush") #looks down #shocked gen "You're not getting off from being scolded, are you?" ("base", xpos="far_left", ypos="head") her "Getting off from--{w=0.2} Of course not!" ("clench", "wide", "worried", "mid", cheeks="blush") - gen "Then why are you so wet, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Then why are you so wet, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") $ hermione.set_cum(pussy="vibratorp_heavy") @@ -2186,7 +2186,7 @@ label hg_vibrators_personal: pause .5 gen "(Why is she still blush-- Oh, I see...)" ("base", xpos="far_left", ypos="head") - gen "Okay [hermione_name], you may leave..." ("base", xpos="far_left", ypos="head") + gen "Okay [name_hermione_genie], you may leave..." ("base", xpos="far_left", ypos="head") $ hermione.set_cum(None) $ hermione.equip(her_outfit_last) @@ -2223,7 +2223,7 @@ label hg_vibrators_public_return: call her_walk("mid", "base", action="enter") gen "Finally! What took you--" ("base", xpos="far_left", ypos="head") - her "I'm so sorry, [genie_name]!!" ("scream", "happyCl", "worried", "mid", cheeks="blush", xpos="mid", ypos="base") + her "I'm so sorry, [name_genie_hermione]!!" ("scream", "happyCl", "worried", "mid", cheeks="blush", xpos="mid", ypos="base") her "" ("angry", "happyCl", "worried", "mid", cheeks="blush") play sound "sounds/cloth_sound3.ogg" @@ -2238,7 +2238,7 @@ label hg_vibrators_public_return: with d3 pause 1 - gen "[hermione_name]? What is the meaning of this?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]? What is the meaning of this?" ("base", xpos="far_left", ypos="head") her "*Nnnn*--" ("angry", "happyCl", "worried", "R", cheeks="blush", tears="soft_blink") gen "Are you--" ("base", xpos="far_left", ypos="head") @@ -2281,7 +2281,7 @@ label hg_vibrators_public_return: her "{size=+2}*Ah*!!!{/size}" ("grin", "narrow", "base", "up", cheeks="blush") - gen "[hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} *Ah*...{w=0.4} *Ah*..." ("angry", "closed", "worried", "mid", cheeks="blush") her "At last..." ("grin", "narrow", "base", "stare", cheeks="blush") her "These things...{w=0.4} *Ah*...{w=0.4} They turned on as I was walking up the stairs to your tower..." ("angry", "closed", "worried", "stare", cheeks="blush") @@ -2391,7 +2391,7 @@ label hg_vibrators_public_return: her "Since I do look forward to demonstrating all the things I learn." ("open", "closed", "base", "mid", cheeks="blush") gen "*Cough* {size=-4}nerd{/size} *Cough*." ("base", xpos="far_left", ypos="head") - her "Are you alright [genie_name]? You've been coughing a lot today." ("upset", "squint", "base", "mid", cheeks="blush") + her "Are you alright [name_genie_hermione]? You've been coughing a lot today." ("upset", "squint", "base", "mid", cheeks="blush") gen "I'm good, just got a nerd stuck down my throat." ("base", xpos="far_left", ypos="head") her "I see..." ("disgust", "squint", "base", "mid", cheeks="blush") gen "Please, continue with your boasting." ("base", xpos="far_left", ypos="head") @@ -2498,7 +2498,7 @@ label hg_vibrators_public_return: call her_walk("mid", "base", action="enter") gen "Welcome back." ("base", xpos="far_left", ypos="head") - her "Good evening, [genie_name]..." ("open", "squint", "base", "mid", cheeks="blush", xpos="base", ypos="base") + her "Good evening, [name_genie_hermione]..." ("open", "squint", "base", "mid", cheeks="blush", xpos="base", ypos="base") gen "How was your day? Did you have another fun trip?" ("base", xpos="far_left", ypos="head") her "Depends on your definition of fun I guess..." ("open", "squint", "base", "R", cheeks="blush") gen "A day full of sexual tension." ("grin", xpos="far_left", ypos="head") @@ -2664,7 +2664,7 @@ label hg_vibrators_public_return: her "At least I think they did, as they went back to their game..." gen "Smooth..." - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." gen "So, how did it feel like?" show her_vibrators_public eyes_sad as xray_child @@ -2672,7 +2672,7 @@ label hg_vibrators_public_return: her "You mean the vibrators?" gen "I mean you standing there... In front of your friends, vibrators going ham on your pussy--" - her "[genie_name]!" + her "[name_genie_hermione]!" gen "Sorry--" gen "Your pussy, {size=+5}and{/size} tits." her "Do you have to be so vulgar..." @@ -2711,7 +2711,7 @@ label hg_vibrators_public_return: show her_vibrators_public_proxy blush_heavy eyebrows_worried mouth_lip_bite as xray_overlay gen "*Hmm*...{w=0.4} Well, you can't always control these things." - her "I would've been able to, if you had let me use the controller, [genie_name]..." + her "I would've been able to, if you had let me use the controller, [name_genie_hermione]..." gen "Guilty..." her "After a couple of seconds, I realised what I was doing." @@ -2746,14 +2746,14 @@ label hg_vibrators_public_return: show her_vibrators_public eyes_sad as xray_child show her_vibrators_public_proxy eyes_sad as xray_overlay - her "[genie_name], you might be seeing all this as just some light-hearted fun, but I can assure you that they would not see it in the same light." + her "[name_genie_hermione], you might be seeing all this as just some light-hearted fun, but I can assure you that they would not see it in the same light." gen "Your view is based on your idealised version of your friends, or the reality?" her "The reality!" show her_vibrators_public eyes_closed as xray_child show her_vibrators_public_proxy eyes_closed as xray_overlay - gen "Sure, if you say so, [hermione_name]." + gen "Sure, if you say so, [name_hermione_genie]." her "..." her "Either way, I didn't have much time to think about my rising anxiousness..." gen "Right, so that's when I--" @@ -2802,16 +2802,16 @@ label hg_vibrators_public_return: gen "You didn't try running off, did you?" her "..." her "No, I didn't run off..." - gen "There's no need to be embarrassed [hermione_name], completing the task I requested shows your determination and character." + gen "There's no need to be embarrassed [name_hermione_genie], completing the task I requested shows your determination and character." her "Thanks, I suppose..." show her_vibrators_public eyebrows_neutral eyes_crossed as xray_child show her_vibrators_public_proxy eyebrows_neutral eyes_crossed as xray_overlay gen "That character, of course, being a complete slut who enjoys getting off in front of her friends!" - her "[genie_name]!" + her "[name_genie_hermione]!" her "..." - her "I--{w=0.2} I don't appreciate you belittling me, [genie_name]..." + her "I--{w=0.2} I don't appreciate you belittling me, [name_genie_hermione]..." gen "You're in the wrong if that's what you've got out of my words." gen "Belittling is... {w=0.4}below me..." her "..." #Yeah right @@ -2825,7 +2825,7 @@ label hg_vibrators_public_return: her "I--" her "I was not!" gen "(She's such a know-it-all, yet she never learns...)" - gen "Alright then... Let's keep playing your game, [hermione_name]." + gen "Alright then... Let's keep playing your game, [name_hermione_genie]." gen "Tell me, if you weren't enjoying yourself, why didn't you just run off when you had the chance?" show her_vibrators_public eyebrows_upset eyes_closed as xray_child @@ -2890,7 +2890,7 @@ label hg_vibrators_public_return: her "At first I couldn't move due to the shock, but at that point I could feel my legs starting to shake for... {w=0.25}Other reasons..." gen "What other reasons?" her "Well..." - gen "Come on, [hermione_name]... We all know what you're here for." + gen "Come on, [name_hermione_genie]... We all know what you're here for." her "Fine--" else: # Strength was set to medium. @@ -2926,9 +2926,9 @@ label hg_vibrators_public_return: gen "{size=+4}In the middle of the courtyard?! At {b}my{/b} school?!{/size}" ("angry", xpos="far_left", ypos="head") her "Where else should they do it?" ("angry", "base", "base", "mid") gen "The bathroom?! Their dorm? Anywhere but the courtyard!" ("angry", xpos="far_left", ypos="head") - her "But [genie_name], students have been doing it in the courtyard for generations!" ("clench", "base", "worried", "mid") + her "But [name_genie_hermione], students have been doing it in the courtyard for generations!" ("clench", "base", "worried", "mid") gen "Watching them gobbling stones is one thing, but since when was \"ballplay\" in the courtyard acceptable?" ("angry", xpos="far_left", ypos="head") - her "Ballpl--{w=0.4} [genie_name]... I'm talking about the gobstone balls!" ("open", "base", "annoyed", "mid", cheeks="blush") + her "Ballpl--{w=0.4} [name_genie_hermione]... I'm talking about the gobstone balls!" ("open", "base", "annoyed", "mid", cheeks="blush") gen "Gob-- Oh!" ("base", xpos="far_left", ypos="head") gen "(The naming conventions makes no sense in this universe...)" ("base", xpos="far_left", ypos="head") gen "It should be named something different then, like \"Gob-balls\"! {w=0.3}Or something..." ("base", xpos="far_left", ypos="head") @@ -3119,7 +3119,7 @@ label hg_vibrators_public_return: her "I must admit, it was a quite pleasant feeling... Standing outside, the warm sun against my back... Listening to the sounds of my friends enjoying themselves." her "The fact that they were there with me the entire time, it made me feel as if we were sharing this feeling." her "Even if in reality, they weren't aware of anything that was going on..." - gen "Feeling comfortable around your friends is very important, [hermione_name]." + gen "Feeling comfortable around your friends is very important, [name_hermione_genie]." her "*Hmm*... Yes, although I don't think this is the kind of comfort you're meant to feel around your friends..." gen "Unless benefits are added to the equation..." @@ -3229,7 +3229,7 @@ label hg_vibrators_public_return: "-Agree with her-": gen "Maybe you're right." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("angry", "narrow", "base", "mid", cheeks="blush") gen "The line never mattered at all." ("base", xpos="far_left", ypos="head") her "How could you say such a thing!?" ("angry", "squint", "annoyed", "mid", cheeks="blush") gen "Isn't that what you just said?" ("base", xpos="far_left", ypos="head") @@ -3255,12 +3255,12 @@ label hg_vibrators_public_return: her "Well, I still don't want them to find out that I--" ("open", "squint", "worried", "R", cheeks="blush") gen "That you're what?" ("base", xpos="far_left", ypos="head") gen "A slut?" ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "wide", "base", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "wide", "base", "mid", cheeks="blush") gen "I'm sure they wouldn't mind, or maybe they would even be happy to know that you're available to them at any time." ("base", xpos="far_left", ypos="head") her "But that's so wrong..." ("angry", "squint", "worried", "mid", cheeks="blush") gen "Is it, though? Sharing is caring." ("base", xpos="far_left", ypos="head") gen "In any case, I think we're done here for today." ("base", xpos="far_left", ypos="head") - her "*Ehm*... [genie_name]..." ("disgust", "squint", "worried", "mid", cheeks="blush") + her "*Ehm*... [name_genie_hermione]..." ("disgust", "squint", "worried", "mid", cheeks="blush") gen "Yes, slut?" ("base", xpos="far_left", ypos="head") her "... I-- I was just..." ("angry", "narrow", "base", "down", cheeks="blush") else: @@ -3338,7 +3338,7 @@ label hg_vibrators_public_return: her "Of course they wouldn't expect that the reason I wasn't acting myself was because I had strapped vibrators on my body!" ("open", "closed", "base", "mid", cheeks="blush") gen "*Hmm*... I'm beginning to understand why women think that men are completely oblivious creatures..." ("base", xpos="far_left", ypos="head") - gen "Very well [hermione_name], that shall very much do for today." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie], that shall very much do for today." ("base", xpos="far_left", ypos="head") her "Oh, okay then..." ("soft", "narrow", "base", "down", cheeks="blush") $ _vibrator_last = "high" @@ -3455,7 +3455,7 @@ label hg_vibrators_public_return: gen "Unfortunately it's not part of today's agenda, but maybe next time." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "base", "base", "R", cheeks="blush") - gen "Very well [hermione_name], I think that shall do for today." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie], I think that shall do for today." ("base", xpos="far_left", ypos="head") else: # Strength was set to high before #Hermione is denied an orgasm, the boys doesn't notice. @@ -3538,7 +3538,7 @@ label hg_vibrators_public_return: her "--The vibrators stopped..." ("angry", "narrow", "base", "down", cheeks="blush") gen "Denied! I bet you loved that!" ("grin", xpos="far_left", ypos="head") her "I did not!" ("mad", "squint", "annoyed", "mid", cheeks="blush") - gen "You just admitted to liking it like a minute ago, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You just admitted to liking it like a minute ago, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "You know, I only said that because you told me to!" ("angry", "closed", "annoyed", "mid", cheeks="blush") # Stutters because she does not believe her own words. if not her_vibrators_public_stage == 2: @@ -3555,7 +3555,7 @@ label hg_vibrators_public_return: her "...{fast} Wait, hold on..." ("angry", "wide", "base", "mid", cheeks="blush") gen "What is it now?" ("base", xpos="far_left", ypos="head") her "*Hmph*...{w=0.4} Nothing..." ("angry", "narrow", "annoyed", "R", cheeks="blush") - gen "Good, then I think that shall do for today [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good, then I think that shall do for today [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("annoyed", "narrow", "base", "R", cheeks="blush") call ctc else: @@ -3605,7 +3605,7 @@ label hg_vibrators_public_return: with fade call weather_sound - gen "Well then...{w=0.4} I suppose that shall do for now, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well then...{w=0.4} I suppose that shall do for now, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: # Strength was set to high before. (second to worst ending) # Vagina is wet. @@ -3665,8 +3665,8 @@ label hg_vibrators_public_return: gen "... These are magical items, they use magic, not volts." ("base", xpos="far_left", ypos="head") gen "(Unless magic volts are a thing?)" ("base", xpos="far_left", ypos="head") her "Oh right..." ("angry", "narrow", "base", "down", cheeks="blush") - her "Good night then, [genie_name]..." ("open", "squint", "base", "R", cheeks="blush") - gen "Farewell and enjoy yourself, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Good night then, [name_genie_hermione]..." ("open", "squint", "base", "R", cheeks="blush") + gen "Farewell and enjoy yourself, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..." ("base", "closed", "base", "mid", cheeks="blush") #looks down else: her "I can still keep these, right?" ("open", "squint", "base", "mid", cheeks="blush") @@ -3676,8 +3676,8 @@ label hg_vibrators_public_return: hide vibrators_floor with d5 - her "Good night then [genie_name]..." ("open", "squint", "base", "R", cheeks="blush") - gen "Good night, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Good night then [name_genie_hermione]..." ("open", "squint", "base", "R", cheeks="blush") + gen "Good night, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") $ her_vibrators_public_stage = 2 else: @@ -3688,7 +3688,7 @@ label hg_vibrators_public_return: gen "There you are... Where have you been?" ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "stare", xpos="base", ypos="base", cheeks="blush") #Staring into space - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "stare", cheeks="blush") gen "You're looking a bit shaken up, did something happen?" ("base", xpos="far_left", ypos="head") her "I knew this was going to be a mistake... Why would I ever agree to something like this..." ("open", "narrow", "base", "stare", cheeks="blush") #still staring into space @@ -3745,11 +3745,11 @@ label hg_vibrators_public_return: gen "The power of music..." ("base", xpos="far_left", ypos="head") her "So, anyway--" ("annoyed", "closed", "base", "mid", cheeks="blush") gen "I'm not buying it." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("angry", "base", "base", "mid", cheeks="blush") gen "Turning it off and on, causing more sound... Poppycock." ("base", xpos="far_left", ypos="head") gen "Unless you're talking about sounds of pleasure, every time you turned it back on, of course." ("base", xpos="far_left", ypos="head") her "That is not it at all!" ("angry", "base", "annoyed", "mid", cheeks="blush") - gen "No need to be ashamed, [hermione_name]... It's a perfectly natural reaction." ("base", xpos="far_left", ypos="head") + gen "No need to be ashamed, [name_hermione_genie]... It's a perfectly natural reaction." ("base", xpos="far_left", ypos="head") her "*Hmph*..." ("disgust", "narrow", "annoyed", "R", cheeks="blush") gen "Let me guess..." ("base", xpos="far_left", ypos="head") gen "Somebody spotted the only girl who excited about the music?" ("base", xpos="far_left", ypos="head") @@ -3771,7 +3771,7 @@ label hg_vibrators_public_return: gen "Maybe she even liked what she saw..." ("base", xpos="far_left", ypos="head") her "I didn't need her approval, especially from a Slytherin!" ("disgust", "base", "annoyed", "mid", cheeks="blush") gen "Sounds to me like you're being unfairly presumptuous, and to make things worse, you were the one judging her for things out of her control, like her house, she wasn't judging you for your actions..." ("base", xpos="far_left", ypos="head") - gen "Even though you had full control over them, didn't you, [hermione_name]." ("base", xpos="far_left", ypos="head") # Genie means her actions, Hermione thinks he means control over the vibrators in a literal sense + gen "Even though you had full control over them, didn't you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") # Genie means her actions, Hermione thinks he means control over the vibrators in a literal sense her "I..." ("angry", "base", "base", "mid", cheeks="blush") # Oh fuck, I can't believe you've done this her "I'm going to need a moment..." ("disgust", "closed", "base", "R", cheeks="blush") gen "Sure thing." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/hermione/events/jobs.rpy b/game/scripts/characters/hermione/events/jobs.rpy index 6356141f..1fe4af1b 100644 --- a/game/scripts/characters/hermione/events/jobs.rpy +++ b/game/scripts/characters/hermione/events/jobs.rpy @@ -14,7 +14,7 @@ label job_1: if not maid_intro_done: $ maid_intro_done = True gen "I think it's about time we got someone to clean up this place." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("open", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) + her "[name_genie_hermione]?" ("open", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) gen "Don't you think it's about time that someone set a good example and cleaned up this castle?" ("base", xpos="far_left", ypos="head") if her_whoring < 4: her "Finally you've come to your senses..." ("base", "closed", "base", "mid") @@ -24,7 +24,7 @@ label job_1: her "What is this?!" ("clench", "squint", "base", "down") gen "A Maid outfit!" ("base", xpos="far_left", ypos="head") gen "You'll need it for the cleaning you're about to do." ("base", xpos="far_left", ypos="head") - her "[genie_name], this isn't what I thought you meant..." ("disgust", "squint", "base", "mid") + her "[name_genie_hermione], this isn't what I thought you meant..." ("disgust", "squint", "base", "mid") gen "You'll get paid in points of course..." ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("upset", "narrow", "base", "R") gen "And I suppose you'll technically be working for me so you can get paid for your work..." ("base", xpos="far_left", ypos="head") @@ -53,7 +53,7 @@ label job_1: jump working_menu elif her_whoring < 13: - her "Cleaned up, [genie_name]?" ("angry", "base", "base", "mid") + her "Cleaned up, [name_genie_hermione]?" ("angry", "base", "base", "mid") gen "Yes, so you better put this on..." ("base", xpos="far_left", ypos="head") her "A maid outfit?" ("angry", "narrow", "base", "down") her "Of course this is what you meant..." ("angry", "narrow", "base", "mid") @@ -120,18 +120,18 @@ label job_1: if random_number == 1: gen "I'd like you to go out and make me some money... *Err*... I mean go out and earn some points." ("base", xpos="far_left", ypos="head") elif random_number == 2: - gen "Time to earn some more points for your house, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Time to earn some more points for your house, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") elif random_number == 3: gen "Time for you to head out and help clean the castle." ("base", xpos="far_left", ypos="head") elif random_number == 4: - gen "I've got a feather duster with your name on it, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "I've got a feather duster with your name on it, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Put this on for me will you?" ("base", xpos="far_left", ypos="head") if her_whoring < 4: if not is_in_lead(gryffindor): her "*Humph!*..." ("upset", "base", "annoyed", "mid", xpos="right", ypos="base", trans=dissolve) else: - her "No thank you, [genie_name]." ("open", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) + her "No thank you, [name_genie_hermione]." ("open", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) gen "What do you mean, no?" ("angry", xpos="far_left", ypos="head") her "We're in the lead right now... There's no need for me to earn any points at the moment." ("grin", "base", "base", "mid") gen "Right..." ("base", xpos="far_left", ypos="head") @@ -154,9 +154,9 @@ label job_1: jump working_menu elif her_whoring < 22: - her "Of course, [genie_name]..." ("base", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) + her "Of course, [name_genie_hermione]..." ("base", "squint", "base", "mid", xpos="right", ypos="base", trans=dissolve) else: #22+ - her "As you wish, [genie_name]." ("base", "base", "base", "mid",xpos="right",ypos="base", trans=dissolve) + her "As you wish, [name_genie_hermione]." ("base", "base", "base", "mid",xpos="right",ypos="base", trans=dissolve) show screen blkfade with d5 @@ -195,7 +195,7 @@ label maid_responses: if her_whoring < 4: if random_number == 1: her "Do I really have to keep doing this?" ("normal", "narrow", "base", "R_soft", xpos="right", ypos="base", trans=dissolve) - gen "What do you mean, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What do you mean, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "It's so degrading... I had to clean other students dorms!" ("open", "narrow", "worried", "down") gen "You can stop any time." ("base", xpos="far_left", ypos="head") her "I can?" ("soft", "narrow", "worried", "mid_soft") @@ -209,9 +209,9 @@ label maid_responses: her "I think you need to start enforcing harsher punishment for sexual harassment." ("mad", "base", "angry", "mid", xpos="right", ypos="base", trans=dissolve) gen "Why's that?" ("base", xpos="far_left", ypos="head") her "Some Slytherin boys kept wolf whistling at me as I was scrubbing the floors." ("mad", "base", "angry", "mid") - gen "Just see it as a compliment [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Just see it as a compliment [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "As if any Slytherin would be capable of such a thing... They're just doing it to embarrass me." ("mad", "base", "angry", "mid") - gen "Whatever you say [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Whatever you say [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "*Hmph*...{w=0.4} Can I get my points now?" ("angry", "closed", "angry", "mid") gen "Certainly, ten points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number == 3: @@ -228,7 +228,7 @@ label maid_responses: if random_number == 1: her "It was as normal a day of cleaning rooms could be." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=dissolve) her "Although considering that I'm supposed to be in class during the day I guess it's not that normal." ("soft", "base", "base", "R") - gen "Don't worry [hermione_name], you'll get your points." ("base", xpos="far_left", ypos="head") + gen "Don't worry [name_hermione_genie], you'll get your points." ("base", xpos="far_left", ypos="head") gen "Just think of how happy your friends will be when they win the house cup this year." ("base", xpos="far_left", ypos="head") her "I suppose..." ("open", "base", "base", "R") gen "Ten points to Gryffindor." ("base", xpos="far_left", ypos="head") @@ -288,7 +288,7 @@ label maid_responses: gen "(Uh-oh...)" ("base", xpos="far_left", ypos="head") her "It was kind of cute to be honest." ("base", "squint", "base", "R", cheeks="blush") gen "Well then, I assume you still got paid?" ("base", xpos="far_left", ypos="head") - her "Oh...{w=0.4} Yes [genie_name]..." ("angry", "base", "base", "mid", cheeks="blush") + her "Oh...{w=0.4} Yes [name_genie_hermione]..." ("angry", "base", "base", "mid", cheeks="blush") gen "Great! Ten points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number == 3: gen "Tell me what you've been doing." ("base", xpos="far_left", ypos="head") @@ -303,9 +303,9 @@ label maid_responses: "-Dismiss her-": her "Here's your payment." ("base", "base", "base", "mid") ">You receive {number=payment} gold coins." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." $ gryffindor+= 10 $ game.gold += payment @@ -324,9 +324,9 @@ label job_2: if her_whoring <= 6: her "*Humph*!..." elif her_whoring >=7 and her_whoring <= 15: - her "Yes [genie_name]..." + her "Yes [name_genie_hermione]..." else: - her "As you wish [genie_name]." + her "As you wish [name_genie_hermione]." show screen blkfade with d5 @@ -367,13 +367,13 @@ label barmaid_responses: gen "Anything unusual happen?" ("base", xpos="far_left", ypos="head") her "Not really, I just served people drinks." gen "Well in that case ten points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name], here's your payment." + her "Thank you, [name_genie_hermione], here's your payment." "-Dismiss her-": her "Here's your payment." ">You receive {number=payment} gold coins." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." $ gryffindor+= 20 $ game.gold += payment @@ -391,9 +391,9 @@ label job_3: if her_whoring <= 6: her "*Humph*!..." elif her_whoring <= 15: - her "Yes, [genie_name]..." ("normal", "base", "base", "R") + her "Yes, [name_genie_hermione]..." ("normal", "base", "base", "R") else: - her "As you wish, [genie_name]." ("open", "base", "base", "mid") + her "As you wish, [name_genie_hermione]." ("open", "base", "base", "mid") show screen blkfade with d5 @@ -440,34 +440,34 @@ label gryffindor_cheer_responses: menu: "\"How was your day?\"": if random_number <= 2: - her "It was good [genie_name], I think that the team morale has really started to go up." ("base", "base", "base", "mid") + her "It was good [name_genie_hermione], I think that the team morale has really started to go up." ("base", "base", "base", "mid") gen "How so?" ("base", xpos="far_left", ypos="head") her "Well, since I've started they seem to have improved their tactics." ("open", "base", "base", "mid") her "They also seem much happier. Harry is always looking at me with a smile on his face." ("base", "base", "base", "mid") gen "And does he look at you a lot?" ("base", xpos="far_left", ypos="head") her "Of course he does, we're good friends." ("open", "base", "base", "mid") gen "\"I'm sure that must be the reason\"..." ("base", xpos="far_left", ypos="head") - her "Well here's the money, [genie_name]." ("base", "base", "base", "mid") + her "Well here's the money, [name_genie_hermione]." ("base", "base", "base", "mid") ">You receive [payment] gold coins." - gen "Well done, [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >= 3 and random_number <= 5: her "Tiring. This cheering thing really is quite exhausting." ("open", "base", "worried", "mid") gen "Anything interesting happen?" ("base", xpos="far_left", ypos="head") her "Not unless you count me almost dropping my pom-pom." ("normal", "base", "base", "mid") gen "I don't... Well, did they pay you?" ("base", xpos="far_left", ypos="head") - her "Of course, here you are [genie_name]." ("open", "base", "base", "mid") + her "Of course, here you are [name_genie_hermione]." ("open", "base", "base", "mid") ">You receive [payment] gold coins." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >= 6 and random_number <= 8: her "Very well thank you, all the boys said that I helped keep their spirits up." ("open", "base", "base", "mid") gen "{size=-5}I'm sure that wasn't the only thing you've helped stay up...{/size}" ("base", xpos="far_left", ypos="head") - her "What was that [genie_name]?" ("open", "squint", "base", "mid") + her "What was that [name_genie_hermione]?" ("open", "squint", "base", "mid") gen "I was just saying that I'm sure you did a stand up job." ("base", xpos="far_left", ypos="head") her "I think so..." ("base", "happyCl", "base", "mid") gen "Well, did they pay you for raising their \"spirits\"?" ("base", xpos="far_left", ypos="head") her "Of course they did." ("open", "base", "base", "mid") ">You receive [payment] gold coins." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >=9 and her_reputation <= 15: gen "You seem very chipper today." ("base", xpos="far_left", ypos="head") her "Of course I am, we won!" ("base", "base", "base", "mid") @@ -476,15 +476,15 @@ label gryffindor_cheer_responses: gen "You seem a little bit overexcited for just a practice match." ("base", xpos="far_left", ypos="head") her "Well it was such a great game. Not to mention that we got to rub it in those Slytherin students faces afterwards." ("smile", "base", "base", "R") gen "Well I'm glad that you are enjoying your work." ("grin", xpos="far_left", ypos="head") - her "I am [genie_name]. Given that most of the \"work\" I've done to help my house is kept private, it feels good to be able to do something public once." ("open", "base", "base", "mid") + her "I am [name_genie_hermione]. Given that most of the \"work\" I've done to help my house is kept private, it feels good to be able to do something public once." ("open", "base", "base", "mid") gen "Not to mention you get paid for it..." ("base", xpos="far_left", ypos="head") her "Oh, right, Here you are..." ("soft", "base", "base", "R") ">You receive [payment] gold coins." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") else: her "We won! We managed to beat Slytherin." ("base", "base", "base", "mid") gen "That must have been very exhilarating. I'm sure your cheering gave the extra motivation needed to win." ("base", xpos="far_left", ypos="head") - her "I think it did [genie_name]. They were all very excited to receive their reward for winning the game." ("base", "happyCl", "base", "mid") + her "I think it did [name_genie_hermione]. They were all very excited to receive their reward for winning the game." ("base", "happyCl", "base", "mid") menu: "-Reward?-": @@ -508,14 +508,14 @@ label gryffindor_cheer_responses: "-Okay-": gen "I'm sure it was worth it. Did they pay you?" ("base", xpos="far_left", ypos="head") - her "Of course they did [genie_name], here you are." - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + her "Of course they did [name_genie_hermione], here you are." + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") "-Dismiss her-": - her "Here's your payment [genie_name]." ("soft", "base", "base", "R") - gen "Well done [hermione_name], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") + her "Here's your payment [name_genie_hermione]." ("soft", "base", "base", "R") + gen "Well done [name_hermione_genie], ten points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") ">You receive [payment] gold coins." $ gryffindor+= 20 $ game.gold += payment @@ -534,9 +534,9 @@ label job_4: if her_whoring <= 6: her "*Humph*!..." elif her_whoring >=7 and her_whoring <= 15: - her "Yes, [genie_name]..." + her "Yes, [name_genie_hermione]..." else: - her "As you wish, [genie_name]." + her "As you wish, [name_genie_hermione]." show screen blkfade with d5 @@ -589,7 +589,7 @@ label slytherin_cheer_responses: menu: "-Ask her about her day-": if random_number <= 2: - gen "How was your day today [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How was your day today [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Exhausting... Those Slytherin pigs insisted that I cheer for their entire practice session." ("open", "closed", "angry", "mid") her "They were hardly playing the game by the end. They were just standing there watching me." gen "Well what was your routine?" ("base", xpos="far_left", ypos="head") @@ -599,7 +599,7 @@ label slytherin_cheer_responses: gen "Well it definitely sounds like you earned your points." ("base", xpos="far_left", ypos="head") gen "Thirty points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >= 3 and random_number <= 5: - gen "How was your day today [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How was your day today [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Uneventful. I completed my routine and then went back to my room..." ("open", "squint", "base", "mid") gen "You didn't talk to anyone?" ("base", xpos="far_left", ypos="head") her "I make a point of trying to avoid Slytherin student as best I can." ("annoyed", "narrow", "angry", "R") @@ -608,20 +608,20 @@ label slytherin_cheer_responses: gen "Well, you earned your points." ("base", xpos="far_left", ypos="head") gen "Thirty points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >= 6 and random_number <= 8: - gen "Hello [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Hello [genie_name]." ("normal", "base", "base", "mid") + gen "Hello [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Hello [name_genie_hermione]." ("normal", "base", "base", "mid") gen "How did everything go today?" ("base", xpos="far_left", ypos="head") her "Very well. In fact I think I might be doing too well." ("annoyed", "base", "worried", "R") gen "How so?" ("base", xpos="far_left", ypos="head") her "I think that my cheering is having too much of an positive effect." ("open", "base", "worried", "mid") her "I'm not sure that I want the Slytherin team to improve, let alone because of me..." ("open", "base", "worried", "R") gen "Just think about how you're helping your house in other ways." ("base", xpos="far_left", ypos="head") - her "I suppose you're right [genie_name]." ("open", "base", "base", "mid") + her "I suppose you're right [name_genie_hermione]." ("open", "base", "base", "mid") gen "Of course I am... Now, did they pay you?" ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]." ("base", "base", "base", "mid") - gen "Well done [hermione_name], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") + her "Yes [name_genie_hermione]." ("base", "base", "base", "mid") + gen "Well done [name_hermione_genie], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") elif random_number >=9 and her_reputation > 15: - her "[genie_name], something must be done about those Slytherin boys..." ("open", "closed", "angry", "mid") + her "[name_genie_hermione], something must be done about those Slytherin boys..." ("open", "closed", "angry", "mid") her "It's bad enough that I have to cheer for them but they are being a little bit touchy." ("annoyed", "narrow", "angry", "R") gen "Touchy?" ("base", xpos="far_left", ypos="head") her "Yes, they keep groping me. It's highly inappropriate and it interrupts my routine." ("scream", "closed", "angry", "mid") @@ -632,33 +632,33 @@ label slytherin_cheer_responses: gen "Very well, I'll speak to him. Although I'm not sure it will have the effect you're hoping for." ("base", xpos="far_left", ypos="head") her "It better, otherwise I wont put my full effort into this..." ("normal", "squint", "angry", "mid") gen "{size=-5}I'm sure that'll show them.{/size}" ("base", xpos="far_left", ypos="head") - her "What was that [genie_name]?" ("open", "squint", "base", "mid") - gen "Nothing [hermione_name], I'll speak to Professor Snape tonight..." ("base", xpos="far_left", ypos="head") + her "What was that [name_genie_hermione]?" ("open", "squint", "base", "mid") + gen "Nothing [name_hermione_genie], I'll speak to Professor Snape tonight..." ("base", xpos="far_left", ypos="head") else:#Comes back with cum on her gen "What the hell happened to you?" ("base", xpos="far_left", ypos="head") - her "I did my job [genie_name]." ("angry", "narrow", "base", "down") + her "I did my job [name_genie_hermione]." ("angry", "narrow", "base", "down") gen "What are you talking about? You were supposed to be a cheerleader." ("base", xpos="far_left", ypos="head") gen "You know, cheering..." ("base", xpos="far_left", ypos="head") gen "And all that." ("base", xpos="far_left", ypos="head") - her "I am [genie_name]. I just performed a different type of cheer today." ("soft", "narrow", "annoyed", "up") + her "I am [name_genie_hermione]. I just performed a different type of cheer today." ("soft", "narrow", "annoyed", "up") gen "And by that you mean jerking off the entire Slytherin team?" ("base", xpos="far_left", ypos="head") her "Well that's not how it started. I was initially just giving them a bit of a dance in the locker room..." ("angry", "narrow", "base", "down") her "And one thing led to another." gen "Fine, I don't want to hear it. How much did they pay you for this \"cheering\"?" ("base", xpos="far_left", ypos="head") her "Pay me?" ("silly", "narrow", "base", "dead") - gen "You are supposed to be paid for this [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Oh, I must have forgotten... Sorry [genie_name]." ("base", "base", "base", "R",cheeks="blush") + gen "You are supposed to be paid for this [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Oh, I must have forgotten... Sorry [name_genie_hermione]." ("base", "base", "base", "R",cheeks="blush") gen "Fine, but you aren't getting any points." ("base", xpos="far_left", ypos="head") - her "Of course [genie_name]. Will that be all?" ("base", "base", "base", "mid") + her "Of course [name_genie_hermione]. Will that be all?" ("base", "base", "base", "mid") gen "Yes, you're free to go now." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") jump end_her_working_no_payment "-Dismiss her-": her "Here's your payment." ("open", "base", "base", "mid") ">You receive [payment] gold coins." - gen "Well done [hermione_name], thirty points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], thirty points to Gryffindor." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") ">You receive [payment] gold coins." $ gryffindor+= 30 $ game.gold += payment @@ -763,7 +763,7 @@ label hermione_helping_selling_cards: if her_shop_help_first: $ her_shop_help_first = False her "" - gen "Hello, [hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "Hello, [name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") her "Good..." ("normal", "happy", "base", "mid") her "I'm still not that comfortable wearing the outfit you provided though so I just stood behind the shop counter today." ("open", "closed", "base", "mid") her "Apparently we sold a lot more items than usual though." ("base","happy", "base", "mid", cheeks="blush") @@ -784,12 +784,12 @@ label hermione_helping_selling_cards: her "Here's your payment." ("open", "base", "base", "mid") call give_reward("You have received twenty gold", "interface/icons/gold.webp") $ game.gold += 20 - gen "Well done [hermione_name], fifteen points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], fifteen points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 15 if random_choice == 1: her "" - gen "Hello, [hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "Hello, [name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") her "It was fine, the outfit is a bit chilly though." ("normal", "happy", "base", "mid_soft") gen "So, no other complications?" ("base", xpos="far_left", ypos="head") her "Well..." ("soft", "narrow", "worried", "down", cheeks="blush") @@ -811,11 +811,11 @@ label hermione_helping_selling_cards: her "Here's your payment." ("open", "base", "base", "mid") call give_reward("You have received twenty gold", "interface/icons/gold.webp") $ game.gold += 20 - gen "Well done [hermione_name], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 20 elif random_choice == 2: her "" - gen "Hello, [hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "Hello, [name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") her "Awful..." ("normal", "narrow", "worried", "down") gen "Really, why is that?" ("base", xpos="far_left", ypos="head") her "Well, I'm not actually angry..." ("open", "base", "base", "mid") @@ -850,11 +850,11 @@ label hermione_helping_selling_cards: her "Here's your payment." ("open", "base", "base", "mid") call give_reward("You have received twenty gold", "interface/icons/gold.webp") $ game.gold += 20 - gen "Well done [hermione_name], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 20 elif random_choice == 3: her "" - gen "Hello, [hermione_name], how was your day?" ("base", xpos="far_left", ypos="head") + gen "Hello, [name_hermione_genie], how was your day?" ("base", xpos="far_left", ypos="head") her "Great, they held a card game tournament today." ("base", "base", "base", "mid") gen "Wait, a tournament? How come I wasn't invited?" ("angry", xpos="far_left", ypos="head") her "It was students only obviously..." ("open", "happy", "base", "R") @@ -885,7 +885,7 @@ label hermione_helping_selling_cards: her "Here's your payment." ("open", "base", "base", "mid") call give_reward("You have received twenty gold", "interface/icons/gold.webp") $ game.gold += 20 - gen "Well done [hermione_name], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 20 else: $ hermione.set_cum(hair="light") @@ -909,15 +909,15 @@ label hermione_helping_selling_cards: her "I tried it out to test the legitimacy of the claims in that book of theirs..." ("open", "base", "base", "mid") gen "of course..." ("base", xpos="far_left", ypos="head") gen "And how many times did you test this... theory of yours." ("base", xpos="far_left", ypos="head") - her "There's no conclusion to be made by just testing a theory once [genie_name]." ("normal", "closed", "angry", "mid") + her "There's no conclusion to be made by just testing a theory once [name_genie_hermione]." ("normal", "closed", "angry", "mid") her "Anyway..." ("open", "base", "base", "mid") her "Here's your payment." ("open", "base", "base", "mid") call give_reward("You have received twenty gold", "interface/icons/gold.webp") $ game.gold += 20 - gen "Well done [hermione_name], twenty-five points to Gryffindor." ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], twenty-five points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 25 - her "Good night, [genie_name]." + her "Good night, [name_genie_hermione]." call her_walk(action="leave") $ hermione.equip(her_outfit_last) diff --git a/game/scripts/characters/hermione/events/potions/ass_expand.rpy b/game/scripts/characters/hermione/events/potions/ass_expand.rpy index 83ea86b6..61978d5c 100644 --- a/game/scripts/characters/hermione/events/potions/ass_expand.rpy +++ b/game/scripts/characters/hermione/events/potions/ass_expand.rpy @@ -27,8 +27,8 @@ label her_potion_ass_give: with d3 gen "Now then..." ("base", xpos="far_left", ypos="head") else: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]?" ("open", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes [name_genie_hermione]?" ("open", "base", "base", "mid") $ current_payout = 20 @@ -84,7 +84,7 @@ label her_potion_ass_give: if her_whoring < 19: her "My butt looked ridiculous last time..." ("annoyed", "narrow", "base", "mid", cheeks="blush") if her_ass_expand_groped: - gen "Well, that's a matter of opinion, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, that's a matter of opinion, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: gen "I'm sure it looked fine..." ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("normal", "narrow", "base", "down") @@ -131,7 +131,7 @@ label her_potion_ass_give: call nar(">Hermione goes white as she starts to feel her body churn.") her "*Hngh*!" ("disgust", "wide", "worried", "stare") gen "Something wrong?" ("base", xpos="far_left", ypos="head") - her "What-- What's the intended effect of this potion [genie_name]?" ("angry", "squint", "base", "mid") + her "What-- What's the intended effect of this potion [name_genie_hermione]?" ("angry", "squint", "base", "mid") gen "Let's just say it's meant to distribute your assets a little bit differently." ("base", xpos="far_left", ypos="head") her "My--" ("angry", "squint", "worried", "mid") $ renpy.sound.play("sounds/slap.ogg") @@ -145,7 +145,7 @@ label her_potion_ass_give: elif her_ass_expand_groped: her "So... I assume you want to--" ("open", "base", "base", "R", cheeks="blush") her "I mean, am I to receive another massage?" ("soft", "closed", "base", "mid", cheeks="blush") - gen "Not today [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Not today [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Then what--" ("clench", "base", "base", "mid") call nar(">Hermione jumps on the spot slightly as the potion begins taking effect.") her "Ouch!" ("angry", "happyCl", "worried", "mid") @@ -158,7 +158,7 @@ label her_potion_ass_give: if not her_ass_expand_drank: her "Alright..." ("angry", "squint", "base", "R") gen "Let me know how it went!" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("angry", "narrow", "base", "down") + her "Yes, [name_genie_hermione]..." ("angry", "narrow", "base", "down") her "See you later then." ("angry", "narrow", "base", "R") else: @@ -193,7 +193,7 @@ label her_potion_ass_give: $ renpy.sound.play("sounds/slap.ogg") her "" ("clench", "wide", "base", "mid") call nar(">Another jolt goes through Hermione's body as she jumps on the spot.") - her "I-- I'm sorry [genie_name]..." ("angry", "happyCl", "worried", "mid") + her "I-- I'm sorry [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid") her "If this potion is doing what I think it's--" ("open", "happyCl", "worried", "mid", cheeks="blush") $ renpy.sound.play("sounds/slap.ogg") her "Ow!" ("angry", "wide", "worried", "stare", cheeks="blush") @@ -238,7 +238,7 @@ label her_potion_ass_give: her "No... I'm sorry but I'm not going to let them see me like that..." ("angry", "narrow", "base", "mid", cheeks="blush") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "Very well [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout @@ -259,7 +259,7 @@ label her_potion_ass_give: gen "Your clothes, yes..." ("base", xpos="far_left", ypos="head") else: her "So that's how it is, is it..." ("open", "squint", "base", "R", cheeks="blush") - her "You should really tell me these things up front [genie_name]..." ("open", "closed", "base", "down", cheeks="blush") + her "You should really tell me these things up front [name_genie_hermione]..." ("open", "closed", "base", "down", cheeks="blush") her "But I suppose I could do that, even though I was only meant to drink the potion..." ("base", "closed", "base", "mid", cheeks="blush") "-Wait and see what happens-" if not hermione.is_any_worn("top", "bra", "bottom", "panties"): @@ -283,7 +283,7 @@ label her_potion_ass_give: if hermione.is_any_worn("top", "bottom", "panties"): call nar(">Hermione suddenly jolts forward as if she was hit by something on her butt.") her "Ouch!" ("mad", "happyCl", "worried", "stare", cheeks="blush") - her "S--{w=0.2} Something's happening to it, [genie_name]!" ("clench", "happy", "worried", "down", cheeks="blush") + her "S--{w=0.2} Something's happening to it, [name_genie_hermione]!" ("clench", "happy", "worried", "down", cheeks="blush") gen "You'd probably want to take off your clothes right about now..." ("base", xpos="far_left", ypos="head") her "My--{w=0.2} You've only paid me to drink the potion, why would I--" ("angry", "closed", "worried", "mid", cheeks="blush") gen "Trust me, it's for your own good..." ("base", xpos="far_left", ypos="head") @@ -296,7 +296,7 @@ label her_potion_ass_give: pause .5 her "" ("clench", "narrow", "worried", "down", cheeks="blush") - gen "[hermione_name]! Stripping in your headmasters office, how indecent!" ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie]! Stripping in your headmasters office, how indecent!" ("grin", xpos="far_left", ypos="head") if hermione.is_any_worn("bottom", "panties"): $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -337,14 +337,14 @@ label her_potion_ass_give: her "I knew it..." ("disgust", "narrow", "base", "down", cheeks="blush") gen "That's weird... Must've brewed the potion wrong..." ("base", xpos="far_left", ypos="head") her "Right... As if you didn't know this was going to happen." ("open", "narrow", "annoyed", "R", cheeks="blush") - gen "I assure you I had no idea [hermione_name], it was only meant to spank you a little." ("base", xpos="far_left", ypos="head") + gen "I assure you I had no idea [name_hermione_genie], it was only meant to spank you a little." ("base", xpos="far_left", ypos="head") her "Then how come it's--" ("soft", "narrow", "annoyed", "down", cheeks="blush") $ hermione.equip(her_hips_ass2) $ renpy.sound.play("sounds/boing05.ogg") with d3 - her "[genie_name]!" ("angry", "base", "worried", "down", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "base", "worried", "down", cheeks="blush") gen "Yes?" ("base", xpos="far_left", ypos="head") her "It did it again!" ("disgust", "happyCl", "worried", "mid", cheeks="blush") gen "Well, it is an untested potion to be fair... You'll have to expect some side effects." ("base", xpos="far_left", ypos="head") @@ -366,7 +366,7 @@ label her_potion_ass_give: else: # 19+ her "And my ass, it feels so... Good." ("base", "narrow", "base", "up", cheeks="blush") call nar(">You start to notice Hermione's ass jiggle slightly.") - her "Something is happening with my body, [genie_name]!" ("grin", "narrow", "base", "down", cheeks="blush") + her "Something is happening with my body, [name_genie_hermione]!" ("grin", "narrow", "base", "down", cheeks="blush") $ renpy.sound.play("sounds/slap.ogg") her "*Ah*..." ("open_tongue", "narrow", "base", "up", cheeks="blush") call nar(">Hermione jolts forward as if her ass was spanked by an invisible force.") @@ -442,7 +442,7 @@ label her_potion_ass_give: gen "There it goes!" ("base", xpos="far_left", ypos="head") gen "More like what you expected?" ("base", xpos="far_left", ypos="head") her "Yes..." ("soft", "base", "base", "R", cheeks="blush") - gen "Well you expected wrong... We're not done yet, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well you expected wrong... We're not done yet, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "We're--" ("mad", "base", "base", "mid", cheeks="blush") $ hermione.equip(her_hips_ass3) @@ -501,7 +501,7 @@ label her_potion_ass_give: gen "Alright then... Go ahead..." ("base", xpos="far_left", ypos="head") $ hermione.strip("clothes") her "This potions sure is taking its time..." ("angry", "narrow", "base", "down", cheeks="blush") - gen "Patience, [hermione_name]... We'll see the effects kicking in soon enough..." ("base", xpos="far_left", ypos="head") + gen "Patience, [name_hermione_genie]... We'll see the effects kicking in soon enough..." ("base", xpos="far_left", ypos="head") gen "..." ("base", xpos="far_left", ypos="head") gen "Any minute now..." ("base", xpos="far_left", ypos="head") her "..." ("normal", "closed", "base", "down", cheeks="blush") @@ -574,7 +574,7 @@ label her_potion_ass_give: gen "Describe it to me." ("base", xpos="far_left", ypos="head") her "It... It feels very nice and cushiony..." ("soft", "base", "base", "down", cheeks="blush") her "But I think it got bigger before." ("soft", "wink", "base", "mid", cheeks="blush") - gen "Disappointed, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Disappointed, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "No, I was just expecting it to--" ("angry", "base", "base", "mid", cheeks="blush") $ hermione.equip(her_hips_ass3) @@ -609,11 +609,11 @@ label her_potion_ass_give: else: her "Alright..." ("annoyed", "narrow", "base", "down", cheeks="blush") else: - her "[genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("angry", "narrow", "base", "mid", cheeks="blush") her "Could... Do you think you could massage me?" ("angry", "closed", "worried", "mid", cheeks="blush") gen "Massage you?" ("base", xpos="far_left", ypos="head") her "Massage my butt I mean..." ("disgust", "base", "base", "R", cheeks="blush") - gen "Your--{w=0.2} Why of course [hermione_name]!" ("grin", xpos="far_left", ypos="head") + gen "Your--{w=0.2} Why of course [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") her "Thank you..." ("angry", "closed", "base", "mid", cheeks="blush") else: #Repeat if her_whoring < 19: @@ -640,7 +640,7 @@ label her_potion_ass_give: call play_music("playful_tension") # SEX THEME. if her_whoring < 19: - her "Please be gentle, [genie_name]..." ("angry", "base", "base", "R", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=d3) + her "Please be gentle, [name_genie_hermione]..." ("angry", "base", "base", "R", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=d3) gen "Certainly... It is a massage is it not?" ("base", xpos="far_left", ypos="head") her "..." ("angry", "narrow", "base", "down", cheeks="blush") #pout @@ -652,7 +652,7 @@ label her_potion_ass_give: her "*Ah*..." ("open", "happyCl", "base", "stare", cheeks="blush") her "..." ("disgust", "squint", "worried", "stare", cheeks="blush") #Wide - gen "Was that a moan, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Was that a moan, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "N-- No...{w=0.4} It's...{w=0.4} Your hands are cold!" ("disgust", "narrow", "worried", "R", cheeks="blush") #annoyed #glance gen "I see..." ("base", xpos="far_left", ypos="head") gen "In that case I'll continue..." ("base", xpos="far_left", ypos="head") @@ -668,11 +668,11 @@ label her_potion_ass_give: gen "These cheeks, so soft... Yet so firm..." ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("angry", "narrow", "base", "down", cheeks="blush") call nar(">You give her cheeks a quick squeeze.") - her "[genie_name]!" ("disgust", "narrow", "base", "R", cheeks="blush") - gen "How did that feel, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!" ("disgust", "narrow", "base", "R", cheeks="blush") + gen "How did that feel, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I... {w=0.4} Good?" ("open", "squint", "worried", "down", cheeks="blush") gen "You don't sound very convinced..." ("base", xpos="far_left", ypos="head") - gen "I didn't take you for such a spoiled girl, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I didn't take you for such a spoiled girl, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You could at least act a little bit more grateful..." ("base", xpos="far_left", ypos="head") her "What do you--" ("angry", "happy", "worried", "mid", cheeks="blush") call nar(">You firmly dig into her cheeks with your thumbs, making her clench up from the surprise.") @@ -695,11 +695,11 @@ label her_potion_ass_give: gen "(It looks so tight with her ass like this!)" ("angry", xpos="far_left", ypos="head") gen "(I've got to know what it feels like...)" ("base", xpos="far_left", ypos="head") else: # 19+ - her "Please hurry [genie_name]... Massage my butt cheeks..." ("angry", "base", "base", "R", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=d3) + her "Please hurry [name_genie_hermione]... Massage my butt cheeks..." ("angry", "base", "base", "R", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=d3) gen "*Hmm*... I'm not so sure if I should do it now..." ("grin", xpos="far_left", ypos="head") her "Please!" ("disgust", "happyCl", "base", "mid", cheeks="blush") her "I need it!" ("angry", "happyCl", "base", "mid", cheeks="blush") - gen "Very well [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call her_chibi_scene("grope_ass_back") with d3 @@ -711,7 +711,7 @@ label her_potion_ass_give: her "*Mmm*..." ("smile", "narrow", "base", "stare", cheeks="blush") gen "(I barely even touched her yet...)" ("base", xpos="far_left", ypos="head") call nar(">Continuing the massage, you begin kneading her soft cheeks with your thumbs...") - her "[genie_name]..." ("base", "narrow", "base", "stare", cheeks="blush") + her "[name_genie_hermione]..." ("base", "narrow", "base", "stare", cheeks="blush") call nar(">Grabbing the sides of her waist you move your thumbs in a circular motion, giving her a squeeze each time you close your palm.") her "*Ah*..." ("open", "closed", "base", "mid", cheeks="blush") call nar(">Lightening your grip, you slowly slide your hands alongside the sides of her figure and move them underneath her cheeks.") @@ -758,7 +758,7 @@ label her_potion_ass_give: her "!!!" ("clench", "happyCl", "annoyed", "mid", cheeks="blush") #wide eyed call nar(">You feel Hermione clench up around your finger as you insert it into her butthole.") - her "[genie_name], what are you doing!" ("scream", "happyCl", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], what are you doing!" ("scream", "happyCl", "annoyed", "mid", cheeks="blush") gen "I stuck my finger in your butthole, feels good doesn't it?" ("base", xpos="far_left", ypos="head") her "No! I can't believe you're doing this again!" ("scream", "happy", "annoyed", "R", cheeks="blush") her "Pull it out!" ("clench", "squint", "annoyed", "R", cheeks="blush") @@ -829,7 +829,7 @@ label her_potion_ass_give: else: #Success if not her_ass_expand_finger: - her "[genie_name] please... I'm too sensitive. If you do that, I'm not sure I'll be able to control myself." ("mad", "narrow", "worried", "R", cheeks="blush") + her "[name_genie_hermione] please... I'm too sensitive. If you do that, I'm not sure I'll be able to control myself." ("mad", "narrow", "worried", "R", cheeks="blush") gen "That's unfortunate..." ("base", xpos="far_left", ypos="head") call nar(">You slowly pull your finger away from her asshole.") her "Thank you--" ("base", "closed", "worried", "mid", cheeks="blush") @@ -850,31 +850,31 @@ label her_potion_ass_give: her "!!!" ("open_tongue", "base", "base", "ahegao", cheeks="blush") call nar(">As you continue your barrage on the girl's hole, you feel her shaking, desperately trying to keep her composure.") - her "Please [genie_name]..." ("grin", "happyCl", "base", "mid", cheeks="blush") + her "Please [name_genie_hermione]..." ("grin", "happyCl", "base", "mid", cheeks="blush") her "I can't take it any longer..." ("angry", "narrow", "base", "dead", cheeks="blush") else: - her "Please [genie_name]... Not again... I can't take it..." ("angry", "narrow", "base", "stare", cheeks="blush") - gen "You shouldn't put yourself down so much [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Please [name_genie_hermione]... Not again... I can't take it..." ("angry", "narrow", "base", "stare", cheeks="blush") + gen "You shouldn't put yourself down so much [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call nar(">You poke Hermione's asshole with your finger, sticking the tip in just slightly.") - her "*Ngh*... [genie_name]..." ("clench", "narrow", "base", "up", cheeks="blush") + her "*Ngh*... [name_genie_hermione]..." ("clench", "narrow", "base", "up", cheeks="blush") gen "What was that?" ("base", xpos="far_left", ypos="head") call nar(">You take the tip of your finger out again and start teasing the entrance of her butthole...") - gen "That's odd... I thought you said you couldn't take it, but the tip of my finger sure found it easy to penetrate you, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "That's odd... I thought you said you couldn't take it, but the tip of my finger sure found it easy to penetrate you, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call nar(">You circle the entrance of her butthole with your finger, and Hermione's words trail off into sounds of pleasure...") - her "*Mmmm*... [genie_name]..." ("mad", "closed", "base", "mid", cheeks="blush") + her "*Mmmm*... [name_genie_hermione]..." ("mad", "closed", "base", "mid", cheeks="blush") gen "Let's try this again then shall we..." ("base", xpos="far_left", ypos="head") call nar(">You put your finger up against her puckered hole once more and give it a gentle push.") $ renpy.play('sounds/gltch.ogg') - her "[genie_name]!" ("grin", "narrow", "base", "up", cheeks="blush") + her "[name_genie_hermione]!" ("grin", "narrow", "base", "up", cheeks="blush") gen "Look who suddenly woke up for the event." ("base", xpos="far_left", ypos="head") call nar(">You begin pumping your finger in and out of Hermione's ass with increasing ease.") play bg_sounds "sounds/slickloop.ogg" fadein 2 her "oooh...." ("grin", "squint", "base", "stare", cheeks="blush") - gen "You sure are taking it pretty well [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You sure are taking it pretty well [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} Maybe I--{w=0.2} *Ah*..." ("soft", "happyCl", "base", "mid", cheeks="blush") her "Maybe I've finally gotten used to--{w=0.2} *Ah*..." ("soft", "happyCl", "base", "stare", cheeks="blush") gen "Gotten used to having your ass filled?" ("base", xpos="far_left", ypos="head") @@ -885,8 +885,8 @@ label her_potion_ass_give: $ renpy.play('sounds/gltch.ogg') pause .4 - her "[genie_name]!!!" ("angry", "happyCl", "base", "stare", cheeks="blush") - her "[genie_name], it's too much!!!" ("clench", "happyCl", "worried", "stare", cheeks="blush") + her "[name_genie_hermione]!!!" ("angry", "happyCl", "base", "stare", cheeks="blush") + her "[name_genie_hermione], it's too much!!!" ("clench", "happyCl", "worried", "stare", cheeks="blush") her "Please!" ("soft", "narrow", "worried", "up", cheeks="blush") @@ -894,7 +894,7 @@ label her_potion_ass_give: "-Keep Going-": #Hermione cums - gen "What was that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What was that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") call nar(">Pushing Hermione over your desk you finger her ass vigorously.") call her_chibi_scene("lie_on_desk_fingering_slow") @@ -947,7 +947,7 @@ label her_potion_ass_give: call her_chibi_scene("lie_on_desk_fingering_pause") with d5 - her "Yes...{w=0.4} *Hngh*...{w=0.4} [genie_name]." ("grin", "happyCl", "base", "dead", cheeks="blush") + her "Yes...{w=0.4} *Hngh*...{w=0.4} [name_genie_hermione]." ("grin", "happyCl", "base", "dead", cheeks="blush") call her_chibi_scene("lie_on_desk") with d5 her "*Mmm*..." ("base", "narrow", "worried", "dead", cheeks="blush") #look of pleasure @@ -964,7 +964,7 @@ label her_potion_ass_give: with kissiris her "*Ngh*!!!" ("grin", "narrow", "base", "up", cheeks="blush") #wide #blush - gen "What was that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What was that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} Nevermind." ("disgust", "narrow", "worried", "up", cheeks="blush") @@ -1064,7 +1064,7 @@ label her_potion_ass_give: $ hermione.unequip("hips") - her "So, is that it [genie_name]?" ("open", "squint", "base", "R", cheeks="blush", xpos="base", ypos="base", flip=False, trans=d3) + her "So, is that it [name_genie_hermione]?" ("open", "squint", "base", "R", cheeks="blush", xpos="base", ypos="base", flip=False, trans=d3) if her_whoring < 19: gen "Unless there's something else you wanted..." ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("angry", "narrow", "base", "down", cheeks="blush") @@ -1079,9 +1079,9 @@ label her_potion_ass_give: if not hg_anal.trigger: #didn't expect you to push further gen "You're welcome by the way..." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("soft", "base", "base", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("soft", "base", "base", "mid", cheeks="blush") gen "For the massage." ("base", xpos="far_left", ypos="head") - her "Oh... Thank you [genie_name]." ("annoyed", "squint", "base", "R", cheeks="blush") + her "Oh... Thank you [name_genie_hermione]." ("annoyed", "squint", "base", "R", cheeks="blush") gen "Off you go." ("base", xpos="far_left", ypos="head") if not her_ass_expand_no_clothes: her "Alright." ("soft", "wink", "base", "mid", cheeks="blush") @@ -1094,8 +1094,8 @@ label her_potion_ass_give: else: #Expected you to push further her "..." ("annoyed", "narrow", "base", "down", cheeks="blush") - gen "Is everything okay [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Oh... Yes, I'm fine, [genie_name]..." ("soft", "narrow", "base", "down", cheeks="blush") + gen "Is everything okay [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Oh... Yes, I'm fine, [name_genie_hermione]..." ("soft", "narrow", "base", "down", cheeks="blush") gen "Good." ("base", xpos="far_left", ypos="head") if not her_ass_expand_no_clothes: gen "Off you go then." ("base", xpos="far_left", ypos="head") @@ -1109,8 +1109,8 @@ label her_potion_ass_give: her "Off I go..." ("open", "base", "base", "R", cheeks="blush") - her "Bye then, [genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") - gen "Bye [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Bye then, [name_genie_hermione]..." ("open", "closed", "base", "mid", cheeks="blush") + gen "Bye [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") $ her_ass_expand_drank = True @@ -1133,7 +1133,7 @@ label her_potion_ass_return: her "Although, I suppose you may not have been aware of that..." ("clench", "squint", "base", "R") her "Professor Snape usually sends us down to Hogsmeade to acquire the necessary potion supplies for the month." ("open", "closed", "annoyed", "mid") gen "How lazy can a man get..." ("base", xpos="far_left", ypos="head") - her "Sorry, [genie_name]... I probably should've told you about it." ("disgust", "narrow", "base", "down") + her "Sorry, [name_genie_hermione]... I probably should've told you about it." ("disgust", "narrow", "base", "down") her "You know I'd normally tell you these things but..." ("angry", "narrow", "base", "R") gen "But?" ("base", xpos="far_left", ypos="head") her "Well... Getting out of that classroom once a month is usually what lets me get through..." ("disgust", "closed", "base", "mid") @@ -1159,15 +1159,15 @@ label her_potion_ass_return: her "Whilst other people weren't openly laughing at it, I could still hear them whispering and giggling..." ("angry", "narrow", "base", "down", cheeks="blush") her "I felt as if I was going die from embarrassment..." ("disgust", "closed", "base", "mid", cheeks="blush") gen "They're just jealous." ("base", xpos="far_left", ypos="head") - her "Are they, [genie_name]?" ("disgust", "narrow", "base", "mid", cheeks="blush") + her "Are they, [name_genie_hermione]?" ("disgust", "narrow", "base", "mid", cheeks="blush") gen "Well... Maybe not the falling over part." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "down", cheeks="blush") her "Can I have my points now?" ("open", "closed", "base", "mid", cheeks="blush") - gen "Of course [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Of course [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") her "... Thank you." ("base", "squint", "base", "mid", cheeks="blush") else: - her "Hello [genie_name]..." ("base", "narrow", "base", "R", cheeks="blush") + her "Hello [name_genie_hermione]..." ("base", "narrow", "base", "R", cheeks="blush") gen "Back so soon?" ("base", xpos="far_left", ypos="head") her "I... Yes..." ("base", "narrow", "base", "down", cheeks="blush") gen "Very well... So, how's your day been?" ("base", xpos="far_left", ypos="head") @@ -1180,7 +1180,7 @@ label her_potion_ass_return: her "In today's history of magic lesson I was asked by professor Binns to help outline the timeline of the Witch hunts of the 14th century on the blackboard..." ("open", "closed", "base", "mid", cheeks="blush") gen "Sounds dreadfully boring..." ("base", xpos="far_left", ypos="head") - her "History of magic is not boring, [genie_name]!" ("angry", "squint", "base", "mid", cheeks="blush") + her "History of magic is not boring, [name_genie_hermione]!" ("angry", "squint", "base", "mid", cheeks="blush") gen "..." ("base", xpos="far_left", ypos="head") her "Okay, maybe it's a little bit boring..." ("angry", "narrow", "base", "R", cheeks="blush") her "But it's important!" ("annoyed", "base", "base", "mid", cheeks="blush") @@ -1214,8 +1214,8 @@ label her_potion_ass_return: her "I doubt any of them learnt a thing about the Witch hunts..." ("open", "narrow", "base", "R", cheeks="blush") gen "Well... What's happened, happened." ("base", xpos="far_left", ypos="head") gen "No need to dwell on it..." ("base", xpos="far_left", ypos="head") - her "[genie_name], the witch hunts were--" ("angry", "base", "base", "mid", cheeks="blush") - gen "Not the witch hunts [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], the witch hunts were--" ("angry", "base", "base", "mid", cheeks="blush") + gen "Not the witch hunts [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Oh... Right..." ("disgust", "base", "base", "mid", cheeks="blush") gen "Well, you've certainly deserved your points." ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") @@ -1226,7 +1226,7 @@ label her_potion_ass_return: gen "That will be all for today..." ("base", xpos="far_left", ypos="head") her "Okay..." ("open", "base", "base", "mid", cheeks="blush") - gen "Until next time [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Until next time [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") diff --git a/game/scripts/characters/hermione/events/potions/breast_expand.rpy b/game/scripts/characters/hermione/events/potions/breast_expand.rpy index 9b29c654..0f051f8f 100644 --- a/game/scripts/characters/hermione/events/potions/breast_expand.rpy +++ b/game/scripts/characters/hermione/events/potions/breast_expand.rpy @@ -26,7 +26,7 @@ label her_potion_breasts_give: with d3 gen "Now then..." ("base", xpos="far_left", ypos="head") else: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") $ current_payout = 20 @@ -77,7 +77,7 @@ label her_potion_breasts_give: gen "..." ("base", xpos="far_left", ypos="head") her "You're teasing me again aren't you?" ("annoyed", "narrow", "annoyed", "R", cheeks="blush") gen "..." ("grin", xpos="far_left", ypos="head") - her "Very funny, [genie_name]..." ("soft", "narrow", "base", "mid", cheeks="blush") + her "Very funny, [name_genie_hermione]..." ("soft", "narrow", "base", "mid", cheeks="blush") her "..." ("angry", "narrow", "base", "R", cheeks="blush") her "So you want me to drink it or--" ("open", "narrow", "base", "mid", cheeks="blush") gen "Yes!" ("base", xpos="far_left", ypos="head") @@ -111,13 +111,13 @@ label her_potion_breasts_give: her "(My breasts ached so much...{w=0.4} I can't believe even the smallest touch almost made me cum on the spot...)" ("base", "narrow", "base", "down", cheeks="blush") her "(If I spend another night relieving myself I'll start running out of excuses on why I'm missing the morning class...)" ("normal", "narrow", "base", "down", cheeks="blush") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "(Although it sure was enjoyable...)" ("base", "narrow", "base", "down") hide screen blktone with d3 - gen "Something wrong, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Something wrong, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "N-- No, it's nothing." ("angry", "narrow", "base", "mid", cheeks="blush") gen "If you say so." ("base", xpos="far_left", ypos="head") @@ -160,8 +160,8 @@ label her_potion_breasts_give: her "..." ("angry", "wide", "base", "stare") #surprised - gen "Something wrong [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "*Ehm*... No [genie_name]... I just thought I felt something for a moment." ("angry", "squint", "base", "mid") + gen "Something wrong [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "*Ehm*... No [name_genie_hermione]... I just thought I felt something for a moment." ("angry", "squint", "base", "mid") gen "Right..." ("base", xpos="far_left", ypos="head") gen "Well, since it didn't appear to work, you're free to go." ("base", xpos="far_left", ypos="head") else: @@ -176,7 +176,7 @@ label her_potion_breasts_give: her "No, that's not,{w=0.2} *Ah*...{w=0.4} it... It's hard to describe." ("open", "happyCl", "worried", "mid", cheeks="blush") gen "In any case, you are free to leave and get back to class." ("base", xpos="far_left", ypos="head") gen "Report back to me when you're done." ("base", xpos="far_left", ypos="head") - her "Y-- Yes [genie_name]..." ("angry", "squint", "base", "mid", cheeks="blush") + her "Y-- Yes [name_genie_hermione]..." ("angry", "squint", "base", "mid", cheeks="blush") her "Can I have my points now?" ("angry", "base", "base", "R") else: gen "That's odd... Something should've happened." ("base", xpos="far_left", ypos="head") @@ -185,9 +185,9 @@ label her_potion_breasts_give: call nar(">You notice Hermione's breasts bounce slightly as the potion begins to take effect.") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "I think you better head to class, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I think you better head to class, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "squint", "base", "mid") + her "Of course, [name_genie_hermione]." ("open", "squint", "base", "mid") her "Can I have my points then?" ("soft", "base", "base", "mid") gen "Certainly." ("base", xpos="far_left", ypos="head") @@ -195,13 +195,13 @@ label her_potion_breasts_give: gen "{number=current_payout} points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout - her "Thank you, [genie_name], I'll head to class then." ("open", "squint", "base", "mid") + her "Thank you, [name_genie_hermione], I'll head to class then." ("open", "squint", "base", "mid") else: #19+ if not her_breast_expand_drank: gen "*Hmm*... Looks like a dud..." ("base", xpos="far_left", ypos="head") - her "A dud, [genie_name]?" ("annoyed", "squint", "base", "mid") - gen "Yes... Well then... You better head back to class for today, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "A dud, [name_genie_hermione]?" ("annoyed", "squint", "base", "mid") + gen "Yes... Well then... You better head back to class for today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Already?" ("annoyed", "squint", "worried", "mid") gen "Yes, I'll let you know once I've brewed another one of these." ("base", xpos="far_left", ypos="head") her "Oh... Alright..." ("open", "narrow", "base", "down") @@ -212,7 +212,7 @@ label her_potion_breasts_give: her "*Aww*... But I was hoping--" ("soft", "squint", "base", "R") her "*Ahem*... I mean-- Alright..." ("open", "narrow", "base", "down") else: - gen "Is it working, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Is it working, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "It's difficult to say, I don't feel any different..." ("open", "squint", "base", "mid") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "Then I maybe it's best you head back to class for today." ("base", xpos="far_left", ypos="head") @@ -221,7 +221,7 @@ label her_potion_breasts_give: gen "{number=current_payout} points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += current_payout - her "Thank you, [genie_name]..." ("open", "base", "base", "mid") #annoyed #blush + her "Thank you, [name_genie_hermione]..." ("open", "base", "base", "mid") #annoyed #blush call her_walk("door") @@ -235,8 +235,8 @@ label her_potion_breasts_give: call her_chibi(flip=False) pause .5 - her "[genie_name]..." ("angry", "squint", "base", "mid", trans=d3) - gen "Yes, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]..." ("angry", "squint", "base", "mid", trans=d3) + gen "Yes, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Just out of curiosity... What was the potion supposed to do?" ("angry", "squint", "base", "mid") menu: @@ -256,7 +256,7 @@ label her_potion_breasts_give: gen "I do, but there's something about a big pair of tits that I find captivating." ("base", xpos="far_left", ypos="head") gen "Besides, wouldn't it be fun to try something different for a change?" ("base", xpos="far_left", ypos="head") her "I guess..." ("upset", "narrow", "base", "R", cheeks="blush") - gen "Anyhow, back to class you go [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Anyhow, back to class you go [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Let me know if there's any developments." ("base", xpos="far_left", ypos="head") "\"It's a secret.\"": @@ -268,15 +268,15 @@ label her_potion_breasts_give: gen "Certainly." ("base", xpos="far_left", ypos="head") gen "Let me know if there's any... developments." ("base", xpos="far_left", ypos="head") her "*Huh*?." ("angry", "squint", "base", "mid") - gen "Nevermind, just get back to class [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nevermind, just get back to class [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Alright." ("open", "base", "base", "R") else: - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") #Hermione turns around call her_chibi(flip=False) - her "Yes, [genie_name]?" ("soft", "base", "base", "mid", trans=d3) + her "Yes, [name_genie_hermione]?" ("soft", "base", "base", "mid", trans=d3) if her_breast_expand_effects_known: gen "Have fun in class." ("grin", xpos="far_left", ypos="head") @@ -286,23 +286,23 @@ label her_potion_breasts_give: call nar(">You watch as Hermione's breasts bounce again.") - gen "*Heh*, sure. Whatever you say, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "*Heh*, sure. Whatever you say, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: # 19+ - her "*Ah* Maybe I will, [genie_name], maybe I will." ("soft", "narrow", "base", "R", cheeks="blush") + her "*Ah* Maybe I will, [name_genie_hermione], maybe I will." ("soft", "narrow", "base", "R", cheeks="blush") gen "That's my girl." ("base", xpos="far_left", ypos="head") gen "Let me know how it went." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]." ("open", "closed", "base", "mid", cheeks="blush") + her "Yes [name_genie_hermione]." ("open", "closed", "base", "mid", cheeks="blush") gen "Dismissed!" ("base", xpos="far_left", ypos="head") else: gen "Make sure to note if there's any... Developments, got it?" ("base", xpos="far_left", ypos="head") - her "*Ah* Yes, [genie_name]." ("soft", "squint", "base", "R") + her "*Ah* Yes, [name_genie_hermione]." ("soft", "squint", "base", "R") call nar(">You watch as Hermione's breasts bounce again.") gen "In details!" ("grin", xpos="far_left", ypos="head") gen "And If so, report to me as soon as you're done with your classes." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "closed", "base", "mid") + her "Of course, [name_genie_hermione]." ("open", "closed", "base", "mid") #Hermione leaves call her_walk(action="leave") @@ -328,7 +328,7 @@ label her_potion_breasts_give: call ctc if not her_breast_expand_drank: - her "[genie_name]... This potion..." ("soft", "squint", "base", "mid") + her "[name_genie_hermione]... This potion..." ("soft", "squint", "base", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") call nar(">Suddenly Hermione jumps slightly and a shocked expression spreads across her face.") else: @@ -343,9 +343,9 @@ label her_potion_breasts_give: her "*Ehm*..." ("angry", "narrow", "base", "mid") her "You know, *Ah*...{w=0.4} I don't feel that great so I think I'll just head to my dorm for today." ("angry", "closed", "base", "mid") - gen "Are you sure? It's not very like you to miss class, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Are you sure? It's not very like you to miss class, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Ah*...{w=0.4} Yes, I--{w=0.2} I'm sure..." ("open", "closed", "worried", "mid", cheeks="blush") - gen "Very well [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "B-- Bye then!" ("angry", "squint", "base", "mid", cheeks="blush") #Hermione leaves @@ -369,7 +369,7 @@ label her_potion_breasts_give: if not her_breast_expand_drank: if her_whoring < 19: - her "I don't think so [genie_name]... You're only paying me for drinking the potion." ("angry", "narrow", "base", "mid") + her "I don't think so [name_genie_hermione]... You're only paying me for drinking the potion." ("angry", "narrow", "base", "mid") if hermione.is_any_worn("top", "bra"): her "If you expected to see me without anything covering them then you should've said so at the start." ("angry", "closed", "base", "mid") gen "Oh, I didn't think that would be necessary is all." ("base", xpos="far_left", ypos="head") @@ -386,7 +386,7 @@ label her_potion_breasts_give: her "If you expected me to give you a better view then you should've said so at the start." ("angry", "closed", "base", "mid") gen "If you say so... You won't really have much choice in a minute or two once that potion kicks in." ("base", xpos="far_left", ypos="head") her "What's that's supposed to mean?" ("open", "narrow", "base", "mid") - gen "You'll just have to wait and find out, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You'll just have to wait and find out, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Well whatever it is, it better happen soon otherwise I'm going--" ("open", "closed", "base", "mid") call nar(">You notice Hermione's breasts jiggle slightly as the potion begins taking effect.") call nar(">After a brief moment of confusion Hermione then continues...") @@ -432,7 +432,7 @@ label her_potion_breasts_give: with d3 gen "You know what they say, can't have too much of a good thing!" ("grin", xpos="far_left", ypos="head") - her "It's the other way around [genie_name]!" ("angry", "squint", "base", "mid") + her "It's the other way around [name_genie_hermione]!" ("angry", "squint", "base", "mid") gen "It is? I prefer my version." ("base", xpos="far_left", ypos="head") her "So that's it then, the potion is meant to make my breasts a bit bigger?" ("angry", "wink", "base", "mid") gen "It was meant to make them {i}a lot{/i} bigger..." ("base", xpos="far_left", ypos="head") @@ -496,7 +496,7 @@ label her_potion_breasts_give: her "Of course you did..." ("angry", "base", "base", "mid", cheeks="blush") #blush gen "Did what?" ("grin", xpos="far_left", ypos="head") her "My breasts... Surely you knew that this potion would make them grow..." ("angry", "closed", "base", "mid", cheeks="blush") - gen "Looks like your regular size to me [hermione_name]..." ("grin", xpos="far_left", ypos="head") + gen "Looks like your regular size to me [name_hermione_genie]..." ("grin", xpos="far_left", ypos="head") her "*Hmm*... I thought my breasts were already a good enough size..." ("annoyed", "narrow", "base", "mid", cheeks="blush") #annoyed gen "Can't have too much of a good thing." ("base", xpos="far_left", ypos="head") her "That's not--" ("open", "narrow", "base", "mid", cheeks="blush") @@ -574,7 +574,7 @@ label her_potion_breasts_give: her "..." ("disgust", "narrow", "base", "R", cheeks="blush") gen "Looks like I've brewed it just right..." ("grin", xpos="far_left", ypos="head") her "..." ("annoyed", "happyCl", "base", "down", cheeks="blush") #Happy closed - gen "Don't you want to look at your new breasts [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Don't you want to look at your new breasts [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "... Oh, thank Merlin..." ("angry", "narrow", "base", "down", cheeks="blush") her "I was readying myself for them to get even--" ("angry", "narrow", "worried", "down", cheeks="blush") @@ -609,7 +609,7 @@ label her_potion_breasts_give: her "Thanks you..." ("base", "narrow", "base", "mid", cheeks="blush") her "..." ("base", "narrow", "base", "mid", cheeks="blush") her "Nothing's happening..." ("upset", "narrow", "base", "down", cheeks="blush") #annoyed - gen "Patience, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Patience, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "..." ("normal", "narrow", "worried", "down", cheeks="blush") her "This potion is taking way too long--" ("annoyed", "narrow", "annoyed", "mid", cheeks="blush") @@ -703,7 +703,7 @@ label her_potion_breasts_give: her "If touching my breasts is what you want then go ahead..." ("open", "closed", "base", "mid", cheeks="blush") her "I don't mind..." ("base", "closed", "base", "mid", cheeks="blush") # smirk - gen "Great! Get up here [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "Great! Get up here [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") show screen blkfade @@ -721,7 +721,7 @@ label her_potion_breasts_give: if not her_breast_expand_groped: her "!!!" ("angry", "narrow", "worried", "down", cheeks="blush", xpos="mid", ypos="base", trans=d3) - her "Please be gentle [genie_name]... The potion made them even more sensitive than usual." ("angry", "squint", "base", "mid", cheeks="blush") + her "Please be gentle [name_genie_hermione]... The potion made them even more sensitive than usual." ("angry", "squint", "base", "mid", cheeks="blush") gen "{i}Even more{/i}?" ("base", xpos="far_left", ypos="head") her "I mean--" ("clench", "squint", "base", "R", cheeks="blush") @@ -747,8 +747,8 @@ label her_potion_breasts_give: if her_whoring < 19: #Under blowjob level her "*Ahhhh*!!!" ("scream", "wide", "base", "down", cheeks="blush") her "They've grown even bigger!" ("angry", "base", "base", "down", cheeks="blush") - gen "Don't worry about it [hermione_name], think about how you're helping your precious {i}Gryffindeer{/i}." ("base", xpos="far_left", ypos="head") - her "It's Gryffindor, [genie_name]!" ("open", "happyCl", "base", "mid", cheeks="blush") + gen "Don't worry about it [name_hermione_genie], think about how you're helping your precious {i}Gryffindeer{/i}." ("base", xpos="far_left", ypos="head") + her "It's Gryffindor, [name_genie_hermione]!" ("open", "happyCl", "base", "mid", cheeks="blush") her "*Ah*..." ("soft", "happyCl", "base", "mid", cheeks="blush") @@ -783,7 +783,7 @@ label her_potion_breasts_give: gen "Real weighty these things aren't they?" ("base", xpos="far_left", ypos="head") if her_whoring < 19: - her "[genie_name]... That's not--" ("angry", "squint", "base", "stare", cheeks="blush") + her "[name_genie_hermione]... That's not--" ("angry", "squint", "base", "stare", cheeks="blush") else: her "Oh... Yes..." ("base", "closed", "base", "mid", cheeks="blush") @@ -799,12 +799,12 @@ label her_potion_breasts_give: if her_whoring < 21: ## Doesn't cum ## call nar(">You take Hermione's breasts back into your hands and continue massaging.") - gen "Now... Stay still, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Now... Stay still, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call nar(">You start rolling Hermione's nipples in between your fingers.") her "What... What are you doing?" ("angry", "narrow", "base", "down", cheeks="blush") #blush - gen "I'm touching your breasts [hermione_name], wasn't that what we agreed on?" ("base", xpos="far_left", ypos="head") + gen "I'm touching your breasts [name_hermione_genie], wasn't that what we agreed on?" ("base", xpos="far_left", ypos="head") her "Yes but--" ("clench", "closed", "worried", "mid", cheeks="blush") #blush call nar(">You resume running your fingers across her breasts.") @@ -817,7 +817,7 @@ label her_potion_breasts_give: her "*Oohh*..." ("angry", "closed", "worried", "mid", cheeks="blush") #pleasure #still eyes closed gen "..." ("grin", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "down", cheeks="blush") #Wide eyed - her "Don't pinch them, [genie_name]!" ("angry", "narrow", "base", "mid", cheeks="blush") + her "Don't pinch them, [name_genie_hermione]!" ("angry", "narrow", "base", "mid", cheeks="blush") gen "It looked like you enjoyed it though..." ("base", xpos="far_left", ypos="head") her "I did not!" ("angry", "narrow", "base", "R", cheeks="blush") #blush gen "Very well... I suppose that's it for today then..." ("base", xpos="far_left", ypos="head") @@ -833,7 +833,7 @@ label her_potion_breasts_give: hide screen blkfade with d5 - gen "Good work, [hermione_name]... {number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") + gen "Good work, [name_hermione_genie]... {number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") her "{size=-4}I'm glad at least one of us got some gratification out of it...{/size}" ("normal", "narrow", "base", "down", cheeks="blush") # Annoyed that Genie cut it short if not her_breast_expand_drank: @@ -893,7 +893,7 @@ label her_potion_breasts_give: gen "No buts." ("base", xpos="far_left", ypos="head") gen "Not this time at least." ("grin", xpos="far_left", ypos="head") her "*Sigh*... It's as if you are obsessed with all things sexual." ("base", "narrow", "base", "R") - gen "Only when it's about you my dear [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Only when it's about you my dear [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("base", "narrow", "base", "R", cheeks="blush") # Blushes her "I'll get going then..." ("open", "base", "base", "mid", cheeks="blush") gen "That you shall." ("base", xpos="far_left", ypos="head") @@ -944,7 +944,7 @@ label her_potion_breasts_give: gen "Feeling a little aroused are we?" ("grin", xpos="far_left", ypos="head") her "..." ("base", "narrow", "base", "stare", cheeks="blush") - gen "Are you paying attention, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Are you paying attention, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Yes?" ("angry", "squint", "base", "mid", cheeks="blush") call nar(">You pinch Hermione's nipples, making her yelp in surprise.") @@ -997,7 +997,7 @@ label her_potion_breasts_give: #Hermione stands in front of desk - gen "Fantastic work, [hermione_name]... {number=current_payout} points to Gryffindor!" ("grin", xpos="far_left", ypos="head") + gen "Fantastic work, [name_hermione_genie]... {number=current_payout} points to Gryffindor!" ("grin", xpos="far_left", ypos="head") her "Thank you..." ("base", "narrow", "base", "mid", cheeks="blush") # Still dazed pause.2 @@ -1051,9 +1051,9 @@ label her_potion_breasts_return: her "The Slytherin students kept pointing and laughing at me as I was trying to prepare my concoctions..." ("open", "squint", "base", "mid", cheeks="blush") her "Asking me if \"I had dipped my fat udders in a swelling solution\"..." ("disgust", "narrow", "annoyed", "R", cheeks="blush") her "*Ugh!* The nerve of these guys!" ("disgust", "narrow", "annoyed", "mid", cheeks="blush") - gen "Surely the ridicule of some Slytherin students isn't enough for you to lose your focus, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Surely the ridicule of some Slytherin students isn't enough for you to lose your focus, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I thought a top student such as yourself would be able to keep your composure." ("base", xpos="far_left", ypos="head") - her "The Slytherin students' snide remarks is not what bothers me, [genie_name]." ("angry", "narrow", "base", "R", cheeks="blush") + her "The Slytherin students' snide remarks is not what bothers me, [name_genie_hermione]." ("angry", "narrow", "base", "R", cheeks="blush") her "But it's hard to focus on the precision needed for potion brewing when everyone in the room is staring at you." ("angry", "closed", "base", "mid", cheeks="blush") her "I could barely see the cutting board as I was preparing my ingredients..." ("angry", "narrow", "base", "down", cheeks="blush") gen "(Even then I bet she was the most focused of all of them...)" ("base", xpos="far_left", ypos="head") @@ -1071,17 +1071,17 @@ label her_potion_breasts_return: gen "{size=-3}As if you wouldn't just come here and earn them back afterwards...{/size}" ("base", xpos="far_left", ypos="head") her "What did you say?" ("angry", "base", "base", "mid", cheeks="blush") gen "Nothing..." ("base", xpos="far_left", ypos="head") - gen "Very well then, [hermione_name]. You've done what I asked of you..." ("base", xpos="far_left", ypos="head") + gen "Very well then, [name_hermione_genie]. You've done what I asked of you..." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "R", cheeks="blush") gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "...{w=0.4} Thank you, [genie_name]." ("annoyed", "closed", "base", "mid", cheeks="blush") + her "...{w=0.4} Thank you, [name_genie_hermione]." ("annoyed", "closed", "base", "mid", cheeks="blush") her "That will be all then, yes?" ("normal", "closed", "base", "mid", cheeks="blush") gen "Yes, that shall do for now... Unless..." ("base", xpos="far_left", ypos="head") her "..." ("normal", "narrow", "base", "mid") gen "On second thought, I'll let you rest...{w=0.4} Off you go!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("open", "closed", "base", "mid") + her "Thank you, [name_genie_hermione]..." ("open", "closed", "base", "mid") else: #Repeat - gen "[hermione_name]... Had a fun day in class?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]... Had a fun day in class?" ("base", xpos="far_left", ypos="head") her "How did you manage to convince me of doing this again..." ("angry", "narrow", "base", "mid", trans=d3) gen "Convince you to do what?" ("base", xpos="far_left", ypos="head") her "Go to class like that!" ("annoyed", "narrow", "worried", "mid") @@ -1114,7 +1114,7 @@ label her_potion_breasts_return: gen "Other girls?" her "Oh... I meant the ones with... *Ehm*..." ("angry", "squint", "worried", "mid", cheeks="blush") gen "Giant tits?" - her "[genie_name]!" ("angry", "happyCl", "base", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "happyCl", "base", "mid", cheeks="blush") gen "..." her "Yes... That." ("angry", "narrow", "base", "down", cheeks="blush") her "Surely they must be getting stared at constantly." ("clench", "closed", "base", "mid") @@ -1129,7 +1129,7 @@ label her_potion_breasts_return: her "Brewing was the least of my worries..." ("angry", "narrow", "annoyed", "mid", cheeks="blush") her "Even more of the students took notice of my condition this time around." ("open", "narrow", "annoyed", "R", cheeks="blush") her "I pretty much gave up trying to grind up my shrivel figs after realising how it was making my breasts jiggle." ("open", "narrow", "annoyed", "down", cheeks="blush") - gen "Giving up during a lecture? That doesn't sound very much like you, [hermione_name]..." + gen "Giving up during a lecture? That doesn't sound very much like you, [name_hermione_genie]..." her "One of the Slytherin boys watching me was masturbating for crying out loud!" ("scream", "closed", "annoyed", "mid", cheeks="blush") gen "Really?" her "Yes!" ("angry", "base", "annoyed", "mid", cheeks="blush") @@ -1140,13 +1140,13 @@ label her_potion_breasts_return: her "But of course everyone else's eyes were on me so he got away with it..." ("open", "closed", "annoyed", "mid", cheeks="blush") her "I couldn't believe it... He was barely every trying to conceal it." ("angry", "narrow", "annoyed", "mid", cheeks="blush") gen "Are you sure he wasn't just scratching--" - her "No [genie_name]... It was out!" ("open", "base", "annoyed", "mid", cheeks="blush") + her "No [name_genie_hermione]... It was out!" ("open", "base", "annoyed", "mid", cheeks="blush") her "If I was stood any closer to him I'm sure he could've hit me with it." ("open", "narrow", "annoyed", "R", cheeks="blush") gen "(Amateur...)" gen "Wait, when you say \"it\"..." her "You know exactly what I mean..." ("disgust", "narrow", "annoyed", "R", cheeks="blush") her "If seeing him do that wasn't bad enough, I was also forced to clean it off the floor afterwards." ("disgust", "narrow", "annoyed", "down", cheeks="blush") - gen "Very admirable of you [hermione_name]... Boys will be boys after all, you know how messy they can be." + gen "Very admirable of you [name_hermione_genie]... Boys will be boys after all, you know how messy they can be." her "I didn't volunteer! Snape-- I mean... Professor Snape made me do it." ("angry", "squint", "base", "mid", cheeks="blush") gen "I'm sure he didn't know... He probably just thought someone spilled their potion again." her "I'm sure..." ("annoyed", "narrow", "annoyed", "R") @@ -1155,14 +1155,14 @@ label her_potion_breasts_return: gen "*Hmm*... That's a pretty vague reason... He should work on that." her "As if it's not bad enough that he's favouring students of his own house." ("angry", "narrow", "annoyed", "R") her "Maybe that's it... He probably saw the boy doing it, and revelled in the thought of making me stay and--" ("disgust", "squint", "annoyed", "R") - gen "[hermione_name]..." + gen "[name_hermione_genie]..." gen "I think I've heard enough..." hide cg with fade her "..." ("angry", "narrow", "worried", "R", cheeks="blush") - her "So, am I free to go, [genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") + her "So, am I free to go, [name_genie_hermione]?" ("angry", "narrow", "base", "mid", cheeks="blush") gen "Yes, you may leave for today..." ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") her "... Thanks." ("open", "narrow", "worried", "R", cheeks="blush") @@ -1171,13 +1171,13 @@ label her_potion_breasts_return: $ her_breast_expand_pub_high_reputation_done = True - her "Hello [genie_name]..." ("open", "base", "base", "mid", cheeks="blush") + her "Hello [name_genie_hermione]..." ("open", "base", "base", "mid", cheeks="blush") gen "*Mmm*... What?" ("base", xpos="far_left", ypos="head") - gen "Oh it's you, [hermione_name]... Forgive me, I was just... meditating." ("base", xpos="far_left", ypos="head") + gen "Oh it's you, [name_hermione_genie]... Forgive me, I was just... meditating." ("base", xpos="far_left", ypos="head") gen "So... Got anything to tell me?" ("base", xpos="far_left", ypos="head") gen "I hope your lessons went well." ("base", xpos="far_left", ypos="head") her "It went as well as can be expected given that I've got these things to try and work around..." ("open", "narrow", "base", "R", cheeks="blush") #blush, looking away - gen "Details [hermione_name]... I want to hear everything about your day." ("base", xpos="far_left", ypos="head") + gen "Details [name_hermione_genie]... I want to hear everything about your day." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "base", "down", cheeks="blush") her "Well, I left your office--" ("open", "narrow", "base", "down", cheeks="blush") @@ -1211,7 +1211,7 @@ label her_potion_breasts_return: her "He must've seen the whole thing because he really made the lesson even more difficult for me than usual." ("open", "narrow", "annoyed", "R", cheeks="blush") gen "Severus? I'm sure that whatever he did, he meant well... He is here to help you learn after all." her "Some help he is... He went out of his way to degrade me in front of the entire class!" ("soft", "narrow", "annoyed", "mid", cheeks="blush") - gen "Surely you must be exaggerating, [hermione_name]." + gen "Surely you must be exaggerating, [name_hermione_genie]." gen "Professor Snape is an esteemed {i}Witcher{/i}--" gen "--Or a Lich, he does seem kind of pale..." her "I'll admit, it wasn't bad at first..." ("open", "closed", "annoyed", "mid", cheeks="blush") @@ -1231,7 +1231,7 @@ label her_potion_breasts_return: her "She was--" ("angry", "base", "base", "mid", cheeks="blush") gen "What happened next?" her "*Ahem*... Well, the lesson was almost over... But that's when {i}it{/i} happened..." ("angry", "narrow", "base", "mid", cheeks="blush") - gen "{i}It{/i}? [hermione_name]?" + gen "{i}It{/i}? [name_hermione_genie]?" her "Yes... I was doing my best to follow the potion recipe, but I must have gotten something wrong." ("angry", "narrow", "base", "down", cheeks="blush") her "Maybe I was distracted... Or maybe I dropped something important..." ("angry", "narrow", "base", "down", cheeks="blush") gen "Maybe you just were horny!" @@ -1255,10 +1255,10 @@ label her_potion_breasts_return: her "I was completely covered in the remains of my potion, face blackened by soot, and there was a knot of goosegrass in my hair." ("disgust", "squint", "base", "mid", cheeks="blush") her "And the explosion had also destroyed the only thing keeping my dignity intact--" ("angry", "narrow", "base", "down", cheeks="blush") gen "Was it your twisted sense of justice?" - her "No, [genie_name], it was my vest! Which caused my breasts to flop out, giving the entire class a full view..." ("angry", "narrow", "base", "mid", cheeks="blush") + her "No, [name_genie_hermione], it was my vest! Which caused my breasts to flop out, giving the entire class a full view..." ("angry", "narrow", "base", "mid", cheeks="blush") her "I must have looked ridiculous!" ("open", "closed", "annoyed", "mid", cheeks="blush") gen "Don't be too hard on yourself, I am partially to blame for your breasts being seen in public, I admit--" - her "I'm talking about the soot on my face, [genie_name]." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "I'm talking about the soot on my face, [name_genie_hermione]." ("open", "narrow", "annoyed", "mid", cheeks="blush") gen "Oh..." show her_potions_public_expand_breasts_a2 as cg @@ -1286,36 +1286,36 @@ label her_potion_breasts_return: gen "What about that Ravenclaw girl, the one that has been staring at you the entire time?" ("base", xpos="far_left", ypos="head") gen "You're saying you didn't enjoy that?" ("base", xpos="far_left", ypos="head") her "W-- Well maybe, but I'm not--" ("angry", "base", "worried", "down", cheeks="blush") - gen "Just admit it, [hermione_name], you enjoyed being seen in public, you just didn't like the circumstances in which it has happened." ("base", xpos="far_left", ypos="head") + gen "Just admit it, [name_hermione_genie], you enjoyed being seen in public, you just didn't like the circumstances in which it has happened." ("base", xpos="far_left", ypos="head") her "..." ("angry", "narrow", "base", "R", cheeks="blush") her "You are not wrong. Still, what Professor Snape did was unnecessary..." ("annoyed", "closed", "base", "mid", cheeks="blush") gen "I suppose I shall have to talk to Snape about this. I can't have him degrading my star pupil in front of all her classmates." ("base", xpos="far_left", ypos="head") her "You will?" ("angry", "base", "base", "mid", cheeks="blush") gen "Don't worry, I will explain to him that the mistake was my own doing. It won't happen again, I assure you." ("base", xpos="far_left", ypos="head") her "Oh..." ("angry", "narrow", "base", "down", cheeks="blush") - her "*Ehm*... There's no need to go that far [genie_name]." ("open", "squint", "base", "mid", cheeks="blush") + her "*Ehm*... There's no need to go that far [name_genie_hermione]." ("open", "squint", "base", "mid", cheeks="blush") her "I'm fine, really!" ("angry", "squint", "worried", "mid", cheeks="blush") - gen "No, no... This one's on me [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "No, no... This one's on me [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "I never should have asked you to take that concoction and head to class." ("base", xpos="far_left", ypos="head") her "I assure you it is--" ("mad", "base", "worried", "mid", cheeks="blush") gen "Professor Snape is the potions master after all, if he thinks these types of potions are dangerous--" ("base", xpos="far_left", ypos="head") her "Professor Dumbledore!" ("scream", "happyCl", "base", "mid", cheeks="blush") #closed #yelling #blush - her "I-I mean, [genie_name]..." ("angry", "narrow", "base", "down", cheeks="blush") # apologetic + her "I-I mean, [name_genie_hermione]..." ("angry", "narrow", "base", "down", cheeks="blush") # apologetic gen "Oh alright, if you don't want me to interfere then I guess I won't." ("base", xpos="far_left", ypos="head") her "Thank you." ("open", "squint", "base", "R", cheeks="blush") # smile :) gen "I guess we're done here." ("base", xpos="far_left", ypos="head") - gen "Well done [hermione_name], {number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") + gen "Well done [name_hermione_genie], {number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") her "May I please be excused?" ("angry", "closed", "base", "mid", cheeks="blush") gen "Somewhere you need to be?" ("base", xpos="far_left", ypos="head") her "Yes... I need to... *Ehm*..." ("disgust", "squint", "base", "R", cheeks="blush") gen "I see. Some time alone in your bed is exactly what you need I think." ("base", xpos="far_left", ypos="head") her "That's--" ("angry", "base", "base", "mid", cheeks="blush") gen "We both know I'm right, there's no point hiding it." ("base", xpos="far_left", ypos="head") - gen "Talk to you later, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night then [genie_name]..." ("angry", "narrow", "base", "R", cheeks="blush") # blushing + gen "Talk to you later, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night then [name_genie_hermione]..." ("angry", "narrow", "base", "R", cheeks="blush") # blushing else: #Repeat - her "Hello [genie_name]..." ("open", "squint", "base", "R") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Hello [name_genie_hermione]..." ("open", "squint", "base", "R") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "How's your day been?" ("base", xpos="far_left", ypos="head") her "Pretty good thanks." ("open", "closed", "base", "mid") her "Can't complain, you know." ("base", "narrow", "base", "down") @@ -1326,14 +1326,14 @@ label her_potion_breasts_return: her "Being gawked over by the boys, or being stared at jealously by the girls is quite the confidence boost." ("open", "squint", "base", "mid", cheeks="blush") her "Although I think it's worth considering putting some sort of countermeasures up to prevent people from walking into things as much." ("base", "narrow", "base", "R", cheeks="blush") her "If a big pair of breasts is enough to have students knock over suits of armours or smash into walls, it's only a matter of time until someone seriously hurts themselves." ("soft", "squint", "base", "R", cheeks="blush") - gen "That's easier said than done [hermione_name]... I'm not sure if you noticed, but this castle is made out of stone." ("base", xpos="far_left", ypos="head") + gen "That's easier said than done [name_hermione_genie]... I'm not sure if you noticed, but this castle is made out of stone." ("base", xpos="far_left", ypos="head") her "Of course I have, I'm just saying..." ("annoyed", "narrow", "base", "mid", cheeks="blush") her "At least if we put some cushioning charms down it wouldn't be as bad." ("open", "closed", "base", "mid", cheeks="blush") gen "Or perhaps if you didn't entrance people with those big titties then they would pay attention to where they were going." ("base", xpos="far_left", ypos="head") her "*Hmm*... Perhaps..." ("base", "narrow", "base", "R", cheeks="blush") gen "Anyway... Enough about outdated safety standards." ("base", xpos="far_left", ypos="head") gen "What lessons did you have today?" ("base", xpos="far_left", ypos="head") - her "Oh... We had double potions today, [genie_name]." ("open", "squint", "base", "mid", cheeks="blush") + her "Oh... We had double potions today, [name_genie_hermione]." ("open", "squint", "base", "mid", cheeks="blush") gen "Good... I mean, alright." ("base", xpos="far_left", ypos="head") gen "So how did that go?" ("base", xpos="far_left", ypos="head") her "*Hmm*... Fine I suppose..." ("open", "narrow", "base", "down", cheeks="blush") #annoyed @@ -1381,22 +1381,22 @@ label her_potion_breasts_return: hide cg with fade - gen "Sounds to me like you've earned yourself some points today, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Sounds to me like you've earned yourself some points today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Oh... Yes, the points..." ("grin", "narrow", "base", "down", cheeks="blush") gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("grin", "closed", "base", "mid", cheeks="blush") + her "Thank you [name_genie_hermione]..." ("grin", "closed", "base", "mid", cheeks="blush") gen "Before you leave... Just out of curiosity..." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]?" ("open", "squint", "base", "mid", cheeks="blush") + her "Yes [name_genie_hermione]?" ("open", "squint", "base", "mid", cheeks="blush") gen "What happened to that top of yours?" ("base", xpos="far_left", ypos="head") her "Oh... Well, apparently potion damage is quite common so I was able to procure a new set." ("open", "squint", "base", "mid") gen "Really?" ("base", xpos="far_left", ypos="head") her "Yes, I was told this was the fourth time this week!" ("open", "squint", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") gen "(Better not mention that in my report...)" ("base", xpos="far_left", ypos="head") - gen "Very well [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "That will do for today." ("base", xpos="far_left", ypos="head") - her "Alright, good night then [genie_name]." ("base", "base", "base", "mid") - gen "Good night [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Alright, good night then [name_genie_hermione]." ("base", "base", "base", "mid") + gen "Good night [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") diff --git a/game/scripts/characters/hermione/events/potions/check.rpy b/game/scripts/characters/hermione/events/potions/check.rpy index 83ca91f6..befd486a 100644 --- a/game/scripts/characters/hermione/events/potions/check.rpy +++ b/game/scripts/characters/hermione/events/potions/check.rpy @@ -1,7 +1,7 @@ label her_potion_check: - gen "[hermione_name]." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("soft", "base", "base", "mid", xpos="mid", ypos="base", trans=d5) + gen "[name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("soft", "base", "base", "mid", xpos="mid", ypos="base", trans=d5) gen "I'd like you to try out some potions of mine." ("base", xpos="far_left", ypos="head") her "Potions?" ("open", "squint", "base", "mid") her "What kind of potions are we talking about?" ("open", "squint", "base", "mid") diff --git a/game/scripts/characters/hermione/events/potions/polyjuice_cat.rpy b/game/scripts/characters/hermione/events/potions/polyjuice_cat.rpy index d61860c8..b8005d37 100644 --- a/game/scripts/characters/hermione/events/potions/polyjuice_cat.rpy +++ b/game/scripts/characters/hermione/events/potions/polyjuice_cat.rpy @@ -24,8 +24,8 @@ label her_potion_cat_give: with d3 gen "Now then..." ("base", xpos="far_left", ypos="head") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("open", "base", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("open", "base", "base", "mid") if not her_polyjuice_drank: $ her_polyjuice_drank = True @@ -42,9 +42,9 @@ label her_potion_cat_give: gen "Twenty points." ("base", xpos="far_left", ypos="head") her "*Hmm*...{w=0.4} Can't you tell me what kind of potion it is?" ("annoyed", "wink", "base", "mid") her "Polyjuice? Babbling Beverage? Shrinking solution?" ("open", "squint", "base", "mid") - gen "That's going to have to stay a secret, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "That's going to have to stay a secret, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "down") - gen "Well [hermione_name], what do you say? Will you drink a harmless little potion?" ("base", xpos="far_left", ypos="head") + gen "Well [name_hermione_genie], what do you say? Will you drink a harmless little potion?" ("base", xpos="far_left", ypos="head") gen "For Gryffindor?" ("base", xpos="far_left", ypos="head") her "Fine..." ("open", "narrow", "base", "down") @@ -75,7 +75,7 @@ label her_potion_cat_give: if her_whoring < 16: her "Do I have to?" ("angry", "narrow", "base", "mid") - gen "You don't have to do anything [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You don't have to do anything [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "But if you do decide to, it would make me very happy...." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "squint", "base", "mid") gen "And there's some points in it for you as well..." ("base", xpos="far_left", ypos="head") @@ -116,13 +116,13 @@ label her_potion_cat_give: gen "Never mind..." ("base", xpos="far_left", ypos="head") her "What was it supposed to do?" ("angry", "happy", "base", "mid") gen "There's no point in telling you now. It was going to be a surprise." ("base", xpos="far_left", ypos="head") - gen "You may head back to class, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You may head back to class, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Oh, okay then." ("soft", "happy", "base", "mid") gen "Twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 20 - her "Thank you [genie_name]." ("base", "base", "base", "mid") + her "Thank you [name_genie_hermione]." ("base", "base", "base", "mid") else: her "Here we go again I suppose..." ("angry", "narrow", "base", "down") her "Nothing's happening..." ("disgust", "narrow", "base", "down") @@ -131,11 +131,11 @@ label her_potion_cat_give: if her_reputation < 15: #Before she'd enjoy to have her look like a cat in class her "Great... Can't wait for the effects to kick in... It was bad enough the first time..." ("angry", "narrow", "base", "mid", cheeks="blush") - gen "I'm sure ten extra points should make it worth it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I'm sure ten extra points should make it worth it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Thirty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 30 - her "... Thank you [genie_name]." ("open", "squint", "base", "mid") + her "... Thank you [name_genie_hermione]." ("open", "squint", "base", "mid") else: #When she'd enjoy showing herself off as a cat in class her "Okay then..." ("open", "narrow", "base", "down", cheeks="blush") @@ -146,7 +146,7 @@ label her_potion_cat_give: gen "Twenty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 20 - her "Thank you [genie_name]." ("open", "squint", "base", "mid") + her "Thank you [name_genie_hermione]." ("open", "squint", "base", "mid") call her_walk(action="leave") $ cat_potion_ITEM.set_active("hermione") @@ -169,12 +169,12 @@ label her_potion_cat_return: call ctc gen "Nice ears..." ("base", xpos="far_left", ypos="head") - her "How could you do this to me [genie_name]?" ("open", "squint", "annoyed", "mid") + her "How could you do this to me [name_genie_hermione]?" ("open", "squint", "annoyed", "mid") call play_music("hermione") her "I can't believe you'd try and turn me into a cat in the middle of class!" ("upset", "squint", "annoyed", "mid") - gen "I didn't try to turn you into a cat, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I didn't try to turn you into a cat, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Then why do I have ears and a tail?" ("disgust", "base", "annoyed", "mid") menu: @@ -227,11 +227,11 @@ label her_potion_cat_return: menu: "-Let her go-": - gen "Very well, [hermione_name]. You've done what I've asked of you so be a good kitty and go to bed." ("base", xpos="far_left", ypos="head") + gen "Very well, [name_hermione_genie]. You've done what I've asked of you so be a good kitty and go to bed." ("base", xpos="far_left", ypos="head") her "..." ("annoyed", "narrow", "base", "mid") gen "Unless there was anything else?" ("base", xpos="far_left", ypos="head") her "No..." ("open", "closed", "base", "mid") - her "Goodnight then, [genie_name]..." ("open", "base", "base", "mid") + her "Goodnight then, [name_genie_hermione]..." ("open", "base", "base", "mid") call her_walk(action="leave") $ hermione.equip(her_outfit_last) @@ -245,7 +245,7 @@ label her_potion_cat_return: gen "Not yet." ("base", xpos="far_left", ypos="head") gen "I do believe we could do better than this." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "base", "mid") + her "[name_genie_hermione]?" ("angry", "base", "base", "mid") call nar(">You bring out another polyjuice potion and swirl it in front of Hermione.") if not her_polyjuice_cat_stage_two: #Not turned her into more of a cat $ her_polyjuice_cat_stage_two = True @@ -303,7 +303,7 @@ label her_potion_cat_return: pause .5 her "My legs!" ("angry", "wide", "base", "down") gen "{size=+2}*HA-HA-HA*!!{/size}" ("grin", xpos="far_left", ypos="head") - her "[genie_name]! Would you stop laughing?" ("disgust", "squint", "annoyed", "mid") + her "[name_genie_hermione]! Would you stop laughing?" ("disgust", "squint", "annoyed", "mid") menu: "-Tease her-": gen "*Ha-hah*! Or what? Going to scratch me?" ("grin", xpos="far_left", ypos="head") @@ -376,7 +376,7 @@ label her_potion_cat_return: her "" ("clench", "narrow", "base", "down", cheeks="blush") gen "*Hah-ha-Hah*!" ("grin", xpos="far_left", ypos="head") her "There, I've drank it..." ("angry", "base", "base", "mid", cheeks="blush") - her "[genie_name]!" + her "[name_genie_hermione]!" gen "*Ha-Ha-Ha*!" ("grin", xpos="far_left", ypos="head") gen "Your face!" ("grin", xpos="far_left", ypos="head") her "My... What's wrong with my--" ("angry", "narrow", "base", "down", cheeks="blush") @@ -434,7 +434,7 @@ label her_potion_cat_return: if not hg_blowjob.trigger: #Fail her "You want me to--" ("angry", "base", "base", "mid") - her "[genie_name]!" ("angry", "base", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "base", "annoyed", "mid", cheeks="blush") gen "What?" ("base", xpos="far_left", ypos="head") if her_whoring < 19: @@ -485,7 +485,7 @@ label her_potion_cat_return: her "" ("base", "narrow", "base", "mid", cheeks="blush") call ctc gen "Purrfect... Now get that tail over here." ("grin", xpos="far_left", ypos="head") - her "Yes, [genie_name]." ("open", "squint", "base", "mid", cheeks="blush") + her "Yes, [name_genie_hermione]." ("open", "squint", "base", "mid", cheeks="blush") #Chibi walks over and fade to black @@ -518,7 +518,7 @@ label her_potion_cat_return: call her_chibi_scene("bj_pause", trans=d3) her "*Ah*..." ("open", "squint", "base", "mid", cheeks="blush") - her "What do you mean, [genie_name]?" ("angry", "squint", "base", "mid") + her "What do you mean, [name_genie_hermione]?" ("angry", "squint", "base", "mid") gen "It felt like Velcro!" ("angry", xpos="far_left", ypos="head") her "You're the one that asked me to do this... A cat's tongue is a lot rougher than a human." ("mad", "narrow", "base", "mid") her "Do you want me to stop?" ("open", "wink", "base", "mid") @@ -556,9 +556,9 @@ label her_potion_cat_return: call her_chibi_scene("bj_pause", trans=d3) - her "I can't help it [genie_name], whenever anything touches my ears I just purr." ("angry", "squint", "base", "mid", cheeks="blush") + her "I can't help it [name_genie_hermione], whenever anything touches my ears I just purr." ("angry", "squint", "base", "mid", cheeks="blush") gen "It feels amazing! Now cock back in the mouth, girl." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]." ("angry", "narrow", "base", "mid", cheeks="blush") + her "Yes [name_genie_hermione]." ("angry", "narrow", "base", "mid", cheeks="blush") call her_chibi_scene("bj", trans=d3) @@ -646,7 +646,7 @@ label her_potion_cat_return: gen "Well, you've certainly earned your points." ("base", xpos="far_left", ypos="head") gen "Forty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 40 - her "Thank you [genie_name]... Will that be all?" ("base", "happy", "base", "mid", xpos="mid", ypos="base", trans=dissolve) + her "Thank you [name_genie_hermione]... Will that be all?" ("base", "happy", "base", "mid", xpos="mid", ypos="base", trans=dissolve) gen "Yes, that will do for today..." ("base", xpos="far_left", ypos="head") her "Okay, Goodnight then..." ("soft", "base", "base", "mid") call her_walk("door", "base") @@ -654,7 +654,7 @@ label her_potion_cat_return: gen "Actually... One last thing..." ("base", xpos="far_left", ypos="head") call her_chibi("stand", "door", "base", flip=False) - her "Yes [genie_name]?" ("open", "base", "base", "mid", xpos="base", ypos="base") + her "Yes [name_genie_hermione]?" ("open", "base", "base", "mid", xpos="base", ypos="base") gen "Who's a good kitty?" ("base", xpos="far_left", ypos="head") her ".........." ("angry", "happy", "base", "mid", cheeks="blush") her "I am..." ("base", "narrow", "base", "down", cheeks="blush") diff --git a/game/scripts/characters/hermione/events/potions/polyjuice_luna.rpy b/game/scripts/characters/hermione/events/potions/polyjuice_luna.rpy index a1d1cd21..a7ecc6ea 100644 --- a/game/scripts/characters/hermione/events/potions/polyjuice_luna.rpy +++ b/game/scripts/characters/hermione/events/potions/polyjuice_luna.rpy @@ -27,8 +27,8 @@ label her_potion_luna_give: gen "Might I offer you a drink?" ("base", xpos="far_left", ypos="head") if her_whoring < 19: - her "Are you sure it's wise to be giving me alcohol, [genie_name]?" ("soft", "squint", "base", "mid") - gen "It's not alcohol, [hermione_name]... Just a harmless little potion." ("base", xpos="far_left", ypos="head") + her "Are you sure it's wise to be giving me alcohol, [name_genie_hermione]?" ("soft", "squint", "base", "mid") + gen "It's not alcohol, [name_hermione_genie]... Just a harmless little potion." ("base", xpos="far_left", ypos="head") else: her "Trying to get me drunk are you?" ("soft", "narrow", "base", "mid") gen "Nothing of the sort, just a harmless little potion." ("base", xpos="far_left", ypos="head") @@ -73,7 +73,7 @@ label her_potion_luna_give: her "Is this..." ("angry", "narrow", "base", "down") gen "Yep, another Polyjuice potion." ("base", xpos="far_left", ypos="head") her "Do I really have to drink this again?" ("angry", "base", "base", "mid") - gen "If you'd like to continue our favour trading it would certainly be in your best interest, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "If you'd like to continue our favour trading it would certainly be in your best interest, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") if her_whoring < 19: her "..." ("normal", "narrow", "base", "mid") @@ -89,7 +89,7 @@ label her_potion_luna_give: her "*Tsk!*" ("angry", "narrow", "base", "R") her "..." ("disgust", "narrow", "base", "down") - gen "Bottoms up, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Bottoms up, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "... I hope this is one of the ones that goes down okay." ("angry", "narrow", "base", "down") call her_chibi("drink_potion","mid","base") @@ -114,7 +114,7 @@ label her_potion_luna_give: menu: "\"Troubling indeed...\"": if her_whoring < 16: - her "It is! [genie_name], I used to be at the top of the class. My scores were impeccable." ("angry", "squint", "worried", "mid") + her "It is! [name_genie_hermione], I used to be at the top of the class. My scores were impeccable." ("angry", "squint", "worried", "mid") gen "And how are your scores now?" ("base", xpos="far_left", ypos="head") her "I'm still at the top... Just not by much." ("open", "closed", "base", "mid") gen "Well, there are times when academic excellence shouldn't be your primary concern." ("base", xpos="far_left", ypos="head") @@ -142,20 +142,20 @@ label her_potion_luna_give: her "Oh... I was thinking perhaps you could... *Ehm*..." ("angry", "squint", "base", "R") gen "Me? And willingly hand over my favourite little slut to some bureaucrats?" ("base", xpos="far_left", ypos="head") gen "No way!" ("base", xpos="far_left", ypos="head") - her "But [genie_name]!" ("clench", "base", "worried", "mid") + her "But [name_genie_hermione]!" ("clench", "base", "worried", "mid") gen "Don't give me that face..." ("base", xpos="far_left", ypos="head") her "But--" ("angry", "base", "worried", "mid") "\"I bet you'd get the top grade in dick sucking class!\"": if hg_blowjob.trigger: - her "[genie_name]!" ("angry", "base", "base", "mid", cheeks="blush") + her "[name_genie_hermione]!" ("angry", "base", "base", "mid", cheeks="blush") gen "Oh, don't be so modest. If sucking dick was a class, you'd be {i}Magna Cum Laude{/i}." ("grin", xpos="far_left", ypos="head") her "I'm not sure that's appropriate, but thanks I suppose..." ("angry", "narrow", "base", "R", cheeks="blush") her "You know... There's still time to earn some house points before class. If you're feeling generous I could..." ("open", "narrow", "base", "down", cheeks="blush") gen "I'd have to know on whose face I'll be cumming on though." ("base", xpos="far_left", ypos="head") her "What do you mean? My face of course--" ("angry", "squint", "base", "mid", cheeks="blush") elif her_whoring < 16: - her "[genie_name]!" ("angry", "base", "worried", "mid") + her "[name_genie_hermione]!" ("angry", "base", "worried", "mid") her "I can't believe you'd say such a thing!" ("clench", "squint", "worried", "mid") gen "Well, you'll never know if you don't try." ("base", xpos="far_left", ypos="head") her "*Hmph*" ("annoyed", "squint", "annoyed", "R") @@ -231,8 +231,8 @@ label her_potion_luna_give: call her_chibi("hide") call lun_chibi(xpos="mid", ypos="base") - $ luna_name_old = luna_name - $ luna_name = "Hermione?" + $ luna_name_old = name_luna_genie + $ name_luna_genie = "Hermione?" pause 2 @@ -260,7 +260,7 @@ label her_potion_luna_give: lun "*Hmm*... That's a Polyjuice potion alright..." ("angry", "narrow", "base", "down") lun "And apparently I'm still a girl... Someone from Ravenclaw?" ("open", "base", "raised", "mid") - gen "Keen observation, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Keen observation, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") call nar(">Hermione examines her new hair.") lun "Definitely a blonde... She sure could use a comb." ("angry", "narrow", "raised", "downR") @@ -269,7 +269,7 @@ label her_potion_luna_give: call nar(">Something suddenly dawns on Hermione.") lun "You turned me into Loony--{w=0.4} I mean Luna Lovegood?!" ("clench", "wide", "base", "mid") - gen "Very astute, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Very astute, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "And now if you don't mind, I'd like you to bare your--, her chest for me..." ("base", xpos="far_left", ypos="head") lun "What?!" ("disgust", "wide", "base", "mid") @@ -278,7 +278,7 @@ label her_potion_luna_give: gen "Well, what else would you have me do? Look at your face?" ("base", xpos="far_left", ypos="head") lun "I...{w=0.4} Yes?" ("annoyed", "narrow", "raised", "mid", cheeks="blush") gen "Come on... You've drank the potion... Don't you think it'd be a bit of a waste?" ("base", xpos="far_left", ypos="head") - lun "But [genie_name]." ("clench", "base", "base", "mid", cheeks="blush") + lun "But [name_genie_hermione]." ("clench", "base", "base", "mid", cheeks="blush") gen "I'm sure it's fine... It's not like I would tell her anyway." ("base", xpos="far_left", ypos="head") gen "Don't you want those points?" ("base", xpos="far_left", ypos="head") lun "..." ("upset", "narrow", "base", "downR", cheeks="blush") @@ -286,16 +286,16 @@ label her_potion_luna_give: else: lun "You can't possibly be interested in that... That girl's paltry breasts." ("annoyed", "narrow", "annoyed", "mid") - gen "Currently they're yours. And they don't look so paltry from where I'm sitting [hermione_name]. Do I detect a hint of jealousy?" ("base", xpos="far_left", ypos="head") + gen "Currently they're yours. And they don't look so paltry from where I'm sitting [name_hermione_genie]. Do I detect a hint of jealousy?" ("base", xpos="far_left", ypos="head") lun "Not at all... I suppose it is only natural that someone of your advanced age has trouble with their--" ("open", "closed", "base", "mid") - gen "Their what [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Their what [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") lun "Nothing..." ("annoyed", "narrow", "base", "R", cheeks="blush") gen "Eyesight?" ("base", xpos="far_left", ypos="head") lun "*Ehm*... No, what I was going to say--" ("angry", "narrow", "base", "mid", cheeks="blush") - gen "Is that any way to talk to your elders, [hermione_name]? Perhaps you need a good spanking to remind you of your manners." ("base", xpos="far_left", ypos="head") - lun "I... I apologize, [genie_name]. I don't know what came over me." ("open", "narrow", "base", "mid", cheeks="blush") + gen "Is that any way to talk to your elders, [name_hermione_genie]? Perhaps you need a good spanking to remind you of your manners." ("base", xpos="far_left", ypos="head") + lun "I... I apologize, [name_genie_hermione]. I don't know what came over me." ("open", "narrow", "base", "mid", cheeks="blush") gen "Apology accepted. I'm sure they can't hold a candle to the brilliance of your own." ("base", xpos="far_left", ypos="head") - lun "I'd like to think I'm more than just a pair of breasts... but thank you [genie_name]. That was flattering... In a way." ("angry", "closed", "base", "mid") + lun "I'd like to think I'm more than just a pair of breasts... but thank you [name_genie_hermione]. That was flattering... In a way." ("angry", "closed", "base", "mid") gen "If you want to dispel all doubt, we could compare. Why don't you lift your shirt and show me what you... *Err*... She's got under that sweater." ("base", xpos="far_left", ypos="head") lun "I'm still not entirely comfortable with this..." ("angry", "narrow", "base", "down") @@ -355,7 +355,7 @@ label her_potion_luna_give: gen "Feels pretty right to me!" ("grin", xpos="far_left", ypos="head") gen "Although I could do with a closer look." ("grin", xpos="far_left", ypos="head") lun "You're not going to touch her--" ("clench", "narrow", "base", "mid", cheeks="blush") - gen "Just come up to the front of my desk, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Just come up to the front of my desk, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") lun "...{w} Alright." ("mad", "base", "base", "mid", cheeks="blush") else: @@ -363,13 +363,13 @@ label her_potion_luna_give: lun "There, see... Perfectly ordinary breasts." ("open", "closed", "annoyed", "mid", cheeks="blush") lun "Absolutely no need to keep looking at them." ("soft", "narrow", "annoyed", "downR", cheeks="blush") gen "I'm not quite convinced, the soft pale skin, the cute pink nipples and they look like quite a handful..." ("base", xpos="far_left", ypos="head") - gen "I think you might have some serious competition here [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I think you might have some serious competition here [name_hermione_genie]." ("base", xpos="far_left", ypos="head") lun "You can't be serious! They're saggy and couldn't even fill your palm!" ("angry", "narrow", "annoyed", "mid") gen "*Hmm*... Well I sure wouldn't use the word \"saggy\"... Perhaps a closer examination is required." ("base", xpos="far_left", ypos="head") lun "Surely you can see from there how--" ("angry", "narrow", "annoyed", "down") - gen "No, I think I'd need a closer look [hermione_name]... Seeing that my eyesight is so terrible and all..." ("base", xpos="far_left", ypos="head") + gen "No, I think I'd need a closer look [name_hermione_genie]... Seeing that my eyesight is so terrible and all..." ("base", xpos="far_left", ypos="head") lun "..." ("angry", "narrow", "annoyed", "down") - gen "Come closer, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Come closer, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") else: pause .5 lun "I assume you'd like a closer look like the last time?" ("open", "closed", "base", "mid", cheeks="blush") @@ -392,12 +392,12 @@ label her_potion_luna_give: lun "Am I done here?" ("open", "closed", "base", "mid", cheeks="blush") else: gen "Yes... Upon closer inspection I must say those are some magnificent tits..." ("base", xpos="far_left", ypos="head") - lun "[genie_name]!" ("angry", "base", "base", "mid", cheeks="blush") + lun "[name_genie_hermione]!" ("angry", "base", "base", "mid", cheeks="blush") gen "But Hermione's will always remain my favourite." ("base", xpos="far_left", ypos="head") lun "I'm glad you've come to your senses, Thank you... If you're completely satisfied, I'll cover up these... things." ("open", "closed", "base", "mid", cheeks="blush") else: - gen "You look a bit flustered [hermione_name]." ("base", xpos="far_left", ypos="head") - lun "You're staring directly at my, well, her chest, [genie_name], and I can't help but feel a bit undefined as its not my own..." ("angry", "narrow", "base", "mid", cheeks="blush") + gen "You look a bit flustered [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + lun "You're staring directly at my, well, her chest, [name_genie_hermione], and I can't help but feel a bit undefined as its not my own..." ("angry", "narrow", "base", "mid", cheeks="blush") lun "Am I free to go now?" ("open", "narrow", "base", "mid", cheeks="blush") menu: @@ -465,7 +465,7 @@ label her_potion_luna_give: lun "No!" ("clench", "wide", "base", "mid", cheeks="blush", trans=hpunch) call gen_chibi("jerk_off_behind_desk_pause") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") lun "I can't let you... That's... That's enough..." ("mad", "happyCl", "base", "mid", cheeks="blush") $ renpy.sound.play("sounds/zipper.ogg") @@ -484,7 +484,7 @@ label her_potion_luna_give: gen "Well..." ("base", xpos="far_left", ypos="head") gen "There's always more things worth comparing don't you think?" ("base", xpos="far_left", ypos="head") lun "*Hmph*..." ("angry", "narrow", "annoyed", "R", cheeks="blush") - gen "Now-now [hermione_name]... There's some points in it for you if you do it." ("base", xpos="far_left", ypos="head") + gen "Now-now [name_hermione_genie]... There's some points in it for you if you do it." ("base", xpos="far_left", ypos="head") lun "I don't care about the points..." ("angry", "base", "annoyed", "mid", cheeks="blush") gen "You don't?" ("base", xpos="far_left", ypos="head") lun "I mean... I do... But it's not about that!" ("annoyed", "base", "annoyed", "mid", cheeks="blush") @@ -533,7 +533,7 @@ label her_potion_luna_give: gen "Didn't you just say that Miss Lovegood wouldn't really care?" ("base", xpos="far_left", ypos="head") lun "I..." ("disgust", "narrow", "base", "mid", cheeks="blush") lun "Well maybe she would care about this, stripping is one thing!" ("angry", "closed", "raised", "mid", cheeks="blush") - gen "Alright then [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Alright then [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") else: $ current_payout = 20 @@ -571,7 +571,7 @@ label her_potion_luna_give: $ gryffindor += current_payout gen "{number=current_payout} points to Gryffindor!" ("base", xpos="far_left", ypos="head") - lun "Thank you, [genie_name]..." ("open", "closed", "base", "mid", trans=dissolve) + lun "Thank you, [name_genie_hermione]..." ("open", "closed", "base", "mid", trans=dissolve) if not her_polyjuice_luna_drank: lun "I think I better head off to class now." ("angry", "base", "base", "R") @@ -582,11 +582,11 @@ label her_potion_luna_give: gen "Certainly. Just one more thing..." ("base", xpos="far_left", ypos="head") lun "Yes?" ("soft", "base", "raised", "mid") gen "What if you bump into her?" ("base", xpos="far_left", ypos="head") - lun "Oh I wouldn't worry about that, [genie_name]..." ("grin", "narrow", "base", "R") + lun "Oh I wouldn't worry about that, [name_genie_hermione]..." ("grin", "narrow", "base", "R") lun "She will probably think I'm some kind of wrackspurts-induced hallucination or something." ("open", "closed", "base", "mid") gen "True." ("base", xpos="far_left", ypos="head") gen "Off you go then." ("base", xpos="far_left", ypos="head") - lun "Good day, [genie_name]." ("base", "base", "base", "mid") + lun "Good day, [name_genie_hermione]." ("base", "base", "base", "mid") else: lun "I'm off to class." ("open", "narrow", "base", "R") gen "Don't get up to any mischief will you?" ("base", xpos="far_left", ypos="head") @@ -595,7 +595,7 @@ label her_potion_luna_give: call lun_walk(action="leave") $ luna.equip(lun_outfit_last) - $ luna_name = luna_name_old + $ name_luna_genie = luna_name_old $ her_polyjuice_luna_drank = True jump end_hermione_event diff --git a/game/scripts/characters/hermione/events/requests/flash_your_tits.rpy b/game/scripts/characters/hermione/events/requests/flash_your_tits.rpy index e6c7339d..67b7c3fe 100644 --- a/game/scripts/characters/hermione/events/requests/flash_your_tits.rpy +++ b/game/scripts/characters/hermione/events/requests/flash_your_tits.rpy @@ -18,12 +18,12 @@ label hg_pr_flash: #Intro. if hg_pr_flash.counter == 0: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "I would like to award Gryffindor with twenty-five house points today." ("base", xpos="far_left", ypos="head") her "Really?" ("base", "base", "base", "mid") - her "Thank you, [genie_name]!" + her "Thank you, [name_genie_hermione]!" gen "Yes, but first I will require your help with something..." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]! Anything!" + her "Of course, [name_genie_hermione]! Anything!" gen "I need you to go out there and show off your tits to people..." ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 @@ -37,34 +37,34 @@ label hg_pr_flash: call play_music("hermione") - her "[genie_name]!" - her "This is a completely new level of inappropriate, even for you, [genie_name]!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!" + her "This is a completely new level of inappropriate, even for you, [name_genie_hermione]!" ("angry", "base", "angry", "mid") her "How can you ask one of your pupils to perform such a task?" gen "So that's how you feel then? I see..." ("base", xpos="far_left", ypos="head") gen "I suppose I will be awarding those points to some other house instead ..." ("base", xpos="far_left", ypos="head") gen "Slytherin perhaps?" ("base", xpos="far_left", ypos="head") her "................" ("disgust", "narrow", "base", "mid_soft") gen "But, you know, no pressure..." ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("annoyed", "narrow", "angry", "R") + her "[name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") her "The fate of my house is very important to me, but..." gen "Is it really?" ("base", xpos="far_left", ypos="head") gen "Why don't you show it to me then?" ("base", xpos="far_left", ypos="head") - gen "Yes. Show me how important it is to you exactly, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes. Show me how important it is to you exactly, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "But this is inappropriate..." ("angry", "base", "angry", "mid") gen "Are we really in any position to discuss what is appropriate and what is not at this point?" ("base", xpos="far_left", ypos="head") her ".................." ("annoyed", "narrow", "angry", "R") gen "I would say that ship has sailed a long time ago..." ("base", xpos="far_left", ypos="head") her ".............." ("disgust", "narrow", "base", "mid_soft") gen "All I ask you to do is to give some lucky boy a quick peek..." ("base", xpos="far_left", ypos="head") - her "But why? Why must I do things like this, [genie_name]?" ("annoyed", "narrow", "angry", "R") + her "But why? Why must I do things like this, [name_genie_hermione]?" ("annoyed", "narrow", "angry", "R") gen "A minute of your time for twenty-five house points..." ("base", xpos="far_left", ypos="head") gen "A pretty nifty deal, wouldn't you agree?" ("base", xpos="far_left", ypos="head") her "I suppose..." her "Well alright, I'll see what I can do..." else: if her_tier >= 5: - gen "[hermione_name] I need you to go out there and flash your tits to one of your classmates." ("base", xpos="far_left", ypos="head") - her "I will do my best [genie_name]." ("open", "closed", "base", "mid") + gen "[name_hermione_genie] I need you to go out there and flash your tits to one of your classmates." ("base", xpos="far_left", ypos="head") + her "I will do my best [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Really? Just like that? No complaints or anything?" ("base", xpos="far_left", ypos="head") her "I am getting paid for this, am I not?" ("base", "narrow", "base", "mid_soft") gen "Of course." ("base", xpos="far_left", ypos="head") @@ -74,29 +74,29 @@ label hg_pr_flash: gen "{size=-3}(She changed this much already?){/size}" ("base", xpos="far_left", ypos="head") gen "{size=-3}(I'm so good at this training thing that it's starting to get creepy!){/size}" ("grin", xpos="far_left", ypos="head") her "Classes are about to start... I'd better leave now." ("base", "base", "base", "mid") - her "I will see you later tonight, [genie_name]." + her "I will see you later tonight, [name_genie_hermione]." elif her_tier >= 4: - gen "I think you need to show off your tits some more, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "You mean to you, [genie_name]?" ("upset", "wink", "base", "mid") + gen "I think you need to show off your tits some more, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "You mean to you, [name_genie_hermione]?" ("upset", "wink", "base", "mid") gen "No, to your classmates..." ("base", xpos="far_left", ypos="head") her "Oh..." ("angry", "base", "base", "mid") gen "Yes, go do that and then report back to me..." ("base", xpos="far_left", ypos="head") her "Will I get paid for this?" ("annoyed", "narrow", "angry", "R") - gen "Of course you will get paid for this, [hermione_name]. Don't be silly." ("base", xpos="far_left", ypos="head") + gen "Of course you will get paid for this, [name_hermione_genie]. Don't be silly." ("base", xpos="far_left", ypos="head") gen "{number=current_payout} house points. The usual rate..." ("base", xpos="far_left", ypos="head") her "................." ("annoyed", "narrow", "angry", "R") - her "Well alright... I will see what I can do, [genie_name]..." ("disgust", "narrow", "base", "mid_soft") + her "Well alright... I will see what I can do, [name_genie_hermione]..." ("disgust", "narrow", "base", "mid_soft") else: - gen "I think you need to show off your tits some more, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "You mean to you, [genie_name]?" ("upset", "wink", "base", "mid") + gen "I think you need to show off your tits some more, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "You mean to you, [name_genie_hermione]?" ("upset", "wink", "base", "mid") gen "No, to your classmates..." ("base", xpos="far_left", ypos="head") her "Oh..." ("angry", "base", "base", "mid") gen "Yes, go do that and then report back to me..." ("base", xpos="far_left", ypos="head") her "Will I get paid for this?" ("annoyed", "narrow", "angry", "R") - gen "Of course you will get paid for this, [hermione_name]. Don't be silly." ("base", xpos="far_left", ypos="head") + gen "Of course you will get paid for this, [name_hermione_genie]. Don't be silly." ("base", xpos="far_left", ypos="head") gen "{number=current_payout} house points. The usual rate..." ("base", xpos="far_left", ypos="head") her "................." ("annoyed", "narrow", "angry", "R") - her "Well alright... I will see what I can do, [genie_name]..." ("disgust", "narrow", "base", "mid_soft") + her "Well alright... I will see what I can do, [name_genie_hermione]..." ("disgust", "narrow", "base", "mid_soft") call her_walk(action="leave") @@ -107,7 +107,7 @@ label end_hg_pr_flash: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -156,10 +156,10 @@ label end_hg_pr_flash: label hg_pr_flash_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you complete your task?" ("base", xpos="far_left", ypos="head") - her "I did as you asked [genie_name]..." + her "I did as you asked [name_genie_hermione]..." if hg_pr_flash.is_tier_complete(): menu: @@ -176,7 +176,7 @@ label hg_pr_flash_intro: if hg_pr_flash.counter == 1: her "......" ("annoyed", "narrow", "angry", "R") her "Well... *Ehm*..." ("soft", "base", "base", "R") - gen "Speak up, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Speak up, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Did you flash some lucky guy? How did it go?" ("base", xpos="far_left", ypos="head") @@ -191,16 +191,16 @@ label hg_pr_flash_T3_E1: call play_music("playful_tension") # Music her "*Ehm*... Not too well, actually..." ("angry", "happyCl", "worried", "mid",emote="sweat") her "................................" - gen "Just tell me what happened, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "That is the thing, [genie_name]..." ("open", "base", "base", "mid") + gen "Just tell me what happened, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "That is the thing, [name_genie_hermione]..." ("open", "base", "base", "mid") her "Nothing happened..." her "I just couldn't bring myself to do it..." ("open", "narrow", "worried", "down") gen "I see..." ("base", xpos="far_left", ypos="head") - gen "Well, I can't just give you the points for nothing, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]... I understand..." ("open", "closed", "base", "mid") + gen "Well, I can't just give you the points for nothing, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Of course, [name_genie_hermione]... I understand..." ("open", "closed", "base", "mid") her "I shall try harder next time... I promise..." ("annoyed", "base", "worried", "R") gen "Then I will just put these {number=current_payout} points aside for now..." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." ("annoyed", "base", "worried", "R") + her "Thank you, [name_genie_hermione]..." ("annoyed", "base", "worried", "R") her "..." her "I'd better go now." @@ -291,10 +291,10 @@ label hg_pr_flash_T3_E2: gen "{i}A tit in the hand is worth two in the bush.{/i}" ("base", xpos="far_left", ypos="head") her "I suppose... although I don't know if he ever realised I was trying to do something for his benefit." her "......................" ("annoyed", "base", "worried", "R") - her "I'm sorry, [genie_name]..." ("open", "base", "base", "mid") + her "I'm sorry, [name_genie_hermione]..." ("open", "base", "base", "mid") gen "That's alright..." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("open", "base", "base", "mid") + her "[name_genie_hermione]?" ("open", "base", "base", "mid") gen "I wouldn't expect you to perform perfectly this early in your training anyway..." ("base", xpos="far_left", ypos="head") show screen blktone @@ -312,7 +312,7 @@ label hg_pr_flash_T3_E3: call hg_pr_flash_intro call play_music("hermione") # Music - her "I think it went well, [genie_name]." ("annoyed", "base", "worried", "R") + her "I think it went well, [name_genie_hermione]." ("annoyed", "base", "worried", "R") gen "Good. Tell me more." ("base", xpos="far_left", ypos="head") her "*Ehm*... There is not much to tell, really..." ("open", "base", "base", "mid") her "I spent the first half of the day with studying in the library..." @@ -338,30 +338,30 @@ label hg_pr_flash_T4_E1: call hg_pr_flash_intro her "..........." ("upset", "base", "worried", "R") - gen "[hermione_name], did you complete your task or not?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]." ("upset", "wink", "base", "mid") + gen "[name_hermione_genie], did you complete your task or not?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]." ("upset", "wink", "base", "mid") her "............." ("angry", "narrow", "base", "down") gen "Well?" ("base", xpos="far_left", ypos="head") her "................" ("angry", "narrow", "base", "down") call play_music("hermione") # Music - her "Just for the record, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "Just for the record, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "*Hmm*?" ("base", xpos="far_left", ypos="head") her "I think that forcing your pupils to do things like this..." ("scream", "closed", "angry", "mid") her "Is beneath an esteemed wizard such as yourself..." ("upset", "closed", "base", "mid") - gen "\"Forcing\"? Nobody is forcing you to do anything, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "\"Forcing\"? Nobody is forcing you to do anything, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You came to me, remember?" ("base", xpos="far_left", ypos="head") her ".........." ("open", "base", "base", "mid") gen "You begged me to buy a sexual favour from you." ("base", xpos="far_left", ypos="head") her "... I..." ("annoyed", "base", "worried", "R") her "I never said \"sexual\"..." ("open", "base", "base", "mid") - gen "Nevertheless, you can stop selling me these favours at any moment, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Nevertheless, you can stop selling me these favours at any moment, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "I suppose..." ("annoyed", "narrow", "angry", "R") gen "And yet you keep on coming back..." ("base", xpos="far_left", ypos="head") her "............................" ("angry", "narrow", "base", "down") gen "I think you may actually be taking some twisted form of pleasure from this." ("base", xpos="far_left", ypos="head") her "What?" ("angry", "base", "angry", "mid") - gen "Shame on you, [hermione_name]. Shame on you." ("base", xpos="far_left", ypos="head") - her "[genie_name], I never...!" ("angry", "base", "angry", "mid") + gen "Shame on you, [name_hermione_genie]. Shame on you." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I never...!" ("angry", "base", "angry", "mid") gen "Enough of this. Did you complete your task or not?" ("base", xpos="far_left", ypos="head") her "Yes I did..." ("upset", "closed", "base", "mid") gen "And?" ("base", xpos="far_left", ypos="head") @@ -386,7 +386,7 @@ label hg_pr_flash_T4_E2: her "Can I get paid first?" ("open", "base", "base", "mid") gen "Not before you tell me what exactly you did today." ("base", xpos="far_left", ypos="head") her "...................." ("normal", "happyCl", "worried", "mid") - her "Do I really have to, [genie_name]?" ("open", "base", "base", "mid") + her "Do I really have to, [name_genie_hermione]?" ("open", "base", "base", "mid") gen "When you are being coy like this..." ("base", xpos="far_left", ypos="head") gen "It only makes me more curious. You know that, right?" ("base", xpos="far_left", ypos="head") her "*Aww*..." ("angry", "base", "base", "mid") @@ -396,17 +396,17 @@ label hg_pr_flash_T4_E2: her "But I was standing too close to him..." her "...." ("normal", "happyCl", "worried", "mid") her "...." - her "Well, he sort of grabbed one of my breasts, [genie_name]..." ("open", "base", "base", "mid") + her "Well, he sort of grabbed one of my breasts, [name_genie_hermione]..." ("open", "base", "base", "mid") her "he squeezed it hard and just wouldn't let go..." her "He made me promise to meet him after my classes..." ("angry", "base", "base", "mid") her "And let him..." her "\"Play with my tits\" some more..." ("open", "happyCl", "worried", "mid") - her "You see, that is why I hate Slytherin boys, [genie_name]..." ("angry", "narrow", "base", "down") + her "You see, that is why I hate Slytherin boys, [name_genie_hermione]..." ("angry", "narrow", "base", "down") her "They don't have a shred of honour.." her "..." gen "Did you keep your promise?" ("base", xpos="far_left", ypos="head") her "No, not yet..." ("angry", "base", "base", "mid") - her "I'm planning to meet that awful boy after we are done here, [genie_name]." + her "I'm planning to meet that awful boy after we are done here, [name_genie_hermione]." gen "I see..." ("base", xpos="far_left", ypos="head") gen "Well, I shouldn't keep you waiting then, should I?" ("base", xpos="far_left", ypos="head") @@ -420,21 +420,21 @@ label hg_pr_flash_T4_E3: gen "I'm listening..." ("base", xpos="far_left", ypos="head") her "Well..." ("open", "base", "base", "mid") her "I had to spend a big portion of the day at the school library..." - her "So I didn't really have the time to perform your task properly, [genie_name]..." + her "So I didn't really have the time to perform your task properly, [name_genie_hermione]..." gen "*Hmm*...?" ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "Instead I just went to the library window and..." her "... I just pulled my shirt up and pressed my bare breasts against the glass..." ("angry", "narrow", "base", "down") her "I stood there like that for several seconds..." her "To make sure that at least someone sees me from the outside..." - her "I hope this still counts, [genie_name]..." ("angry", "base", "base", "mid") + her "I hope this still counts, [name_genie_hermione]..." ("angry", "base", "base", "mid") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "How many students would you say saw you standing behind that window?" ("base", xpos="far_left", ypos="head") - her "I am not sure, [genie_name]... A couple maybe...?" ("angry", "narrow", "base", "down") + her "I am not sure, [name_genie_hermione]... A couple maybe...?" ("angry", "narrow", "base", "down") gen "\"Maybe\"?" ("base", xpos="far_left", ypos="head") - her "I don't know, [genie_name]..." ("open", "happyCl", "worried", "mid",cheeks="blush") + her "I don't know, [name_genie_hermione]..." ("open", "happyCl", "worried", "mid",cheeks="blush") her "To be honest I kept my eyes closed..." - gen "How do you know that anyone saw you at all then, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How do you know that anyone saw you at all then, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I heard someone shout: \"Look! At that window over there!\"." ("angry", "squint", "base", "mid",cheeks="blush") her "When I heard that I covered up and quickly left..." her "...." ("angry", "base", "base", "mid") @@ -449,10 +449,10 @@ label hg_pr_flash_T5_E1: call hg_pr_flash_intro - her "As usual, [genie_name]..." ("base", "base", "base", "mid") + her "As usual, [name_genie_hermione]..." ("base", "base", "base", "mid") gen "I'm listening..." ("base", xpos="far_left", ypos="head") her "Well... I had to spend a big portion of the day in the school library..." ("upset", "wink", "base", "mid") - her "So I didn't really have the time to perform your task properly, [genie_name]..." + her "So I didn't really have the time to perform your task properly, [name_genie_hermione]..." gen "*Hmm*...?" ("base", xpos="far_left", ypos="head") her "Instead I just made sure there were no teachers around..." ("angry", "base", "base", "mid") call play_music("playful_tension") # Music @@ -461,12 +461,12 @@ label hg_pr_flash_T5_E1: her "trying to get some studying done..." ("open", "narrow", "worried", "down") her "I don't think there were many people around..." her "Or at least I hope so..." ("angry", "narrow", "base", "down") - her "But they definitely saw my breasts, [genie_name]..." ("angry", "base", "base", "mid") + her "But they definitely saw my breasts, [name_genie_hermione]..." ("angry", "base", "base", "mid") her "eventually A few first years seemed to notice..." ("angry", "narrow", "base", "down") her "I had to leave pretty quickly after that..." ("angry", "base", "base", "mid") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "How many people would you say saw your tits today, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Hard to say, [genie_name]..." ("open", "base", "base", "mid") + gen "How many people would you say saw your tits today, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Hard to say, [name_genie_hermione]..." ("open", "base", "base", "mid") her "Two dozen boys or so I suppose..." her "A few girls as well..." ("annoyed", "base", "worried", "R") her "I think the school librarian may have seen me too..." @@ -484,9 +484,9 @@ label hg_pr_flash_T5_E2: her "I was flashing my tits to this boy in the Gryffindor common room..." her "When my friend, Ginny walked in on us..." ("open", "base", "base", "mid") gen "Another boy?" ("base", xpos="far_left", ypos="head") - her "A boy? No, Ginny is a girl's name, [genie_name]." ("soft", "base", "base", "R") + her "A boy? No, Ginny is a girl's name, [name_genie_hermione]." ("soft", "base", "base", "R") gen "....." ("base", xpos="far_left", ypos="head") - her "Ginny Weasley, [genie_name]." ("open", "base", "base", "mid") + her "Ginny Weasley, [name_genie_hermione]." ("open", "base", "base", "mid") gen "Alright, fine, continue..." ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("soft", "base", "base", "R") her "......." @@ -504,18 +504,18 @@ label hg_pr_flash_T5_E2: her "And sprayed his hot spunk all over me and Ginny!" her "And then me and Ginny, we licked his hot sperm off of our bodies..." ("smile", "base", "angry", "mid") gen ".............." ("base", xpos="far_left", ypos="head") - gen "Are you making this up, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Are you making this up, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "... maybe." ("grin", "happyCl", "worried", "mid",emote="sweat") - her "I just thought that you would like to hear something like that, [genie_name]..." ("base", "narrow", "base", "mid_soft") - gen "What I would like to hear, [hermione_name], is the truth." ("base", xpos="far_left", ypos="head") - her "Even if it's incredibly dull, [genie_name]?" ("open", "closed", "base", "mid") + her "I just thought that you would like to hear something like that, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") + gen "What I would like to hear, [name_hermione_genie], is the truth." ("base", xpos="far_left", ypos="head") + her "Even if it's incredibly dull, [name_genie_hermione]?" ("open", "closed", "base", "mid") gen "Dull or not..." ("base", xpos="far_left", ypos="head") gen "I only want to know what actually happened..." ("base", xpos="far_left", ypos="head") - gen "Keep your fantasies to yourself, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "As you wish, [genie_name]." ("annoyed", "narrow", "annoyed", "up") + gen "Keep your fantasies to yourself, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "As you wish, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "up") her "My friend Ginny walked in on me while I was flashing my tits to that guy." her "But she promised to not tell anyone." - her "And that's all that happened, [genie_name]..." ("soft", "base", "base", "mid") + her "And that's all that happened, [name_genie_hermione]..." ("soft", "base", "base", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") gen "I still prefer this to some made up stories..." ("base", xpos="far_left", ypos="head") @@ -526,7 +526,7 @@ label hg_pr_flash_T5_E3: call hg_pr_flash_intro call play_music("hermione") # Music - her "Yes I did, [genie_name]..." ("base", "base", "base", "mid") + her "Yes I did, [name_genie_hermione]..." ("base", "base", "base", "mid") gen "Alright, tell me how did it go." ("base", xpos="far_left", ypos="head") her "Well, let's see..." ("annoyed", "base", "worried", "R") her "First I flashed them to that one boy from Ravenclaw..." @@ -535,18 +535,18 @@ label hg_pr_flash_T5_E3: gen "???" ("base", xpos="far_left", ypos="head") her "After that I flashed my tits to some Gryffindor underclassman by mistake..." ("angry", "happyCl", "worried", "mid",emote="sweat") her "No, wait... the boy from Gryffindor was after that other boy..." ("annoyed", "base", "worried", "R") - gen "How many boys did you flash your tits to today, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How many boys did you flash your tits to today, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Half a dozen or so?" ("angry", "base", "base", "mid") her "I had an opening in my schedule..." ("angry", "wink", "base", "mid") - her "So I decided to go for some extra credit with your assignment, [genie_name]." - gen "This is not an assignment, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "So I decided to go for some extra credit with your assignment, [name_genie_hermione]." + gen "This is not an assignment, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "And there are no extra credits..." ("base", xpos="far_left", ypos="head") her "Oh...?" ("open", "base", "base", "mid") - gen "You are still getting your usual payment, [hermione_name], and that's it." ("base", xpos="far_left", ypos="head") + gen "You are still getting your usual payment, [name_hermione_genie], and that's it." ("base", xpos="far_left", ypos="head") her "Oh... I see..." ("annoyed", "base", "worried", "R") - gen "But, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("open", "base", "base", "mid") + gen "But, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("open", "base", "base", "mid") gen "That was very well done." ("grin", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") jump end_hg_pr_flash diff --git a/game/scripts/characters/hermione/events/requests/flirt_with_students.rpy b/game/scripts/characters/hermione/events/requests/flirt_with_students.rpy index b0856a67..02a7d2ee 100644 --- a/game/scripts/characters/hermione/events/requests/flirt_with_students.rpy +++ b/game/scripts/characters/hermione/events/requests/flirt_with_students.rpy @@ -16,65 +16,65 @@ label hg_pr_flirt: jump hermione_favor_menu her "" (xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Yes?" ("soft", "base", "base", "R") #Intro. if hg_pr_flirt.counter == 0: gen "What is your opinion on the boys of the Slytherin house?" ("base", xpos="far_left", ypos="head") - her "I detest them, [genie_name]." ("angry", "base", "angry", "mid") + her "I detest them, [name_genie_hermione]." ("angry", "base", "angry", "mid") gen "Well, too bad. Because I want you to get really friendly with a few of them today." ("base", xpos="far_left", ypos="head") her "If I must..." ("soft", "base", "base", "R") her "Yes, I think I can manage to be civil with them for one day." gen "Yes, and when I say \"get friendly with them\"..." ("base", xpos="far_left", ypos="head") gen "I actually mean that I need you to flirt with them..." ("base", xpos="far_left", ypos="head") her "Flirt?!" ("shock", "wide", "base", "stare") - her "[genie_name]!" ("angry", "base", "angry", "mid") - her "I'm not even going to ask why you'd be interested in this, [genie_name]..." ("annoyed", "squint", "base", "mid") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid") + her "I'm not even going to ask why you'd be interested in this, [name_genie_hermione]..." ("annoyed", "squint", "base", "mid") her "But why Slytherin?" ("open", "base", "worried", "mid") her "If you need me to be flirtatious today, I think I can manage that..." her "But, please, can't it be another house?" her "Gryffindor maybe?" ("upset", "wink", "base", "mid") - gen "I am only trying to protect your reputation, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("soft", "base", "base", "mid") + gen "I am only trying to protect your reputation, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("soft", "base", "base", "mid") gen "Do you value the opinion the Slytherin students have of you?" ("base", xpos="far_left", ypos="head") her "I couldn't care less about the opinions of those Neanderthals." ("scream", "closed", "angry", "mid") gen "What about the students of the Gryffindor house?" ("base", xpos="far_left", ypos="head") her "Their opinion means the world to me--" ("annoyed", "base", "worried", "R") her "Oh, I see..." ("base", "base", "base", "mid") - gen "Exactly... Just looking out for you [hermione_name]." ("base", xpos="far_left", ypos="head") - her "*Ehm*... Thank you [genie_name]..." + gen "Exactly... Just looking out for you [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "*Ehm*... Thank you [name_genie_hermione]..." else: if her_tier >= 3: gen "I need you to flirt with some boys from Slytherin today." ("base", xpos="far_left", ypos="head") - her "I'll see what I can do, [genie_name]." + her "I'll see what I can do, [name_genie_hermione]." gen "Great. I'll be expecting your report today after classes." ("base", xpos="far_left", ypos="head") elif her_tier >= 2: gen "I need you to go make some new friends at the Slytherin house." ("base", xpos="far_left", ypos="head") - her "You mean you need me to flirt with the Slytherin boys again [genie_name]?" + her "You mean you need me to flirt with the Slytherin boys again [name_genie_hermione]?" her "Fine." ("upset", "base", "angry", "R") - her "If I have to, [genie_name]..." ("normal", "squint", "angry", "mid") + her "If I have to, [name_genie_hermione]..." ("normal", "squint", "angry", "mid") else: if hg_pr_flirt.counter == 1: gen "I need you to go make some new friends at the Slytherin house." ("base", xpos="far_left", ypos="head") - her "You mean you need me to flirt with the Slytherin boys again [genie_name]?" - gen "That's exactly what I need you to do today, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "You mean you need me to flirt with the Slytherin boys again [name_genie_hermione]?" + gen "That's exactly what I need you to do today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Just do it properly this time." ("base", xpos="far_left", ypos="head") - her "Must I really do this [genie_name]?" ("open", "base", "base", "mid") - gen "We have been through this, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Must I really do this [name_genie_hermione]?" ("open", "base", "base", "mid") + gen "We have been through this, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Going to the Slytherin boys is in your best interest." ("base", xpos="far_left", ypos="head") - her "Yes, I know, [genie_name]." ("open", "closed", "angry", "mid") + her "Yes, I know, [name_genie_hermione]." ("open", "closed", "angry", "mid") her "But why must I do this at all?" - gen "Nobody is forcing you, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "You don't need to remind me of that, [genie_name]..." ("angry", "base", "angry", "mid") - her "Alright if I must... [genie_name]..." ("normal", "squint", "angry", "mid") + gen "Nobody is forcing you, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "You don't need to remind me of that, [name_genie_hermione]..." ("angry", "base", "angry", "mid") + her "Alright if I must... [name_genie_hermione]..." ("normal", "squint", "angry", "mid") else: gen "I need you to go make some new friends at the Slytherin house." ("base", xpos="far_left", ypos="head") - her "You mean you need me to flirt with the Slytherin boys again, [genie_name]?" - her "Must I really do this [genie_name]?" ("upset", "base", "worried", "mid") + her "You mean you need me to flirt with the Slytherin boys again, [name_genie_hermione]?" + her "Must I really do this [name_genie_hermione]?" ("upset", "base", "worried", "mid") gen "This again?" ("base", xpos="far_left", ypos="head") her "Fine........." ("upset", "base", "angry", "R") - her "If I must... [genie_name]..." ("normal", "squint", "angry", "mid") + her "If I must... [name_genie_hermione]..." ("normal", "squint", "angry", "mid") her "Well, I'd better go now. Classes are about to start..." call her_walk(action="leave") @@ -87,7 +87,7 @@ label end_hg_pr_flirt: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -118,11 +118,11 @@ label end_hg_pr_flirt: label hg_pr_flirt_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) + her "Good evening, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) her "" ("normal", "base", "base", "mid") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you complete your task?" ("base", xpos="far_left", ypos="head") - her "I did as you asked, [genie_name]..." ("open", "base", "base", "R") + her "I did as you asked, [name_genie_hermione]..." ("open", "base", "base", "R") her "" ("normal", "base", "base", "R") if hg_pr_flirt.is_tier_complete(): @@ -139,7 +139,7 @@ label hg_pr_flirt_intro: her "......" ("annoyed", "narrow", "angry", "R") her "So *Ehm*..." ("soft", "base", "base", "R") - gen "How many boys did you flirt with today, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "How many boys did you flirt with today, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") return @@ -156,22 +156,22 @@ label hg_pr_flirt_T1_E1: her "So... I went to him and I said \"Hey, handsome!\"." gen "And?" ("base", xpos="far_left", ypos="head") call play_music("hermione") # Music - her "He stuck out his tongue and ran off, [genie_name]." ("normal", "squint", "angry", "mid") + her "He stuck out his tongue and ran off, [name_genie_hermione]." ("normal", "squint", "angry", "mid") gen "Did you try to lure him in with a lollipop?" ("base", xpos="far_left", ypos="head") - her "I did not, [genie_name]..." ("open", "base", "worried", "R") + her "I did not, [name_genie_hermione]..." ("open", "base", "worried", "R") her "The thought never crossed my mind, but--" - gen "That was a joke, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "That was a joke, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "............." ("annoyed", "squint", "angry", "mid") gen "I told you to flirt with boys {size=+5}your{/size} age!" ("base", xpos="far_left", ypos="head") her "I wanted to at first, but..." ("normal", "squint", "angry", "mid") her "I guess I got scared..." ("annoyed", "narrow", "angry", "R") - her "I mean I despise those Slytherins way too much to flirt with them, [genie_name]!" + her "I mean I despise those Slytherins way too much to flirt with them, [name_genie_hermione]!" her "I would have to fight my gag-reflex the entire time!" ("angry", "base", "angry", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") "\"Fine. Just try harder next time.\"": - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") her "I will, I promise!" "\"Favour failed! No points for you!\"": @@ -179,7 +179,7 @@ label hg_pr_flirt_T1_E1: her "I understand..." ("normal", "squint", "angry", "mid") gen "Get out of my sight..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]... Sorry, [genie_name]..." ("annoyed", "squint", "angry", "mid") + her "Yes, [name_genie_hermione]... Sorry, [name_genie_hermione]..." ("annoyed", "squint", "angry", "mid") jump end_hg_pr_flirt.no_points @@ -192,7 +192,7 @@ label hg_pr_flirt_T1_E2: call play_music("hermione") # Music her "Well, I tried to compliment an upperclassman..." ("open", "base", "worried", "R") gen "Did he appreciate it?" ("base", xpos="far_left", ypos="head") - her "He called me a \"Gryffindor whore\", [genie_name]!" ("angry", "base", "angry", "mid", emote="angry") + her "He called me a \"Gryffindor whore\", [name_genie_hermione]!" ("angry", "base", "angry", "mid", emote="angry") gen "I see..." ("base", xpos="far_left", ypos="head") gen "What did you do then?" ("base", xpos="far_left", ypos="head") her "Well, that was not the proper way to address a fellow \"Hogwarts\" student..." ("open", "closed", "angry", "mid") @@ -203,16 +203,16 @@ label hg_pr_flirt_T1_E2: her "He was obviously struggling with a problem..." her "So I offered my help..." gen "And?" ("base", xpos="far_left", ypos="head") - her "He called me a \"Patronising Gryffindor Whore\", [genie_name]..." ("angry", "base", "angry", "mid", emote="angry") + her "He called me a \"Patronising Gryffindor Whore\", [name_genie_hermione]..." ("angry", "base", "angry", "mid", emote="angry") gen "Did you threaten to report him as well?" ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "closed", "angry", "mid") + her "Of course, [name_genie_hermione]." ("open", "closed", "angry", "mid") gen "*sigh*" ("base", xpos="far_left", ypos="head") gen "Anything else?" ("base", xpos="far_left", ypos="head") her "Well, there was one more incident but the outcome was pretty much the same..." ("annoyed", "squint", "angry", "mid") gen "\"Gryffindor whore\"?" ("base", xpos="far_left", ypos="head") - her "......... yes, [genie_name]." ("disgust", "narrow", "base", "mid_soft") - gen "You are doing it all wrong, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I am sorry, [genie_name]. I thought this would be easy..." ("annoyed", "narrow", "angry", "R") + her "......... yes, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") + gen "You are doing it all wrong, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I am sorry, [name_genie_hermione]. I thought this would be easy..." ("annoyed", "narrow", "angry", "R") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -223,7 +223,7 @@ label hg_pr_flirt_T1_E2: "\"Favour failed! No points for you!\"": stop music fadeout 1.0 - her "You are not going to pay me, [genie_name]?" ("open", "base", "worried", "mid") + her "You are not going to pay me, [name_genie_hermione]?" ("open", "base", "worried", "mid") her "But, you promised!" ("angry", "base", "base", "mid", tears="soft") gen "And you promised to flirt with the boys, not get bullied." ("base", xpos="far_left", ypos="head") her "................" ("mad", "happyCl", "worried", "mid", tears="soft_blink") @@ -251,12 +251,12 @@ label hg_pr_flirt_T1_E3: call play_music("hermione") # Music - her "A whole flock of those Slytherin harlots was already there, [genie_name]." ("angry", "base", "angry", "mid") + her "A whole flock of those Slytherin harlots was already there, [name_genie_hermione]." ("angry", "base", "angry", "mid") her "They were cheering and yelling..." - her "And one of them even exposed herself inappropriately to the players, [genie_name]..." ("angry", "base", "angry", "mid") + her "And one of them even exposed herself inappropriately to the players, [name_genie_hermione]..." ("angry", "base", "angry", "mid") her "I cannot believe our school accepts such behaviour..." gen "So... how did this captivating drama end?" ("base", xpos="far_left", ypos="head") - her "I just left [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "I just left [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") menu: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") @@ -269,7 +269,7 @@ label hg_pr_flirt_T1_E3: "\"Favour failed! No points for you!\"": stop music fadeout 1.0 her "I don't feel like I deserved any this time anyway..." ("annoyed", "happyCl", "worried", "R") - her "Can I leave now, [genie_name]?" ("annoyed", "base", "worried", "mid") + her "Can I leave now, [name_genie_hermione]?" ("annoyed", "base", "worried", "mid") gen "Dismissed!" ("base", xpos="far_left", ypos="head") call her_walk(action="leave") @@ -294,7 +294,7 @@ label hg_pr_flirt_T2_E1: her "well... I guess." ("grin", "happyCl", "worried", "mid", emote="sweat") her "But, despite my better judgment, I did encourage his improper behaviour..." ("base", "base", "base", "mid") gen "By being quiet?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." + her "Yes, [name_genie_hermione]..." her "I mean, this does amount to something, right?" gen "*Meh*..." ("base", xpos="far_left", ypos="head") gen "What else do you have for me?" ("base", xpos="far_left", ypos="head") @@ -302,24 +302,24 @@ label hg_pr_flirt_T2_E1: her "Later in a corridor these two other guys complimented my appearance in a very vulgar manner..." her "But I just smiled at them..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "You were on the receiving end again, then..." ("base", xpos="far_left", ypos="head") - gen "This is not what I ordered you to do, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I know, [genie_name]!" ("angry", "happyCl", "worried", "mid", emote="sweat") + gen "This is not what I ordered you to do, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I know, [name_genie_hermione]!" ("angry", "happyCl", "worried", "mid", emote="sweat") her "But I am so busy. Between the \"MRM\" meetings and the classes..." ("annoyed", "narrow", "angry", "R") her "I barely have any time--" # TODO: Check if this part fits the current story line, Johnny. gen "Is this all you got for me this time then?" ("base", xpos="far_left", ypos="head") - her "No, [genie_name]." ("annoyed", "narrow", "angry", "R") - her "On my way here I ran into Draco Malfoy, [genie_name]." + her "No, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") + her "On my way here I ran into Draco Malfoy, [name_genie_hermione]." gen "No way!!! (No idea who that is...)" ("base", xpos="far_left", ypos="head") her "I forced myself to be friendly with him and..." her "We ended up having a decent conversation for a change." ("base", "happyCl", "base", "mid") gen "I see... That \"Dark-oh\" guy..." ("base", xpos="far_left", ypos="head") gen "Was he looking at your legs at all?" ("base", xpos="far_left", ypos="head") her "What?" ("open", "base", "base", "mid") - gen "Did he stare at your legs or not, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Did he stare at your legs or not, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ehm*... He might have..." ("upset", "wink", "base", "mid") gen "What about your tits?" ("base", xpos="far_left", ypos="head") - her "[genie_name]!!!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!!!" ("angry", "base", "angry", "mid") gen "Fine. You get your points. Keep up the good work." ("base", xpos="far_left", ypos="head") her "" ("annoyed", "base", "worried", "R") @@ -337,8 +337,8 @@ label hg_pr_flirt_T2_E2: call play_music("playful_tension") # Music her "This angry-looking guy from Slytherin came up to me and asked me out on a date..." her "I told him \"no\" at first, but we ended up taking a walk together." ("soft", "base", "base", "R") - gen "Did you enjoy yourself, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "I think I did, [genie_name]... To my own astonishment..." ("open", "base", "base", "mid") + gen "Did you enjoy yourself, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "I think I did, [name_genie_hermione]... To my own astonishment..." ("open", "base", "base", "mid") her "There was something about his \"devil-may-care\" attitude..." ("base", "base", "base", "mid") her "He was so confident and calm and..." ("base", "happyCl", "base", "mid") her "I still loathe the Slytherin house of course!" ("angry", "happyCl", "worried", "mid", emote="sweat") @@ -356,7 +356,7 @@ label hg_pr_flirt_T2_E2: gen "(Doesn't hurt playing along...)" ("base", xpos="far_left", ypos="head") "\"Could what make what?\"": - her "Oh, never mind me, [genie_name]." ("soft", "base", "base", "R") + her "Oh, never mind me, [name_genie_hermione]." ("soft", "base", "base", "R") her "Everyone knows that the \"Sorting Hat\" is never wrong." jump end_hg_pr_flirt @@ -367,7 +367,7 @@ label hg_pr_flirt_T2_E3: call hg_pr_flirt_intro call play_music("hermione") # Music - her "Five guys, [genie_name]!" ("smile", "happyCl", "base", "mid") + her "Five guys, [name_genie_hermione]!" ("smile", "happyCl", "base", "mid") gen "Really?" ("base", xpos="far_left", ypos="head") her "Yes!" ("base", "happyCl", "base", "mid") her "This one guy this morning." ("base", "happyCl", "base", "mid") @@ -377,11 +377,11 @@ label hg_pr_flirt_T2_E3: her "That last one was quite smart and well-mannered too." ("base", "happyCl", "base", "mid") her "............................" her "................" - her "But I still refuse to change my opinion about the Slytherin house, [genie_name]." ("angry", "happyCl", "worried", "mid", emote="sweat") - gen "I'm not asking you to, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "But I still refuse to change my opinion about the Slytherin house, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid", emote="sweat") + gen "I'm not asking you to, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "I am only doing this to help my own house!" her "The proud house of \"Gryffndor\"!" ("scream", "happyCl", "worried", "mid") - gen "Alright, alright. Calm down, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Alright, alright. Calm down, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("base", "happyCl", "base", "mid") jump end_hg_pr_flirt @@ -393,8 +393,8 @@ label hg_pr_flirt_T3_E1: call hg_pr_flirt_intro call play_music("hermione") # Music - her "Eleven boys, [genie_name]!" ("smile", "happyCl", "base", "mid") - gen "Eleven? Really? Your personal best, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Eleven boys, [name_genie_hermione]!" ("smile", "happyCl", "base", "mid") + gen "Eleven? Really? Your personal best, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Yes." ("base", "happyCl", "base", "mid") her "Let's see..." ("grin", "base", "base", "R") her "Those two handsome guys right before the first period started..." @@ -402,7 +402,7 @@ label hg_pr_flirt_T3_E1: her "After that there was this one other guy..." ("grin", "base", "base", "R") her "Then those three guys..." ("annoyed", "narrow", "worried", "down") her "Then one more right before the last period..." ("base", "happyCl", "base", "mid") - her "And finally this last guy that walked me right to your tower, [genie_name]..." ("smile", "happyCl", "base", "mid") + her "And finally this last guy that walked me right to your tower, [name_genie_hermione]..." ("smile", "happyCl", "base", "mid") gen "So, eleven then?" ("base", xpos="far_left", ypos="head") gen "Those Slytherin boys are really starting to like you, *huh*?" ("base", xpos="far_left", ypos="head") her "I suppose so..." ("base", "happyCl", "base", "mid") @@ -414,9 +414,9 @@ label hg_pr_flirt_T3_E1: her "I just swallow my pride and smile in response." gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "So, if for example, somebody were to call you a \"whore\" you would just smile at them?" ("base", xpos="far_left", ypos="head") - her "Well, yes, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "Well, yes, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Yeah, I'm sure that wins them over." ("base", xpos="far_left", ypos="head") - gen "Great job, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Great job, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("grin", "base", "base", "R") jump end_hg_pr_flirt @@ -433,15 +433,15 @@ label hg_pr_flirt_T3_E2: else: her "And I even let this one guy kiss me on the cheek..." ("grin", "base", "base", "R") - gen "Quite impressive, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I think so too, [genie_name]. Thank you." ("base", "happyCl", "base", "mid") + gen "Quite impressive, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I think so too, [name_genie_hermione]. Thank you." ("base", "happyCl", "base", "mid") her "Oh, and there was also this freshman boy..." ("smile", "happyCl", "base", "mid") her "I tried to flirt with him too, but we ended up just chatting..." her "He kept calling me \"Miss Hermione\"..." ("base", "happyCl", "base", "mid") her "So adorable..." - gen "Well, I didn't send you to harass people, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, I didn't send you to harass people, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "I didn't harass--" ("disgust", "narrow", "base", "mid_soft") - her "[genie_name]! Seven flirts and two dates amount to something, don't they?" ("angry", "happyCl", "worried", "mid", emote="sweat") + her "[name_genie_hermione]! Seven flirts and two dates amount to something, don't they?" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Oh, absolutely." ("base", xpos="far_left", ypos="head") her "Then I would like to receive my payment now..." ("scream", "closed", "angry", "mid") her "" ("normal", "happyCl", "worried", "mid") @@ -452,20 +452,20 @@ label hg_pr_flirt_T3_E3: call hg_pr_flirt_intro - her "[genie_name], I am sorry, but..." ("normal", "happyCl", "worried", "mid") + her "[name_genie_hermione], I am sorry, but..." ("normal", "happyCl", "worried", "mid") call play_music("hermione") # Music - her "I hate those Slytherin tramps, [genie_name]!" ("angry", "base", "angry", "mid") + her "I hate those Slytherin tramps, [name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "Tell me what happened." ("base", xpos="far_left", ypos="head") her "I don't want to talk about it..." ("annoyed", "narrow", "angry", "R") - gen "Tell me what happened, [hermione_name]!" ("base", xpos="far_left", ypos="head") - her "I don't want to talk about it, [genie_name]." ("angry", "base", "angry", "mid", emote="angry") + gen "Tell me what happened, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") + her "I don't want to talk about it, [name_genie_hermione]." ("angry", "base", "angry", "mid", emote="angry") her "Please don't make me..." ("annoyed", "narrow", "angry", "R") menu: "\"Fine. I'll let it go for today.\"": - her "Thank you, [genie_name]." ("normal", "happyCl", "worried", "mid") + her "Thank you, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid") gen "No luck with the flirting today then?" ("base", xpos="far_left", ypos="head") - her "Oh, quite the opposite, [genie_name]." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "Oh, quite the opposite, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid", emote="sweat") call play_music("playful_tension") # Music her "One of the boys actually took me to the Slytherin common room today..." her "There were at least a dozen of them there..." ("normal", "base", "base", "mid") @@ -479,12 +479,12 @@ label hg_pr_flirt_T3_E3: gen "\"Doing Things\"? What kind of things?" ("grin", xpos="far_left", ypos="head") her "Anyway, I had to leave..." gen "I see..." ("base", xpos="far_left", ypos="head") - gen "Well, I say you deserve your points anyway, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, I say you deserve your points anyway, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("base", "happyCl", "base", "mid") "\"Tell me now, or lose the points!\"": - her "[genie_name], please, I don't want to discuss this with you, [genie_name]." ("disgust", "narrow", "base", "mid_soft") - gen "No one is forcing you, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], please, I don't want to discuss this with you, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") + gen "No one is forcing you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You are free to leave." ("base", xpos="far_left", ypos="head") her "{size=-4}(Stubborn old man!){/size}" ("angry", "base", "angry", "mid") diff --git a/game/scripts/characters/hermione/events/requests/flirt_with_teachers.rpy b/game/scripts/characters/hermione/events/requests/flirt_with_teachers.rpy index 3f3910fc..54ae884c 100644 --- a/game/scripts/characters/hermione/events/requests/flirt_with_teachers.rpy +++ b/game/scripts/characters/hermione/events/requests/flirt_with_teachers.rpy @@ -17,14 +17,14 @@ label hg_pr_flirt_teacher: jump hermione_favor_menu her "" (xpos="right", ypos="base", trans=fade) - gen "[hermione_name], I want you to be especially flirtatious with your teachers today." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I want you to be especially flirtatious with your teachers today." ("base", xpos="far_left", ypos="head") #Intro if hg_pr_flirt_teacher.counter == 0: if hg_pr_flirt.counter > 0: - her "I will do my best, [genie_name]!" ("base", "base", "base", "mid") + her "I will do my best, [name_genie_hermione]!" ("base", "base", "base", "mid") her "Now I understand why you asked me to flirt with these pesky Slytherin boys." ("open", "closed", "angry", "mid") - her "I am glad you finally decided to act, [genie_name]!" ("open", "base", "base", "mid") + her "I am glad you finally decided to act, [name_genie_hermione]!" ("open", "base", "base", "mid") else: her "*huh*?!" ("open", "base", "angry", "mid") her "Why would I want to flirt with the teach--" ("angry", "base", "angry", "mid") @@ -33,15 +33,15 @@ label hg_pr_flirt_teacher: her "You are finally ready to investigate the teachers who made a habit out of buying favours from the students, aren't you?" ("normal", "squint", "angry", "mid") her "I am honoured to pose as bait in this noble endeavour." ("open", "closed", "base", "mid") gen "*Ehm*... Yeah, that's exactly what I'm doing." ("base", xpos="far_left", ypos="head") - her "Splendid! You can count on me, [genie_name]!" ("smile", "squint", "angry", "mid") + her "Splendid! You can count on me, [name_genie_hermione]!" ("smile", "squint", "angry", "mid") else: if her_tier >= 3: - her "As you wish, [genie_name]." ("base", "squint", "base", "mid") + her "As you wish, [name_genie_hermione]." ("base", "squint", "base", "mid") elif her_tier >= 2: - her "I'll make sure to note every single detail, [genie_name]." ("base", "squint", "angry", "mid") + her "I'll make sure to note every single detail, [name_genie_hermione]." ("base", "squint", "angry", "mid") gen "Looking forward to it..." ("base", xpos="far_left", ypos="head") else: - her "I shall provide you with a detailed report later tonight, [genie_name]." ("normal", "squint", "angry", "mid") + her "I shall provide you with a detailed report later tonight, [name_genie_hermione]." ("normal", "squint", "angry", "mid") gen "I will be waiting..." ("base", xpos="far_left", ypos="head") her "Well, I'd better go now. Classes are about to start..." @@ -56,7 +56,7 @@ label hg_pr_flirt_teacher: label end_hg_pr_flirt_teacher: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -78,11 +78,11 @@ label end_hg_pr_flirt_teacher: label hg_pr_flirt_teacher_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) + her "Good evening, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=fade) her "" ("normal", "base", "base", "mid") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you complete your task?" ("base", xpos="far_left", ypos="head") - her "I did as you asked [genie_name]..." + her "I did as you asked [name_genie_hermione]..." if hg_pr_flirt_teacher.is_tier_complete(): # If you have seen all events in this tier once, you get the choice to skip it. menu: @@ -92,7 +92,7 @@ label hg_pr_flirt_teacher_intro: "\"Give me the details.\"": pass - gen "Tell me, [hermione_name], how many teachers did you flirt with?" ("base", xpos="far_left", ypos="head") + gen "Tell me, [name_hermione_genie], how many teachers did you flirt with?" ("base", xpos="far_left", ypos="head") if hg_pr_flirt_teacher.counter == 1: her "*Ehm*... Okay..." ("soft", "base", "base", "R") @@ -142,9 +142,9 @@ label hg_pr_flirt_teacher_T1_E1: # Flitwick gen "(Women and their obsession with height...)" gen "Just because the man isn't six feet tall doesn't mean--..." ("base", xpos="far_left", ypos="head") her "*Huh*?" - gen "I never thought you'd be so judgmental, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I never thought you'd be so judgmental, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You shouldn't measure people by their height,{w=0.5} but by the size of their--" ("base", xpos="far_left", ypos="head") - her "[genie_name]-- That's not what I meant! Could you listen to me first, please?" + her "[name_genie_hermione]-- That's not what I meant! Could you listen to me first, please?" gen "Heart..." ("base", xpos="far_left", ypos="head") her "........" gen "Perhaps if you weren't so short-tempered, you'd let me finish talking for once." ("base", xpos="far_left", ypos="head") @@ -154,10 +154,10 @@ label hg_pr_flirt_teacher_T1_E1: # Flitwick her "Even before I could react and stop him, Professor Flitwick was already standing right beside me... Almost as if he had apparated." ("angry", "base", "base", "mid") gen "How exciting." ("base", xpos="far_left", ypos="head") - gen "Is this all you have for me today, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Is this all you have for me today, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Y-yes..." ("open", "base", "worried", "mid") - her "But [genie_name], I now know for a fact that professor Flitwick is \"dirty\"!" ("angry", "base", "worried", "mid") - her "He looked at my panties, [genie_name]!" ("annoyed", "base", "worried", "R") + her "But [name_genie_hermione], I now know for a fact that professor Flitwick is \"dirty\"!" ("angry", "base", "worried", "mid") + her "He looked at my panties, [name_genie_hermione]!" ("annoyed", "base", "worried", "R") if hg_pf_admire_panties.counter > 1: gen "Didn't you show them off before?" ("base", xpos="far_left", ypos="head") @@ -170,27 +170,27 @@ label hg_pr_flirt_teacher_T1_E1: # Flitwick her "What?" ("open", "base", "base", "mid") gen "Yucky... Man..." ("base", xpos="far_left", ypos="head") gen "So, does this flick-shit fella do this to other students as well, you think?" ("base", xpos="far_left", ypos="head") - her "*Ehm*... It's \"Professor Flitwick\", [genie_name]." ("normal", "squint", "angry", "mid", cheeks=None) + her "*Ehm*... It's \"Professor Flitwick\", [name_genie_hermione]." ("normal", "squint", "angry", "mid", cheeks=None) her "And yes, I don't doubt that this isn't the first time he's done this." ("normal", "squint", "angry", "mid") gen "Right. Putting him on my \"Naughty list\" as we speak." ("base", xpos="far_left", ypos="head") her "......................" ("annoyed", "squint", "base", "mid") - gen "Even then, you failed the task I set for you today, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Even then, you failed the task I set for you today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "What, but I--" ("annoyed", "narrow", "angry", "R") menu: "\"Here are your points though.\"": gen "Know that I am a merciful master-- I mean a headmaster." ("base", xpos="far_left", ypos="head") her "Really?" ("angry", "base", "worried", "mid") - her "Thank you so much [genie_name]!" ("smile", "happyCl", "base", "mid") + her "Thank you so much [name_genie_hermione]!" ("smile", "happyCl", "base", "mid") "\"No points for you!\"": - her "But [genie_name], I did my best!" ("angry", "base", "worried", "mid") - her "You are going back on your promise [genie_name]!" ("mad", "base", "worried", "mid", tears="soft") + her "But [name_genie_hermione], I did my best!" ("angry", "base", "worried", "mid") + her "You are going back on your promise [name_genie_hermione]!" ("mad", "base", "worried", "mid", tears="soft") gen "......................." ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 her "How unbecoming of a school headmaster!" ("scream", "happyCl", "worried", "mid") - gen "You are dismissed, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You are dismissed, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Tsk*!" ("angry", "base", "angry", "mid", emote="angry") $ her_mood += 18 @@ -205,27 +205,27 @@ label hg_pr_flirt_teacher_T1_E2: # Snape her ".................." ("soft", "base", "base", "R") her "............................" - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]... I'm sorry... I just..." ("open", "base", "worried", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]... I'm sorry... I just..." ("open", "base", "worried", "mid") her "............" ("soft", "base", "base", "R") gen "Did you do what I asked you to do?" ("base", xpos="far_left", ypos="head") - her "I tried, [genie_name]. I really did..." ("open", "base", "base", "mid") + her "I tried, [name_genie_hermione]. I really did..." ("open", "base", "base", "mid") gen "Who did you try to flirt with?" ("base", xpos="far_left", ypos="head") her "........." ("soft", "base", "base", "R") - her "Professor Snape, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "Professor Snape, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") call play_music("hermione") # HERMIONE'S THEME. gen "Severus? Interesting..." ("base", xpos="far_left", ypos="head") gen "How did it go?" ("base", xpos="far_left", ypos="head") - her "It was awful [genie_name]..." ("normal", "squint", "angry", "mid") - her "I am sorry, but I really hate professor Snape, [genie_name]!" + her "It was awful [name_genie_hermione]..." ("normal", "squint", "angry", "mid") + her "I am sorry, but I really hate professor Snape, [name_genie_hermione]!" gen "(I'm pretty sure the feeling is mutual...)" ("base", xpos="far_left", ypos="head") gen "Tell me what happened." ("base", xpos="far_left", ypos="head") - her "Nothing happened, [genie_name]. He just laughed at me..." ("annoyed", "squint", "angry", "mid") + her "Nothing happened, [name_genie_hermione]. He just laughed at me..." ("annoyed", "squint", "angry", "mid") her "I may not have much feminine charm, but I tried to be nice..." ("annoyed", "base", "worried", "R") her "And he just started laughing in my face!" ("scream", "closed", "angry", "mid") her "... it is really scary to see professor Snape laugh..." ("angry", "happyCl", "worried", "mid", emote="sweat") her "........" - her "I am awful at flirting, I am sorry [genie_name]..." + her "I am awful at flirting, I am sorry [name_genie_hermione]..." her "But I know that professor Snape is \"dirty\"!" ("angry", "base", "angry", "mid") her "If you were to send someone else, the outcome would be different, I just know it!" gen "Someone else?" ("base", xpos="far_left", ypos="head") @@ -234,12 +234,12 @@ label hg_pr_flirt_teacher_T1_E2: # Snape her "Someone... *Ehm*..." gen "Sluttier?" ("base", xpos="far_left", ypos="head") her "Yes, I suppose..." ("disgust", "narrow", "base", "mid_soft") - gen "Don't you give up, [hermione_name]. We will make a slut *err*--" ("base", xpos="far_left", ypos="head") + gen "Don't you give up, [name_hermione_genie]. We will make a slut *err*--" ("base", xpos="far_left", ypos="head") gen "I mean a woman out of you yet!" ("base", xpos="far_left", ypos="head") her "..................." ("annoyed", "narrow", "annoyed", "mid") menu: - "\"Here are your points, [hermione_name].\"": + "\"Here are your points, [name_hermione_genie].\"": her "" ("base", "base", "worried", "mid") "\"... I'm afraid you get no points this time.\"": @@ -257,7 +257,7 @@ label hg_pr_flirt_teacher_T1_E3: # Filch call hg_pr_flirt_teacher_intro stop music fadeout 1.0 - her "I tried to flirt with mister Filch, [genie_name]..." ("open", "base", "worried", "R") + her "I tried to flirt with mister Filch, [name_genie_hermione]..." ("open", "base", "worried", "R") gen "I see. {size=-5}(No idea who that is.){/size}" ("base", xpos="far_left", ypos="head") call play_music("hermione") # HERMIONE'S THEME. her "Yes, I know that technically mister Filch is not a teacher..." ("open", "base", "worried", "mid") @@ -265,9 +265,9 @@ label hg_pr_flirt_teacher_T1_E3: # Filch her "But he is part of the school's staff..." ("base", "base", "base", "mid") her "And we did hit it off quite well too!" her "He was surprisingly sweet." - her "But I don't think he is \"dirty\", [genie_name]." + her "But I don't think he is \"dirty\", [name_genie_hermione]." gen "Gotcha... mister Filth is off the list then." ("base", xpos="far_left", ypos="head") - her "It's \"mister Filch\", [genie_name]..." ("normal", "squint", "angry", "mid") + her "It's \"mister Filch\", [name_genie_hermione]..." ("normal", "squint", "angry", "mid") gen "What did I say?" ("base", xpos="far_left", ypos="head") her "......." ("normal", "squint", "angry", "R") her "Can I get my points now?" ("open", "base", "worried", "mid") @@ -295,7 +295,7 @@ label hg_pr_flirt_teacher_T2_E1: # Slughorn her "I did..." her "Or at least I tried to..." ("annoyed", "squint", "base", "mid") her "Professor Slughorn seemed to be more interested in the other girls..." - gen "You almost sound jealous, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You almost sound jealous, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "What?!" ("angry", "wide", "base", "stare") her "That is preposterous!" ("annoyed", "narrow", "angry", "R") gen "Here are your points..." ("base", xpos="far_left", ypos="head") @@ -317,9 +317,9 @@ label hg_pr_flirt_teacher_T2_E2: her "Ah..." ("smile", "happyCl", "base", "mid") if not hermione.is_worn("bottom"): - her "I had an amazing day, [genie_name]!" ("smile", "happyCl", "base", "mid", emote="happy") + her "I had an amazing day, [name_genie_hermione]!" ("smile", "happyCl", "base", "mid", emote="happy") gen "Glad to--" ("base", xpos="far_left", ypos="head") - gen "[hermione_name]... What have you done to your leg?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]... What have you done to your leg?" ("base", xpos="far_left", ypos="head") her "What do you...{w=0.4} Oh, that..." ("mad", "base", "base", "down", cheeks="blush") gen "Yes that..." ("base", xpos="far_left", ypos="head") her "It's... it's nothing." ("open", "base", "base", "mid", cheeks="blush") @@ -328,7 +328,7 @@ label hg_pr_flirt_teacher_T2_E2: gen "The hell it is...{w=0.4} is that writing on your leg?" ("base", xpos="far_left", ypos="head") her "I... yes..." ("normal", "happyCl", "worried", "mid", cheeks="blush") gen "Gil... Gilde--" ("base", xpos="far_left", ypos="head") - her "*sigh*... Gilderoy Lockhart... [genie_name]." ("open", "narrow", "base", "down", cheeks="blush") + her "*sigh*... Gilderoy Lockhart... [name_genie_hermione]." ("open", "narrow", "base", "down", cheeks="blush") gen "Now that's dirty!" ("base", xpos="far_left", ypos="head") her "What!?" ("clench", "base", "worried", "mid") gen "Tagging the students... why didn't I think of that!" ("base", xpos="far_left", ypos="head") @@ -340,7 +340,7 @@ label hg_pr_flirt_teacher_T2_E2: her "I... what else would it be?" ("clench", "squint", "worried", "mid", cheeks="blush") gen "Nothing..." ("base", xpos="far_left", ypos="head") gen "Here are your points..." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("annoyed", "base", "worried", "down", cheeks="blush") + her "Thank you, [name_genie_hermione]." ("annoyed", "base", "worried", "down", cheeks="blush") else: gen "I can clearly see something..." ("base", xpos="far_left", ypos="head") gen "Take that off and let me have a proper look." ("base", xpos="far_left", ypos="head") @@ -353,7 +353,7 @@ label hg_pr_flirt_teacher_T2_E2: pause.5 gen "Gil... Gilde--" ("base", xpos="far_left", ypos="head") - her "*sigh*... Gilderoy Lockhart... [genie_name]." ("open", "narrow", "base", "down", cheeks="blush") + her "*sigh*... Gilderoy Lockhart... [name_genie_hermione]." ("open", "narrow", "base", "down", cheeks="blush") her "He very kindly gave me his autograph after today's lesson..." ("base", "narrow", "base", "down", cheeks="blush") gen "And why would you want such a thing?" ("base", xpos="far_left", ypos="head") her "He's a very popular and esteemed author, surely you know this..." ("annoyed", "base", "base", "mid", cheeks="blush") @@ -367,12 +367,12 @@ label hg_pr_flirt_teacher_T2_E2: jump hg_pr_flirt_teacher_T2_E2.angry else: - her "I had an amazing day, [genie_name]!" ("smile", "happyCl", "base", "mid", emote="happy") - gen "Do tell, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "I had an amazing day, [name_genie_hermione]!" ("smile", "happyCl", "base", "mid", emote="happy") + gen "Do tell, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "I had a class with professor Lockhart today..." ("grin", "base", "base", "R") - her "[genie_name] He is so charming and smart and..." ("base", "base", "base", "mid") + her "[name_genie_hermione] He is so charming and smart and..." ("base", "base", "base", "mid") her "And perfect..." ("base", "narrow", "base", "up") - gen "Please spare me your schoolgirl crush, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Please spare me your schoolgirl crush, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "He was even kind enough to give me his autograph..." ("smile", "happyCl", "base", "mid", emote="happy") gen "How kind of him indeed..." ("base", xpos="far_left", ypos="head") her "Yes, I can't wait to show it to the girls!" ("grin", "base", "base", "R") @@ -381,7 +381,7 @@ label hg_pr_flirt_teacher_T2_E2: her "It's just going to fade away in the shower now..." ("upset", "base", "worried", "mid") gen "It's going to--" ("base", xpos="far_left", ypos="head") gen "Show me!" ("grin", xpos="far_left", ypos="head") - her "[genie_name]?" ("open", "base", "worried", "mid", cheeks="blush") + her "[name_genie_hermione]?" ("open", "base", "worried", "mid", cheeks="blush") her "I... It's just an autograph..." ("base", "squint", "worried", "R", cheeks="blush") gen "Just an autograph? It's {i}Lockfart{/i} we're talking about here, I have to see it!" ("base", xpos="far_left", ypos="head") her "I..." ("disgust", "base", "worried", "down", cheeks="blush") @@ -413,15 +413,15 @@ label hg_pr_flirt_teacher_T2_E2: gen "Surely a piece of paper would've been--" ("base", xpos="far_left", ypos="head") her "Professor Lockhart is nothing but an embodiment of everything pure and courageous!" ("annoyed", "narrow", "annoyed", "mid") - her "You should not worry about professor Lockhart, [genie_name]." ("base", "base", "worried", "R") + her "You should not worry about professor Lockhart, [name_genie_hermione]." ("base", "base", "worried", "R") her "He is not \"dirty\"." ("annoyed", "base", "worried", "L") - gen "Whatever you say [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Whatever you say [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "............?" ("annoyed", "narrow", "annoyed", "mid", emote="angry") gen "Anyhow..." ("base", xpos="far_left", ypos="head") call ctc "\"Fine... Here are your points.\"": - her "Thank you for understanding, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you for understanding, [name_genie_hermione]." ("base", "happyCl", "base", "mid") $ hermione.wear("all") call unlock_clothing(text=">New tattoo for Hermione has been unlocked!", item=her_tattoo_lockhart) @@ -438,18 +438,18 @@ label hg_pr_flirt_teacher_T2_E3: # Filch gen "........" ("base", xpos="far_left", ypos="head") her "But I don't think anyone knows him like that..." ("soft", "base", "base", "R") her "I don't think anyone knows mister Filch like I do." - her "I feel like he really opened up to me, [genie_name]." ("base", "base", "base", "mid") + her "I feel like he really opened up to me, [name_genie_hermione]." ("base", "base", "base", "mid") gen "Right..." ("base", xpos="far_left", ypos="head") gen "This, mister Fli{size=+7}nt{/size}--" ("base", xpos="far_left", ypos="head") - her "It's mister Filch, [genie_name]." ("open", "closed", "angry", "mid") + her "It's mister Filch, [name_genie_hermione]." ("open", "closed", "angry", "mid") gen "Yeah, whatever... Is he a teacher here then?" ("base", xpos="far_left", ypos="head") - her "Mister Filch? A teacher? No, [genie_name]..." - her "He is the caretaker... Shouldn't you know your school personnel, [genie_name]?" ("base", "base", "base", "mid") + her "Mister Filch? A teacher? No, [name_genie_hermione]..." + her "He is the caretaker... Shouldn't you know your school personnel, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "A caretaker...?" ("base", xpos="far_left", ypos="head") gen "You mean he is a janitor?" ("base", xpos="far_left", ypos="head") her "Well..." ("open", "base", "worried", "R") - gen "[hermione_name], I did not send you out there to charm school janitors!" ("base", xpos="far_left", ypos="head") - her "But mister Filch is part of the school staff, [genie_name]!" ("open", "base", "base", "mid") + gen "[name_hermione_genie], I did not send you out there to charm school janitors!" ("base", xpos="far_left", ypos="head") + her "But mister Filch is part of the school staff, [name_genie_hermione]!" ("open", "base", "base", "mid") menu: "\"Just take your points and go!\"": @@ -458,8 +458,8 @@ label hg_pr_flirt_teacher_T2_E3: # Filch jump end_hg_pr_flirt_teacher "\"Favour failed! No points for you!\"": - her "But [genie_name]?" ("normal", "squint", "angry", "mid") - gen "You are dismissed, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "But [name_genie_hermione]?" ("normal", "squint", "angry", "mid") + gen "You are dismissed, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "........................................." ("angry", "base", "angry", "mid") $ her_mood +=15 @@ -474,11 +474,11 @@ label hg_pr_flirt_teacher_T3_E1: # Filch stop music fadeout 1.0 her "............................." ("normal", "happyCl", "worried", "mid") her "....................................." - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name], I..." ("angry", "happyCl", "worried", "mid", emote="sweat") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], I..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "What is it? What happened?" ("base", xpos="far_left", ypos="head") her "Well..." ("annoyed", "base", "worried", "R") - her "It's mister Filch, [genie_name]..." + her "It's mister Filch, [name_genie_hermione]..." gen "The janitor?" ("base", xpos="far_left", ypos="head") her "I flirted with him a little..." ("open", "base", "base", "mid") her "And it went great at first..." @@ -486,19 +486,19 @@ label hg_pr_flirt_teacher_T3_E1: # Filch gen "................?" ("base", xpos="far_left", ypos="head") her "And then..." ("open", "base", "base", "mid") her "Not sure if I should..." ("annoyed", "base", "worried", "R") - gen "[hermione_name], if you are not going to speak up, you may as well leave." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], if you are not going to speak up, you may as well leave." ("base", xpos="far_left", ypos="head") call play_music("hermione") # HERMIONE'S THEME. - her "He showed me his \"thing\", [genie_name]!" ("scream", "happyCl", "worried", "mid") + her "He showed me his \"thing\", [name_genie_hermione]!" ("scream", "happyCl", "worried", "mid") gen "His what?" ("base", xpos="far_left", ypos="head") - her "His... manhood, [genie_name]." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "His... manhood, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Way to go, Janitor-guy!" ("grin", xpos="far_left", ypos="head") her "What?!" ("scream", "wide", "base", "mid") gen "*Ahem* I mean, this is unspeakable!" ("base", xpos="far_left", ypos="head") her "Yes... Vile crooked thing all covered in veins..." ("angry", "base", "base", "mid", tears="soft") - gen "Spare me the grisly details, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Spare me the grisly details, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Why would he do such a thing?" ("mad", "happyCl", "worried", "mid", tears="soft_blink") her "One second we were just talking and then..." - gen "Well, your noble sacrifice shall not go unnoticed, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Well, your noble sacrifice shall not go unnoticed, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points to Gryf--" ("base", xpos="far_left", ypos="head") her "Professor, please wait." ("soft", "base", "base", "mid", tears="soft") gen "*huh*?" ("base", xpos="far_left", ypos="head") @@ -507,12 +507,12 @@ label hg_pr_flirt_teacher_T3_E1: # Filch her "What if I am not the first victim...?" ("angry", "base", "angry", "mid") her "Some unfortunate freshman could be traumatised for life!" gen "And who wouldn't be really?" ("base", xpos="far_left", ypos="head") - her "Does this mean you will take action, [genie_name]?" ("open", "base", "base", "mid") + her "Does this mean you will take action, [name_genie_hermione]?" ("open", "base", "base", "mid") gen "*Ehm*... Yeah, sure..." ("base", xpos="far_left", ypos="head") gen "There! Putting it on my {i}to-do-list{/i}..." ("base", xpos="far_left", ypos="head") gen "\"Take care of the creepy janitor-guy and his crooked cock.\"..." ("base", xpos="far_left", ypos="head") gen "Yes, first thing tomorrow." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("open", "closed", "base", "mid") + her "Thank you [name_genie_hermione]." ("open", "closed", "base", "mid") her "Can I have my points now?" ("smile", "happyCl", "base", "mid") jump end_hg_pr_flirt_teacher @@ -525,9 +525,9 @@ label hg_pr_flirt_teacher_T3_E2: # Snape +CG call play_music("chipper_doodle") # HERMIONE'S THEME. her "Professor Snape!" ("angry", "base", "angry", "mid", emote="angry") gen "*Ehm*... Yeah, I'm pretty sure it's Dumbledore or something..." ("base", xpos="far_left", ypos="head") - her "[genie_name], please, you need to listen to me!" ("open", "base", "base", "mid") - gen "Yes, yes, [hermione_name], I'm listening." ("base", xpos="far_left", ypos="head") - her "I just confirmed that professor Snape is corrupted and {i}dirty{/i}, [genie_name]!" ("open", "closed", "angry", "mid") + her "[name_genie_hermione], please, you need to listen to me!" ("open", "base", "base", "mid") + gen "Yes, yes, [name_hermione_genie], I'm listening." ("base", xpos="far_left", ypos="head") + her "I just confirmed that professor Snape is corrupted and {i}dirty{/i}, [name_genie_hermione]!" ("open", "closed", "angry", "mid") gen "Tell me what happened." ("base", xpos="far_left", ypos="head") her "Well, during classes today..." ("open", "base", "base", "mid") her "I have been doing my best to attract professor Snape's attention..." ("open", "base", "base", "R") @@ -538,7 +538,7 @@ label hg_pr_flirt_teacher_T3_E2: # Snape +CG her "Yes... It's when you stare at a man's crotch and imagine that you are looking at something you want badly..." ("open", "closed", "angry", "mid") gen "Where do you get this stuff?" ("base", xpos="far_left", ypos="head") her "Women's magazines..." ("open", "base", "worried", "R") - her "Well, anyway, it worked, [genie_name]." ("normal", "squint", "angry", "mid") + her "Well, anyway, it worked, [name_genie_hermione]." ("normal", "squint", "angry", "mid") hide hermione_main show screen snape_groping @@ -546,10 +546,10 @@ label hg_pr_flirt_teacher_T3_E2: # Snape +CG with fade call ctc - her "As soon as the class was over, professor Snape grabbed my buttocks, [genie_name]!" ("angry", "base", "angry", "mid", ypos="head", flip=False) + her "As soon as the class was over, professor Snape grabbed my buttocks, [name_genie_hermione]!" ("angry", "base", "angry", "mid", ypos="head", flip=False) gen "The fiend!" ("grin", xpos="far_left", ypos="head") gen "Did you enjoy it, though?" ("base", xpos="far_left", ypos="head") - her "[genie_name], I am only doing this--" ("scream", "closed", "angry", "mid") + her "[name_genie_hermione], I am only doing this--" ("scream", "closed", "angry", "mid") gen "Go Gryffindors! Honour and all that. Yes, I remember." ("base", xpos="far_left", ypos="head") call ctc @@ -569,7 +569,7 @@ label hg_pr_flirt_teacher_T3_E3: # Lockhart stop music fadeout 1.0 her "Professor Lockhart!" ("annoyed", "squint", "angry", "mid") gen "Got it! Adding him to the \"Naughty list\"!" ("base", xpos="far_left", ypos="head") - her "No, [genie_name], it's not that..." ("open", "base", "worried", "mid") + her "No, [name_genie_hermione], it's not that..." ("open", "base", "worried", "mid") her "Or..." ("annoyed", "narrow", "angry", "R") her "I'm not sure..." her "I used to adore him..." ("open", "base", "worried", "mid") @@ -579,41 +579,41 @@ label hg_pr_flirt_teacher_T3_E3: # Lockhart her "I can't believe this..." call play_music("playful_tension") # SEX THEME. gen "{size=-4}(*Argh*! The suspense is killing me!){/size}" ("base", xpos="far_left", ypos="head") - gen "What was it, [hermione_name]? Speak up!" ("angry", xpos="far_left", ypos="head") + gen "What was it, [name_hermione_genie]? Speak up!" ("angry", xpos="far_left", ypos="head") her "*huh*?" ("open", "base", "base", "mid") gen "What did Professor Lockhart do to you?" ("base", xpos="far_left", ypos="head") - her "*Ehm*... Nothing, [genie_name]..." ("soft", "base", "base", "R") + her "*Ehm*... Nothing, [name_genie_hermione]..." ("soft", "base", "base", "R") gen "Nothing?!" ("base", xpos="far_left", ypos="head") her "Yes, I sort of cornered mister Lockhart today..." ("open", "base", "worried", "mid") her "And I also may have sort of made a pass at him..." ("open", "base", "base", "mid") gen "Seriously?" ("base", xpos="far_left", ypos="head") - her "Yes... Not sure what had gotten into me, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") - gen "Way to go, [hermione_name]!" ("grin", xpos="far_left", ypos="head") - her "Hear me out first [genie_name], please!" ("scream", "happyCl", "worried", "mid") + her "Yes... Not sure what had gotten into me, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + gen "Way to go, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") + her "Hear me out first [name_genie_hermione], please!" ("scream", "happyCl", "worried", "mid") gen "My apologies. Please continue." ("base", xpos="far_left", ypos="head") her "Well, I always knew that mister Lockhart was a true gentleman and..." ("open", "base", "base", "mid") her "And... and I just wanted to clear his name from any suspicions once and for all..." her "..............." ("annoyed", "base", "worried", "R") her "Well mister Lockhart did not reject me..." - gen "You are killing me [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "You are killing me [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "He didn't reject you, he didn't do anything to you..." ("base", xpos="far_left", ypos="head") gen "What the hell happened then?" ("base", xpos="far_left", ypos="head") her "............." ("normal", "happyCl", "worried", "mid") call play_music("hermione") # HERMIONE'S THEME. - her "I made him cry, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + her "I made him cry, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") gen "..............{w=0.5}wait what?" ("base", xpos="far_left", ypos="head") her "He gave me a bewildered look and then started to sob..." ("angry", "base", "worried", "mid") - her "He looked like he was genuinely afraid of me, [genie_name]." + her "He looked like he was genuinely afraid of me, [name_genie_hermione]." her "I think..." ("annoyed", "base", "worried", "R") her "I think mister Lockhart might be afraid of women..." gen "Afraid of women?" ("base", xpos="far_left", ypos="head") gen "What is that supposed to mean?" ("base", xpos="far_left", ypos="head") - her "That he is into boys, [genie_name]?" ("angry", "happyCl", "worried", "mid", emote="sweat") + her "That he is into boys, [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Oh... To each their own I guess." ("base", xpos="far_left", ypos="head") her "............" ("upset", "wink", "base", "mid") gen "..........." ("base", xpos="far_left", ypos="head") - gen "Well, I bet it was a traumatising experience for you, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "It was, [genie_name]..." ("open", "base", "base", "mid") + gen "Well, I bet it was a traumatising experience for you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "It was, [name_genie_hermione]..." ("open", "base", "base", "mid") gen "Well, I hope these points will make you feel better." ("base", xpos="far_left", ypos="head") jump end_hg_pr_flirt_teacher diff --git a/game/scripts/characters/hermione/events/requests/give_a_blowjob.rpy b/game/scripts/characters/hermione/events/requests/give_a_blowjob.rpy index a73b6c94..745d5ea8 100644 --- a/game/scripts/characters/hermione/events/requests/give_a_blowjob.rpy +++ b/game/scripts/characters/hermione/events/requests/give_a_blowjob.rpy @@ -18,8 +18,8 @@ label hg_pr_blowjob: #Intro. if hg_pr_blowjob.counter == 0: - gen "[hermione_name], I will be buying another favour from you today." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]. I really appreciate it." ("open", "closed", "base", "mid") + gen "[name_hermione_genie], I will be buying another favour from you today." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]. I really appreciate it." ("open", "closed", "base", "mid") gen "Sure, Happy to help." ("base", xpos="far_left", ypos="head") gen "I need you to go give a blowjob to one of your classmates." ("base", xpos="far_left", ypos="head") @@ -49,15 +49,15 @@ label hg_pr_blowjob: call play_music("hermione") # Music gen "Yes, that's how it's usually done..." ("base", xpos="far_left", ypos="head") - her "[genie_name], I..." ("upset", "closed", "base", "mid") - her "I refuse to sell you a depraved favour like that, [genie_name]." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], I..." ("upset", "closed", "base", "mid") + her "I refuse to sell you a depraved favour like that, [name_genie_hermione]." ("open", "narrow", "annoyed", "mid", cheeks="blush") her "Can't I just kiss another girl instead?" ("open", "happyCl", "worried", "mid") her "I do not mind that..." - gen "[hermione_name], please stop wasting my time..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], please stop wasting my time..." ("base", xpos="far_left", ypos="head") gen "If you are not in the mood to sell favours today..." ("base", xpos="far_left", ypos="head") gen "Then there is the door." ("base", xpos="far_left", ypos="head") - her "But I need the points, [genie_name]. You know that." ("upset", "closed", "base", "mid") - gen "It's as the saying goes, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "But I need the points, [name_genie_hermione]. You know that." ("upset", "closed", "base", "mid") + gen "It's as the saying goes, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "\"If you won't suck a dick for it - you don't need it\"." ("base", xpos="far_left", ypos="head") her "*Tch*..." ("angry", "base", "angry", "mid", cheeks="blush") her "............................" @@ -69,25 +69,25 @@ label hg_pr_blowjob: her "..." ("angry", "base", "angry", "mid", cheeks="blush") her "....." her "......." - gen "You may leave, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You may leave, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "..." else: if her_tier >= 6: call play_music("hermione") # Music - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Do you believe in horoscopes?" ("base", xpos="far_left", ypos="head") - her "Not even a little bit, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "Not even a little bit, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "Well, maybe you should..." ("base", xpos="far_left", ypos="head") her "...?" ("open", "base", "base", "mid") gen "Because I got yours right here and it says..." ("base", xpos="far_left", ypos="head") gen "\"Dedicate today to something you do well\"..." ("base", xpos="far_left", ypos="head") her "Something I do well...?" ("soft", "base", "base", "R") - gen "Go suck on some cocks, [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "Go suck on some cocks, [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") her "....................." ("annoyed", "narrow", "annoyed", "mid") # :( gen "Report back to me after your classes as usual..." ("base", xpos="far_left", ypos="head") her "Of course..." ("annoyed", "narrow", "angry", "R") else: - gen "Go give some lucky boy another blowjob, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Go give some lucky boy another blowjob, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "...... Again?" ("disgust", "narrow", "base", "mid_soft") gen "Yes, again." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "narrow", "annoyed", "mid") @@ -101,7 +101,7 @@ label end_hg_pr_blowjob: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -134,12 +134,12 @@ label end_hg_pr_blowjob: label hg_pr_blowjob_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you complete your assignment?" ("base", xpos="far_left", ypos="head") if hg_pr_blowjob.is_tier_complete(): - her "Yes, [genie_name]." + her "Yes, [name_genie_hermione]." menu: "\"Great. Here are your points.\"": @@ -154,7 +154,7 @@ label hg_pr_blowjob_intro: her "......" ("annoyed", "narrow", "angry", "R") gen ".............." ("base", xpos="far_left", ypos="head") - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") return @@ -165,10 +165,10 @@ label hg_pr_blowjob_T5_E1: call hg_pr_blowjob_intro call play_music("hermione") # Music - gen "You know the drill, [hermione_name]. Start talking." ("base", xpos="far_left", ypos="head") - her "I gave a blowjob, [genie_name]..." ("disgust", "narrow", "base", "mid_soft") + gen "You know the drill, [name_hermione_genie]. Start talking." ("base", xpos="far_left", ypos="head") + her "I gave a blowjob, [name_genie_hermione]..." ("disgust", "narrow", "base", "mid_soft") gen "Good. Tell me more." ("base", xpos="far_left", ypos="head") - her "What is there to tell, [genie_name]?" ("annoyed", "narrow", "angry", "R") + her "What is there to tell, [name_genie_hermione]?" ("annoyed", "narrow", "angry", "R") her "I sucked off one of my classmates today..." her "And that's it..." gen "*Hmm*... I see..." ("base", xpos="far_left", ypos="head") @@ -176,8 +176,8 @@ label hg_pr_blowjob_T5_E1: her "...................................." ("angry", "narrow", "base", "down") gen "Did you swallow?" ("base", xpos="far_left", ypos="head") her "..........................." ("annoyed", "narrow", "annoyed", "mid") - gen "[hermione_name], did you swallow the load properly?" ("base", xpos="far_left", ypos="head") - her "Yes I did, [genie_name]." ("angry", "base", "angry", "mid") + gen "[name_hermione_genie], did you swallow the load properly?" ("base", xpos="far_left", ypos="head") + her "Yes I did, [name_genie_hermione]." ("angry", "base", "angry", "mid") gen "Well, I suppose that will do for now..." ("base", xpos="far_left", ypos="head") jump end_hg_pr_blowjob @@ -186,30 +186,30 @@ label hg_pr_blowjob_T5_E2: call hg_pr_blowjob_intro - her "[genie_name], I..." ("angry", "narrow", "base", "down") + her "[name_genie_hermione], I..." ("angry", "narrow", "base", "down") her "I tried, but..." call play_music("despair") # Music - her "The boy turned me down, [genie_name]..." ("mad", "base", "worried", "mid", tears="soft") + her "The boy turned me down, [name_genie_hermione]..." ("mad", "base", "worried", "mid", tears="soft") her "I cannot believe that actually happened..." ("angry", "base", "base", "mid", tears="soft") her "I am one of the top students in this school!" her "One of the most popular ones too..." her "And he turns me down?" ("angry", "base", "angry", "mid", tears="soft") her "Why would he insult me like that?!" gen "So you're insulted because that boy refused to put his cock in your mouth?" ("base", xpos="far_left", ypos="head") - her "Wouldn't you be, [genie_name]?" ("angry", "base", "angry", "mid", tears="crying") + her "Wouldn't you be, [name_genie_hermione]?" ("angry", "base", "angry", "mid", tears="crying") gen "I.. I never considered that option myself, but I think I would get over it rather quickly..." ("base", xpos="far_left", ypos="head") - her "He rejected me [genie_name]..." ("angry", "base", "angry", "mid", cheeks="blush") + her "He rejected me [name_genie_hermione]..." ("angry", "base", "angry", "mid", cheeks="blush") her "Who does he think he is?!" - her "With all due respect, [genie_name], you wouldn't understand..." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "With all due respect, [name_genie_hermione], you wouldn't understand..." ("open", "narrow", "annoyed", "mid", cheeks="blush") gen "Well, in any case. I can't pay you for this." ("base", xpos="far_left", ypos="head") - her "Of course... I would not expect you to, [genie_name]." ("annoyed", "narrow", "annoyed", "mid", tears="soft") + her "Of course... I would not expect you to, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid", tears="soft") her "I failed to complete my task and deserve no praise of any kind..." her "And should you pay me out of pity..." her "Then That would only worsen the insult..." ("annoyed", "narrow", "angry", "R") gen "*Hmm*... In that case, maybe I should pay you anyway..." ("base", xpos="far_left", ypos="head") - her "No, [genie_name]. I would not accept it..." ("annoyed", "narrow", "annoyed", "mid") + her "No, [name_genie_hermione]. I would not accept it..." ("annoyed", "narrow", "annoyed", "mid") gen "*Hmm*... Well, this will be all then." ("base", xpos="far_left", ypos="head") - her "Have a good night, [genie_name]." + her "Have a good night, [name_genie_hermione]." jump end_hg_pr_blowjob.no_points @@ -218,7 +218,7 @@ label hg_pr_blowjob_T5_E3: call hg_pr_blowjob_intro - her "I still find the idea of performing a favour like this unappealing, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "I still find the idea of performing a favour like this unappealing, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") her "But it went surprisingly well..." ("annoyed", "narrow", "annoyed", "mid") call play_music("playful_tension") @@ -228,7 +228,7 @@ label hg_pr_blowjob_T5_E3: her "He even warned me when he was about to cum." ("angry", "narrow", "base", "down") gen "A true gentleman indeed." ("base", xpos="far_left", ypos="head") gen "Did you swallow?" ("base", xpos="far_left", ypos="head") - her "Of course I did, [genie_name]." ("upset", "closed", "base", "mid") + her "Of course I did, [name_genie_hermione]." ("upset", "closed", "base", "mid") her "I told you -- I gave the boy a {b}proper{/b} blowjob." her "It's the least I could do for someone who treated me with respect for a change..." ("angry", "narrow", "base", "down") gen "Well, in that case." ("base", xpos="far_left", ypos="head") @@ -241,7 +241,7 @@ label hg_pr_blowjob_T6_intro_E1: call hg_pr_blowjob_intro - her "Splendid, [genie_name]. Simply splendid." ("base", "happyCl", "base", "mid") + her "Splendid, [name_genie_hermione]. Simply splendid." ("base", "happyCl", "base", "mid") gen "Really? Do tell." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "Today I did something I wanted to do for such a long time now..." ("base", "narrow", "base", "up") @@ -257,8 +257,8 @@ label hg_pr_blowjob_T6_intro_E1: her "I, Hermione Granger -- the girl they knew for years..." her "Sucking on their cocks..." ("open_wide_tongue", "narrow", "annoyed", "up") her "Like some nasty slut..." ("shock", "base", "base", "R", cheeks="blush", tears="soft") - gen "Are you in love with those boys, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "I don't know, [genie_name]... But I surely like their cocks..." ("base", "happyCl", "base", "mid") + gen "Are you in love with those boys, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "I don't know, [name_genie_hermione]... But I surely like their cocks..." ("base", "happyCl", "base", "mid") her "Could I get paid now please?" gen "Sure..." ("base", xpos="far_left", ypos="head") @@ -275,12 +275,12 @@ label hg_pr_blowjob_T6_E2: her "" ("angry", "base", "angry", "mid", xpos="mid", ypos="base", trans=d3) pause 1.0 - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You look like hell..." ("base", xpos="far_left", ypos="head") call play_music("hermione") # Music - her "[genie_name], I... Yes, thanks to that Slytherin boy..." ("scream", "closed", "angry", "mid", tears="mascara") + her "[name_genie_hermione], I... Yes, thanks to that Slytherin boy..." ("scream", "closed", "angry", "mid", tears="mascara") gen "Slytherin...{w=0.4} Seriously?!" ("angry", xpos="far_left", ypos="head") - her "Yes, [genie_name]." ("annoyed", "narrow", "annoyed", "mid", tears="mascara") + her "Yes, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid", tears="mascara") her "That nasty boy from Slytherin seemed to take a fancy to my face..." her "Or...{w=0.5} My mouth rather I suppose..." ("open", "narrow", "worried", "down", tears="mascara") her "And--" @@ -289,7 +289,7 @@ label hg_pr_blowjob_T6_E2: her "{i}Excuse moi{/i}." ("angry", "narrow", "base", "down", tears="mascara") her "He came so much I was barely able to swallow it all..." ("scream", "base", "angry", "mid", emote="angry", tears="mascara") her "Bloody bastard!" - her "You think I could file a complaint, [genie_name]?" ("angry", "base", "angry", "mid", cheeks="blush", tears="mascara") + her "You think I could file a complaint, [name_genie_hermione]?" ("angry", "base", "angry", "mid", cheeks="blush", tears="mascara") gen "*Hmm*... I suppose..." ("base", xpos="far_left", ypos="head") gen "But keep in mind that the moment we bring the ministry into this..." ("base", xpos="far_left", ypos="head") gen "All this \"favour selling business\" will have to stop immediately." ("base", xpos="far_left", ypos="head") @@ -307,7 +307,7 @@ label hg_pr_blowjob_T6_E2: play sound "sounds/burp.ogg" her "*Burp*!..." ("shock", "wide", "base", "stare", tears="mascara") - her "Excuse me, [genie_name]." ("angry", "narrow", "base", "down", tears="mascara") + her "Excuse me, [name_genie_hermione]." ("angry", "narrow", "base", "down", tears="mascara") her "{size=-3}(He just kept on cumming... My stomach feels so full...){/size}" ("angry", "happyCl", "worried", "mid", emote="sweat", tears="mascara") her "Can I get my payment now, please?" ("open", "base", "base", "mid", tears="mascara") @@ -324,13 +324,13 @@ label hg_pr_blowjob_T6_E3: her "" ("base", "narrow", "base", "up", xpos="mid", ypos="base", trans=d3) pause 1.0 - her "Good evening, [genie_name]..." + her "Good evening, [name_genie_hermione]..." gen "Hermione?!" ("angry", xpos="far_left", ypos="head") - gen "What happened to you, [hermione_name]?" ("angry", xpos="far_left", ypos="head") + gen "What happened to you, [name_hermione_genie]?" ("angry", xpos="far_left", ypos="head") gen "All I asked you to do was to give a blowjob to one of your classmates." ("angry", xpos="far_left", ypos="head") call play_music("hermione") # Music - her "That... That was exactly what I did, [genie_name]." ("angry", "narrow", "base", "down") - gen "[hermione_name], you are covered in cum head to toe." ("base", xpos="far_left", ypos="head") + her "That... That was exactly what I did, [name_genie_hermione]." ("angry", "narrow", "base", "down") + gen "[name_hermione_genie], you are covered in cum head to toe." ("base", xpos="far_left", ypos="head") her "I am?" ("soft", "narrow", "annoyed", "up") her "Oh... Did I forget to clean myself up?" her "How embarrassing..." ("base", "narrow", "base", "mid_soft") @@ -340,7 +340,7 @@ label hg_pr_blowjob_T6_E3: her "... I mean, with fear... no, not fear..." ("grin", "narrow", "annoyed", "up") her "Embarrassment...? No, that's not it... *Hmm*..." ("base", "base", "base", "R", cheeks="blush") gen "Are you asking me?" ("base", xpos="far_left", ypos="head") - her "Oh, excuse me, [genie_name]... I feel a little lightheaded..." ("grin", "narrow", "base", "dead") + her "Oh, excuse me, [name_genie_hermione]... I feel a little lightheaded..." ("grin", "narrow", "base", "dead") her "I think I need to go lie down for a while..." gen "Don't miss the shower room this time." ("base", xpos="far_left", ypos="head") her "The shower room? Why?" ("base", "narrow", "base", "mid_soft") diff --git a/game/scripts/characters/hermione/events/requests/give_a_handjob.rpy b/game/scripts/characters/hermione/events/requests/give_a_handjob.rpy index 3138b883..23f3e397 100644 --- a/game/scripts/characters/hermione/events/requests/give_a_handjob.rpy +++ b/game/scripts/characters/hermione/events/requests/give_a_handjob.rpy @@ -20,13 +20,13 @@ label hg_pr_handjob: if hg_pr_handjob.counter == 0: if her_reputation < 12: - gen "[hermione_name], I want you to do something different today..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I want you to do something different today..." ("base", xpos="far_left", ypos="head") her "...?" ("normal", "squint", "angry", "mid") gen "I want you to give a handjob to one of your classmates." ("base", xpos="far_left", ypos="head") jump too_much_public - gen "[hermione_name], I want you to do something different today..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I want you to do something different today..." ("base", xpos="far_left", ypos="head") her "..........." ("soft", "base", "base", "mid") gen "I want you to go out there and have sex with one of your classmates." ("grin", xpos="far_left", ypos="head") @@ -35,17 +35,17 @@ label hg_pr_handjob: her "{size=+5}What?!!{/size}" ("shock", "wide", "base", "stare") call play_music("hermione") # Music - her "Now you have done it, [genie_name]! You crossed the line!" ("angry", "base", "angry", "mid") + her "Now you have done it, [name_genie_hermione]! You crossed the line!" ("angry", "base", "angry", "mid") her "I know I did sell you a couple of rather questionable favours in the past..." gen "{size=-4}*Heh* a couple she says...{/size}" ("base", xpos="far_left", ypos="head") with vpunch her "{size=+5}--But THIS?!{/size}" ("scream", "base", "angry", "mid", emote="angry") her "I cannot believe that you would ask one of your pupils to... to..." - her "We are done here, [genie_name]!" ("angry", "base", "angry", "mid", emote="angry") + her "We are done here, [name_genie_hermione]!" ("angry", "base", "angry", "mid", emote="angry") gen "Alright, alright, calm down, would you?" ("base", xpos="far_left", ypos="head") - her "I most certainly will not, [genie_name]! This is beyond inappropriate!" ("scream", "closed", "angry", "mid") + her "I most certainly will not, [name_genie_hermione]! This is beyond inappropriate!" ("scream", "closed", "angry", "mid") gen "Alright, fine, maybe I really did cross some sort of line this time..." ("base", xpos="far_left", ypos="head") - her "You think [genie_name]?! You think!!?" ("angry", "base", "angry", "mid") + her "You think [name_genie_hermione]?! You think!!?" ("angry", "base", "angry", "mid") gen "Yes, I apologise..." ("base", xpos="far_left", ypos="head") her "........." ("annoyed", "narrow", "annoyed", "mid") gen "How about we try something less... engaging instead?" ("base", xpos="far_left", ypos="head") @@ -59,21 +59,21 @@ label hg_pr_handjob: her "..." ("disgust", "narrow", "base", "mid_soft") gen "{number=current_payout} house points..." ("base", xpos="far_left", ypos="head") her ".............." ("annoyed", "narrow", "angry", "R") - her "I am glad that you came to your senses, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "I am glad that you came to your senses, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") gen "Oh, but of course. Thank you for keeping me in check." ("base", xpos="far_left", ypos="head") gen "Are you up for it then?" ("base", xpos="far_left", ypos="head") her "I am willing to give it a try..." ("annoyed", "narrow", "angry", "R") gen "Splendid... See you tonight then." ("base", xpos="far_left", ypos="head") else: if her_tier >= 6: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "What do you think about giving one of your classmates another handjob?" ("base", xpos="far_left", ypos="head") - her "I don't mind, [genie_name]." ("annoyed", "narrow", "worried", "down") + her "I don't mind, [name_genie_hermione]." ("annoyed", "narrow", "worried", "down") gen "Really?" ("base", xpos="far_left", ypos="head") her "Yes... I mean, it's just a handjob..." ("grin", "base", "base", "R") gen "Great. Go have fun then!" ("base", xpos="far_left", ypos="head") gen "And report back to me after your classes, as usual." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("base", "happyCl", "base", "mid") + her "Of course, [name_genie_hermione]." ("base", "happyCl", "base", "mid") elif her_tier >= 5: gen "Ready to go have sex with one of your classmates yet?" ("base", xpos="far_left", ypos="head") @@ -97,7 +97,7 @@ label hg_pr_handjob: gen "Sure, why not?" ("base", xpos="far_left", ypos="head") gen "And another {number=current_payout} house points for the Gryffindor house of course." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "base", "worried", "R") - gen "So... Are you up for that, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "So... Are you up for that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I will see what I can do..." ("annoyed", "narrow", "angry", "R") gen "Splendid!" ("base", xpos="far_left", ypos="head") @@ -109,7 +109,7 @@ label hg_pr_handjob: label end_hg_pr_handjob: $ gryffindor += current_payout #55 gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -145,10 +145,10 @@ label end_hg_pr_handjob: label hg_pr_handjob_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you lend a hand to the needy?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." + her "Yes, [name_genie_hermione]..." if hg_pr_handjob.is_tier_complete(): menu: @@ -164,7 +164,7 @@ label hg_pr_handjob_intro: her "......" ("annoyed", "narrow", "angry", "R") gen ".............." ("base", xpos="far_left", ypos="head") - gen "[hermione_name], how did it go?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it go?" ("base", xpos="far_left", ypos="head") return @@ -176,20 +176,20 @@ label hg_pr_handjob_T4_E1: call play_music("hermione") # Music her "Quite awful... of course..." ("annoyed", "squint", "angry", "mid") - gen "Just tell me what happened, [hermione_name]..." ("base", xpos="far_left", ypos="head") - her "I made a complete fool out of myself, that's what happened, [genie_name]." ("disgust", "narrow", "base", "mid_soft") + gen "Just tell me what happened, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "I made a complete fool out of myself, that's what happened, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") her "....." gen "..." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "base", "worried", "R") her "I don't want to talk about it..." ("annoyed", "narrow", "angry", "R") - her "You told me to go and touch a boy's penis and I did just that, [genie_name]." - her "Please, just let me have my points now, [genie_name]..." ("open", "base", "base", "mid") - gen "I did not tell you to \"go and touch a boy's penis\", [hermione_name]." ("base", xpos="far_left", ypos="head") + her "You told me to go and touch a boy's penis and I did just that, [name_genie_hermione]." + her "Please, just let me have my points now, [name_genie_hermione]..." ("open", "base", "base", "mid") + gen "I did not tell you to \"go and touch a boy's penis\", [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I told you to give one of your classmates a proper handjob." ("base", xpos="far_left", ypos="head") her "Well, yes... that was what I meant of course..." ("annoyed", "narrow", "annoyed", "mid") gen "Did you make him cum, then?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("open", "base", "base", "mid") - gen "Did his \"wee-wee\" shoot white stuff at you, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("open", "base", "base", "mid") + gen "Did his \"wee-wee\" shoot white stuff at you, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Well..." ("annoyed", "base", "worried", "R") her "No, it did not..." ("normal", "happyCl", "worried", "mid") gen "Poor guy... Must've blue-balled him." ("base", xpos="far_left", ypos="head") @@ -199,15 +199,15 @@ label hg_pr_handjob_T4_E1: "\"Well, this doesn't count then.\"": stop music fadeout 4.0 her "What?" ("angry", "wide", "base", "stare") - her "But, [genie_name], I..." + her "But, [name_genie_hermione], I..." gen "If you didn't make him cum then that wasn't a proper handjob. Period." ("base", xpos="far_left", ypos="head") her "But... But what was it then...?" ("angry", "base", "base", "mid") gen "How should I know? A cock massage?" ("base", xpos="far_left", ypos="head") her "*Aww*..." ("angry", "narrow", "base", "down") her "But I really tried my best..." - gen "No handjob - no payment, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "No handjob - no payment, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "....." ("angry", "base", "base", "mid") - gen "You are free to go, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "You are free to go, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "........." ("annoyed", "narrow", "angry", "R") $ her_mood +=9 @@ -217,13 +217,13 @@ label hg_pr_handjob_T4_E1: $ current_payout = int(current_payout/2) her "Oh...?" ("open", "base", "base", "mid") - gen "Is that a Problem, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "N-No [genie_name]... It's only fair I suppose..." ("angry", "narrow", "base", "down") + gen "Is that a Problem, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "N-No [name_genie_hermione]... It's only fair I suppose..." ("angry", "narrow", "base", "down") gen "Of course it is!" ("base", xpos="far_left", ypos="head") "\"Well, you did try. Here are your points.\"": her "Really?" ("angry", "base", "base", "mid") - her "Thank you, [genie_name]!" ("open", "narrow", "worried", "down") + her "Thank you, [name_genie_hermione]!" ("open", "narrow", "worried", "down") her "I promise, I will try harder next time!" ("base", "base", "base", "mid") her "*Ehm*... Should you request a similar favour in the future, I mean..." ("upset", "wink", "base", "mid") @@ -234,7 +234,7 @@ label hg_pr_handjob_T4_E2: call hg_pr_handjob_intro call play_music("playful_tension") # Music - her "It went well, [genie_name]..." ("open", "base", "base", "mid") + her "It went well, [name_genie_hermione]..." ("open", "base", "base", "mid") her "I asked one of the Gryffindor boys to let me do \"it\" to him..." her "To my surprise he agreed eagerly." ("open", "base", "base", "mid", cheeks="blush") gen "Shocker..." ("base", xpos="far_left", ypos="head") @@ -242,17 +242,17 @@ label hg_pr_handjob_T4_E2: her "And I... wanked him until he came..." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "........." her "And I asked him to keep the whole thing a secret, but..." ("angry", "base", "base", "mid", cheeks="blush") - gen "What's the matter, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What's the matter, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "Doubting the honesty of your fellow Gryffindor?" ("base", xpos="far_left", ypos="head") - her "Of course not, [genie_name]." ("upset", "closed", "base", "mid") + her "Of course not, [name_genie_hermione]." ("upset", "closed", "base", "mid") her "..........................." ("angry", "narrow", "base", "down", cheeks="blush") her "Still... Performing this sort of task could really damage my reputation..." ("angry", "base", "base", "mid", cheeks="blush") - gen "Is this your way of asking for a raise, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Is this your way of asking for a raise, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "{number=current_payout} points is as high as I can go with this one." ("base", xpos="far_left", ypos="head") her "Oh... Of course..." ("angry", "narrow", "base", "down") gen "Unless, you've changed your mind about having sex with one of your classmates?" ("base", xpos="far_left", ypos="head") her "What?" ("shock", "wide", "base", "stare") - her "[genie_name], I am not a prostitute!" ("angry", "narrow", "base", "down", cheeks="blush") + her "[name_genie_hermione], I am not a prostitute!" ("angry", "narrow", "base", "down", cheeks="blush") gen "Well, in that case..." ("base", xpos="far_left", ypos="head") jump end_hg_pr_handjob @@ -263,7 +263,7 @@ label hg_pr_handjob_T4_E3: stop music fadeout 3.0 call her_walk(action="enter", xpos="mid", ypos="base") - gen "[hermione_name], how did it--" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], how did it--" ("base", xpos="far_left", ypos="head") $ hermione.set_cum(hair="light") show screen blktone with d3 @@ -271,7 +271,7 @@ label hg_pr_handjob_T4_E3: gen "...-go." ("base", xpos="far_left", ypos="head") call play_music("hermione") # Music - her "Awful, [genie_name]. Simply awful..." ("scream", "happyCl", "worried", "mid") + her "Awful, [name_genie_hermione]. Simply awful..." ("scream", "happyCl", "worried", "mid") gen "You've got something... in your hair there..." ("base", xpos="far_left", ypos="head") her "*huh*?" ("open", "base", "angry", "mid") her "Oh, no! I thought I got it all off..." ("angry", "happyCl", "base", "mid", cheeks="blush") @@ -286,10 +286,10 @@ label hg_pr_handjob_T4_E3: with d3 gen "*Hmm*... So I suppose you have completed your task?" ("base", xpos="far_left", ypos="head") - her "I did, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "I did, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "What's the problem, then?" ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "base", "worried", "R") - her "All boys are jerks! That is the problem, [genie_name]!" ("scream", "closed", "angry", "mid") + her "All boys are jerks! That is the problem, [name_genie_hermione]!" ("scream", "closed", "angry", "mid") her "I gave this one boy a good wanking..." ("open", "narrow", "worried", "down") her "And do you know how he thanked me?" her "He got his spunk all over me..." ("scream", "base", "angry", "mid", emote="angry") @@ -307,9 +307,9 @@ label hg_pr_handjob_T5_E1: call play_music("hermione") # Music her "*Ehm*..." ("open", "base", "base", "mid") - her "Not that good to be honest, [genie_name]..." + her "Not that good to be honest, [name_genie_hermione]..." gen "Oh?" ("base", xpos="far_left", ypos="head") - her "Yes... Let me explain, [genie_name]..." ("annoyed", "base", "worried", "R") + her "Yes... Let me explain, [name_genie_hermione]..." ("annoyed", "base", "worried", "R") her "*Ehm*... Well..." ("open", "base", "base", "mid") her "I was jerking this one boy off, in one of the empty classrooms..." her "And that nasty ghost Peeves walked in..." @@ -318,22 +318,22 @@ label hg_pr_handjob_T5_E1: her "He started to yell obscenities at us..." her "So we had to leave in a hurry..." gen "I see..." ("base", xpos="far_left", ypos="head") - her "That is not all, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "That is not all, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "Go on..." ("base", xpos="far_left", ypos="head") her "Well, I sort of made a promise to the boy..." ("open", "narrow", "worried", "down") her "I promised to meet him after my classes and..." her "... and finish what I have started..." ("annoyed", "narrow", "annoyed", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") gen "Did you?" ("base", xpos="far_left", ypos="head") - her "No, [genie_name]. Not yet at least..." ("angry", "base", "base", "mid") - her "I am supposed to meet him as soon as we are done here, [genie_name]." + her "No, [name_genie_hermione]. Not yet at least..." ("angry", "base", "base", "mid") + her "I am supposed to meet him as soon as we are done here, [name_genie_hermione]." gen "*Hmm*..." ("base", xpos="far_left", ypos="head") her "So if you could just give those points in advance..." ("angry", "narrow", "base", "down") her "I would go meet with the boy right away and..." her "And give him a proper handjob...?" ("open", "base", "base", "R", cheeks="blush") menu: - "\"No. You failed this favour, [hermione_name].\"": + "\"No. You failed this favour, [name_hermione_genie].\"": stop music fadeout 3.0 her "B-but..." ("open", "base", "base", "mid", cheeks="blush") @@ -348,10 +348,10 @@ label hg_pr_handjob_T5_E1: jump end_hg_pr_handjob.no_points "\"Alright, I think I can trust you.\"": - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") her "I knew you would understand." gen "Just make sure you finish your job properly this time." ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]. I will give him the wank of his life, I promise!" ("base", "happyCl", "base", "mid") + her "Of course, [name_genie_hermione]. I will give him the wank of his life, I promise!" ("base", "happyCl", "base", "mid") jump end_hg_pr_handjob @@ -362,9 +362,9 @@ label hg_pr_handjob_T5_E2: call play_music("hermione") # Music her "Fine I suppose..." ("open", "closed", "base", "mid") her "Although I am still not sure how I feel about all of this..." ("annoyed", "base", "worried", "R") - gen "Your personal feelings are of no concern to me, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Your personal feelings are of no concern to me, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Just tell me more about how it went." ("base", xpos="far_left", ypos="head") - her "Well, there is not much to tell. [genie_name]..." ("open", "base", "base", "mid") + her "Well, there is not much to tell. [name_genie_hermione]..." ("open", "base", "base", "mid") call play_music("playful_tension") # Music her "Today I gave another handjob to one of my classmates..." her "Me, Hermione Granger..." ("open", "narrow", "worried", "down") @@ -375,13 +375,13 @@ label hg_pr_handjob_T5_E2: her "And to everyone else this just looks like some harlot who does this for fun..." her "They must think I am a slut..." ("open", "narrow", "worried", "down") her ".............." ("clench", "narrow", "base", "down") - her "Do you think I'm a slut, [genie_name]?" ("open", "happy", "base", "mid", cheeks="blush") + her "Do you think I'm a slut, [name_genie_hermione]?" ("open", "happy", "base", "mid", cheeks="blush") menu: gen "(*Hmm*..)" ("base", xpos="far_left", ypos="head") - "\"What? Of course not, [hermione_name]!\"": + "\"What? Of course not, [name_hermione_genie]!\"": her ".............." ("base", "base", "base", "R", cheeks="blush") - her "You are right, [genie_name]..." ("base", "narrow", "worried", "down") + her "You are right, [name_genie_hermione]..." ("base", "narrow", "worried", "down") her "I am making this sacrifice for the glory of the Gryffindor house." her "I am not taking pleasure in this sort of activity..." ("soft", "narrow", "annoyed", "up") her "Because if I would..." ("annoyed", "narrow", "angry", "R") @@ -394,26 +394,26 @@ label hg_pr_handjob_T5_E2: her "\"Not yet\"??!" ("angry", "base", "base", "mid") her ".........." ("angry", "narrow", "base", "down") her "Well, of course!" ("scream", "wide", "base", "mid") - her "You are right, as usual, [genie_name]!" ("soft", "base", "base", "mid") + her "You are right, as usual, [name_genie_hermione]!" ("soft", "base", "base", "mid") gen "*huh*?" ("base", xpos="far_left", ypos="head") her "I have done a few... naughty things..." ("open", "base", "base", "mid") her "But that does not mean anything!" her "..........." ("annoyed", "narrow", "angry", "R") "\"Yes, that's exactly what you are.\"": - her "I was afraid that you would say that, [genie_name]..." ("mad", "happyCl", "worried", "mid", tears="soft_blink") - her "But you are wrong, [genie_name]." + her "I was afraid that you would say that, [name_genie_hermione]..." ("mad", "happyCl", "worried", "mid", tears="soft_blink") + her "But you are wrong, [name_genie_hermione]." her "You of all people should understand that I take no pleasure in this..." ("angry", "base", "base", "mid", tears="soft") her "I just do what needs to be done..." ("normal", "base", "base", "R", tears="soft") $ her_mood = 10 - her "[genie_name], can I just get paid now, please?" ("soft", "base", "base", "R") + her "[name_genie_hermione], can I just get paid now, please?" ("soft", "base", "base", "R") gen "Get paid? But you didn't tell me how it went yet?" ("base", xpos="far_left", ypos="head") her "I did not?" - her "[genie_name], I gave a handjob to one of my classmates today..." ("open", "base", "base", "mid", cheeks="blush") + her "[name_genie_hermione], I gave a handjob to one of my classmates today..." ("open", "base", "base", "mid", cheeks="blush") her "I wanked his cock until he came..." her "Is that not what you told me to do?" ("disgust", "narrow", "base", "mid_soft") - gen "That's exactly what I told you to do, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "That's exactly what I told you to do, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Then I would like to get paid now, please." ("annoyed", "closed", "base", "mid") gen "........" ("base", xpos="far_left", ypos="head") gen "Fine..." ("base", xpos="far_left", ypos="head") @@ -425,7 +425,7 @@ label hg_pr_handjob_T5_E3: call hg_pr_handjob_intro call play_music("hermione") # Music - her "Pretty well, [genie_name]." ("open", "closed", "base", "mid") + her "Pretty well, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Great. Tell me more." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "Well, today was a rather busy day..." ("open", "base", "base", "mid") @@ -435,7 +435,7 @@ label hg_pr_handjob_T5_E3: her "And asked him if he wants me to jerk him off." ("annoyed", "narrow", "angry", "R") her "a Few minutes later I was already stroking his hard cock in the restroom stall..." gen "How very efficient of you..." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "Thank you, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") her "So, as I was saying..." ("annoyed", "narrow", "angry", "R") her "I stroked his cock until he came..." her "But after that he said: \"Good job, slut\" and just left me there..." ("disgust", "narrow", "base", "mid_soft") @@ -444,14 +444,14 @@ label hg_pr_handjob_T5_E3: her "But it gets worse..." her "......." her "I think on some level it also made me feel good somehow..." ("angry", "narrow", "base", "down") - her "All these favours I have been selling to you lately, [genie_name]..." + her "All these favours I have been selling to you lately, [name_genie_hermione]..." her "... it's starting to affect me." ("angry", "base", "base", "mid") - her "[genie_name], what is happening to me?" + her "[name_genie_hermione], what is happening to me?" menu: "\"This is nothing. Stop over-thinking it!\"": her "......." ("open", "happy", "base", "mid", cheeks="blush") - her "You are probably right, [genie_name]. As usual..." ("base", "base", "base", "R", cheeks="blush") + her "You are probably right, [name_genie_hermione]. As usual..." ("base", "base", "base", "R", cheeks="blush") her "This does not have to mean anything..." "\"That is a natural response...\"": @@ -462,17 +462,17 @@ label hg_pr_handjob_T5_E3: her "*Hmm*..." ("base", "base", "base", "R", cheeks="blush") gen "Now if you were to give a handjob and feel completely indifferent about it..." ("base", xpos="far_left", ypos="head") gen "... that would be... unnatural." ("base", xpos="far_left", ypos="head") - her "I think you are right, [genie_name]." ("open", "happy", "base", "mid", cheeks="blush") + her "I think you are right, [name_genie_hermione]." ("open", "happy", "base", "mid", cheeks="blush") her "As usual." ("base", "base", "base", "R", cheeks="blush") # :) "\"Yes! All goes according to plan!\"": her "What?" ("angry", "wide", "base", "stare") gen "What?" ("base", xpos="far_left", ypos="head") - her "[genie_name], did you just say \"All goes according to plan\"?" ("angry", "base", "angry", "mid", cheeks="blush") + her "[name_genie_hermione], did you just say \"All goes according to plan\"?" ("angry", "base", "angry", "mid", cheeks="blush") gen "Did I?" ("base", xpos="far_left", ypos="head") gen "Oh, yes, of course." ("base", xpos="far_left", ypos="head") gen "Ensuring that Gryffindor gets the house cup this year." ("base", xpos="far_left", ypos="head") - gen "That's the plan And thanks to your hard work, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "That's the plan And thanks to your hard work, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "All goes according to my-- I mean, our plan..." ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("upset", "closed", "base", "mid") @@ -490,9 +490,9 @@ label hg_pr_handjob_T6_intro_E1: $ hermione.set_cum(hair="light") - her "[genie_name]..." ("open", "base", "worried", "mid", xpos="mid", ypos="base", trans=d3) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "I did a bad thing today, [genie_name]..." ("open", "base", "worried", "R") + her "[name_genie_hermione]..." ("open", "base", "worried", "mid", xpos="mid", ypos="base", trans=d3) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "I did a bad thing today, [name_genie_hermione]..." ("open", "base", "worried", "R") gen "Did you now? Do tell..." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "Yes, I did a bad thing... a very bad thing..." @@ -505,32 +505,32 @@ label hg_pr_handjob_T6_intro_E1: her "Seemed like such a great idea at first..." ("angry", "base", "base", "mid", tears="soft") her "And Ron was so up for it..." her "But if Ginny were to find out... She..." ("shock", "base", "base", "R", cheeks="blush", tears="soft") - her "She would most certainly kill me, [genie_name]..." ("angry", "base", "base", "mid", tears="soft") + her "She would most certainly kill me, [name_genie_hermione]..." ("angry", "base", "base", "mid", tears="soft") gen "A handjob, *huh*? Are you sure that was all you did?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("angry", "base", "base", "mid", tears="soft") + her "[name_genie_hermione]?" ("angry", "base", "base", "mid", tears="soft") gen "There is something in your hair..." ("base", xpos="far_left", ypos="head") her "What? But I swallowed it all... *Err*..." ("soft", "base", "base", "mid", tears="soft") her "I mean..." ("clench", "base", "worried", "mid", cheeks="blush", tears="soft") her "*Sigh*" ("shock", "base", "base", "R", cheeks="blush", tears="soft") - her "... I sucked him off, [genie_name]." + her "... I sucked him off, [name_genie_hermione]." her "I did not plan to... but..." her "Ron is always so nice to me..." ("clench", "base", "worried", "mid", cheeks="blush", tears="soft") her "And I wanted to thank him...*Sob*!" ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") her "And now Ginny will kill me! *Sob*!" ("angry", "base", "base", "mid", tears="soft") - her "She will kill me, [genie_name]!" + her "She will kill me, [name_genie_hermione]!" her "And if she does not I will probably die of shame anyway." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") her "No, no, no... How will I ever face her...?" - gen "Calm down, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Calm down, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "I assure you, this is not something a boy would be eager to brag about to his sister." ("base", xpos="far_left", ypos="head") her "It is not?" ("clench", "base", "worried", "mid", cheeks="blush", tears="soft") - gen "Don't be silly, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Don't be silly, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "*Hmm*..." ("normal", "base", "base", "R", tears="soft") - her "You are probably right, [genie_name]..." ("soft", "base", "base", "mid", tears="soft") + her "You are probably right, [name_genie_hermione]..." ("soft", "base", "base", "mid", tears="soft") her "And I made Ron give me his word that he will keep the whole incident a secret..." her "So, I think I should just trust him to keep his word..." ("open", "base", "worried", "R") her ".........." ("soft", "base", "base", "R") her "..." - her "Will I get paid for this, [genie_name]?" ("base", "base", "base", "mid") + her "Will I get paid for this, [name_genie_hermione]?" ("base", "base", "base", "mid") gen "Of course." ("base", xpos="far_left", ypos="head") jump end_hg_pr_handjob @@ -543,15 +543,15 @@ label hg_pr_handjob_T6_E2: her "It went... Particularly well..." ("base", "squint", "base", "mid") her "I did it more than once actually..." gen "More than once?" ("base", xpos="far_left", ypos="head") - her "Five times, [genie_name]..." ("base", "narrow", "base", "mid_soft") + her "Five times, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") her "I... got carried away a little I suppose..." - gen "What do you mean \"five times\", [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What do you mean \"five times\", [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") gen "Like... at once?" ("base", xpos="far_left", ypos="head") - her "No silly. I mean I wanked off five boys today in total, [genie_name]." ("base", "squint", "base", "mid") - gen "Very impressive nonetheless, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "No silly. I mean I wanked off five boys today in total, [name_genie_hermione]." ("base", "squint", "base", "mid") + gen "Very impressive nonetheless, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") gen "You don't expect me to multiply your payment by seven or anything, do you?" ("base", xpos="far_left", ypos="head") - her "Of course not, [genie_name]." ("base", "base", "base", "R", cheeks="blush") + her "Of course not, [name_genie_hermione]." ("base", "base", "base", "R", cheeks="blush") gen "Then why did you do it? Five times no less!" ("base", xpos="far_left", ypos="head") her "Well, it sort of just happened..." ("open", "happy", "base", "mid", cheeks="blush") her "I was jerking off this one boy..." @@ -573,13 +573,13 @@ label hg_pr_handjob_T6_E3: call hg_pr_handjob_intro - her "It went well, [genie_name]." ("base", "base", "base", "mid") + her "It went well, [name_genie_hermione]." ("base", "base", "base", "mid") her "But, *Ehm*..." ("open", "base", "worried", "mid") gen "...?" ("base", xpos="far_left", ypos="head") her "Well, I did not wank off one of my classmates during break period..." ("open", "base", "base", "mid") her "I........." her "..............." ("clench", "narrow", "base", "down") - gen "Spit it out, [hermione_name]. The suspense is killing me." ("base", xpos="far_left", ypos="head") + gen "Spit it out, [name_hermione_genie]. The suspense is killing me." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "I sort of did it during class..." ("open", "narrow", "worried", "down") gen "Impressive..." ("base", xpos="far_left", ypos="head") @@ -617,7 +617,7 @@ label hg_pr_handjob_T6_E3: gen "........" ("base", xpos="far_left", ypos="head") her "......." ("silly", "narrow", "annoyed", "up") gen "*Ehm*....." ("base", xpos="far_left", ypos="head") - her "Oh god, I'm sorry [genie_name], I was thinking of something else." ("angry", "wide", "base", "stare") + her "Oh god, I'm sorry [name_genie_hermione], I was thinking of something else." ("angry", "wide", "base", "stare") gen "Yes... sure, okay." ("base", xpos="far_left", ypos="head") her "" ("base", "base", "base", "mid") diff --git a/game/scripts/characters/hermione/events/requests/have_sex.rpy b/game/scripts/characters/hermione/events/requests/have_sex.rpy index 64f71254..a131ac9e 100644 --- a/game/scripts/characters/hermione/events/requests/have_sex.rpy +++ b/game/scripts/characters/hermione/events/requests/have_sex.rpy @@ -18,7 +18,7 @@ label hg_pr_sex: #Intro. if hg_pr_sex.counter == 0: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Today I need you to have sex with a classmate of your choice." ("base", xpos="far_left", ypos="head") if not hg_sex.trigger: # She will refuse unless she slept with you @@ -46,13 +46,13 @@ label hg_pr_sex: her "But..." ("annoyed", "narrow", "angry", "R") her "..................." gen "If you do this, Gryffindor will be getting {number=current_payout} points tonight." ("base", xpos="far_left", ypos="head") - her "Well, then I will do it, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "Well, then I will do it, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") gen "Great. See you after your classes then." ("base", xpos="far_left", ypos="head") her "............." ("upset", "closed", "base", "mid") else: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "I need you to go have sex with another classmate of yours." ("base", xpos="far_left", ypos="head") - her "Again, [genie_name]?" ("angry", "base", "base", "mid") + her "Again, [name_genie_hermione]?" ("angry", "base", "base", "mid") gen "Yes. And you will get {number=current_payout} points again as well." ("base", xpos="far_left", ypos="head") her "Well, alright..." ("annoyed", "narrow", "annoyed", "mid") @@ -65,7 +65,7 @@ label hg_pr_sex: label end_hg_pr_sex: $ gryffindor += current_payout gen "Gryffindor gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -95,12 +95,12 @@ label end_hg_pr_sex: label hg_pr_sex_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you do it?" ("base", xpos="far_left", ypos="head") if hg_pr_sex.is_tier_complete(): - her "Of course, [genie_name]." + her "Of course, [name_genie_hermione]." menu: "\"Great. Here are your points.\"": jump end_hg_pr_sex @@ -137,19 +137,19 @@ label hg_pr_sex_T6_intro_E2: stop music fadeout 3.0 call her_walk(action="enter", xpos="mid", ypos="base") - gen "[hermione_name], you missed your debriefing yesterday." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], you missed your debriefing yesterday." ("base", xpos="far_left", ypos="head") gen "Explain yourself." ("base", xpos="far_left", ypos="head") call play_music("hermione") - her "Yes, [genie_name], I apologise... *yawn*..." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=d3) + her "Yes, [name_genie_hermione], I apologise... *yawn*..." ("open", "closed", "base", "mid", xpos="mid", ypos="base", trans=d3) gen "Care to explain yourself?" ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "happy", "base", "mid", cheeks="blush") + her "Of course, [name_genie_hermione]." ("open", "happy", "base", "mid", cheeks="blush") her "It is sort of embarrassing, though..." ("base", "base", "base", "R", cheeks="blush") her "I spent the last night with two of my friends..." ("open", "happy", "base", "mid", cheeks="blush") gen "A slumber party with some girlfriends, *huh*?" ("base", xpos="far_left", ypos="head") her "Girlfriends?" ("angry", "wink", "base", "mid") - her "No, [genie_name]. Harry and Ron are boys..." ("open", "base", "base", "R", cheeks="blush") + her "No, [name_genie_hermione]. Harry and Ron are boys..." ("open", "base", "base", "R", cheeks="blush") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") her "Yes, we were best friends for such a long time..." ("base", "base", "base", "R", cheeks="blush") @@ -160,7 +160,7 @@ label hg_pr_sex_T6_intro_E2: her "They did everything they wanted to do to me..." her "And everything I wanted to be done to me has been done..." her "................." ("soft", "narrow", "annoyed", "up") - her "Will I get paid for this, [genie_name]?" ("angry", "wink", "base", "mid") + her "Will I get paid for this, [name_genie_hermione]?" ("angry", "wink", "base", "mid") jump end_hg_pr_sex @@ -169,11 +169,11 @@ label hg_pr_sex_T6_E3: call hg_pr_sex_intro call play_music("hermione") # Music - her "Yes I did, [genie_name]." ("upset", "closed", "base", "mid") + her "Yes I did, [name_genie_hermione]." ("upset", "closed", "base", "mid") her "And in the school library of all places..." ("open", "narrow", "annoyed", "mid", cheeks="blush") her "At first I was kind of worried that we would make too much noise..." - her "But the boy literally lasted only one minute, [genie_name]." - gen "Don't hold it against him, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "But the boy literally lasted only one minute, [name_genie_hermione]." + gen "Don't hold it against him, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You are quite attractive, he probably got too excited..." ("base", xpos="far_left", ypos="head") her "Nevertheless..." ("upset", "closed", "base", "mid") her "A dozen or so of rather gingerly thrusts and he is cumming already?" @@ -184,10 +184,10 @@ label hg_pr_sex_T6_E3: her "My panties?" ("open", "narrow", "worried", "down") - her "I rarely bother to wear them anymore, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "I rarely bother to wear them anymore, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") if hermione.is_worn("panties"): - her "Unless you ask me to wear them, [genie_name]." + her "Unless you ask me to wear them, [name_genie_hermione]." gen "Oh really?" ("base", xpos="far_left", ypos="head") her "Yes... I find not wearing any underwear very empowering." ("annoyed", "narrow", "annoyed", "mid") @@ -195,7 +195,7 @@ label hg_pr_sex_T6_E3: if hermione.is_worn("panties"): her "But if that's what makes you happy, so be it." - gen "Good for you, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good for you, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") jump end_hg_pr_sex @@ -204,21 +204,21 @@ label hg_pr_sex_T6_E4: call hg_pr_sex_intro call play_music("playful_tension") # Music - her "I did, [genie_name]." ("upset", "closed", "base", "mid") + her "I did, [name_genie_hermione]." ("upset", "closed", "base", "mid") her "I took one of the Ravenclaw boys to the girl's restroom..." ("base", "narrow", "worried", "down") her "... and let him have his way with me in one of the stalls." - gen "Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "....................." ("annoyed", "narrow", "angry", "R") gen "I said you did great. What's the matter?" ("base", xpos="far_left", ypos="head") her "*Ehm*... well..." ("open", "base", "base", "R", cheeks="blush") her "I am getting paid well for performing such tasks..." her "So I have no right to complain, but..." gen "*Hmm*...?" ("base", xpos="far_left", ypos="head") - her "My reputation is starting to suffer and it troubles me, [genie_name]..." ("open", "base", "base", "mid", cheeks="blush") + her "My reputation is starting to suffer and it troubles me, [name_genie_hermione]..." ("open", "base", "base", "mid", cheeks="blush") gen "Your reputation?" ("base", xpos="far_left", ypos="head") her "Well, yes... *Ehm*..." ("open", "base", "base", "R", cheeks="blush") gen ".............." ("base", xpos="far_left", ypos="head") - her "No, sorry, please disregard what I just said, [genie_name]." ("upset", "closed", "base", "mid") + her "No, sorry, please disregard what I just said, [name_genie_hermione]." ("upset", "closed", "base", "mid") gen "(At this point I'm not sure she has any reputation left.)" ("base", xpos="far_left", ypos="head") jump end_hg_pr_sex diff --git a/game/scripts/characters/hermione/events/requests/kiss_a_girl.rpy b/game/scripts/characters/hermione/events/requests/kiss_a_girl.rpy index a568207e..878dbb0d 100644 --- a/game/scripts/characters/hermione/events/requests/kiss_a_girl.rpy +++ b/game/scripts/characters/hermione/events/requests/kiss_a_girl.rpy @@ -18,27 +18,27 @@ label hg_pr_kiss: #Intro. if hg_pr_kiss.counter == 0: - gen "Have You ever kissed another girl, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Have You ever kissed another girl, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "?!" ("normal", "squint", "angry", "mid") if her_reputation < 9: jump too_much_public - her "I am not a... lesbian, [genie_name]." ("open", "base", "base", "mid") + her "I am not a... lesbian, [name_genie_hermione]." ("open", "base", "base", "mid") gen "Silly girl... You don't need to be a lesbian to kiss girls." ("base", xpos="far_left", ypos="head") gen "I mean, I do it and I am not a lesbian either." ("base", xpos="far_left", ypos="head") her "..............." ("angry", "base", "angry", "mid") - her "[genie_name]--" - gen "No, \"[genie_name]s\"! This is your task for today!" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]--" + gen "No, \"[name_genie_hermione]s\"! This is your task for today!" ("base", xpos="far_left", ypos="head") gen "Go find a cute little thing and plant a \"smooch\" on her!" ("base", xpos="far_left", ypos="head") - her "[genie_name], but I am--" ("open", "base", "worried", "mid") - gen "Dismissed, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name]!......" ("normal", "squint", "angry", "mid") + her "[name_genie_hermione], but I am--" ("open", "base", "worried", "mid") + gen "Dismissed, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]!......" ("normal", "squint", "angry", "mid") gen "I said you're dismissed." ("base", xpos="far_left", ypos="head") her "*Humph*!..." ("annoyed", "squint", "angry", "mid") else: if her_tier >= 5: - gen "[hermione_name], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") gen "Are you interested?" ("base", xpos="far_left", ypos="head") her "Sure, why not?" ("base", "base", "base", "mid") gen "Great." ("base", xpos="far_left", ypos="head") @@ -47,28 +47,28 @@ label hg_pr_kiss: her "I know a couple of girls who are hungry for attention and wouldn't mind putting on a little show." ("smile", "narrow", "base", "mid_soft") gen "Great. See you after your classes then." ("base", xpos="far_left", ypos="head") elif her_tier >= 4: - gen "[hermione_name], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") gen "Are you interested?" ("base", xpos="far_left", ypos="head") her "I suppose..." ("annoyed", "narrow", "annoyed", "up") gen "Great. All you need to do is make out with another girl." ("base", xpos="far_left", ypos="head") her "I see..." ("annoyed", "narrow", "worried", "down") - gen "Up for the task, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Up for the task, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I guess..." ("annoyed", "base", "worried", "R") gen "Great. See you after your classes then." ("base", xpos="far_left", ypos="head") else: - gen "[hermione_name], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], {number=current_payout} house points are up for grabs today!" ("base", xpos="far_left", ypos="head") gen "Are you interested?" ("base", xpos="far_left", ypos="head") her "It depends..." ("normal", "base", "base", "mid") her "Will I have to do something depraved again?" gen "\"Depraved\"??! When did I ever--?" ("base", xpos="far_left", ypos="head") - her "Really, [genie_name]?" ("open", "closed", "angry", "mid") + her "Really, [name_genie_hermione]?" ("open", "closed", "angry", "mid") gen "Fine, fine... But all I want you to do today is to make out with another girl." ("base", xpos="far_left", ypos="head") her "Oh, is that all?" ("angry", "base", "angry", "mid") # :( gen "Yes... Pretty basic stuff for you, right?" ("base", xpos="far_left", ypos="head") gen "And you will be getting {number=current_payout} house points afterwards of course." ("base", xpos="far_left", ypos="head") her "............." ("normal", "squint", "angry", "mid") gen "So... Are you up for it?" ("base", xpos="far_left", ypos="head") - her "I will see what I can do, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "I will see what I can do, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "Great. See you after your classes then." ("base", xpos="far_left", ypos="head") her "................" ("annoyed", "narrow", "annoyed", "mid") @@ -81,7 +81,7 @@ label end_hg_pr_kiss: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -111,10 +111,10 @@ label end_hg_pr_kiss: label hg_pr_kiss_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you succeed in completing your task?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." + her "Yes, [name_genie_hermione]..." if hg_pr_kiss.is_tier_complete(): menu: @@ -129,7 +129,7 @@ label hg_pr_kiss_intro: if hg_pr_kiss.counter == 1: her "......" ("annoyed", "narrow", "angry", "R") her "Well... I..." ("soft", "base", "base", "R") - gen "Don't be shy, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Don't be shy, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Have you kissed someone?" ("base", xpos="far_left", ypos="head") @@ -145,17 +145,17 @@ label hg_pr_kiss_T3_E1: gen "I told you to make out with another girl..." ("base", xpos="far_left", ypos="head") gen "Did you do it or not?" ("base", xpos="far_left", ypos="head") her "I..." ("open", "base", "worried", "R") - her "I tried, [genie_name]. I really did." + her "I tried, [name_genie_hermione]. I really did." gen "And?" ("base", xpos="far_left", ypos="head") her "Well..." ("annoyed", "base", "worried", "R") call play_music("hermione") # Music her "It was awkward and embarrassing..." gen "did you do it or not?" ("base", xpos="far_left", ypos="head") - her "... no I did not, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "... no I did not, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") her "All I achieved was making a complete fool out of myself..." her "In front of the entire class..." ("angry", "base", "angry", "mid") - gen "Tell me what happened, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "No, I will not, [genie_name]." ("annoyed", "narrow", "angry", "R") + gen "Tell me what happened, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "No, I will not, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") her "Not in a million years!" her "Why do I have to perform such ridiculous tasks anyway?!" ("shock", "happyCl", "worried", "mid") her "What is the point of all this?" @@ -174,11 +174,11 @@ label hg_pr_kiss_T3_E2: call hg_pr_kiss_intro call play_music("hermione") # Music - her "I did, [genie_name]..." ("open", "closed", "base", "mid") + her "I did, [name_genie_hermione]..." ("open", "closed", "base", "mid") gen "Good. Give me the details." ("base", xpos="far_left", ypos="head") - her "Well, I kissed a girl. Just like you told me to, [genie_name]." ("annoyed", "squint", "base", "mid") + her "Well, I kissed a girl. Just like you told me to, [name_genie_hermione]." ("annoyed", "squint", "base", "mid") gen "I guess it was embarrassing for you, girl?" ("base", xpos="far_left", ypos="head") - her "Very much so, [genie_name]." ("annoyed", "narrow", "angry", "R") + her "Very much so, [name_genie_hermione]." ("annoyed", "narrow", "angry", "R") gen "Did you enjoy it though?" ("base", xpos="far_left", ypos="head") her "*Humph*!..." ("annoyed", "narrow", "annoyed", "mid") gen "So you kissed a girl and you liked it?" ("base", xpos="far_left", ypos="head") @@ -187,7 +187,7 @@ label hg_pr_kiss_T3_E2: her "Yes..." ("disgust", "narrow", "base", "mid_soft") her "It was a proper deep kiss, if that's what you want to know." her "Can I just get my payment now?" - her "Please, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "Please, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "Well, alright..." ("base", xpos="far_left", ypos="head") jump end_hg_pr_kiss @@ -197,20 +197,20 @@ label hg_pr_kiss_T3_E3: call hg_pr_kiss_intro call play_music("hermione") # Music - her "Yes, I did, [genie_name]." ("open", "closed", "base", "mid") + her "Yes, I did, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Good. Tell me how it went." ("base", xpos="far_left", ypos="head") - her "It went well, [genie_name]." ("open", "closed", "base", "mid") + her "It went well, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Great. Give me the details." ("base", xpos="far_left", ypos="head") - her "What would you like to know, [genie_name]?" ("open", "closed", "angry", "mid") + her "What would you like to know, [name_genie_hermione]?" ("open", "closed", "angry", "mid") gen "Tell me everything! Was the girl pretty?" ("base", xpos="far_left", ypos="head") gen "Did she return your kiss?" ("base", xpos="far_left", ypos="head") - her "She was relatively pretty, [genie_name]." ("open", "squint", "base", "mid") + her "She was relatively pretty, [name_genie_hermione]." ("open", "squint", "base", "mid") her "And she did return my kiss..." her "..........." ("annoyed", "closed", "base", "mid") - her "Anything else, [genie_name]?" ("open", "squint", "base", "mid") + her "Anything else, [name_genie_hermione]?" ("open", "squint", "base", "mid") gen "...." ("base", xpos="far_left", ypos="head") - gen "Why are you being difficult, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "With all due respect, [genie_name]..." ("open", "closed", "angry", "mid") + gen "Why are you being difficult, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "With all due respect, [name_genie_hermione]..." ("open", "closed", "angry", "mid") her "You told me to make out with another girl, and I did..." her "Now, I would like to get paid if you would be so kind." ("normal", "base", "base", "mid") gen "......................" ("base", xpos="far_left", ypos="head") @@ -219,20 +219,20 @@ label hg_pr_kiss_T3_E3: "\"Fine. Here is your payment, girl.\"": pass - "\"I don't appreciate your attitude, [hermione_name].\"": - her "Well, that is unfortunate, [genie_name]." ("open", "closed", "angry", "mid") + "\"I don't appreciate your attitude, [name_hermione_genie].\"": + her "Well, that is unfortunate, [name_genie_hermione]." ("open", "closed", "angry", "mid") gen "Sure is..." ("base", xpos="far_left", ypos="head") gen "Because you are not getting paid you insolent, little witch." ("base", xpos="far_left", ypos="head") stop music fadeout 1.0 her "What?" ("normal", "base", "base", "mid") - her "[genie_name], you can't do that!" ("open", "base", "worried", "mid") + her "[name_genie_hermione], you can't do that!" ("open", "base", "worried", "mid") gen "Dismissed." ("base", xpos="far_left", ypos="head") her "B-but--" ("open", "base", "worried", "R") - her "[genie_name], please!" ("open", "base", "worried", "mid") + her "[name_genie_hermione], please!" ("open", "base", "worried", "mid") her "The girl was from Hufflepuff and--" - gen "Too late for that, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Too late for that, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You are dismissed." ("base", xpos="far_left", ypos="head") her "......" ("angry", "base", "base", "mid", tears="soft") call her_walk(action="run", xpos="door", speed=2, reduce=True) @@ -252,7 +252,7 @@ label hg_pr_kiss_T4_E1: call hg_pr_kiss_intro - her "I did, [genie_name]..." ("open", "closed", "base", "mid") + her "I did, [name_genie_hermione]..." ("open", "closed", "base", "mid") gen "Well, don't just stand there. Give me the details." ("base", xpos="far_left", ypos="head") her "*Ehm*, alright..." ("open", "base", "base", "mid") her "The girl was from Ravenclaw..." @@ -268,8 +268,8 @@ label hg_pr_kiss_T4_E1: her "Also she was quite adorable..." ("base", "base", "base", "mid") her "She kept calling me \"Miss Hermione\"..." ("smile", "base", "base", "R") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - gen "I Don't recall sending you out with a task to confuse some poor girl, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "\"Confuse\"? [genie_name], please..." ("smile", "narrow", "base", "mid_soft") + gen "I Don't recall sending you out with a task to confuse some poor girl, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "\"Confuse\"? [name_genie_hermione], please..." ("smile", "narrow", "base", "mid_soft") her "You should have seen that {i}poor girl{/i}..." her "I assure you that she was anything but confused." ("smile", "base", "angry", "mid") her "In fact, at the end of our \"Study session\" she got rather obnoxious..." @@ -284,7 +284,7 @@ label hg_pr_kiss_T4_E2: call hg_pr_kiss_intro call play_music("hermione") # Music - her "I did, [genie_name]." ("open", "closed", "base", "mid") + her "I did, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "Tell me how it went." ("base", xpos="far_left", ypos="head") her "Well... *Ehm*..." ("open", "base", "base", "mid") her "There is this one girl who is into girls..." @@ -295,13 +295,13 @@ label hg_pr_kiss_T4_E2: her "And she kissed me back but..." ("open", "base", "base", "mid") her "It got weird really fast..." ("angry", "narrow", "base", "down") her "The way she kissed me..." - her "She did it like a boy would, [genie_name]..." ("angry", "base", "base", "mid") + her "She did it like a boy would, [name_genie_hermione]..." ("angry", "base", "base", "mid") her "Aggressive but confident..." ("angry", "narrow", "base", "down") her "Naturally a small group of spectators gathered up around us right away..." ("upset", "closed", "base", "mid") her "Mostly boys of course..." ("open", "base", "base", "mid", cheeks="blush") her "Some of them even cheered us on..." ("open", "happyCl", "worried", "mid", cheeks="blush") her "....." ("base", "squint", "base", "mid") - her "By the way, the girl I kissed, [genie_name]..." + her "By the way, the girl I kissed, [name_genie_hermione]..." gen "*Hmm*...?" ("base", xpos="far_left", ypos="head") her "She is one of those unpopular girls..." ("open", "closed", "base", "mid") her "I know that other students make fun of her sometimes..." @@ -309,7 +309,7 @@ label hg_pr_kiss_T4_E2: her "I Single-handedly turned that girl from a social outcast..." her "Into \"that lesbian girl who made out with Hermione Granger\"!" ("smile", "base", "angry", "mid") gen "Wow... You are just like some kind of hero or something..." ("base", xpos="far_left", ypos="head") - her "I suppose I am, [genie_name]..." ("base", "narrow", "base", "mid_soft") + her "I suppose I am, [name_genie_hermione]..." ("base", "narrow", "base", "mid_soft") her "I changed that poor girl's life..." gen "Now you are just pulling on my heartstrings..." ("base", xpos="far_left", ypos="head") @@ -321,13 +321,13 @@ label hg_pr_kiss_T4_E3: her "I did." her ".........." ("annoyed", "base", "base", "R") - her "[genie_name]?" ("open", "closed", "base", "mid") - gen "Yes, [hermione_name]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("open", "closed", "base", "mid") + gen "Yes, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "May I ask you a question?" ("open", "base", "base", "mid") gen "By all means." ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("annoyed", "narrow", "angry", "R") call play_music("hermione") # Music - her "Why are boys so into watching girls make out with each other, [genie_name]?" ("disgust", "narrow", "base", "mid_soft") + her "Why are boys so into watching girls make out with each other, [name_genie_hermione]?" ("disgust", "narrow", "base", "mid_soft") menu: gen "..." ("base", xpos="far_left", ypos="head") @@ -337,11 +337,11 @@ label hg_pr_kiss_T4_E3: gen "And that is why young girls such as yourself..." ("base", xpos="far_left", ypos="head") gen "Are often interested in a much older gentleman..." ("base", xpos="far_left", ypos="head") her "??!" ("angry", "base", "base", "mid") - her "That is not what I meant, [genie_name]..." ("annoyed", "narrow", "annoyed", "mid") + her "That is not what I meant, [name_genie_hermione]..." ("annoyed", "narrow", "annoyed", "mid") "\"You wouldn't understand, girl.\"": her "*Hmm*..." ("upset", "closed", "base", "mid") - her "What about you, [genie_name]?" ("angry", "base", "base", "mid") + her "What about you, [name_genie_hermione]?" ("angry", "base", "base", "mid") her "Were you like that when you were younger?" gen "You mean if I enjoyed watching two girls going at it?" ("base", xpos="far_left", ypos="head") gen "Well of course." ("base", xpos="far_left", ypos="head") @@ -351,12 +351,12 @@ label hg_pr_kiss_T4_E3: "\"Kissing girls? Where?!!\"": her "*Tsk*!......................" ("angry", "base", "angry", "mid", emote="angry") - her "Well, I am only asking you this, [genie_name], because..." ("open", "narrow", "worried", "down") + her "Well, I am only asking you this, [name_genie_hermione], because..." ("open", "narrow", "worried", "down") her "... it is sort of becoming a new trend in our school..." ("angry", "base", "base", "mid") her "Some girls are willing to do this simply to catch the attention of the boy they fancy..." - gen "Are you one of those girls, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Are you one of those girls, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "I suppose..." ("angry", "narrow", "base", "down") - her "I mean, only because of the favours you buy from me, [genie_name]..." ("upset", "closed", "base", "mid") + her "I mean, only because of the favours you buy from me, [name_genie_hermione]..." ("upset", "closed", "base", "mid") gen "Good... Tell me more." ("base", xpos="far_left", ypos="head") her "Well, as you know, I am quite popular..." ("smile", "happyCl", "base", "mid", emote="happy") her "So all I had to do is just mention that I would not mind doing it today..." ("base", "happyCl", "base", "mid") @@ -364,7 +364,7 @@ label hg_pr_kiss_T4_E3: her "I chose a girl from Gryffindor of course..." ("base", "base", "base", "mid") her "And we put on a little show right in the middle of the classroom..." ("open", "base", "base", "mid") gen "Good... Tongue and everything?" ("base", xpos="far_left", ypos="head") - her "Tongue and everything, [genie_name]." ("annoyed", "base", "worried", "R") + her "Tongue and everything, [name_genie_hermione]." ("annoyed", "base", "worried", "R") gen "Nicely done." ("base", xpos="far_left", ypos="head") her "" ("base", "base", "base", "mid") @@ -377,25 +377,25 @@ label hg_pr_kiss_T5_E1: call hg_pr_kiss_intro call play_music("hermione") # Music - her "I did, [genie_name]." ("soft", "base", "base", "mid") + her "I did, [name_genie_hermione]." ("soft", "base", "base", "mid") gen "I'm all ears..." ("base", xpos="far_left", ypos="head") her "Well, I kissed that annoying blond girl from Slytherin..." ("annoyed", "squint", "base", "mid") gen "*Hmm*... \"annoying\", *huh*?" ("base", xpos="far_left", ypos="head") gen "Because she happens to be from Slytherin." ("base", xpos="far_left", ypos="head") - her "Precisely so, [genie_name]." ("open", "closed", "base", "mid") + her "Precisely so, [name_genie_hermione]." ("open", "closed", "base", "mid") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "Don't you think you're being a little prejudiced there?" ("base", xpos="far_left", ypos="head") gen "Or shall I say that you are being a \"housist\"?" ("base", xpos="far_left", ypos="head") - her "... a \"housist\", [genie_name]?" ("annoyed", "narrow", "annoyed", "mid") + her "... a \"housist\", [name_genie_hermione]?" ("annoyed", "narrow", "annoyed", "mid") gen "Well, you know... It's like \"sexist\" or \"ageist\"..." ("base", xpos="far_left", ypos="head") gen "You just put an \"ist\" after something and it automatically becomes a bad thing..." ("base", xpos="far_left", ypos="head") - her "\"housist\" is not an actual word, [genie_name]..." ("soft", "base", "base", "R") + her "\"housist\" is not an actual word, [name_genie_hermione]..." ("soft", "base", "base", "R") gen "It's not? Well, give it time..." ("base", xpos="far_left", ypos="head") her ".............?" ("annoyed", "narrow", "annoyed", "mid") gen "\"Housophobic\"...?" ("base", xpos="far_left", ypos="head") gen "No, wait, I got it!" ("base", xpos="far_left", ypos="head") gen "\"Housophobe\"!" ("base", xpos="far_left", ypos="head") - her "Stop it, [genie_name]. I am not any of those weird words..." ("normal", "squint", "angry", "mid") + her "Stop it, [name_genie_hermione]. I am not any of those weird words..." ("normal", "squint", "angry", "mid") her "Slytherins are evil and annoying. Nobody likes them, and that is a fact!" gen "Fine, whatever. Back to the \"girl-kissing\" then." ("base", xpos="far_left", ypos="head") her "..............." ("annoyed", "base", "worried", "R") @@ -411,15 +411,15 @@ label hg_pr_kiss_T5_E1: her "I did not ask her why she needed this so desperately..." ("open", "closed", "base", "mid") her "She was probably just trying to boost her own popularity at my expense..." her "Or it could also be that someone from the school staff bought this favour from her..." - her "The same way you buy favours from me, [genie_name]..." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "The same way you buy favours from me, [name_genie_hermione]..." ("open", "narrow", "annoyed", "mid", cheeks="blush") gen "(Snape?)" ("base", xpos="far_left", ypos="head") her "If that is the case I am sure that it was professor Snape..." ("angry", "base", "angry", "mid") gen "What? He would never..." ("base", xpos="far_left", ypos="head") - her "You should really investigate Professor Snape's activities, [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "You should really investigate Professor Snape's activities, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "Of course..." ("base", xpos="far_left", ypos="head") gen "Putting him on my \"naughty boys list\" as we speak..." ("base", xpos="far_left", ypos="head") her ".........." ("disgust", "narrow", "base", "mid_soft") - gen "What happened next, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "What happened next, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Oh, right..." ("open", "narrow", "worried", "down") her "Well, we made out for a while..." her "She was very... passionate." @@ -427,7 +427,7 @@ label hg_pr_kiss_T5_E1: her "The boys were cheering and whistling..." her "So we decided to \"snowball\" a little..." ("base", "narrow", "worried", "down") gen "I'm sorry, you decided to do what?" ("base", xpos="far_left", ypos="head") - her "To \"snowball\", [genie_name]." ("angry", "wink", "base", "mid") + her "To \"snowball\", [name_genie_hermione]." ("angry", "wink", "base", "mid") her "It is when one girl spits into another girl's mouth..." ("base", "narrow", "base", "mid_soft") her "We call it \"snowballing\"..." her "The boys really go crazy from that for some reason..." @@ -445,7 +445,7 @@ label hg_pr_kiss_T5_E1: gen "*Sigh*... Nonchalant and innocent schooldays..." ("base", xpos="far_left", ypos="head") gen "Home assignments... Classes..." ("base", xpos="far_left", ypos="head") gen "Schoolgirls \"snowballing\" in the courtyard..." ("base", xpos="far_left", ypos="head") - gen "Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" ("grin", "base", "base", "R") jump end_hg_pr_kiss @@ -454,14 +454,14 @@ label hg_pr_kiss_T5_E2: call hg_pr_kiss_intro - her "I did, [genie_name]." ("open", "closed", "base", "mid") + her "I did, [name_genie_hermione]." ("open", "closed", "base", "mid") her "Only... *Ehm*..." ("grin", "base", "base", "R") gen "What is it?" ("base", xpos="far_left", ypos="head") her "Well... I have this friend..." ("base", "base", "base", "mid") her "Her name is Ginny Weasley..." her "And... *Ehm*..." ("base", "base", "base", "R", cheeks="blush") her "I'm Not sure how to say this..." - gen "Just say it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Just say it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Well, we decided to skip the potions class together..." ("open", "base", "base", "mid") her "And study for the upcoming Herbology test instead..." her "So me and Ginny, we were studying..." @@ -474,7 +474,7 @@ label hg_pr_kiss_T5_E2: gen "And afterwards you had a pillow fight in lingerie?" ("grin", xpos="far_left", ypos="head") her "*Err*... No..." ("open", "happy", "base", "mid", cheeks="blush") gen "What did you do then?" ("base", xpos="far_left", ypos="head") - her "I am not telling you, [genie_name]." ("base", "base", "base", "R", cheeks="blush") # :) + her "I am not telling you, [name_genie_hermione]." ("base", "base", "base", "R", cheeks="blush") # :) her "You sent me out to kiss a girl..." her "And I did just that." her "The rest shall remain private." ("angry", "wink", "base", "mid") diff --git a/game/scripts/characters/hermione/events/requests/let_them_grope_you.rpy b/game/scripts/characters/hermione/events/requests/let_them_grope_you.rpy index 8a4d25f9..ac9f3bad 100644 --- a/game/scripts/characters/hermione/events/requests/let_them_grope_you.rpy +++ b/game/scripts/characters/hermione/events/requests/let_them_grope_you.rpy @@ -16,8 +16,8 @@ label hg_pr_grope: jump hermione_favor_menu her "" (xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("base", "base", "base", "mid") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione]?" ("base", "base", "base", "mid") #Intro. if hg_pr_grope.counter == 0: @@ -25,10 +25,10 @@ label hg_pr_grope: her "...?" ("normal", "base", "base", "mid") gen "One of your classmates maybe?" ("base", xpos="far_left", ypos="head") her "Well..." ("open", "base", "worried", "R") - her "Must I really discuss things like this with you, [genie_name]?" + her "Must I really discuss things like this with you, [name_genie_hermione]?" her "It's a bit embarrassing..." ("annoyed", "base", "worried", "R") gen "Sure, I understand. I don't need to know the details..." ("base", xpos="far_left", ypos="head") - gen "But here is what I need you to do today, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "But here is what I need you to do today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Go confront that boy...{w=0.5} or a girl, you fancy. The one you think is \"just so dreamy\"..." ("base", xpos="far_left", ypos="head") her ".......?" ("open", "base", "base", "mid") gen "And let them touch you..." ("base", xpos="far_left", ypos="head") @@ -36,24 +36,24 @@ label hg_pr_grope: if her_reputation < 3: jump too_much_public - her "Let them... touch me, [genie_name]?" ("open", "base", "base", "mid") + her "Let them... touch me, [name_genie_hermione]?" ("open", "base", "base", "mid") gen "Yes, touch you. The way boys touch girls?" ("base", xpos="far_left", ypos="head") - gen "How old are you, [hermione_name]? You look mature enough..." ("base", xpos="far_left", ypos="head") + gen "How old are you, [name_hermione_genie]? You look mature enough..." ("base", xpos="far_left", ypos="head") gen "Haven't you had \"the talk\" with your parents already?" ("base", xpos="far_left", ypos="head") - her "\"The talk\", [genie_name]?" ("angry", "happyCl", "worried", "mid", emote="sweat") + her "\"The talk\", [name_genie_hermione]?" ("angry", "happyCl", "worried", "mid", emote="sweat") gen "Yes, \"the talk\"! About how boys are different than the girls...?" ("base", xpos="far_left", ypos="head") gen "Boys have a \"pee-pee\" and girls like to put that \"pee-pee\" in their mouths?" ("base", xpos="far_left", ypos="head") - her "[genie_name]!!!" ("normal", "base", "base", "mid") + her "[name_genie_hermione]!!!" ("normal", "base", "base", "mid") her "What kind of demented parent would have such a talk with their child?" ("angry", "base", "angry", "mid") gen "{size=-3}I wish mine did.{/size}" ("base", xpos="far_left", ypos="head") - her "I beg your pardon, [genie_name]?" ("annoyed", "squint", "base", "mid") + her "I beg your pardon, [name_genie_hermione]?" ("annoyed", "squint", "base", "mid") gen "*Ahem!* I said, a responsible and caring one!" ("base", xpos="far_left", ypos="head") - gen "Well, in any case. That is your task for today, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well, in any case. That is your task for today, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Find a way to persuade one of your classmates to fondle you a little..." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "narrow", "angry", "R") gen "You are a pretty girl, it shouldn't be too hard." ("base", xpos="far_left", ypos="head") her "....................." - her "How many points would I receive after completing such a task, [genie_name]?" ("disgust", "narrow", "base", "mid_soft") + her "How many points would I receive after completing such a task, [name_genie_hermione]?" ("disgust", "narrow", "base", "mid_soft") gen "*Hmm*... {number=current_payout} should do..." ("base", xpos="far_left", ypos="head") her "{number=current_payout} house points..." ("annoyed", "narrow", "angry", "R") her "...." @@ -62,28 +62,28 @@ label hg_pr_grope: her "I'd better go now. The classes are about to start..." ("angry", "base", "angry", "mid") else: if her_tier >= 4: - gen "[hermione_name], I need you to go out there..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I need you to go out there..." ("base", xpos="far_left", ypos="head") gen "Find a handsome guy and force yourself on him!" ("base", xpos="far_left", ypos="head") her "You mean like..." ("base", "base", "base", "mid") - her "In a sexual way, [genie_name]?" ("angry", "wink", "base", "mid") + her "In a sexual way, [name_genie_hermione]?" ("angry", "wink", "base", "mid") gen "What? No, I mean just let him get under your uniform that's all..." ("base", xpos="far_left", ypos="head") her "Oh, I see..." ("grin", "happyCl", "worried", "mid", emote="sweat") her "I wonder who it should be this time..." ("grin", "base", "base", "R") - her "More than one boy, is not a problem, is it, [genie_name]?" ("angry", "base", "base", "mid") + her "More than one boy, is not a problem, is it, [name_genie_hermione]?" ("angry", "base", "base", "mid") gen "A problem? Of course not!" ("base", xpos="far_left", ypos="head") gen "If anything - it is encouraged." ("base", xpos="far_left", ypos="head") - her "Great. I will see you after the classes then, [genie_name]. As usual." ("angry", "wink", "base", "mid") + her "Great. I will see you after the classes then, [name_genie_hermione]. As usual." ("angry", "wink", "base", "mid") gen "Yes. Good luck." ("base", xpos="far_left", ypos="head") elif her_tier >= 3: - gen "[hermione_name], I need you to go out there, and make one of your classmates molest you a little." ("base", xpos="far_left", ypos="head") - her "I understand, [genie_name]..." ("base", "base", "base", "mid") + gen "[name_hermione_genie], I need you to go out there, and make one of your classmates molest you a little." ("base", xpos="far_left", ypos="head") + her "I understand, [name_genie_hermione]..." ("base", "base", "base", "mid") gen "Off you go then." ("base", xpos="far_left", ypos="head") her "..........." else: gen "How about you go let one of your classmates molest you a little again?" ("base", xpos="far_left", ypos="head") her "........" ("upset", "closed", "base", "mid") - gen "{number=current_payout} house points, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "[genie_name], it's just..." ("annoyed", "narrow", "angry", "R") + gen "{number=current_payout} house points, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], it's just..." ("annoyed", "narrow", "angry", "R") her "I do not understand why I must do things like that..." ("annoyed", "narrow", "annoyed", "mid") gen "To help out your house?" ("base", xpos="far_left", ypos="head") her "That's not what I meant..." ("disgust", "narrow", "base", "mid_soft") @@ -101,7 +101,7 @@ label end_hg_pr_grope: $ gryffindor += current_payout gen "The Gryffindor house gets {number=current_payout} points!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." + her "Thank you, [name_genie_hermione]." label .no_points: @@ -131,10 +131,10 @@ label end_hg_pr_grope: label hg_pr_grope_intro: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + her "Good evening, [name_genie_hermione]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Did you finish your task?" ("base", xpos="far_left", ypos="head") - her "I did, just as you asked [genie_name]..." + her "I did, just as you asked [name_genie_hermione]..." if hg_pr_grope.is_tier_complete(): menu: @@ -167,14 +167,14 @@ label hg_pr_grope_T2_E1: gen "So, did he cop a feel or not?" ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "He did..." ("normal", "happyCl", "worried", "mid") - gen "Well, where did he touch you, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Well, where did he touch you, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ehm*... My legs..." ("annoyed", "base", "worried", "R") her "And my breasts a little I suppose..." gen "That's all?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]..." ("open", "base", "base", "mid") + her "Yes, [name_genie_hermione]..." ("open", "base", "base", "mid") her "It's getting late... I think I'd better leave now..." ("normal", "happyCl", "worried", "mid") - her "I'm sorry, [genie_name]..." ("angry", "happyCl", "worried", "mid", emote="sweat") - gen "Nothing to be sorry about, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "I'm sorry, [name_genie_hermione]..." ("angry", "happyCl", "worried", "mid", emote="sweat") + gen "Nothing to be sorry about, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "You did good. This will do for now." ("base", xpos="far_left", ypos="head") jump end_hg_pr_grope @@ -184,15 +184,15 @@ label hg_pr_grope_T2_E2: call hg_pr_grope_intro her "I did, but it was all very awkward and embarrassing..." ("annoyed", "narrow", "angry", "R") - gen "That's the whole point of it, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "That's the whole point of it, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Tell me where you were touched today..." ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music her "*Ehm*..." her "Well, he touched me under my skirt a little..." ("angry", "base", "base", "mid") her "Then I let him rub my..." - her "... my c-crotch through my panties, [genie_name]." ("angry", "narrow", "base", "down") + her "... my c-crotch through my panties, [name_genie_hermione]." ("angry", "narrow", "base", "down") gen "Very good... And what happened next?" ("base", xpos="far_left", ypos="head") - her "He just sort of started... Touching himself [genie_name]." ("open", "happyCl", "worried", "mid") + her "He just sort of started... Touching himself [name_genie_hermione]." ("open", "happyCl", "worried", "mid") her "So, I decided to leave..." gen "I see..." ("base", xpos="far_left", ypos="head") her "............." ("normal", "happyCl", "worried", "mid") @@ -210,7 +210,7 @@ label hg_pr_grope_T2_E3: gen "And?" ("base", xpos="far_left", ypos="head") her "Well, he did touch me a little at first..." ("open", "base", "base", "mid") her "......" ("normal", "happyCl", "worried", "mid") - gen "Don't make me pull every word out of you, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Don't make me pull every word out of you, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") gen "What happened?" ("base", xpos="far_left", ypos="head") her "Well..." ("open", "narrow", "worried", "down") @@ -224,13 +224,13 @@ label hg_pr_grope_T2_E3: her "Why would anyone be like this?" ("angry", "base", "base", "mid", tears="soft") her "*Sob*! I Could not stay in his company a moment longer, so I just ran." gen "I'm sorry to hear this..." ("base", xpos="far_left", ypos="head") - her "It was truly awful, [genie_name]..." ("angry", "base", "base", "mid", tears="soft") + her "It was truly awful, [name_genie_hermione]..." ("angry", "base", "base", "mid", tears="soft") gen "There, there..." ("base", xpos="far_left", ypos="head") her "*Sob*!" ("normal", "base", "base", "R", tears="soft") gen "Will ten extra points make you feel better?" ("base", xpos="far_left", ypos="head") - her "*huh*? That would be very sweet of you [genie_name]." ("soft", "base", "base", "mid", tears="soft") + her "*huh*? That would be very sweet of you [name_genie_hermione]." ("soft", "base", "base", "mid", tears="soft") gen "Of course... Don't mention it." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]..." ("base", "base", "worried", "mid", cheeks="blush", tears="soft") + her "Thank you [name_genie_hermione]..." ("base", "base", "worried", "mid", cheeks="blush", tears="soft") $ current_payout += 10 @@ -250,15 +250,15 @@ label hg_pr_grope_T3_E1: her "But I told him that I just want him to touch me..." her "... so he did." ("normal", "happyCl", "worried", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") - gen "Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Will I be getting my points now?" ("upset", "wink", "base", "mid") - gen "In a minute, [hermione_name]. I have a question I would like to ask you before that." ("base", xpos="far_left", ypos="head") + gen "In a minute, [name_hermione_genie]. I have a question I would like to ask you before that." ("base", xpos="far_left", ypos="head") her "Yes?" ("open", "base", "base", "mid") gen "Did you enjoy it?" ("base", xpos="far_left", ypos="head") gen "Did it feel good to be touched by that boy?" ("base", xpos="far_left", ypos="head") her "Oh..." ("open", "closed", "base", "mid") her "Well, he was rather handsome I suppose..." - her "I didn't hate it, if that's what you mean, [genie_name]..." ("upset", "closed", "base", "mid") + her "I didn't hate it, if that's what you mean, [name_genie_hermione]..." ("upset", "closed", "base", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") jump end_hg_pr_grope @@ -281,14 +281,14 @@ label hg_pr_grope_T3_E2: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") "\"Kudos to you for doing this during class.\"": - her "Thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") gen "I say you deserve to get paid." ("base", xpos="far_left", ypos="head") - "\"You can do better than that, [hermione_name].\"": + "\"You can do better than that, [name_hermione_genie].\"": gen "I'm afraid I cannot pay you." ("base", xpos="far_left", ypos="head") - her "Yes, I know, [genie_name]. I am sorry." ("open", "base", "base", "mid") + her "Yes, I know, [name_genie_hermione]. I am sorry." ("open", "base", "base", "mid") gen "Just make sure you try harder next time." ("base", xpos="far_left", ypos="head") - her "I will, [genie_name]." + her "I will, [name_genie_hermione]." jump end_hg_pr_grope.no_points @@ -301,11 +301,11 @@ label hg_pr_grope_T3_E3: her "................." ("annoyed", "narrow", "angry", "R") gen "???" ("base", xpos="far_left", ypos="head") call play_music("playful_tension") # Music - her "I don't want to talk about it, [genie_name]..." ("annoyed", "narrow", "angry", "R") - gen "What happened, [hermione_name]. Spit it out." ("base", xpos="far_left", ypos="head") + her "I don't want to talk about it, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") + gen "What happened, [name_hermione_genie]. Spit it out." ("base", xpos="far_left", ypos="head") her "................." ("annoyed", "narrow", "annoyed", "mid") her "But... it's so embarrassing..." ("open", "base", "worried", "mid") - her "Do I really have to, [genie_name]?" ("normal", "happyCl", "worried", "mid") + her "Do I really have to, [name_genie_hermione]?" ("normal", "happyCl", "worried", "mid") gen "Yes, I happen to love embarrassing things!" ("grin", xpos="far_left", ypos="head") her "................." ("annoyed", "narrow", "angry", "R") her "Well, alright..." @@ -314,7 +314,7 @@ label hg_pr_grope_T3_E3: her "Normally I wouldn't dare..." ("open", "base", "base", "mid") her "But the fact that I was doing this as a task entrusted to me by someone else..." her "It made it easier somehow..." - gen "Happy to help, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Happy to help, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "I led him to the library..." ("open", "narrow", "worried", "down") her "We found a secluded spot behind one of the book shelves..." her "And I told him that he can touch me wherever he wants..." @@ -323,17 +323,17 @@ label hg_pr_grope_T3_E3: gen "What?" ("base", xpos="far_left", ypos="head") her "....................." ("normal", "happyCl", "worried", "mid") call play_music("despair") # Music - her "He started to touch my... feet, [genie_name]." ("scream", "happyCl", "worried", "mid") + her "He started to touch my... feet, [name_genie_hermione]." ("scream", "happyCl", "worried", "mid") gen "*huh*?" ("base", xpos="far_left", ypos="head") gen "Your \"Feet\"? Is that what zoomers call tits these days?" ("base", xpos="far_left", ypos="head") - her "I wish, [genie_name]..." ("disgust", "narrow", "base", "mid_soft") + her "I wish, [name_genie_hermione]..." ("disgust", "narrow", "base", "mid_soft") her "He asked me to take off my shoes..." her "Then he..." - her "He started to smell my toes, [genie_name]!" ("angry", "base", "base", "mid", tears="soft") + her "He started to smell my toes, [name_genie_hermione]!" ("angry", "base", "base", "mid", tears="soft") her "I felt so... violated!" ("angry", "base", "base", "mid", tears="soft") gen "So he didn't touch your tits, or your butt?" ("base", xpos="far_left", ypos="head") gen "Or even in-between your thighs?!" ("angry", xpos="far_left", ypos="head") - her "No, [genie_name]... *sob*!" ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") + her "No, [name_genie_hermione]... *sob*!" ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") gen "Alright, then what happened?" ("base", xpos="far_left", ypos="head") her "Nothing! I couldn't bear the humiliation... I just ran..." ("angry", "narrow", "base", "mid", cheeks="blush", tears="crying") her "I even left my shoes behind and had to come back later to pick them up..." @@ -341,7 +341,7 @@ label hg_pr_grope_T3_E3: gen "*Hmm*..." ("base", xpos="far_left", ypos="head") gen "Well, you did get molested..." ("base", xpos="far_left", ypos="head") gen "Although in a rather unconventional manner..." ("base", xpos="far_left", ypos="head") - her "*Sob*! I wish he would have just touched my breasts like any normal boy would, [genie_name]... *Sob!*" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "*Sob*! I wish he would have just touched my breasts like any normal boy would, [name_genie_hermione]... *Sob!*" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") gen "There, there..." ("base", xpos="far_left", ypos="head") gen "You earned your points today..." ("base", xpos="far_left", ypos="head") @@ -367,7 +367,7 @@ label hg_pr_grope_T4_E1: her "It said... \"You can touch my butt if you want, I bet professor Snape would never notice\"." ("open", "narrow", "worried", "R", cheeks="blush") her "Everyone was laughing..." ("angry", "narrow", "base", "down", cheeks="blush") her "It was so embarrassing..." - her "I really hate professor Snape, [genie_name]..." ("angry", "base", "angry", "mid", cheeks="blush") + her "I really hate professor Snape, [name_genie_hermione]..." ("angry", "base", "angry", "mid", cheeks="blush") gen "What happened then?" ("base", xpos="far_left", ypos="head") her "Nothing..." ("open", "narrow", "worried", "down") call play_music("playful_tension") # Music @@ -376,16 +376,16 @@ label hg_pr_grope_T4_E1: her "Actually they weren't mean to me or anything..." her "So we just waited for everyone to leave the classroom..." her "And then I let them touch me..." ("angry", "base", "base", "mid") - her "They touched me everywhere, [genie_name]..." + her "They touched me everywhere, [name_genie_hermione]..." gen "\"Everywhere\", *huh*?" ("base", xpos="far_left", ypos="head") - her "Yes...{w=0.5} Everywhere,{w=0.5} [genie_name]..." ("soft", "narrow", "annoyed", "up") + her "Yes...{w=0.5} Everywhere,{w=0.5} [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up") her "There were hands under my skirt, under my shirt..." ("base", "narrow", "base", "mid_soft") her "And then I started to breathe heavily..." her "So one of them just put his hand over my mouth..." ("soft", "narrow", "annoyed", "up") her "And their hands were so... thorough..." her "My head started to spin..." - her "It was most exhilarating, [genie_name]." ("base", "narrow", "base", "mid_soft") - gen "Very good, [hermione_name]. Very good indeed." ("base", xpos="far_left", ypos="head") + her "It was most exhilarating, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") + gen "Very good, [name_hermione_genie]. Very good indeed." ("base", xpos="far_left", ypos="head") jump end_hg_pr_grope @@ -393,10 +393,10 @@ label hg_pr_grope_T4_E2: call hg_pr_grope_intro - her "Actually something quite unexpected happened to me today, [genie_name]..." ("base", "base", "base", "mid") + her "Actually something quite unexpected happened to me today, [name_genie_hermione]..." ("base", "base", "base", "mid") her "Right after the D.A.D.A class..." gen "D.A.D.A?" ("base", xpos="far_left", ypos="head") - her "Defence Against Dark Arts, [genie_name]." ("open", "closed", "base", "mid") + her "Defence Against Dark Arts, [name_genie_hermione]." ("open", "closed", "base", "mid") her "Anyway..." her "This stocky Hufflepuff boy came up to me..." ("open", "base", "base", "R") call play_music("playful_tension") # Music @@ -407,7 +407,7 @@ label hg_pr_grope_T4_E2: her "I let him run his hands up and down my thighs..." her "I let him fondle my breasts..." her "All the usual things..." ("base", "narrow", "base", "mid_soft") - gen "Well done, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well done, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") jump end_hg_pr_grope @@ -416,7 +416,7 @@ label hg_pr_grope_T4_E3: call hg_pr_grope_intro her "Well..." ("upset", "wink", "base", "mid") - her "I did what you told me to do, [genie_name]..." + her "I did what you told me to do, [name_genie_hermione]..." her "But... it sort of... *Ehm*..." her "Well, it sort of escalated into something else..." ("base", "narrow", "base", "up") call play_music("playful_tension") # Music @@ -424,7 +424,7 @@ label hg_pr_grope_T4_E3: her "*Ehm*..." ("upset", "wink", "base", "mid") her "I sort of... got caught while I was letting this one boy fondle my breasts..." gen "You got caught? By one of the teachers?" ("base", xpos="far_left", ypos="head") - her "No, [genie_name]..." ("base", "base", "base", "mid") + her "No, [name_genie_hermione]..." ("base", "base", "base", "mid") her "By the boy's girlfriend..." ("smile", "base", "base", "R") gen "Interesting..." ("base", xpos="far_left", ypos="head") her "She was furious with him at first..." ("angry", "base", "base", "mid") @@ -436,7 +436,7 @@ label hg_pr_grope_T4_E3: her "\"... And that includes your whores\"." her "I did not appreciate being called a whore of course..." ("angry", "base", "base", "mid") her "But that was such a sweet and romantic gesture..." ("base", "base", "base", "mid") - her "Wouldn't you agree, [genie_name]?" + her "Wouldn't you agree, [name_genie_hermione]?" gen "Totally..." ("base", xpos="far_left", ypos="head") gen "Seems that true love {size=+5}does{/size} exist after all." ("base", xpos="far_left", ypos="head") gen "Then what happened?" ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/hermione/events/shaming/panty_thief.rpy b/game/scripts/characters/hermione/events/shaming/panty_thief.rpy index 1a4f2c49..de63fd91 100644 --- a/game/scripts/characters/hermione/events/shaming/panty_thief.rpy +++ b/game/scripts/characters/hermione/events/shaming/panty_thief.rpy @@ -11,8 +11,8 @@ label hg_ps_get_panties: "\"(Not right now.)\"": jump hermione_favor_menu - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "I am listening, [genie_name]." (xpos="right",ypos="base") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "I am listening, [name_genie_hermione]." (xpos="right",ypos="base") gen "I will need your panties..." ("base", xpos="far_left", ypos="head") if not hg_strip.trigger: @@ -23,21 +23,21 @@ label hg_ps_get_panties: her "W-what?" ("open", "base", "worried", "mid") her "My... panties...?" - her "[genie_name], this is--" - gen "This is the favour I will be buying from you today, [hermione_name]..." ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], this is--" + gen "This is the favour I will be buying from you today, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "If you are not interested you are more than welcome to leave." ("base", xpos="far_left", ypos="head") her "No, I am interested. I am.... it's just..." her "You need my..." call play_music("chipper_doodle") - her "... panties, [genie_name]?" ("angry", "base", "angry", "mid") + her "... panties, [name_genie_hermione]?" ("angry", "base", "angry", "mid") gen "Yes I do..." ("base", xpos="far_left", ypos="head") her "May I ask what you are planning to do with them...?" ("disgust", "narrow", "base", "mid_soft") gen "*Ehm*... I'm conducting research..." ("base", xpos="far_left", ypos="head") her "But this is kind of inappropriate, don't you think?" gen "But don't you hate it that some of the girls from Slytherin..." ("base", xpos="far_left", ypos="head") - gen "Are selling favours for house points, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Are selling favours for house points, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Yes I do!" ("angry", "base", "angry", "mid") her "(Those Slytherin tramps have no dignity.)" ("annoyed", "narrow", "angry", "R") gen "Well, there you go then!" ("base", xpos="far_left", ypos="head") @@ -46,7 +46,7 @@ label hg_ps_get_panties: her "What?" ("open", "base", "base", "mid") gen "Yes! Don't just put the Gryffindor house back on top..." ("base", xpos="far_left", ypos="head") gen "But do it by beating them at their own game!" ("base", xpos="far_left", ypos="head") - her "[genie_name]..." ("open", "base", "worried", "mid") + her "[name_genie_hermione]..." ("open", "base", "worried", "mid") gen "As headmaster, I cannot play favourites. But you know how I feel about Gryffindor..." ("base", xpos="far_left", ypos="head") gen "I wish I could give you the points but that would ruin the system..." ("base", xpos="far_left", ypos="head") hide hermione_main @@ -66,22 +66,22 @@ label hg_ps_get_panties: call nar(">She extends her arm to you, clutching a little piece of fabric in her fist.","end") gen "??!" ("base", xpos="far_left", ypos="head") - her "Just take them, [genie_name]..." ("mad", "base", "worried", "mid", tears="soft") + her "Just take them, [name_genie_hermione]..." ("mad", "base", "worried", "mid", tears="soft") call nar(">Slightly surprised, you take the panties from her hand.") gen "What? When did you?" ("base", xpos="far_left", ypos="head") her "Your speech was so moving..." - her "You are so right, [genie_name]! I shall beat them at their own game!" + her "You are so right, [name_genie_hermione]! I shall beat them at their own game!" her "My classes are about to start, so I should probably go now..." her "..........." ("normal", "base", "base", "R",tears="soft") her "I hope nobody will notice that I have no underwear on today..." ("annoyed", "base", "worried", "R") - her "Oh, and I will be back tonight to pick them up, [genie_name]." ("open", "base", "base", "mid") + her "Oh, and I will be back tonight to pick them up, [name_genie_hermione]." ("open", "base", "base", "mid") gen "Of course. Your panties will be right here on my desk, waiting for you..." ("base", xpos="far_left", ypos="head") her "............." ("angry", "happyCl", "worried", "mid",emote="sweat") else: label dev: if hg_ps_get_panties.points > 0: - her "Again, [genie_name]?" + her "Again, [name_genie_hermione]?" gen "Yes, again..." ("base", xpos="far_left", ypos="head") her "Here..." @@ -105,7 +105,7 @@ label hg_ps_get_panties: call nar(">She casually throws them on your desk.", "end") gen "What?" ("base", xpos="far_left", ypos="head") - her "Yes, I had a feeling that you might ask for these today, [genie_name]." ("base", "base", "base", "mid") + her "Yes, I had a feeling that you might ask for these today, [name_genie_hermione]." ("base", "base", "base", "mid") gen "A feeling?" ("base", xpos="far_left", ypos="head") her "Well, to be completely honest I just do not bother to wear them much anymore..." ("grin", "base", "base", "R") @@ -147,13 +147,13 @@ label hg_cum_on_panties_response: if her_tier == 2: her "*Hmm*....?" ("annoyed", "narrow", "worried", "down",xpos="right",ypos="base") - her "[genie_name]? What is this?" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]? What is this?" ("angry", "base", "angry", "mid") her "What have you done to them?" her "They are covered in something slimy..." ("normal", "squint", "angry", "mid") menu: "\"An experiment went wrong\"": - her "An experiment went wrong, [genie_name]?" ("open", "base", "base", "mid") + her "An experiment went wrong, [name_genie_hermione]?" ("open", "base", "base", "mid") gen "Yes... Or maybe I should rather say..." ("base", xpos="far_left", ypos="head") gen "\"An experiment went very right\"? *He-he*..." ("grin", xpos="far_left", ypos="head") her ".....................?" ("normal", "squint", "angry", "mid") @@ -163,25 +163,25 @@ label hg_cum_on_panties_response: gen "I can't discuss it with a student." ("base", xpos="far_left", ypos="head") her "................................" ("angry", "base", "angry", "mid") "\"You gave them to me like this!\"": - her "I most certainly did not, [genie_name]!" + her "I most certainly did not, [name_genie_hermione]!" her ".........................." her "Well, these will require some serious cleaning before I can put them on again..." ("annoyed", "narrow", "worried", "down") gen "Or you could put them on now." ("base", xpos="far_left", ypos="head") her "What?" ("open", "base", "base", "mid") - her "I really would rather not, [genie_name]..." ("soft", "base", "base", "R") + her "I really would rather not, [name_genie_hermione]..." ("soft", "base", "base", "R") menu: "\"Put them on or lose the points!\"": $ her_mood +=7 her "What?" ("scream", "wide", "base", "mid") - her "[genie_name], you are joking, right?" + her "[name_genie_hermione], you are joking, right?" gen "I am not..." ("base", xpos="far_left", ypos="head") her "B-but..." ("open", "base", "base", "mid") her "........................................" ("normal", "happyCl", "worried", "mid") - her "{size=-5}Must you always have your way, [genie_name]?{/size}" ("angry", "base", "angry", "mid") - gen "What was that, [hermione_name]?" ("base", xpos="far_left", ypos="head") - her "It's nothing, [genie_name]." ("scream", "closed", "angry", "mid") + her "{size=-5}Must you always have your way, [name_genie_hermione]?{/size}" ("angry", "base", "angry", "mid") + gen "What was that, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "It's nothing, [name_genie_hermione]." ("scream", "closed", "angry", "mid") her "Putting my panties back on!" hide hermione_main call nar(">Hermione hesitantly puts on her panties.","start") @@ -202,7 +202,7 @@ label hg_cum_on_panties_response: elif her_tier == 3: her "My panties..." ("annoyed", "narrow", "worried", "down",xpos="right",ypos="base") - her "What happened to them [genie_name]?" ("annoyed", "narrow", "worried", "down") + her "What happened to them [name_genie_hermione]?" ("annoyed", "narrow", "worried", "down") menu: "\"An experiment went wrong.\"": @@ -227,7 +227,7 @@ label hg_cum_on_panties_response: $ hermione.equip(her_panties_base1) her "(This feels funny...)" ("angry", "happyCl", "worried", "mid",emote="sweat") - her "And my payment, [genie_name]?" ("upset", "wink", "base", "mid") + her "And my payment, [name_genie_hermione]?" ("upset", "wink", "base", "mid") elif her_tier == 4: @@ -236,7 +236,7 @@ label hg_cum_on_panties_response: her "And they smell funny..." her "*Hmm*... That smell..." ("annoyed", "base", "worried", "R") her "It's familiar somehow..." - her "What exactly did you do to them, [genie_name]?" ("base", "base", "base", "mid") + her "What exactly did you do to them, [name_genie_hermione]?" ("base", "base", "base", "mid") menu: "\"An experiment went wrong\"": @@ -245,8 +245,8 @@ label hg_cum_on_panties_response: her "No, don't answer that... I think I know..." ("smile", "base", "base", "R") "\"You gave them to me like this!\"": - her "I don't think so, [genie_name]." - her "But it's alright if you don't want to tell me, [genie_name]..." + her "I don't think so, [name_genie_hermione]." + her "But it's alright if you don't want to tell me, [name_genie_hermione]..." her "I think I know exactly what happened to them..." "\"I came all over them!\"": @@ -255,10 +255,10 @@ label hg_cum_on_panties_response: her "*Hmm*..." ("grin", "base", "base", "R") her "Seems like these will require some serious cleaning before I can put them on..." - her "Unless you want me to put them on now, [genie_name]...?" ("smile", "narrow", "base", "mid_soft") + her "Unless you want me to put them on now, [name_genie_hermione]...?" ("smile", "narrow", "base", "mid_soft") menu: - "\"Yes! Put them on now, [hermione_name]!\"": + "\"Yes! Put them on now, [name_hermione_genie]!\"": her "Well, if I must..." "\"I don't care. Do what you want.\"": @@ -283,20 +283,20 @@ label hg_cum_on_panties_response: gen "If you'd prefer the points then just take them off." ("base", xpos="far_left", ypos="head") her "well... I am already wearing them!" ("annoyed", "base", "worried", "R") gen "Then say \"thank you\" for the gift." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]...{w=0.3} for the gift." ("annoyed", "squint", "base", "mid") + her "Thank you, [name_genie_hermione]...{w=0.3} for the gift." ("annoyed", "squint", "base", "mid") gen "You can go now." ("base", xpos="far_left", ypos="head") - her "Good night, [genie_name]." + her "Good night, [name_genie_hermione]." elif her_tier >= 5: her "My panties..." ("base", "narrow", "base", "up",xpos="right",ypos="base") her "You came all over them..." her "*Hmm*..." ("grin", "base", "base", "R") her "Seems like these will require some serious cleaning before I can put them on..." - her "Unless you want me to put them on now, [genie_name]...?" ("smile", "narrow", "base", "mid_soft") + her "Unless you want me to put them on now, [name_genie_hermione]...?" ("smile", "narrow", "base", "mid_soft") menu: - "\"Yes! Put them on now, [hermione_name]!\"": - her "Yes [genie_name]..." + "\"Yes! Put them on now, [name_hermione_genie]!\"": + her "Yes [name_genie_hermione]..." her "I am only doing this to give my house a fair chance at winning the cup this year." ("smile", "happyCl", "base", "mid") her "I don't like how it feels at all..." ("base", "narrow", "base", "up") gen "Right..." ("base", xpos="far_left", ypos="head") @@ -334,7 +334,7 @@ label hg_cum_on_panties_response: her "*gulp*" ("full_panties", "narrow", "worried", "down",cheeks="blush") gen "That's it. Do you think they're clean yet?" ("base", xpos="far_left", ypos="head") her "*Mmmhhhmmm*" ("full_panties", "narrow", "base", "dead") - gen "Open your mouth, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Open your mouth, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") $ renpy.play('sounds/gltch.ogg') her "*Ahhhhh*" ("open_wide_tongue_panties", "narrow", "annoyed", "up") gen "That's a good girl, your panties are now nice and clean." ("base", xpos="far_left", ypos="head") @@ -342,14 +342,14 @@ label hg_cum_on_panties_response: her "...." ("angry", "happyCl", "worried", "up") gen "You can go..." ("base", xpos="far_left", ypos="head") - her "yes, [genie_name]..." ("angry", "narrow", "base", "down") + her "yes, [name_genie_hermione]..." ("angry", "narrow", "base", "down") gen "After you say \"thank you\"..." ("base", xpos="far_left", ypos="head") her "Thank you for what?" ("angry", "wink", "base", "mid") gen "For my cum." ("base", xpos="far_left", ypos="head") her "..." ("base", "narrow", "worried", "down") - her "Thank you for your cum, [genie_name]..." ("grin", "narrow", "base", "dead") + her "Thank you for your cum, [name_genie_hermione]..." ("grin", "narrow", "base", "dead") gen "You may go now." ("base", xpos="far_left", ypos="head") - her "Good night, [genie_name]." + her "Good night, [name_genie_hermione]." $ achievements.unlock("pantiesfap") jump back_from_soaked @@ -362,7 +362,7 @@ label hg_ps_get_panties_complete: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]..." ("base", "base", "base", "mid",xpos="right",ypos="base") + her "Good evening, [name_genie_hermione]..." ("base", "base", "base", "mid",xpos="right",ypos="base") call play_music("chipper_doodle") menu: @@ -372,7 +372,7 @@ label hg_ps_get_panties_complete: else: her "And my payment?" - "\"How was your day, [hermione_name]?\"": + "\"How was your day, [name_hermione_genie]?\"": if her_tier == 2: her "Oh..." ("soft", "base", "base", "mid",xpos="base",ypos="base", trans=d5) her "Quite ordinary actually..." @@ -400,11 +400,11 @@ label hg_ps_get_panties_complete: menu: "\"You little hypocrite!\"": $ her_mood +=5 - her "[genie_name]?" ("open", "base", "base", "mid") + her "[name_genie_hermione]?" ("open", "base", "base", "mid") gen "You sold your panties to me this morning..." ("base", xpos="far_left", ypos="head") gen "And a couple of hours later you already publicly condemned that exact behaviour..." ("base", xpos="far_left", ypos="head") #gen "What would you call this?" ("base", xpos="far_left", ypos="head") - #her "I know you are right, [genie_name]..." ("annoyed", "narrow", "angry", "R") + #her "I know you are right, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") her "(But we need the points...)" ("annoyed", "narrow", "angry", "R") her "Can I have my payment now please?" ("disgust", "narrow", "base", "mid_soft") gen "What about your panties?" ("base", xpos="far_left", ypos="head") @@ -443,10 +443,10 @@ label hg_ps_get_panties_complete: if not her_panties_soaked or her_tier < 4: gen "Yes, yes..." ("base", xpos="far_left", ypos="head") $ gryffindor +=15 - gen "Fifteen points to Gryffindor, [hermione_name]. Well deserved." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]..." + gen "Fifteen points to Gryffindor, [name_hermione_genie]. Well deserved." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]..." gen "You can go now." ("base", xpos="far_left", ypos="head") - her "Good night, [genie_name]." + her "Good night, [name_genie_hermione]." #gen "Yes, good night..." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") diff --git a/game/scripts/characters/hermione/events/shaming/wear_my_cum.rpy b/game/scripts/characters/hermione/events/shaming/wear_my_cum.rpy index 0f6c0cb2..2c323931 100644 --- a/game/scripts/characters/hermione/events/shaming/wear_my_cum.rpy +++ b/game/scripts/characters/hermione/events/shaming/wear_my_cum.rpy @@ -13,8 +13,8 @@ label hg_ps_cumslut: "\"(Not right now.)\"": jump hermione_favor_menu - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]." (xpos="right", ypos="base") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]." (xpos="right", ypos="base") call play_music("playful_tension") gen "Today I have another small favour to ask of you." ("base", xpos="far_left", ypos="head") @@ -66,7 +66,7 @@ label hg_ps_cumslut_Scene_1: call hide_blkfade call ctc - her "Why are you making me do this, [genie_name]?" ("angry", "base", "base", "mid", ypos="head", flip=False) + her "Why are you making me do this, [name_genie_hermione]?" ("angry", "base", "base", "mid", ypos="head", flip=False) gen "What do you mean?" ("base", xpos="far_left", ypos="head") her "Why are you making me jerk you off..." ("angry", "narrow", "base", "down") her "So that you can cum on me..." ("soft", "narrow", "annoyed", "up") @@ -92,7 +92,7 @@ label hg_ps_cumslut_Scene_1: her "You're letting me choose?" ("smile", "base", "base", "R") gen "Anywhere, as long as it's on you. It can be on your shoes for all I care." ("base", xpos="far_left", ypos="head") her "Okay..." ("base", "happy", "base", "mid") - gen "Well hurry up [hermione_name], classes will start soon." ("base", xpos="far_left", ypos="head") + gen "Well hurry up [name_hermione_genie], classes will start soon." ("base", xpos="far_left", ypos="head") call nar(">She starts jerking your cock with renewed vigour.") gen "So where are you going to hide it?" ("base", xpos="far_left", ypos="head") her "I'm not sure." ("upset", "wink", "base", "mid") @@ -125,7 +125,7 @@ label hg_ps_cumslut_Scene_1: #gen "I'm sure no one will notice." ("base", xpos="far_left", ypos="head") #her "They better not." ("angry", "base", "angry", "mid") - "\"Just keep on jerking, [hermione_name]!\"": + "\"Just keep on jerking, [name_hermione_genie]!\"": # Cum on skirt $ cum_location = 2 @@ -151,10 +151,10 @@ label hg_ps_cumslut_Scene_1: call her_chibi_scene("hj_cum_on_done") call ctc - her "Will that be all, [genie_name]?" ("annoyed", "narrow", "annoyed", "up") + her "Will that be all, [name_genie_hermione]?" ("annoyed", "narrow", "annoyed", "up") gen "I don't suppose you could kiss it for good luck?" ("base", xpos="far_left", ypos="head") her "I don't think so." ("annoyed", "narrow", "angry", "R") - gen "Well then that should be all, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Well then that should be all, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") "\"Take it on your head slut!\"": # Cum on head @@ -254,11 +254,11 @@ label hg_ps_cumslut_Scene_2: call hide_blkfade call ctc - her "Why are you asking me to do this [genie_name]?" ("angry", "base", "base", "mid", ypos="head", flip=False) + her "Why are you asking me to do this [name_genie_hermione]?" ("angry", "base", "base", "mid", ypos="head", flip=False) gen "This question again?" ("base", xpos="far_left", ypos="head") gen "Let me answer your question with one of my own." ("base", xpos="far_left", ypos="head") her "Okay..." ("angry", "narrow", "base", "down") - gen "Why are you jerking me off [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Why are you jerking me off [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Because you asked me to..." ("soft", "narrow", "annoyed", "up") gen "And is that the only reason?" ("base", xpos="far_left", ypos="head") her "No..." ("open", "happyCl", "worried", "mid") @@ -283,9 +283,9 @@ label hg_ps_cumslut_Scene_2: call nar(">You feel her hands tense around your cock.") her "You're making me choose? Between getting eighty points for doing nothing." ("annoyed", "narrow", "annoyed", "mid") her "Or getting paid nothing for wearing your cum around the school." ("angry", "narrow", "annoyed", "mid", emote="angry") - gen "Indeed I am [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Indeed I am [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "{size=-5}Okay...{/size}" ("disgust", "narrow", "base", "down") - gen "Well hurry up [hermione_name], classes will start soon, best make your decision." ("base", xpos="far_left", ypos="head") + gen "Well hurry up [name_hermione_genie], classes will start soon, best make your decision." ("base", xpos="far_left", ypos="head") call nar(">She starts jerking your cock with renewed vigour.") her "..." ("annoyed", "squint", "base", "mid") her "You better appreciate this." ("annoyed", "narrow", "angry", "R") @@ -321,7 +321,7 @@ label hg_ps_cumslut_Scene_2: call her_chibi_scene("hj_cum_on_done") call ctc - her "Will that be all [genie_name]?" ("annoyed", "narrow", "annoyed", "up") + her "Will that be all [name_genie_hermione]?" ("annoyed", "narrow", "annoyed", "up") gen "I don't suppose you could kiss it for good luck?" ("base", xpos="far_left", ypos="head") her "...{w=0.5} ..." ("base", "narrow", "base", "up") @@ -334,7 +334,7 @@ label hg_ps_cumslut_Scene_2: call her_chibi_scene("hj_cum_on_done") gen "Good girl." ("base", xpos="far_left", ypos="head") - "\"Just keep on jerking, [hermione_name]!\"": + "\"Just keep on jerking, [name_hermione_genie]!\"": # Cum on shirt $ cum_location = 5 @@ -421,7 +421,7 @@ label hg_ps_cumslut_Scene_2: gen "Oh and one last thing before you head to class." ("base", xpos="far_left", ypos="head") her "Yes..." ("soft", "narrow", "annoyed", "up",xpos="right",ypos="base") gen "If you return to this office after classes without any cum on you, I'll be very upset." ("base", xpos="far_left", ypos="head") - her "Yes [genie_name]." ("base", "narrow", "base", "up") + her "Yes [name_genie_hermione]." ("base", "narrow", "base", "up") gen "Have fun. Say hi to your friends for me." ("base", xpos="far_left", ypos="head") her "..." ("base", "closed", "base", "mid") @@ -434,7 +434,7 @@ label hg_ps_cumslut_Scene_3: her "Are you serious?" ("shock", "wide", "base", "stare") her "Can I?" ("grin", "narrow", "annoyed", "up") gen "Well--" ("base", xpos="far_left", ypos="head") - her "I was going to ask you if I could, seeing as how it made you so happy last time, [genie_name]." ("smile", "happyCl", "base", "mid",emote="happy") + her "I was going to ask you if I could, seeing as how it made you so happy last time, [name_genie_hermione]." ("smile", "happyCl", "base", "mid",emote="happy") her "I'll even do it for free if that would make you happier!" ("base", "narrow", "base", "up") gen "really?" ("base", xpos="far_left", ypos="head") gen "Well let's get started then!" ("base", xpos="far_left", ypos="head") @@ -448,31 +448,31 @@ label hg_ps_cumslut_Scene_3: call ctc call bld - gen "Gods, you're good at this, [hermione_name]!" ("base", xpos="far_left", ypos="head") + gen "Gods, you're good at this, [name_hermione_genie]!" ("base", xpos="far_left", ypos="head") her "Thank you... I've been thinking about what you asked me last time..." ("soft", "narrow", "annoyed", "up", ypos="head", flip=False) gen "Last time?" ("base", xpos="far_left", ypos="head") her "about why I do this... sell you these sort of favours." ("upset", "closed", "base", "mid") her "At the start it was just to get points, so that gryffindor could win the house cup..." ("angry", "wink", "base", "mid") her "but lately..." ("base", "narrow", "worried", "down") - her "it's been more than that...{w=0.5} now I do it to make you happy, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "it's been more than that...{w=0.5} now I do it to make you happy, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") her "Because making you happy, makes me happy..." ("base", "squint", "base", "mid") gen "That's great... but what would really make me happy right now is you focusing a little more on the task at hand..." ("base", xpos="far_left", ypos="head") - her "Oh! Of course, [genie_name]..." ("open", "happyCl", "worried", "mid") + her "Oh! Of course, [name_genie_hermione]..." ("open", "happyCl", "worried", "mid") her "Do you need some extra encouragement?" ("open", "closed", "base", "mid") gen "it would help..." ("base", xpos="far_left", ypos="head") her "well... do you know how much I've been thinking about this? How much I wanted to ask you to cover me again?" ("base", "narrow", "worried", "down") - her "I've become such a slut, [genie_name]. It's all I've been able to think about... going to class covered in your {heart}cum{heart}" ("grin", "narrow", "annoyed", "up") + her "I've become such a slut, [name_genie_hermione]. It's all I've been able to think about... going to class covered in your {heart}cum{heart}" ("grin", "narrow", "annoyed", "up") her "I Imagine it staining my uniform so much that I can never wash it out. I imagine being covered in your cum constantly, so everyone knows what I am." ("grin", "narrow", "base", "dead") her "not just A slut... a cumslut..." ("soft", "narrow", "annoyed", "up") her "Your {heart}cumslut{heart}..." ("silly", "narrow", "annoyed", "up") gen "That did it slut!" ("grin", xpos="far_left", ypos="head") gen "HERE IT COMES!!!" ("angry", xpos="far_left", ypos="head") - her "Shoot it wherever you want [genie_name]..." ("open_wide_tongue", "narrow", "annoyed", "up") + her "Shoot it wherever you want [name_genie_hermione]..." ("open_wide_tongue", "narrow", "annoyed", "up") menu: "\"Take it on your tits!\"": # Cum on shirt $ cum_location = 7 - her "Please cover my tits with your sticky cum! I need it, [genie_name]!" ("grin", "narrow", "annoyed", "up", ypos="head", flip=False) + her "Please cover my tits with your sticky cum! I need it, [name_genie_hermione]!" ("grin", "narrow", "annoyed", "up", ypos="head", flip=False) ">Hermione keeps jerking your cock, her eyes focused intently on it." gen "Get ready whore, here i come!" ("angry", xpos="far_left", ypos="head") her "..." ("silly", "narrow", "base", "dead") @@ -505,7 +505,7 @@ label hg_ps_cumslut_Scene_3: $ cum_location = 8 ">Hermione bends down and holds your cock in front of her face." gen "Get ready slut, here it comes!" ("base", xpos="far_left", ypos="head") - her "Please give it to me! I need it, [genie_name]!" ("grin", "narrow", "annoyed", "up", ypos="head", flip=False) + her "Please give it to me! I need it, [name_genie_hermione]!" ("grin", "narrow", "annoyed", "up", ypos="head", flip=False) gen "{size=+5}*ARGH*! YES!!!{/size}" ("grin", xpos="far_left", ypos="head") her "..." ("open_wide_tongue", "narrow", "annoyed", "up") ">You erupt onto her face, dousing her in your thick spunk." @@ -541,7 +541,7 @@ label hg_ps_cumslut_Scene_3: call bld gen "I'll see you after classes. And as before, if you come back without any cum on you, I'll be very disappointed." ("base", xpos="far_left", ypos="head") - her "of course [genie_name]..." ("soft", "narrow", "annoyed", "up", xpos="right", ypos="base") + her "of course [name_genie_hermione]..." ("soft", "narrow", "annoyed", "up", xpos="right", ypos="base") her "(I can't wait to see the look on people's faces...)" ("grin", "narrow", "base", "dead") call her_walk(action="leave") @@ -564,66 +564,66 @@ label hg_ps_cumslut_complete_1: #if cum_location == 1: # TODO: No can do. Requires rewrite. # Cum under shirt - #her "... I did it, [genie_name]." ("base", "happy", "base", "mid",xpos="right",ypos="base") + #her "... I did it, [name_genie_hermione]." ("base", "happy", "base", "mid",xpos="right",ypos="base") #her "I kept your cum on me all day." ("base", "base", "base", "R") #menu: #"\"Fifty points to Gryffindor!\"": #$ gryffindor += 50 - #her "Thank you [genie_name], will that be all?" ("soft", "base", "base", "mid") - #gen "Yes [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + #her "Thank you [name_genie_hermione], will that be all?" ("soft", "base", "base", "mid") + #gen "Yes [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") #"\"Tell me about your day.\"": #her "It was a pretty normal day, I had potions class and then transfiguration." ("open", "closed", "base", "mid") #gen "And do you think that anyone noticed?" ("base", xpos="far_left", ypos="head") - #her "I don't think so [genie_name]. Ginny Weasley asked me about it during transfiguration class though." ("soft", "base", "base", "mid") + #her "I don't think so [name_genie_hermione]. Ginny Weasley asked me about it during transfiguration class though." ("soft", "base", "base", "mid") #gen "And what did you tell her?" ("base", xpos="far_left", ypos="head") #her "I just said that I spilled some {i}Wiggenweld potion{/i} on myself in potions class." ("open", "base", "base", "mid") #gen "Very cunning of you. Fifty points to Gryffindor." ("base", xpos="far_left", ypos="head") #$ gryffindor += 50 - #her "Thank you [genie_name], if that's all I might head to bed." ("soft", "base", "base", "mid") - #gen "Very well, goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") - #her "Good night [genie_name]." ("base", "base", "base", "mid") + #her "Thank you [name_genie_hermione], if that's all I might head to bed." ("soft", "base", "base", "mid") + #gen "Very well, goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + #her "Good night [name_genie_hermione]." ("base", "base", "base", "mid") if cum_location == 2: # Cum on skirt $ hermione.set_cum(crotch="heavy") - her "... I did it [genie_name]." ("normal", "happyCl", "worried", "mid",xpos="right",ypos="base", trans=d3) + her "... I did it [name_genie_hermione]." ("normal", "happyCl", "worried", "mid",xpos="right",ypos="base", trans=d3) her "I kept your cum on me all day." ("angry", "happyCl", "worried", "mid",emote="sweat") menu: "\"Fifty points to Gryffindor!\"": $ gryffindor += 50 - her "Thank you [genie_name], will that be all?" ("annoyed", "base", "worried", "R") - gen "Yes [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione], will that be all?" ("annoyed", "base", "worried", "R") + gen "Yes [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") "\"Tell me about your day.\"": her "It was a pretty normal day, I had potions class and then transfiguration." ("annoyed", "base", "worried", "R",xpos="base",ypos="base") gen "And do you think that anyone noticed?" ("base", xpos="far_left", ypos="head") - her "I think a few people did [genie_name]. I could hear The first years all whispering as I walked past." ("grin", "happyCl", "worried", "mid") + her "I think a few people did [name_genie_hermione]. I could hear The first years all whispering as I walked past." ("grin", "happyCl", "worried", "mid") gen "And how did you feel?" ("base", xpos="far_left", ypos="head") her "Excited. I just wish that they knew why I was doing this." ("base", "narrow", "worried", "down") gen "Speaking of that, fifty points to Gryffindor." ("base", xpos="far_left", ypos="head") $ gryffindor += 50 - her "Oh, right the points, Thank you [genie_name]. if that's all I might head to bed." ("open", "narrow", "worried", "down") - gen "Very well, goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night [genie_name]." ("annoyed", "closed", "base", "mid") + her "Oh, right the points, Thank you [name_genie_hermione]. if that's all I might head to bed." ("open", "narrow", "worried", "down") + gen "Very well, goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night [name_genie_hermione]." ("annoyed", "closed", "base", "mid") else: # Cum on hair $ hermione.set_cum(hair="heavy") - her "... I did it [genie_name]." ("upset", "narrow", "base", "dead",tears="mascara",xpos="right",ypos="base", trans=d3) + her "... I did it [name_genie_hermione]." ("upset", "narrow", "base", "dead",tears="mascara",xpos="right",ypos="base", trans=d3) her "I kept your cum on me all day." ("upset", "happyCl", "worried", "mid",tears="mascara_soft_blink") menu: "\"Fifty points to Gryffindor!\"": $ gryffindor += 50 $ her_mood += 5 her "..." ("annoyed", "narrow", "annoyed", "mid", tears="mascara_soft") - gen "Well [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + gen "Well [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") her "*Hmph*..." ("angry", "narrow", "annoyed", "mid", emote="angry",tears="mascara") "\"Tell me about your day.\"": @@ -643,7 +643,7 @@ label hg_ps_cumslut_complete_1: her "That's the problem! They think that this slutty persona is who I am now!" ("angry", "base", "worried", "mid", tears="mascara_soft") gen "Isn't it?" ("base", xpos="far_left", ypos="head") her "..." ("upset", "happyCl", "worried", "mid",tears="mascara_soft_blink") - her "Good night, [genie_name]." ("normal", "happyCl", "worried", "mid",tears="mascara_soft_blink") + her "Good night, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid",tears="mascara_soft_blink") with fade @@ -658,13 +658,13 @@ label hg_ps_cumslut_complete_2: $ hermione.set_cum(legs="heavy") - her "... I did it, [genie_name]." ("base", "happy", "base", "mid",xpos="right",ypos="base", trans=d3) + her "... I did it, [name_genie_hermione]." ("base", "happy", "base", "mid",xpos="right",ypos="base", trans=d3) her "I kept your cum on me all day." ("base", "base", "base", "R") menu: "\"Good Work!\"": - her "Thank you [genie_name], will that be all?" ("soft", "base", "base", "mid") - gen "Yes [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione], will that be all?" ("soft", "base", "base", "mid") + gen "Yes [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") "\"Tell me about your day.\"": her "It was a pretty normal day, well, except for Luna..." ("open", "closed", "base", "mid") @@ -681,46 +681,46 @@ label hg_ps_cumslut_complete_2: gen "I don't believe you." ("base", xpos="far_left", ypos="head") her "I was as shocked as you were." ("open", "closed", "base", "mid") gen "Well you have certainly made this old man very happy." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]. if that's all I might head to bed." ("open", "narrow", "worried", "down") - gen "Very well, goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night [genie_name]." ("annoyed", "closed", "base", "mid") + her "Thank you [name_genie_hermione]. if that's all I might head to bed." ("open", "narrow", "worried", "down") + gen "Very well, goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night [name_genie_hermione]." ("annoyed", "closed", "base", "mid") elif cum_location == 5: # Cum on shirt $ hermione.set_cum(breasts="heavy", body="light") - her "... I did it, [genie_name]." ("normal", "happyCl", "worried", "mid",xpos="right",ypos="base", trans=d3) + her "... I did it, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid",xpos="right",ypos="base", trans=d3) her "I kept your cum on me all day." ("angry", "happyCl", "worried", "mid",emote="sweat") menu: "\"Good Work!\"": - her "Thank you [genie_name], will that be all?" ("annoyed", "base", "worried", "R") - gen "Yes [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione], will that be all?" ("annoyed", "base", "worried", "R") + gen "Yes [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") "\"Tell me about your day.\"": her "It was a pretty normal day, I had Defence against the dark arts class and then Herbology." ("annoyed", "base", "worried", "R",xpos="base",ypos="base") gen "And do you think that anyone noticed?" ("base", xpos="far_left", ypos="head") - her "I think most people did [genie_name]. I'm not sure if they all knew it was cum though." ("grin", "happyCl", "worried", "mid") + her "I think most people did [name_genie_hermione]. I'm not sure if they all knew it was cum though." ("grin", "happyCl", "worried", "mid") gen "And how did you feel?" ("base", xpos="far_left", ypos="head") her "Excited. Getting to see everyone's faces as they realised what it was..." ("base", "narrow", "worried", "down") gen "So you don't mind them knowing?" ("base", xpos="far_left", ypos="head") her "I suppose not... As long as it makes you happy." ("open", "narrow", "worried", "down") - gen "Very well, goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night [genie_name]." ("annoyed", "closed", "base", "mid") + gen "Very well, goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night [name_genie_hermione]." ("annoyed", "closed", "base", "mid") else: # Cum on face $ hermione.set_cum(face="heavy", hair="light") - her "... I did it, [genie_name]." ("annoyed", "narrow", "base", "dead",tears="mascara",xpos="right",ypos="base", trans=d3) + her "... I did it, [name_genie_hermione]." ("annoyed", "narrow", "base", "dead",tears="mascara",xpos="right",ypos="base", trans=d3) her "I kept your cum on me...{w=0.8} all day." ("annoyed", "narrow", "base", "dead",tears="mascara") menu: "\"Good Work!\"": her "..." ("annoyed", "narrow", "base", "dead",tears="mascara") - gen "Well [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + gen "Well [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") her "Did I at least make you happy?" ("open", "narrow", "annoyed", "mid", tears="mascara") gen "You did." ("base", xpos="far_left", ypos="head") her "Good." ("annoyed", "closed", "base", "mid",tears="mascara") @@ -742,7 +742,7 @@ label hg_ps_cumslut_complete_2: her "..." ("upset", "happyCl", "worried", "mid",tears="mascara_soft_blink") her "Did I...{w=0.5} make you happy?" ("open", "narrow", "annoyed", "mid", tears="mascara_soft") gen "You did." ("base", xpos="far_left", ypos="head") - her "Good night, [genie_name]." ("normal", "happyCl", "worried", "mid",tears="mascara_soft") + her "Good night, [name_genie_hermione]." ("normal", "happyCl", "worried", "mid",tears="mascara_soft") with fade @@ -759,23 +759,23 @@ label hg_ps_cumslut_complete_3: $ hermione.set_cum(breasts="heavy") ">Hermione returns to your office, her breasts still covered in cum." - her "... I did it [genie_name]." ("open", "squint", "base", "mid") + her "... I did it [name_genie_hermione]." ("open", "squint", "base", "mid") her "I kept your cum on me all day." ("grin", "happyCl", "worried", "mid",emote="sweat") menu: "\"Good Work!\"": - her "Thank you [genie_name], will that be all?" ("base", "base", "base", "mid") - gen "Yes [hermione_name], you may leave now." ("base", xpos="far_left", ypos="head") + her "Thank you [name_genie_hermione], will that be all?" ("base", "base", "base", "mid") + gen "Yes [name_hermione_genie], you may leave now." ("base", xpos="far_left", ypos="head") "\"Tell me about your day.\"": - her "It was actually quite frustrating [genie_name]..." ("annoyed", "narrow", "angry", "R") + her "It was actually quite frustrating [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R") gen "frustrating?" ("base", xpos="far_left", ypos="head") her "yes! Having to spend the whole day smelling your delicious cum but not being able to taste any of it!" ("open", "base", "base", "R") her "It was like looking at a glass of water in the desert..." ("soft", "narrow", "annoyed", "up") gen "did anyone else notice?" ("base", xpos="far_left", ypos="head") - her "I couldn't say [genie_name]... I was too distracted by the smell..." ("angry", "wink", "base", "mid") - gen "Very well, goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night [genie_name]." ("grin", "narrow", "base", "dead") + her "I couldn't say [name_genie_hermione]... I was too distracted by the smell..." ("angry", "wink", "base", "mid") + gen "Very well, goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night [name_genie_hermione]." ("grin", "narrow", "base", "dead") else: # Cum on face @@ -783,20 +783,20 @@ label hg_ps_cumslut_complete_3: $ hermione.set_cum(face="heavy", hair="light") ">Hermione returns to your office, her face still covered in cum." - her "I did it, [genie_name]." ("open", "squint", "base", "mid") + her "I did it, [name_genie_hermione]." ("open", "squint", "base", "mid") her "I kept your cum on me all day." ("base", "base", "base", "mid") menu: "\"Good Work!\"": - her "Thank you, [genie_name]. Is that everything?" ("soft", "happy", "base", "R") - gen "yes [hermione_name], you can go clean up now." ("base", xpos="far_left", ypos="head") + her "Thank you, [name_genie_hermione]. Is that everything?" ("soft", "happy", "base", "R") + gen "yes [name_hermione_genie], you can go clean up now." ("base", xpos="far_left", ypos="head") her "clean up?" ("open", "base", "base", "R") gen "Only if you want to..." ("base", xpos="far_left", ypos="head") - her "thank you [genie_name]!" ("grin", "narrow", "annoyed", "up") + her "thank you [name_genie_hermione]!" ("grin", "narrow", "annoyed", "up") "\"Tell me about your day.\"": her "My day..." ("soft", "happy", "base", "R") - her "It was a normal day [genie_name]. Well what is normal for me now." ("soft", "narrow", "annoyed", "up") + her "It was a normal day [name_genie_hermione]. Well what is normal for me now." ("soft", "narrow", "annoyed", "up") her "I got called names again, and some of the boys groped me." ("grin", "narrow", "base", "dead") her "Susan Bones even said she liked how I looked in my shirt." ("base", "narrow", "worried", "down") gen "And how did that make you feel?" ("base", xpos="far_left", ypos="head") @@ -805,8 +805,8 @@ label hg_ps_cumslut_complete_3: her "Of course, it made me even happier knowing that it makes you happy." ("base", "narrow", "worried", "down") gen "that you did..." ("base", xpos="far_left", ypos="head") her "...{heart}" ("grin", "narrow", "annoyed", "up") - her "thank you [genie_name]. well, goodnight." ("open", "base", "base", "R") - gen "goodnight [hermione_name]." ("base", xpos="far_left", ypos="head") + her "thank you [name_genie_hermione]. well, goodnight." ("open", "base", "base", "R") + gen "goodnight [name_hermione_genie]." ("base", xpos="far_left", ypos="head") with fade diff --git a/game/scripts/characters/hermione/events/tentacles.rpy b/game/scripts/characters/hermione/events/tentacles.rpy index bab60699..8af0129e 100644 --- a/game/scripts/characters/hermione/events/tentacles.rpy +++ b/game/scripts/characters/hermione/events/tentacles.rpy @@ -103,8 +103,8 @@ label tentacle_scene_intro: gen "(*Hmm*... how should I start?)" ("base", xpos="far_left", ypos="head") "\"Dear Hermione, ...\"": $ d_flag_01.append("Dear Hermione,\n\n") - "\"Dear [hermione_name], ...\"": - $ d_flag_01.append("Dear [hermione_name],\n\n") + "\"Dear [name_hermione_genie], ...\"": + $ d_flag_01.append("Dear [name_hermione_genie],\n\n") "\"You, the bimbo, ...\"": $ d_flag_01.append("You, the bimbo,\n\n") @@ -167,8 +167,8 @@ label tentacle_scene_intro: gen "..." ("base", xpos="far_left", ypos="head") "\"... Sincerely, Dombledure.\"": $ d_flag_01.append("Sincerely,\nDombledure.") - "\"... Yours truly, [genie_name].\"": - $ d_flag_01.append("Yours truly,\n[genie_name].") + "\"... Yours truly, [name_genie_hermione].\"": + $ d_flag_01.append("Yours truly,\n[name_genie_hermione].") $ d_flag_01 = " ".join(d_flag_01) @@ -189,15 +189,15 @@ label tentacle_scene_intro: call her_walk(action="enter") with d3 pause 1 - her "[genie_name], my class is about to--" ("open", "base", "worried", "L", trans=d3) - her "[genie_name]?" ("open", "squint", "base", "L") + her "[name_genie_hermione], my class is about to--" ("open", "base", "worried", "L", trans=d3) + her "[name_genie_hermione]?" ("open", "squint", "base", "L") call her_walk(xpos="mid", ypos="base") pause 1.0 call chibi_emote("thought","hermione") pause 2.0 call chibi_emote("hide", "hermione") her "Are we playing hide and seek??" ("annoyed", "base", "angry", "R", trans=d3) - her "[genie_name], I really don't have the time--" ("annoyed", "narrow", "angry", "stare") + her "[name_genie_hermione], I really don't have the time--" ("annoyed", "narrow", "angry", "stare") hide hermione_main hide screen bld1 with d3 @@ -509,7 +509,7 @@ label tentacle_2: # Personal path ">You start pumping the tentacles in her vagina slowly..." her "Oh..." ">You move a small tentacle with a mouth on the end to her ear so that only she can hear you." - gen "Enjoying yourself, [hermione_name]?" + gen "Enjoying yourself, [name_hermione_genie]?" her "Profes--" show her_tentacles_personal_2 as cg @@ -517,7 +517,7 @@ label tentacle_2: # Personal path $ renpy.sound.play("sounds/slick_02.ogg") ">You quickly force another flowered tentacle into her mouth." - gen "Now, now [hermione_name], you don't want anyone to find out how much you actually are enjoying yourself now, do you?" + gen "Now, now [name_hermione_genie], you don't want anyone to find out how much you actually are enjoying yourself now, do you?" her "*Hmmmhhhhhhhhh* !" gen "Well, then just do what Miss Sprout says and stay still." gen "Just act like this is some horrible accident, that you are just a victim." @@ -530,10 +530,10 @@ label tentacle_2: # Personal path mal2 "I don't know man, she doesn't look like she hates it." play bg_sounds "sounds/slickloopfast.ogg" fadein 2 fadeout 2 ">You increase the speed of the tentacles in her vagina." - gen "Hear that, [hermione_name]? Your classmates are starting to realise how much you like getting your pussy stuffed." + gen "Hear that, [name_hermione_genie]? Your classmates are starting to realise how much you like getting your pussy stuffed." her "*NNNNNNNNNm*" gen "What was that? Faster you say?" - gen "You got it, [hermione_name]!" + gen "You got it, [name_hermione_genie]!" show her_tentacles_personal_3 as cg play bg_sounds "sounds/slickloopveryfast.ogg" fadein 2 fadeout 2 ">You begin fucking Hermione in earnest." diff --git a/game/scripts/characters/hermione/events/tutoring.rpy b/game/scripts/characters/hermione/events/tutoring.rpy index ee484cfd..e987bfca 100644 --- a/game/scripts/characters/hermione/events/tutoring.rpy +++ b/game/scripts/characters/hermione/events/tutoring.rpy @@ -63,14 +63,14 @@ label hg_tutor_start: label hg_tutor_E1: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - her "[genie_name], I'm very thankful that you're doing this for me." ("open", "base", "base", "mid") + her "[name_genie_hermione], I'm very thankful that you're doing this for me." ("open", "base", "base", "mid") gen "Doing what?" ("base", xpos="far_left", ypos="head") her "My tutoring lessons..." ("soft", "squint", "base", "mid") - her "I hope you're still planning to lecture me, [genie_name]?" ("annoyed", "base", "base", "mid") + her "I hope you're still planning to lecture me, [name_genie_hermione]?" ("annoyed", "base", "base", "mid") gen "Oh, I'll give you a lecture for sure." ("grin", xpos="far_left", ypos="head") her "Shall I go and fetch my books, then?" ("open", "squint", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") - her "My Books, [genie_name]. I need to study them more for my tests." ("soft", "base", "base", "R") + her "My Books, [name_genie_hermione]. I need to study them more for my tests." ("soft", "base", "base", "R") her "All the knowledge I need is in those books!" ("annoyed", "narrow", "angry", "R") gen "Books can't teach you everything, girl... Some knowledge only comes with practice and experience!" ("base", xpos="far_left", ypos="head") gen "(I'm really just going to make this shit up as I go, ain't I?)" ("base", xpos="far_left", ypos="head") @@ -97,7 +97,7 @@ label hg_tutor_E1: gen "{size=-4}And soon you'll love cock!{/size}" ("grin", xpos="far_left", ypos="head") her "Yes?" ("soft", "base", "base", "mid", trans=d5) gen "I didn't say anything..." ("base", xpos="far_left", ypos="head") - her "If you say so, [genie_name]." ("open", "base", "base", "R") + her "If you say so, [name_genie_hermione]." ("open", "base", "base", "R") "-No back talk-": $ d_flag_02 = True @@ -207,7 +207,7 @@ label hg_tutor_E2: gen "{size=-2}(She is so naive, it's adorable.){/size}" ("grin", xpos="far_left", ypos="head") gen "Good, now time to go to bed, my apprentice." ("base", xpos="far_left", ypos="head") her "{size=-2}(*Tsh*... Like I'm going to bed at this time, I need to study more.){/size}" ("normal", "squint", "angry", "mid") - her "Of course! Goodnight, [genie_name]." ("base", "happyCl", "base", "mid") + her "Of course! Goodnight, [name_genie_hermione]." ("base", "happyCl", "base", "mid") call her_walk("door", "base") @@ -626,7 +626,7 @@ label hg_tutor_E7: call blkfade call nar(">You abruptly stop.") pause .5 - her "*Hmph*...{w=0.3} Why did you stop, [genie_name]?" ("clench", "base", "worried", "mid", cheeks="blush", emote="angry", ypos="head", flip=False, trans=d3) + her "*Hmph*...{w=0.3} Why did you stop, [name_genie_hermione]?" ("clench", "base", "worried", "mid", cheeks="blush", emote="angry", ypos="head", flip=False, trans=d3) gen "Lesson is over. Time to practise by yourself." ("base", xpos="far_left", ypos="head") call gen_chibi("sit_behind_desk") @@ -1318,7 +1318,7 @@ label hg_tutor_E11: label hg_tutor_E12: her "" ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) - gen "[hermione_name], I have something for you." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I have something for you." ("base", xpos="far_left", ypos="head") her "Another gift for me?" ("base", "narrow", "base", "up", cheeks="blush") her "Please, please." ("open", "happyCl", "worried", "mid", cheeks="blush") gen "You weren't this excited last time when I gave you a present..." ("base", xpos="far_left", ypos="head") @@ -1422,7 +1422,7 @@ label hg_tutor_E12: her "*Ah*... {heart}{w=0.5} *Ah*... {heart}" ("silly", "narrow", "base", "up", cheeks="blush") her "W-What did I say..." ("grin", "narrow", "base", "up", cheeks="blush") call nar(">You wiggle the finger inside.") - her "You never listen, [genie_name]!" ("grin", "narrow", "base", "up", cheeks="blush") + her "You never listen, [name_genie_hermione]!" ("grin", "narrow", "base", "up", cheeks="blush") gen "What can I say, I just know what's best for you, my little witch." ("base", xpos="far_left", ypos="head") call nar(">You pick up the pace.") her "Yesss! {heart}" ("grin", "narrow", "base", "up", cheeks="blush") @@ -1441,7 +1441,7 @@ label hg_tutor_E12: call nar(">You suddenly pull out all the beads.") her "*Ahhhhhh*!!" ("grin", "narrow", "base", "dead", cheeks="blush", tears="messy") call nar(">And insert four fingers in her ass.") - her "I'm cumming, [genie_name]... I cumming!" ("silly", "narrow", "base", "up", cheeks="blush") + her "I'm cumming, [name_genie_hermione]... I cumming!" ("silly", "narrow", "base", "up", cheeks="blush") gen "If you must..." ("base", xpos="far_left", ypos="head") call nar(">You continue to work her ass while you finger her pussy.") her "No don't I..." @@ -1632,7 +1632,7 @@ label hg_tutor_E13: gen "I can see you rubbing your thighs from excitement!" ("base", xpos="far_left", ypos="head") her "I thought it was so dark in here..." ("open", "happy", "base", "mid", cheeks="blush") her "*Humm*...{w=0.3} Okay, but you better start out easy on me." ("annoyed", "squint", "base", "mid") - gen "I'm always gentle with you, [hermione_name]." ("grin", xpos="far_left", ypos="head") + gen "I'm always gentle with you, [name_hermione_genie]." ("grin", xpos="far_left", ypos="head") her "Yeah, obviously..." ("annoyed", "narrow", "annoyed", "up") gen "{size=-2}(It's not as if you don't like it rough){/size}" ("base", xpos="far_left", ypos="head") gen "Alright, my desk.{w=0.3} You{w=0.5}, naked{w=0.6}, now!" ("base", xpos="far_left", ypos="head") @@ -1682,7 +1682,7 @@ label hg_tutor_E13: call her_chibi_scene("lie_on_desk", trans=d5) - her "I'm ready, [genie_name]." (ypos="head", flip=False, trans=d3) + her "I'm ready, [name_genie_hermione]." (ypos="head", flip=False, trans=d3) call give_gift(">You take an empty butterbeer bottle, spit on the neck, and push it inside her butthole.",butterbeer_ITEM) @@ -1780,12 +1780,12 @@ label hg_tutor_E14: #call hide_blkfade #call ctc - #her "Revisions are a serious matter, [genie_name]!" ("open", "base", "worried", "mid") + #her "Revisions are a serious matter, [name_genie_hermione]!" ("open", "base", "worried", "mid") #gen "{size=-2}(My cock in your ass is a serious matter...){/size}" ("base", xpos="far_left", ypos="head") #gen "In this regard, I kinda lied, it's more of a mock exam than revisions." ("base", xpos="far_left", ypos="head") #her "What a surprise!" ("annoyed", "narrow", "base", "up", cheeks="blush") - gen "[hermione_name], today I'd like to examine if you've been keeping up with your tutoring lessons..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], today I'd like to examine if you've been keeping up with your tutoring lessons..." ("base", xpos="far_left", ypos="head") gen "And make sure you've been working out your butthole." ("grin", xpos="far_left", ypos="head") her "........" ("annoyed", "narrow", "base", "up", cheeks="blush") gen "With my cock." ("grin", xpos="far_left", ypos="head") @@ -1909,8 +1909,8 @@ label hg_tutor_E14: gen "I'm the most well-behaved professor in the whole school!" ("grin", xpos="far_left", ypos="head") her "Sure." ("annoyed", "narrow", "angry", "R", cheeks="blush") her "{size=-2}(At least, you're not the worst...){/size}" ("annoyed", "narrow", "base", "up", cheeks="blush") - gen "Good night, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Good night, [genie_name]." ("base", "base", "base", "R", cheeks="blush") + gen "Good night, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Good night, [name_genie_hermione]." ("base", "base", "base", "R", cheeks="blush") hide hermione_main call blkfade diff --git a/game/scripts/characters/hermione/gifts.rpy b/game/scripts/characters/hermione/gifts.rpy index 226b3188..36e98611 100644 --- a/game/scripts/characters/hermione/gifts.rpy +++ b/game/scripts/characters/hermione/gifts.rpy @@ -12,11 +12,11 @@ label give_her_gift(gift_item): if her_whoring < 6: # Lv 1-2. her "A lollipop?" ("base", "base", "base", "mid") call give_gift(">You give the candy to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-5) elif her_whoring < 12: # Lv 3-4. her "Candy?" ("normal", "base", "base", "mid") - her "Candy is for kids, [genie_name]." ("open", "base", "base", "mid") + her "Candy is for kids, [name_genie_hermione]." ("open", "base", "base", "mid") call give_gift(">You give the candy to Hermione...",gift_item) her "Thank you..." ("annoyed", "base", "worried", "R") call her_mood(-5) @@ -29,14 +29,14 @@ label give_her_gift(gift_item): her "A lollipop?" ("base", "base", "base", "mid") her "Clever girls use candy like this as a \"weapon\"." ("smile", "base", "base", "R") call give_gift(">You give the candy to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") call her_mood(-5) elif gift_item == chocolate_ITEM: if her_whoring < 6: # Lv 1-2. her "A chocolate bar?" ("base", "base", "base", "mid") call give_gift(">You give the chocolate to Hermione...", gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif her_whoring < 12: # Lv 3-4. her "A chocolate bar?" ("normal", "base", "base", "mid") @@ -48,13 +48,13 @@ label give_her_gift(gift_item): call her_mood(-10) elif her_whoring < 18: # Lv 5-6. her "A chocolate bar?" ("normal", "base", "base", "mid") - her "I just like the way it crunches, [genie_name]! N-not the taste..." ("grin", "happyCl", "worried", "mid",emote="sweat") + her "I just like the way it crunches, [name_genie_hermione]! N-not the taste..." ("grin", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give the chocolate to Hermione...", gift_item) her "*Ehm*... Sure, thanks..." ("base", "base", "base", "mid") call her_mood(-10) else: # Lv 7+ her "A chocolate bar?" ("base", "base", "base", "mid") - her "You spoil me, [genie_name]." ("smile", "base", "angry", "mid") + her "You spoil me, [name_genie_hermione]." ("smile", "base", "angry", "mid") call give_gift(">You give the chocolate to Hermione...", gift_item) her "Thank you." ("base", "squint", "base", "mid") call her_mood(-10) @@ -64,20 +64,20 @@ label give_her_gift(gift_item): her "A stuffed owl?" ("base", "base", "base", "mid") her "It's cute..." ("base", "base", "base", "mid") call give_gift(">You give the owl to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-7) elif her_whoring < 12: # Lv 3-4. her "A plush toy?" ("open", "base", "worried", "mid") her "I like it!" ("base", "base", "base", "mid") call give_gift(">You give the owl to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif her_whoring < 18: # Lv 5-6. her "A toy?" ("base", "base", "base", "mid") - her "Toys are for kids, [genie_name]." ("open", "base", "base", "mid") + her "Toys are for kids, [name_genie_hermione]." ("open", "base", "base", "mid") her "But I'll take it..." ("annoyed", "base", "worried", "R") call give_gift(">You give the owl to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-15) else: # Lv 7+ her "This is one of those adult toys isn't it?" ("disgust", "narrow", "base", "mid_soft") @@ -86,34 +86,34 @@ label give_her_gift(gift_item): her "Oh...?" ("open", "happy", "base", "mid",cheeks="blush") her "So it is really just a plush toy then?" her "Shame..." ("angry", "narrow", "base", "down") - her "I mean, thank you, [genie_name]." ("angry", "happyCl", "worried", "mid",emote="sweat") + her "I mean, thank you, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give the owl to Hermione...",gift_item) call her_mood(-4) elif gift_item == butterbeer_ITEM: if her_whoring < 6: # Lv 1-2. her "Butterbeer?" ("base", "base", "base", "mid") - her "Are you sure about that, [genie_name]?" ("open", "squint", "base", "mid") + her "Are you sure about that, [name_genie_hermione]?" ("open", "squint", "base", "mid") her "It does contain alcohol, you know..." ("base", "base", "base", "mid") call give_gift(">You give the bottle to Hermione...",gift_item) her "Thank you." ("base", "base", "base", "mid") call her_mood(-3) elif her_whoring < 12: # Lv 3-4. - her "Butterbeer, [genie_name]?" ("open", "base", "worried", "mid") - her "To let you in on a little secret, [genie_name]..." ("open", "base", "base", "mid") + her "Butterbeer, [name_genie_hermione]?" ("open", "base", "worried", "mid") + her "To let you in on a little secret, [name_genie_hermione]..." ("open", "base", "base", "mid") her "I'm a big fan of this completely harmless beverage." ("base", "base", "base", "mid") call give_gift(">You give the bottle to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif her_whoring < 18: # Lv 5-6. her "Butterbeer?" ("base", "base", "base", "mid") - her "Thank you, [genie_name]." ("grin", "happyCl", "worried", "mid",emote="sweat") + her "Thank you, [name_genie_hermione]." ("grin", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give the bottle to Hermione...",gift_item) her "I shall drink this with the girls later." ("base", "base", "base", "mid") call her_mood(-15) else: # Lv 7+ her "Butterbeer...?" ("base", "base", "base", "mid") - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call give_gift(">You give the bottle to Hermione...",gift_item) her "I shall drink this later with the boys." ("base", "base", "base", "mid") her "Err... I meant to say with the girls, of course." ("open", "base", "base", "R",cheeks="blush") @@ -123,13 +123,13 @@ label give_her_gift(gift_item): if her_whoring < 6: # Lv 1-2. her "\"Popular magic\" magazines?" ("base", "base", "base", "mid") call give_gift(">You give an assortment of educational magazines to Hermione...",gift_item) - her "Thank you, [genie_name]!" ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") her "I will use them for my research!" call her_mood(-15) elif her_whoring < 12: # Lv 3-4. her "Sometimes I find information in magazines that I could never find in a book..." ("base", "base", "base", "mid") call give_gift(">You give an assortment of educational magazines to Hermione...",gift_item) - her "Thank you, [genie_name]!" ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") her "I will use them for my research!" call her_mood(-10) elif her_whoring < 18: # Lv 5-6. @@ -137,12 +137,12 @@ label give_her_gift(gift_item): her "Yes, I used to read magazines like that a lot..." ("base", "base", "base", "mid") her "Lately not so much though..." ("open", "base", "worried", "R") call give_gift(">You give an assortment of educational magazines to Hermione...",gift_item) - her "Thank you, [genie_name]!" ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") call her_mood(-3) else: # Lv 7+ her "*Ehm*..." ("open", "base", "worried", "R") her "To be honest, magazines like that lost their appeal to me completely lately..." ("open", "squint", "base", "mid") - her "But I don't mind taking them off you hands anyway, [genie_name]." ("open", "base", "worried", "mid") + her "But I don't mind taking them off you hands anyway, [name_genie_hermione]." ("open", "base", "worried", "mid") call give_gift(">You give an assortment of educational magazines to Hermione...",gift_item) her "Thank you." ("soft", "base", "base", "R") call her_mood(0) @@ -151,44 +151,44 @@ label give_her_gift(gift_item): if her_whoring < 6: # Lv 1-2. her "*Hmm*?" ("soft", "base", "base", "mid") her "This is the sort of press some Slytherin bimbo would appreciate." ("annoyed", "squint", "base", "mid") - her "I am way above silly magazines like that, [genie_name]." ("open", "closed", "base", "mid") + her "I am way above silly magazines like that, [name_genie_hermione]." ("open", "closed", "base", "mid") call her_mood(0) elif her_whoring < 12: # Lv 3-4. - her "I don't read magazines of that nature, [genie_name]..." ("open", "closed", "angry", "mid") + her "I don't read magazines of that nature, [name_genie_hermione]..." ("open", "closed", "angry", "mid") her "................" ("soft", "base", "base", "R") her "But I could give it a try just to humour you I suppose..." ("open", "closed", "angry", "mid") call give_gift(">You give an assortment of rather girly magazines to Hermione...",gift_item) - her "Thank you, [genie_name]!" ("open", "squint", "base", "mid") + her "Thank you, [name_genie_hermione]!" ("open", "squint", "base", "mid") call her_mood(-5) elif her_whoring < 18: # Lv 5-6. her "I ashamed to admit this, but..." ("open", "base", "worried", "R") her "I really enjoy reading magazines like that lately..." ("grin", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give an assortment of rather girly magazines to Hermione...",gift_item) - her "Thank you, [genie_name]." ("open", "squint", "base", "mid") + her "Thank you, [name_genie_hermione]." ("open", "squint", "base", "mid") call her_mood(-15) else: # Lv 7+ her "The Latest edition of \"Girlz\"?!" ("angry", "wide", "base", "stare") her "I can't have enough of that brilliant magazine!" ("grin", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give an assortment of rather girly magazines to Hermione...",gift_item) - her "Thank you, [genie_name]." ("open", "squint", "base", "mid") + her "Thank you, [name_genie_hermione]." ("open", "squint", "base", "mid") call her_mood(-15) elif gift_item == adult_mag_ITEM: if her_whoring < 6: # Lv 1-2. her "Are that...?" ("open", "base", "base", "mid") - her "Adult magazines, [genie_name]?" ("open", "base", "base", "mid") + her "Adult magazines, [name_genie_hermione]?" ("open", "base", "base", "mid") her "Given to me by An esteemed wizard of your status?" ("annoyed", "narrow", "angry", "R") - her "[genie_name], surely you could find a more productive way to spend your free time." ("disgust", "narrow", "base", "mid_soft") + her "[name_genie_hermione], surely you could find a more productive way to spend your free time." ("disgust", "narrow", "base", "mid_soft") her "And I most definitely would not have use for those..." ("angry", "base", "angry", "mid") call her_mood(7) elif her_whoring < 12: # Lv 3-4. her "Adult magazines?" ("angry", "base", "angry", "mid") - her "[genie_name], I have no interest in things like that." ("annoyed", "narrow", "angry", "R") - her "And how is this an appropriate present for one of your students, [genie_name]?" ("angry", "base", "angry", "mid") + her "[name_genie_hermione], I have no interest in things like that." ("annoyed", "narrow", "angry", "R") + her "And how is this an appropriate present for one of your students, [name_genie_hermione]?" ("angry", "base", "angry", "mid") call her_mood(3) elif her_whoring < 18: # Lv 5-6. her "Adult magazines?" ("open", "base", "base", "mid") - her "[genie_name], this is such an inappropriate present for a girl like me..." ("angry", "happyCl", "worried", "mid",emote="sweat") + her "[name_genie_hermione], this is such an inappropriate present for a girl like me..." ("angry", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give an assortment of adult magazines to Hermione...",gift_item) her "I shall throw these away myself..." ("annoyed", "narrow", "annoyed", "mid") call her_mood(-8) @@ -198,23 +198,23 @@ label give_her_gift(gift_item): her "This is a little inappropriate..." her "But I will take them..." ("base", "happyCl", "base", "mid") call give_gift(">You give an assortment of adult magazines to Hermione...",gift_item) - her "thank you, [genie_name]." ("base", "happyCl", "base", "mid") + her "thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") call her_mood(-15) elif gift_item == porn_mag_ITEM: if her_whoring < 6: # Lv 1-2. her "*Hmm*... What is this?" ("base", "base", "base", "mid") - her "[genie_name], those are porn magazines!" ("scream", "wide", "base", "stare") - her "Shame on you, [genie_name]!" ("angry", "base", "angry", "mid",cheeks="blush") + her "[name_genie_hermione], those are porn magazines!" ("scream", "wide", "base", "stare") + her "Shame on you, [name_genie_hermione]!" ("angry", "base", "angry", "mid",cheeks="blush") call her_mood(15) elif her_whoring < 12: # Lv 3-4. her "Porn magazines?" ("shock", "wide", "base", "stare") - her "[genie_name], what do you expect me to do with those?" ("open", "narrow", "worried", "down") + her "[name_genie_hermione], what do you expect me to do with those?" ("open", "narrow", "worried", "down") her "Research them?" ("annoyed", "narrow", "annoyed", "mid") her "Despicable!" ("scream", "base", "angry", "mid",emote="angry") call her_mood(8) elif her_whoring < 18: # Lv 5-6. - her "That's hardcore porn, [genie_name]." ("open", "base", "base", "mid") + her "That's hardcore porn, [name_genie_hermione]." ("open", "base", "base", "mid") her "Which is a completely inappropriate gift for a girl like me!" ("angry", "happyCl", "worried", "mid",emote="sweat") her ".............." ("angry", "narrow", "base", "down") her "But I will take them..." ("angry", "base", "base", "mid") @@ -224,7 +224,7 @@ label give_her_gift(gift_item): else: # Lv 7+ her "Pornography?" ("shock", "wide", "base", "stare") her "................" ("angry", "narrow", "base", "down") - her "How can women even agree to do things like that, [genie_name]?" ("angry", "base", "base", "mid") + her "How can women even agree to do things like that, [name_genie_hermione]?" ("angry", "base", "base", "mid") her "................." ("angry", "narrow", "base", "down") her "Alright, I shall accept them..." ("upset", "closed", "base", "mid") her "Solely for research purposes of course..." ("open", "base", "base", "R",cheeks="blush") @@ -234,7 +234,7 @@ label give_her_gift(gift_item): elif gift_item == krum_poster_ITEM: if her_whoring < 6: # Lv 1-2. her "A Quidditch poster?" ("annoyed", "narrow", "worried", "down") - her "What am I supposed to do with it, [genie_name]?" ("annoyed", "narrow", "annoyed", "mid") + her "What am I supposed to do with it, [name_genie_hermione]?" ("annoyed", "narrow", "annoyed", "mid") her "No, thank you." ("annoyed", "closed", "base", "mid") call her_mood(0) elif her_whoring < 12: # Lv 3-4. @@ -245,14 +245,14 @@ label give_her_gift(gift_item): call give_gift(">You give the poster to Hermione...",gift_item) call her_mood(-5) elif her_whoring < 18: # Lv 5-6. - her "A Viktor Krum poster, [genie_name]?" ("annoyed", "narrow", "worried", "down") + her "A Viktor Krum poster, [name_genie_hermione]?" ("annoyed", "narrow", "worried", "down") her "Can't say that I care much for Quidditch, but..." ("open", "squint", "base", "mid") her "I can see why the girls find the brutish physique of some players appealing..." ("open", "narrow", "worried", "down") call give_gift(">You give the poster to Hermione...",gift_item) call her_mood(-15) else: # Lv 7+ her "A Viktor Krum poster?!" ("scream", "wide", "base", "mid") - her "Thank you, [genie_name]!" ("grin", "happyCl", "worried", "mid",emote="sweat") + her "Thank you, [name_genie_hermione]!" ("grin", "happyCl", "worried", "mid",emote="sweat") call give_gift(">You give the poster to Hermione...",gift_item) her "Can't wait to hang it over my bed!" ("smile", "base", "base", "R") her "The girls will go green with envy..." ("smile", "narrow", "base", "mid_soft") @@ -261,66 +261,66 @@ label give_her_gift(gift_item): elif gift_item == sexy_lingerie_ITEM: if her_whoring < 6: # Lv 1-2. her "lingerie?" ("angry", "narrow", "base", "down") - her "[genie_name], I cannot accept a gift like this from you..." ("upset", "closed", "base", "mid") + her "[name_genie_hermione], I cannot accept a gift like this from you..." ("upset", "closed", "base", "mid") call her_mood(10) elif her_whoring < 12: # Lv 3-4. her "sexy lingerie?" ("angry", "narrow", "base", "down") - her "You know I cannot possibly accept a gift like that from you, [genie_name]." ("angry", "base", "base", "mid") + her "You know I cannot possibly accept a gift like that from you, [name_genie_hermione]." ("angry", "base", "base", "mid") her "(It's pretty though)........." ("angry", "narrow", "base", "down") call her_mood(0) elif her_whoring < 18: # Lv 5-6. her "sexy lingerie?" ("base", "narrow", "worried", "down") - her "[genie_name] that is so inappropriate..." ("angry", "wink", "base", "mid") + her "[name_genie_hermione] that is so inappropriate..." ("angry", "wink", "base", "mid") call give_gift(">You give the lingerie to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "R",cheeks="blush") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "R",cheeks="blush") call her_mood(-7) else: # Lv 7+ her "sexy lingerie?" ("base", "narrow", "worried", "down") - her "Do You think it will make me look like one of the witches in those adult magazines, [genie_name]?" ("grin", "narrow", "base", "dead") - her "Oh... I mean, thank you, [genie_name]." ("angry", "wink", "base", "mid") + her "Do You think it will make me look like one of the witches in those adult magazines, [name_genie_hermione]?" ("grin", "narrow", "base", "dead") + her "Oh... I mean, thank you, [name_genie_hermione]." ("angry", "wink", "base", "mid") call give_gift(">You give the lingerie to Hermione...",gift_item) call her_mood(-15) elif gift_item == sexy_stockings_ITEM : if her_whoring < 6: # Lv 1-2. her "Stockings?" ("base", "narrow", "worried", "down") - her "[genie_name], are you insinuating that I wear these?" ("angry", "closed", "base", "mid") + her "[name_genie_hermione], are you insinuating that I wear these?" ("angry", "closed", "base", "mid") call her_mood(8) elif her_whoring < 12: # Lv 3-4. her "Sexy stockings?" ("angry", "narrow", "base", "down") - her "Isn't this a bit inappropriate, [genie_name]?" ("annoyed", "base", "base", "mid") + her "Isn't this a bit inappropriate, [name_genie_hermione]?" ("annoyed", "base", "base", "mid") call her_mood(0) elif her_whoring < 18: # Lv 5-6. her "Sexy stockings?" ("base", "narrow", "worried", "down") her "Thank you I guess..." ("base", "wink", "base", "mid",cheeks="blush") call give_gift(">You give the stockings to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "R",cheeks="blush") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "R",cheeks="blush") call her_mood(-8) else: # Lv 7+ her "Sexy stockings?" ("base", "narrow", "worried", "down") - her "These are almost completely transparent, [genie_name]!" ("grin", "wide", "base", "mid") + her "These are almost completely transparent, [name_genie_hermione]!" ("grin", "wide", "base", "mid") call give_gift(">You give the stockings to Hermione...",gift_item) call her_mood(-10) elif gift_item == pink_condoms_ITEM: if her_whoring < 6: # Lv 1-2. her "Condoms?!" ("angry", "wide", "base", "stare") - her "[genie_name], I wouldn't even know what to do with them..." ("scream", "closed", "angry", "mid") + her "[name_genie_hermione], I wouldn't even know what to do with them..." ("scream", "closed", "angry", "mid") call her_mood(6) elif her_whoring < 12: # Lv 3-4. her "... Condoms?" ("normal", "squint", "angry", "mid") her "*Ehm*... Is this a part of some new Hogwarts sex ed program or something?" ("open", "closed", "angry", "mid") - her "No, [genie_name]... It feels wrong to accept a thing like this from you..." ("open", "base", "base", "R",cheeks="blush") + her "No, [name_genie_hermione]... It feels wrong to accept a thing like this from you..." ("open", "base", "base", "R",cheeks="blush") call her_mood(0) elif her_whoring < 18: # Lv 5-6. her "A pack of condoms?" ("normal", "base", "base", "mid") - her "[genie_name], what possible use could I have for those?" + her "[name_genie_hermione], what possible use could I have for those?" her "Well, I shall accept them simply because it is rude to refuse a gift..." ("open", "closed", "angry", "mid") call give_gift(">You give a pack of condoms to Hermione...", gift_item) call her_mood(-3) else: # Lv 7+ her "A pack of condoms?" ("open", "squint", "base", "mid") - her "I appreciate your concern, [genie_name]. Thank you." ("base", "narrow", "base", "mid_soft") + her "I appreciate your concern, [name_genie_hermione]. Thank you." ("base", "narrow", "base", "mid_soft") call give_gift(">You give a pack of condoms to Hermione...", gift_item) call her_mood(-4) @@ -330,19 +330,19 @@ label give_her_gift(gift_item): her "No, it doesn't look like--" ("soft", "base", "base", "mid") her ".........?" her "!!!" ("angry", "wide", "base", "stare") - her "[genie_name]!" ("angry", "base", "angry", "mid",cheeks="blush") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid",cheeks="blush") her "This is just beyond inappropriate!" ("scream", "closed", "angry", "mid") call her_mood(10) elif her_whoring < 12: # Lv 3-4. her "Is this what I think it is?" ("angry", "narrow", "base", "down") - her "[genie_name], let me remind you that I belong to the noble house of Gryffindor." ("open", "narrow", "annoyed", "mid", cheeks="blush") - her "A present like that would be appropriate for a girl from Slytherin, [genie_name]." ("upset", "closed", "base", "mid") + her "[name_genie_hermione], let me remind you that I belong to the noble house of Gryffindor." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "A present like that would be appropriate for a girl from Slytherin, [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(10) elif her_whoring < 18: # Lv 5-6. her "Is that a... vibrator?" ("angry", "narrow", "base", "down") her "The design..." her "it reminds me of my wand..." - her "Did you have this custom made for me [genie_name]?" ("angry", "narrow", "base", "down") + her "Did you have this custom made for me [name_genie_hermione]?" ("angry", "narrow", "base", "down") her "This is inappropriate..." ("scream", "closed", "angry", "mid") her "But I shall take it nonetheless..." ("annoyed", "base", "worried", "R") call give_gift(">You give the vibrator to Hermione...",gift_item) @@ -350,21 +350,21 @@ label give_her_gift(gift_item): else: # Lv 7+ her "This vibrator..." ("open", "base", "worried", "mid") her "It's... calling out for me..." ("open", "base", "worried", "R") - her "But not in a dirty way, [genie_name]." ("disgust", "narrow", "base", "mid_soft") + her "But not in a dirty way, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") call give_gift(">You give the vibrator to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "narrow", "worried", "down") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "worried", "down") call her_mood(-10) elif gift_item == anal_lube_ITEM: if her_whoring < 6: # Lv 1-2. her "I don't know what this is..." ("open", "base", "base", "mid") her "But I have the feeling that the jar is full of something vile and inappropriate..." ("angry", "base", "angry", "mid") - her "No, thank you, [genie_name]." + her "No, thank you, [name_genie_hermione]." call her_mood(6) elif her_whoring < 12: # Lv 3-4. her "*Hmm*..." ("annoyed", "narrow", "worried", "down") her "I think I know what this is..." ("disgust", "narrow", "base", "mid_soft") - her "But why would you give something like this to one of your pupils, [genie_name]?" + her "But why would you give something like this to one of your pupils, [name_genie_hermione]?" her "No, thank you." ("annoyed", "narrow", "angry", "R") call her_mood(2) elif her_whoring < 18: # Lv 5-6. @@ -373,12 +373,12 @@ label give_her_gift(gift_item): her "I mean I don't know her, she is a friend of a friend..." her "Yes, I will take this for her..." call give_gift(">You give the jar to Hermione...",gift_item) - her "Still, I think you should not give presents like this to your pupils, [genie_name]." ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "Still, I think you should not give presents like this to your pupils, [name_genie_hermione]." ("open", "narrow", "annoyed", "mid", cheeks="blush") call her_mood(0) else: # Lv 7+ - her "Anal lubricant, [genie_name]?" ("base", "narrow", "worried", "down") + her "Anal lubricant, [name_genie_hermione]?" ("base", "narrow", "worried", "down") her "I know a couple of girls who would do anything for a commodity like that." ("open", "narrow", "annoyed", "mid", cheeks="blush") - her "Thank for looking out for us, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank for looking out for us, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") call give_gift(">You give the jar to Hermione...",gift_item) call her_mood(-5) @@ -388,27 +388,27 @@ label give_her_gift(gift_item): her "Is this like one of those adult toys?" ("angry", "squint", "base", "mid",cheeks="blush") her "What woman in her right mind would subject herself to a humiliation like that?" ("scream", "closed", "angry", "mid") her "And what possible use could I have for such objects?" ("open", "narrow", "annoyed", "mid", cheeks="blush") - her "This is just insulting, [genie_name]..." ("angry", "base", "angry", "mid",cheeks="blush") + her "This is just insulting, [name_genie_hermione]..." ("angry", "base", "angry", "mid",cheeks="blush") call her_mood(10) elif her_whoring < 12: # Lv 3-4. - her "[genie_name], do you not realise how inappropriate it would be for me to accept a present like that?" ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], do you not realise how inappropriate it would be for me to accept a present like that?" ("open", "narrow", "annoyed", "mid", cheeks="blush") her "And I would not even know what to do with them anyway..." ("open", "base", "base", "R",cheeks="blush") her "I mean these fluffy things are obviously handcuffs..." ("angry", "narrow", "base", "down") her "But this ball... *ehm*..." - her "[genie_name], please..." ("upset", "closed", "base", "mid") + her "[name_genie_hermione], please..." ("upset", "closed", "base", "mid") her "Just put them away." call her_mood(5) elif her_whoring < 18: # Lv 5-6. her "A month ago I would've felt insulted to receive a gift like this..." ("upset", "closed", "base", "mid") her "But by now I know that some girls really do find pleasure in toys like..." ("angry", "narrow", "base", "down") - her "But I assure you that I am not one of them, [genie_name]." ("upset", "closed", "base", "mid") + her "But I assure you that I am not one of them, [name_genie_hermione]." ("upset", "closed", "base", "mid") her "But I know a girl who knows a girl who is into things like..." ("open", "base", "base", "R",cheeks="blush") her "Yes, I shall take these to her..." ("base", "base", "base", "R",cheeks="blush") call give_gift(">You give the ball gag and cuffs to Hermione...",gift_item) call her_mood(-9) else: # Lv 7+ her "A ball gag and handcuffs?" ("open", "happy", "base", "mid",cheeks="blush") - her "This is completely inappropriate, [genie_name]." ("angry", "wink", "base", "mid") # :) + her "This is completely inappropriate, [name_genie_hermione]." ("angry", "wink", "base", "mid") # :) her "But a gift is a gift, right?" ("base", "squint", "base", "mid") call give_gift(">You give the ball gag and cuffs to Hermione...",gift_item) call her_mood(-15) @@ -418,26 +418,26 @@ label give_her_gift(gift_item): her "*Hmm*...?" ("base", "base", "base", "mid") her "Are those like key chain toys?" ("soft", "base", "base", "mid") call give_gift(">You give the anal plugs to Hermione...",gift_item) - her "Thank you, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "Thank you, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") call her_mood(-8) elif her_whoring < 12: # Lv 3-4. - her "[genie_name], are those adult toys of some sort?" ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], are those adult toys of some sort?" ("open", "narrow", "annoyed", "mid", cheeks="blush") her "those are some of those anal things, aren't they?" ("angry", "base", "angry", "mid",cheeks="blush") - her "[genie_name] this is nothing but a weapon meant to oppress women!" + her "[name_genie_hermione] this is nothing but a weapon meant to oppress women!" her "Despicable!" ("upset", "closed", "base", "mid") call her_mood(15) elif her_whoring < 18: # Lv 5-6. her "Yes, I know that some girls have *uhm*..." ("upset", "closed", "base", "mid") her "Have use for things such as these..." ("open", "narrow", "annoyed", "mid", cheeks="blush") - her "But not me, [genie_name]." + her "But not me, [name_genie_hermione]." her "No, thank you." ("upset", "closed", "base", "mid") call her_mood(0) else: # Lv 7+ her "Anal plugs?" ("angry", "narrow", "base", "down") - her "I have no use for things like that, [genie_name]..." ("angry", "base", "base", "mid") + her "I have no use for things like that, [name_genie_hermione]..." ("angry", "base", "base", "mid") her "They are so pretty though..." ("angry", "wink", "base", "mid") her "....................." ("angry", "narrow", "base", "down") - her "Well, alright. I shall take them off your hands if I must, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Well, alright. I shall take them off your hands if I must, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") call give_gift(">You give the anal plugs to Hermione...",gift_item) her "But I shall never use them of course..." ("open", "closed", "base", "mid") her "................" ("base", "narrow", "worried", "down") @@ -448,19 +448,19 @@ label give_her_gift(gift_item): her "What is that?" ("angry", "wide", "base", "stare") her "An artefact of some sort or a trophy?" ("open", "base", "base", "mid") her "So well-crafted..." ("base", "base", "base", "mid") - her "Are you sure that it's alright for me to have it, [genie_name]?" ("base", "base", "base", "mid") + her "Are you sure that it's alright for me to have it, [name_genie_hermione]?" ("base", "base", "base", "mid") call give_gift(">You give the strap-on to Hermione...",gift_item) - her "Thank you very much, [genie_name]. I promise to take good care of it." ("open", "closed", "base", "mid") + her "Thank you very much, [name_genie_hermione]. I promise to take good care of it." ("open", "closed", "base", "mid") call her_mood(-20) elif her_whoring < 12: # Lv 3-4. her "!!!" ("angry", "wide", "base", "stare") her "That is..." ("angry", "narrow", "base", "down") her "But it doesn't even look... human..." her "I mean..." ("annoyed", "narrow", "angry", "R") - her "[genie_name], do you have no shame?!" ("scream", "base", "angry", "mid",emote="angry") + her "[name_genie_hermione], do you have no shame?!" ("scream", "base", "angry", "mid",emote="angry") her "Presenting a thing like that to a pupil?!" her ".................." ("open", "narrow", "worried", "down") - her "Please put it away, [genie_name]." ("angry", "base", "angry", "mid") + her "Please put it away, [name_genie_hermione]." ("angry", "base", "angry", "mid") call her_mood(15) elif her_whoring < 18: # Lv 5-6. her "That thing..." ("angry", "narrow", "base", "down") @@ -473,15 +473,15 @@ label give_her_gift(gift_item): call give_gift(">You give the strap-on to Hermione...",gift_item) call her_mood(-10) else: # Lv 7+ - her "It's... It's magnificent, [genie_name]..." ("shock", "wide", "base", "stare") + her "It's... It's magnificent, [name_genie_hermione]..." ("shock", "wide", "base", "stare") her "Is it really modelled after a thestral?" ("open", "base", "base", "R",cheeks="blush") her "But the creatures are invisible..." ("open", "happy", "base", "mid",cheeks="blush") her ".................." ("angry", "narrow", "base", "down") her "Breathtaking..." ("grin", "narrow", "base", "dead") - her "Not in the way you think, [genie_name]..." ("upset", "closed", "base", "mid") + her "Not in the way you think, [name_genie_hermione]..." ("upset", "closed", "base", "mid") her "I am merely admiring the craftsmanship..." ("open", "closed", "base", "mid") call give_gift(">You give the strap-on to Hermione...",gift_item) - her "Thank you for the gift, [genie_name]." ("base", "squint", "base", "mid") + her "Thank you for the gift, [name_genie_hermione]." ("base", "squint", "base", "mid") call her_mood(-30) elif gift_item == broom_2000_ITEM: @@ -491,7 +491,7 @@ label give_her_gift(gift_item): her "What is that silly-looking thing attached to it?" ("normal", "squint", "angry", "mid") her "Is it like a saddle...?" ("open", "squint", "base", "mid") call give_gift(">You give the broom to Hermione...",gift_item) - her "Thank you for the gift, [genie_name]." ("open", "base", "worried", "mid") + her "Thank you for the gift, [name_genie_hermione]." ("open", "base", "worried", "mid") call her_mood(-20) elif her_whoring < 12: # Lv 3-4. her "A broom...?" ("base", "base", "base", "mid") @@ -499,7 +499,7 @@ label give_her_gift(gift_item): her "It's a sex-toy of some sort, isn't it?" ("angry", "base", "angry", "mid") her "But it is so well crafted..." ("open", "narrow", "worried", "down") call give_gift(">You give the broom to Hermione...",gift_item) - her "Thank you, [genie_name]." ("upset", "closed", "base", "mid") + her "Thank you, [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(-20) elif her_whoring < 18: # Lv 5-6. her "A broom...?" ("angry", "narrow", "base", "down") @@ -508,42 +508,42 @@ label give_her_gift(gift_item): her "Well, doesn't matter." ("open", "closed", "base", "mid") her "Refusing an expensive gift like that would be rude..." call give_gift(">You give the broom to Hermione...",gift_item) - her "Thank you, [genie_name]." ("upset", "closed", "base", "mid") + her "Thank you, [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(-30) else: # Lv 7+ her "A broom..." ("base", "narrow", "worried", "down") her "*Hmm*..." - her "That saddle, [genie_name]..." ("open", "base", "base", "R",cheeks="blush") + her "That saddle, [name_genie_hermione]..." ("open", "base", "base", "R",cheeks="blush") her "It was designed especially for witches, was it not?" ("open", "happy", "base", "mid",cheeks="blush") her "I am not sure whether this is inappropriate or clever..." ("annoyed", "narrow", "annoyed", "mid") her "But this is a brilliant piece of engineering either way..." ("base", "squint", "base", "mid") call give_gift(">You give the broom to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") call her_mood(-30) elif gift_item == sexdoll_ITEM: if her_whoring < 6: # Lv 1-2. her "Is this..." ("shock", "wide", "base", "stare") her "A sex doll?!" ("angry", "happyCl", "worried", "mid",emote="sweat") - her "[genie_name]!!!" ("scream", "happyCl", "worried", "mid") + her "[name_genie_hermione]!!!" ("scream", "happyCl", "worried", "mid") call her_mood(20) elif her_whoring < 12: # Lv 3-4. her "A sex doll?" ("shock", "wide", "base", "stare") - her "This is just so unbecoming for an esteemed wizard such as yourself, [genie_name]..." ("upset", "closed", "base", "mid") + her "This is just so unbecoming for an esteemed wizard such as yourself, [name_genie_hermione]..." ("upset", "closed", "base", "mid") call her_mood(20) elif her_whoring < 18: # Lv 5-6. her "A sex doll..." ("angry", "narrow", "base", "down") her "This is a little inappropriate..." ("upset", "closed", "base", "mid") her "But maybe we could use it for a prank or something..." ("base", "narrow", "worried", "down") call give_gift(">You give the blow-up doll to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "narrow", "worried", "down") + her "Thank you, [name_genie_hermione]." ("base", "narrow", "worried", "down") call her_mood(-10) else: # Lv 7+ her "the Joanne sex doll?" ("annoyed", "narrow", "worried", "down") her "I Can't say that I approve of this..." ("open", "base", "base", "R",cheeks="blush") her "But I know Harry would love to have a go at it..." ("base", "narrow", "worried", "down") call give_gift(">You give the blow-up doll to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "R",cheeks="blush") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "R",cheeks="blush") call her_mood(-30) elif gift_item == anal_beads_ITEM: @@ -551,25 +551,25 @@ label give_her_gift(gift_item): her "*Hmm*...?" ("base", "base", "base", "mid") her "Is this a necklace?" ("soft", "base", "base", "mid") call give_gift(">You give the anal beads to Hermione...",gift_item) - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-8) elif her_whoring < 12: # Lv 3-4. - her "[genie_name], are those adult toys of some sort?" ("open", "narrow", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], are those adult toys of some sort?" ("open", "narrow", "annoyed", "mid", cheeks="blush") her "This is one of those butt... bead things, aren't they?" ("angry", "base", "angry", "mid",cheeks="blush") - her "[genie_name] get them away from me!" + her "[name_genie_hermione] get them away from me!" her "Gross!" ("upset", "closed", "base", "mid") call her_mood(15) elif her_whoring < 17: # Lv 5-6. her "That's not a necklace..." ("upset", "closed", "base", "mid") her "I wouldn't have any use for this..." ("open", "narrow", "annoyed", "mid", cheeks="blush") - her "Thanks but no thanks [genie_name]." ("upset", "closed", "base", "mid") + her "Thanks but no thanks [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(0) else: # Lv 7+ her "Anal beads?" ("angry", "narrow", "base", "down") - her "Obviously I don't need this sort of thing, [genie_name]..." ("angry", "base", "base", "mid") + her "Obviously I don't need this sort of thing, [name_genie_hermione]..." ("angry", "base", "base", "mid") her "Although it's got a nice colour..." ("angry", "wink", "base", "mid") her "....................." ("angry", "narrow", "base", "down") - her "Fine, I'll use them as an armband, [genie_name]." ("soft", "narrow", "annoyed", "up") + her "Fine, I'll use them as an armband, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") call give_gift(">You give the anal beads to Hermione...",gift_item) her "But I wont use them for their intended purpose..." ("open", "closed", "base", "mid") her "................" ("base", "narrow", "worried", "down") @@ -578,20 +578,20 @@ label give_her_gift(gift_item): elif gift_item == wine_ITEM or gift_item == firewhisky_ITEM: if her_whoring < 7: call give_gift(">You give the "+str(gift_item.name)+" bottle to Hermione...", gift_item) - her "Thank you, [genie_name], I'll ask Ginny to drink some with me later." ("soft", "base", "base", "mid", cheeks="blush") + her "Thank you, [name_genie_hermione], I'll ask Ginny to drink some with me later." ("soft", "base", "base", "mid", cheeks="blush") call her_mood(-20) elif her_whoring < 12: - her "[genie_name]?! Drinking alcohol on school grounds is forbidden.." ("open", "base", "angry", "mid") + her "[name_genie_hermione]?! Drinking alcohol on school grounds is forbidden.." ("open", "base", "angry", "mid") her "And you as a headmaster should know it!" ("upset", "base", "angry", "mid") call her_mood(10) elif her_whoring < 18: - her "But, [genie_name].. I can't drink alcohol." ("base", "narrow", "worried", "down") + her "But, [name_genie_hermione].. I can't drink alcohol." ("base", "narrow", "worried", "down") her "I guess I could use it for some potion mixing though.." ("open", "base", "base", "R") call give_gift(">You give the "+str(gift_item.name)+" bottle to Hermione...", gift_item) her "" ("base", "base", "base", "R") call her_mood(-5) else: - her "But, [genie_name].. You know I can't drink.." ("soft","base", "base", "mid", cheeks="blush") + her "But, [name_genie_hermione].. You know I can't drink.." ("soft","base", "base", "mid", cheeks="blush") her "I get drunk too fast and I might do something I'll regret later." ("open", "base", "base", "R", cheeks="blush") her "" ("base", "base", "base", "R", cheeks="blush") call her_mood(0) diff --git a/game/scripts/characters/hermione/summon.rpy b/game/scripts/characters/hermione/summon.rpy index ab91dae9..be62f59d 100644 --- a/game/scripts/characters/hermione/summon.rpy +++ b/game/scripts/characters/hermione/summon.rpy @@ -41,11 +41,11 @@ label summon_hermione: her "I am not in the mood today..." jump hermione_requests elif her_mood >= 10 and her_mood < 20: - her "Absolutely not, [genie_name]." + her "Absolutely not, [name_genie_hermione]." her "I {i}might{/i} consider it once you've said sorry..." jump hermione_requests elif her_mood >=20: - her "After what you did, [genie_name]?" + her "After what you did, [name_genie_hermione]?" her "I don't think so..." jump hermione_requests else: @@ -57,7 +57,7 @@ label summon_hermione: "-Sexual favours-" (icon="interface/icons/small/condom.webp") if hermione_favors: if her_mood >=1 and her_mood < 3: - her "I'm sorry, [genie_name], Maybe some other time..." ("annoyed", "base", "base", "R") + her "I'm sorry, [name_genie_hermione], Maybe some other time..." ("annoyed", "base", "base", "R") jump hermione_requests elif her_mood >= 3 and her_mood < 10: her "I don't feel like it today..." ("open", "closed", "base", "mid") @@ -68,7 +68,7 @@ label summon_hermione: her "No thank you..." ("angry", "narrow", "base", "mid") jump hermione_requests elif her_mood >= 20 and her_mood < 30: - her "After what you did, [genie_name]?" ("angry", "narrow", "annoyed", "mid") + her "After what you did, [name_genie_hermione]?" ("angry", "narrow", "annoyed", "mid") her "I don't think so..." ("disgust", "narrow", "annoyed", "mid") jump hermione_requests elif her_mood >= 30 and her_mood < 40: @@ -294,13 +294,13 @@ label hermione_favor_menu: if hermione_favors_convinced: her "We're in the lead already..." ("base", "base", "base", "mid_soft", trans=d3) if her_whoring >=20 and hermione_favors_convinced == 2: - her "But I'll do anything for you, [genie_name]..." ("smile", "happy", "base", "mid") + her "But I'll do anything for you, [name_genie_hermione]..." ("smile", "happy", "base", "mid") jump silver_requests_root elif her_whoring >=18 and hermione_favors_convinced == 2: - her "I guess you do have a way with words,[genie_name]... I'll do it." ("soft", "wink", "base", "mid") + her "I guess you do have a way with words,[name_genie_hermione]... I'll do it." ("soft", "wink", "base", "mid") jump silver_requests_root elif her_whoring >=16: - her "I have told you before, [genie_name], it was just a one time thing..." ("open", "happy", "base", "mid") + her "I have told you before, [name_genie_hermione], it was just a one time thing..." ("open", "happy", "base", "mid") gen "What about tomorrow though?" ("base", xpos="far_left", ypos="head") her "What about tomorrow?" ("base","squint", "base", "mid") gen "I made a graph detailing the current daily average points Slytherin gain... doesn't look that great." ("grin", xpos="far_left", ypos="head") @@ -327,7 +327,7 @@ label hermione_favor_menu: gen "If you do it, you could secure the win for you household you know..." ("base", xpos="far_left", ypos="head") if her_whoring >=18: - her "You really know how to talk me through, [genie_name]." ("soft", "narrow", "worried", "down") + her "You really know how to talk me through, [name_genie_hermione]." ("soft", "narrow", "worried", "down") her "Okay I agree." ("open", "narrow", "base", "down") $ hermione_favors_convinced = 2 jump silver_requests_root @@ -345,15 +345,15 @@ label hermione_favor_menu: else: if sna_friendship <= 10: gen "What do you mean in the lead?" ("base", xpos="far_left", ypos="head") - gen "Explain yourself, [hermione_name]!" ("angry", xpos="far_left", ypos="head") + gen "Explain yourself, [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") her "With the current points distribution, I am certain getting the house cup for Gryffindor will be just a formality." ("smile", "closed", "base", "mid") - her "Thank you, [genie_name], but I don't need any more points." ("smile", "base", "base", "mid") + her "Thank you, [name_genie_hermione], but I don't need any more points." ("smile", "base", "base", "mid") call tutorial("points") gen "(That little...)" ("angry", xpos="far_left", ypos="head") gen "(Perhaps I should hangout with that Snape dude tonight, he might know what to do.)" ("base", xpos="far_left", ypos="head") - her "Do you need anything else, [genie_name]?" ("smile", "base", "base", "mid") + her "Do you need anything else, [name_genie_hermione]?" ("smile", "base", "base", "mid") else: gen "Right..." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/hermione/talk.rpy b/game/scripts/characters/hermione/talk.rpy index b42d0313..882be0bf 100644 --- a/game/scripts/characters/hermione/talk.rpy +++ b/game/scripts/characters/hermione/talk.rpy @@ -58,7 +58,7 @@ label hermione_talk: ### Astoria ### "-Ask her to help Tonks-" (icon="interface/icons/small/tonks.webp") if astoria_intro.E1_complete and not astoria_intro.E3_complete: if astoria_intro.E2_hermione: - her "I'm still looking for that student, [genie_name]!" ("open", "closed", "base", "mid") + her "I'm still looking for that student, [name_genie_hermione]!" ("open", "closed", "base", "mid") her "Trust in me, I will find that Slytherin scum!" ("angry", "base", "angry", "mid") jump hermione_talk @@ -89,61 +89,61 @@ label hermione_talk: "-Address me only as-": menu: "-Sir-": - $ genie_name = "Sir" + $ name_genie_hermione = "Sir" jump genie_change "-Dumbledore-": - $ genie_name = "Dumbledore" + $ name_genie_hermione = "Dumbledore" jump genie_change "-Professor-": - $ genie_name = "Professor" + $ name_genie_hermione = "Professor" jump genie_change "-Old man-": - $ genie_name = "Old man" + $ name_genie_hermione = "Old man" jump genie_change "-Genie-": if her_whoring >=5: - $ genie_name = "Genie" + $ name_genie_hermione = "Genie" jump genie_change else: jump genie_change_fail "-My Lord-": if her_whoring >=7: - $ genie_name = "My Lord" + $ name_genie_hermione = "My Lord" jump genie_change else: jump genie_change_fail "-Darling-": if her_whoring >=10: - $ genie_name = "Darling" + $ name_genie_hermione = "Darling" jump genie_change else: jump genie_change_fail "-Lord Voldemort-": if her_whoring >=15: - $ genie_name = "Lord Voldemort" + $ name_genie_hermione = "Lord Voldemort" jump genie_change else: jump genie_change_fail "-Daddy-": if her_whoring >=19: - $ genie_name = "Daddy" + $ name_genie_hermione = "Daddy" $ achievements.unlock("daddy") jump genie_change else: jump genie_change_fail "-Master-": if her_whoring >=20: - $ genie_name = "Master" + $ name_genie_hermione = "Master" jump genie_change else: jump genie_change_fail "-Custom Input-": - $ temp_name = renpy.input("(Please enter the name.)", genie_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_genie_hermione, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name == "": jump hermione_talk if her_whoring >=20: - $ genie_name = temp_name + $ name_genie_hermione = temp_name jump genie_change else: jump genie_change_fail @@ -231,12 +231,12 @@ label hermione_talk: else: jump hermione_change_fail "-Custom Input-": - $ temp_name = renpy.input("(Please enter the name.)", hermione_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_hermione_genie, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name == "": jump hermione_talk if her_whoring >=21: - $ hermione_name = temp_name + $ name_hermione_genie = temp_name jump hermione_change else: jump hermione_change_fail @@ -254,7 +254,7 @@ label hermione_talk: label genie_change: - her "Okay, from now on I'll call you [genie_name]." ("base", "base", "base", "mid") + her "Okay, from now on I'll call you [name_genie_hermione]." ("base", "base", "base", "mid") jump hermione_talk label genie_change_fail: @@ -264,12 +264,12 @@ label genie_change_fail: label hermione_change: if temp_name == "Miss Granger": if her_whoring <=0: - her "Sure, [genie_name]." ("base", "base", "base", "mid") + her "Sure, [name_genie_hermione]." ("base", "base", "base", "mid") else: - her "You don't have to be so formal, [genie_name], you know?" ("base", "closed", "base", "mid") + her "You don't have to be so formal, [name_genie_hermione], you know?" ("base", "closed", "base", "mid") her "" ("base", "base", "base", "mid") elif temp_name == "Hermione": - her "Of course [genie_name]." ("base", "base", "base", "mid") + her "Of course [name_genie_hermione]." ("base", "base", "base", "mid") elif temp_name == "Girl": if her_whoring >=1 and her_whoring < 3: her "This girl thing again?" ("annoyed", "happy", "base", "mid") @@ -293,19 +293,19 @@ label hermione_change: her "" ("base", "narrow", "base", "mid_soft") elif temp_name == "Hottie": if her_whoring >=5 and her_whoring < 7: - her "[genie_name]?!" ("angry", "wide", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]?!" ("angry", "wide", "angry", "mid", cheeks="blush") gen "What? That's true, you're hot." ("base", xpos="far_left", ypos="head") her "That's inappropriate." ("annoyed", "base", "worried", "R", cheeks="blush") her "But I'll let it slide, I guess." elif her_whoring >=7 and her_whoring < 19: - her "Thank you, [genie_name]." ("soft", "wink", "base", "mid") + her "Thank you, [name_genie_hermione]." ("soft", "wink", "base", "mid") her "" ("normal", "base", "base", "mid") elif her_whoring >=19: her "... Glad you think so." ("smile", "wink", "base", "mid", cheeks="blush") her "" ("base","happy", "base", "mid", cheeks="blush") elif temp_name == "Good Girl": if her_whoring >=5 and her_whoring < 7: - her "Well, I do try my best, [genie_name]." ("base", "closed", "base", "mid") + her "Well, I do try my best, [name_genie_hermione]." ("base", "closed", "base", "mid") her "" ("base", "base", "base", "mid") elif her_whoring >=7 and her_whoring < 19: her "I'm not sure if I'd qualify, but fine." ("annoyed", "wink", "base", "mid") @@ -336,7 +336,7 @@ label hermione_change: her "I like it..." ("soft", "narrow", "base", "R_soft",cheeks="blush") her "" ("base", "narrow", "base", "R_soft",cheeks="blush") elif her_whoring >= 19: - her "Yes, [genie_name]." ("base", "narrow", "worried", "mid_soft",cheeks="blush") + her "Yes, [name_genie_hermione]." ("base", "narrow", "worried", "mid_soft",cheeks="blush") elif temp_name == "Bad Girl": if her_whoring >=9 and her_whoring < 11: her "I guess I am a bit." ("soft", "narrow", "worried", "down") @@ -364,7 +364,7 @@ label hermione_change: elif her_whoring >= 13: her "Yes... My prince." ("smile","happy", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - her "I-I mean, [genie_name]." ("smile", "happyCl", "base", "mid", emote="sweat") + her "I-I mean, [name_genie_hermione]." ("smile", "happyCl", "base", "mid", emote="sweat") her "" ("base", "base", "base", "mid") elif temp_name == "Pet": if her_whoring >= 11 and her_whoring < 13: @@ -384,7 +384,7 @@ label hermione_change: her "" ("base", "base", "base", "mid") elif temp_name == "Bitch": if her_whoring >=13 and her_whoring < 15: - her "Isn't this a bit inappropriate [genie_name]?" ("mad", "narrow", "worried", "down") + her "Isn't this a bit inappropriate [name_genie_hermione]?" ("mad", "narrow", "worried", "down") gen "And doing favours for house points isn't?" ("base", xpos="far_left", ypos="head") her "Fine..." ("base", "narrow", "base", "down", cheeks="blush") elif her_whoring >= 15 and her_whoring < 17: @@ -397,7 +397,7 @@ label hermione_change: her "" ("base","happy", "base", "mid", cheeks="blush") elif temp_name == "Slut": if her_whoring >=15 and her_whoring < 17: - her "[genie_name]?!" ("shock", "wide", "worried", "stare") + her "[name_genie_hermione]?!" ("shock", "wide", "worried", "stare") her "You can't just call someone that!" ("mad", "wide", "base", "stare") gen "It'll just be between us..." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "squint", "base", "mid") @@ -428,7 +428,7 @@ label hermione_change: her "Of course I am!" ("smile", "base", "base", "R",cheeks="blush") elif temp_name == "Slytherin Whore": if her_whoring >=19 and her_whoring < 21: - her "Do you really have to call me that, [genie_name]?" ("disgust", "base", "worried", "mid") + her "Do you really have to call me that, [name_genie_hermione]?" ("disgust", "base", "worried", "mid") her "Referring to me as a bitch or a slut for your own amusement is one thing..." ("mad", "narrow", "worried", "down",cheeks="blush") her "You're aware of how much I loathe Slytherin." ("open", "narrow", "worried", "mid_soft") her "And I'm definitely not a whore..." ("soft", "closed", "base", "mid") @@ -439,12 +439,12 @@ label hermione_change: her "You won't?" ("open", "base", "base", "mid") her "" ("soft", "base", "base", "mid") gen "Of course..." ("base", xpos="far_left", ypos="head") - her "I am glad we're on the same page on this one, [genie_name]." ("open", "closed", "base", "mid") + her "I am glad we're on the same page on this one, [name_genie_hermione]." ("open", "closed", "base", "mid") her "" ("base", "closed", "base", "mid") - gen "In fact, from this point forward you don't have to call me [genie_name] or exchange any favours..." ("base", xpos="far_left", ypos="head") + gen "In fact, from this point forward you don't have to call me [name_genie_hermione] or exchange any favours..." ("base", xpos="far_left", ypos="head") her "" ("soft", "base", "base", "mid", emote="confused") gen "Let's just void this whole... deal of yours shall we." ("base", xpos="far_left", ypos="head") - her "B-but, [genie_name]?!" ("mad", "wide", "base", "mid", emote="shocked") + her "B-but, [name_genie_hermione]?!" ("mad", "wide", "base", "mid", emote="shocked") her "" ("mad", "wide", "base", "mid") gen "I must apologise {b}Miss Granger{/b}, I thought we had come to some kind of agreeable arrangement by now..." ("base", xpos="far_left", ypos="head") her "But I--" ("mad", "wide", "worried", "stare") @@ -458,7 +458,7 @@ label hermione_change: her "{size=+10}I AM A SLYTHERIN WHORE!!!{/size}" ("scream", "closed", "angry", "mid",cheeks="blush") her "" ("normal", "closed", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - her "Now please, [genie_name]... Let's just forget this conversation ever happened." ("disgust", "base", "worried", "mid") + her "Now please, [name_genie_hermione]... Let's just forget this conversation ever happened." ("disgust", "base", "worried", "mid") gen "Are you sure that's what you want, [temp_name]?" ("base", xpos="far_left", ypos="head") her "... Yes." ("disgust", "narrow", "worried", "down", emote="sweat") gen "(This girl really is beyond redemption...)" ("base", xpos="far_left", ypos="head") @@ -467,7 +467,7 @@ label hermione_change: gen "Either accept my offer or Gryffindor lose five hundred points..." ("angry", xpos="far_left", ypos="head") with hpunch her "FIVE HUNDRED?!" ("shock", "wide", "base", "stare") - her "[genie_name]... This is blackmailing!" ("scream", "closed", "angry", "mid") + her "[name_genie_hermione]... This is blackmailing!" ("scream", "closed", "angry", "mid") her "" ("mad", "closed", "angry", "mid") gen "It is?" ("base", xpos="far_left", ypos="head") her "What else would it be?" ("mad", "base", "angry", "mid",cheeks="blush") @@ -482,13 +482,13 @@ label hermione_change: her "{size=-6}You are the worst.{/size}" ("normal", "narrow", "base", "R_soft", cheeks="blush") $ her_mood += 15 elif her_whoring >= 21: - her "Please, [genie_name], couldn't you call me something else instead?" ("open", "base", "worried", "mid") + her "Please, [name_genie_hermione], couldn't you call me something else instead?" ("open", "base", "worried", "mid") gen "But where's fun in that?" ("base", xpos="far_left", ypos="head") her "Why do I even bother... *sigh*" ("soft", "narrow", "base", "R_soft",cheeks="blush") elif temp_name == "Mudblood": if her_whoring >= 21: her "A{w=0.5}...{w=0.5} {size=+6}{b}{cps=20}mud{w=0.5}blood{/cps}{/b}?!{/size}" ("shock", "wide", "base", "stare") - her "Did I hear you right, [genie_name]?!" ("normal", "wide", "base", "mid") + her "Did I hear you right, [name_genie_hermione]?!" ("normal", "wide", "base", "mid") menu: "-Confirm-": pass @@ -505,14 +505,14 @@ label hermione_change: her "I was pretty sure you said--" ("open", "base", "base", "mid") her "" ("normal", "base", "base", "R") gen "Look outside the window, it's raining is it not?" ("base", xpos="far_left", ypos="head") - her "I{w=0.5}...{w=0.5} Yes, you are right [genie_name]." ("normal", "closed", "base", "mid") + her "I{w=0.5}...{w=0.5} Yes, you are right [name_genie_hermione]." ("normal", "closed", "base", "mid") gen "Of course I am." ("base", xpos="far_left", ypos="head") her "So what did you want to talk about?" ("base", "base", "base", "mid") else: - her "[genie_name], but it's not raining.." ("normal", "closed", "base", "mid") + her "[name_genie_hermione], but it's not raining.." ("normal", "closed", "base", "mid") her "" ("disgust", "narrow", "base", "down", cheeks="blush") gen "Last time I had my dick in you it felt like a mass flood." ("grin", xpos="far_left", ypos="head") - her "[genie_name]..." ("disgust", "closed", "base", "mid", cheeks="blush") + her "[name_genie_hermione]..." ("disgust", "closed", "base", "mid", cheeks="blush") gen "What? It's true, I swear!" ("grin", xpos="far_left", ypos="head") her "..." ("soft", "narrow", "worried", "down", cheeks="blush") "-Mad stud-": @@ -520,7 +520,7 @@ label hermione_change: her "Mad stud?" ("soft", "base", "base", "mid") gen "My dick, your ass, bud." ("grin", xpos="far_left", ypos="head") her "really..." ("disgust", "narrow", "base", "mid_soft", cheeks="blush") - her "You can be so childish sometimes, [genie_name]..." ("annoyed", "narrow", "base", "R_soft", cheeks="blush") + her "You can be so childish sometimes, [name_genie_hermione]..." ("annoyed", "narrow", "base", "R_soft", cheeks="blush") #"-Leaf bud-": # jump hermione_talk jump hermione_talk @@ -543,7 +543,7 @@ label hermione_change: her "You really think so?" ("open", "narrow", "worried", "mid_soft", tears="mascara") her "" ("normal", "narrow", "worried", "mid_soft", tears="mascara") gen "Yes, in fact I do." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("normal", "closed", "base", "mid", tears="mascara") + her "Thank you, [name_genie_hermione]." ("normal", "closed", "base", "mid", tears="mascara") her "I can do it, I know I can." ("base", "narrow", "worried", "mid_soft", tears="mascara") $ her_mood = 0 "-Tell her she deserves it-": @@ -566,33 +566,33 @@ label hermione_change: gen "{size=+4}{b}MY{/b}{/size} whore!" ("grin", xpos="far_left", ypos="head") her "" ("base", "narrow", "base", "up", tears="mascara") gen "And I {b}will{/b} call you however I want!" ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name], I understand." ("silly", "narrow", "base", "up", tears="mascara") + her "Yes, [name_genie_hermione], I understand." ("silly", "narrow", "base", "up", tears="mascara") her "I am your toy{w=0.6}, your fuckslut{w=0.6}, your cocksleeve, your--" ("grin", "narrow", "base", "dead", tears="mascara") gen "Yes, that you are but it's enough..." ("base", xpos="far_left", ypos="head") - her "I fully belong to you... [genie_name]." ("silly", "narrow", "base", "dead", tears="mascara") + her "I fully belong to you... [name_genie_hermione]." ("silly", "narrow", "base", "dead", tears="mascara") her "" ("grin", "narrow", "base", "dead", tears="mascara") $ her_mood = 0 else: #Custom/fallback her "Bit odd but sure, you can call me that..." ("soft", "squint", "base", "mid") - $ hermione_name = temp_name + $ name_hermione_genie = temp_name jump hermione_talk label hermione_change_fail: if temp_name == "Girl": - her "I would prefer if we kept using our formal names and titles, [genie_name]." ("open", "closed", "base", "mid") + her "I would prefer if we kept using our formal names and titles, [name_genie_hermione]." ("open", "closed", "base", "mid") her "" ("normal", "base", "base", "mid") elif temp_name == "Nerd": - her "I would prefer if you didn't, [genie_name]." ("open", "closed", "angry", "mid") + her "I would prefer if you didn't, [name_genie_hermione]." ("open", "closed", "angry", "mid") her "{size=-4}And I'm not a nerd...{/size}" ("annoyed", "base", "worried", "mid") if her_whoring >= 1: her "(I think...)" ("annoyed", "base", "worried", "R") elif temp_name == "Good Girl": - her "I'm not letting you call me that, [genie_name]!" ("open", "closed", "angry", "mid") + her "I'm not letting you call me that, [name_genie_hermione]!" ("open", "closed", "angry", "mid") if her_whoring >= 3: her "(Although it's kinda cute he said that...)" ("base", "base", "base", "R") elif temp_name == "Little Girl": - her "I won't let you call me that, [genie_name]!" ("open", "closed", "angry", "mid") + her "I won't let you call me that, [name_genie_hermione]!" ("open", "closed", "angry", "mid") if her_whoring >= 5: her "(I hope they'd grow out more...)" ("disgust", "narrow", "worried", "down") her "*sigh*" ("annoyed", "closed", "base", "mid") @@ -603,11 +603,11 @@ label hermione_change_fail: her "(Or am I...?)" ("disgust", "base", "base", "R") her "" ("normal", "base", "base", "R") elif temp_name == "Princess": - her "This is inappropriate, [genie_name]!" ("open", "base", "angry", "mid") + her "This is inappropriate, [name_genie_hermione]!" ("open", "base", "angry", "mid") if her_whoring >= 9: her "(It sounds nice though...)" ("base", "base", "base", "R") elif temp_name == "Pet": - her "Are you joking, [genie_name]?" ("open", "base", "worried", "mid") + her "Are you joking, [name_genie_hermione]?" ("open", "base", "worried", "mid") if her_whoring >= 11: her "(Why would he even suggest that?)" ("annoyed", "base", "base", "R") else: diff --git a/game/scripts/characters/hermione/vars.rpy b/game/scripts/characters/hermione/vars.rpy index 5fa0b0ff..59dc0ef8 100644 --- a/game/scripts/characters/hermione/vars.rpy +++ b/game/scripts/characters/hermione/vars.rpy @@ -35,8 +35,8 @@ default buttplug_2_question = False default buttplug_3_question = False # Names -default genie_name = "Sir" -default hermione_name = "Miss Granger" +default name_genie_hermione = "Sir" +default name_hermione_genie = "Miss Granger" # Stats default her_jerk_off_counter = 0 diff --git a/game/scripts/characters/hermione/wardrobe_reactions.rpy b/game/scripts/characters/hermione/wardrobe_reactions.rpy index 75508035..8fcbf03c 100644 --- a/game/scripts/characters/hermione/wardrobe_reactions.rpy +++ b/game/scripts/characters/hermione/wardrobe_reactions.rpy @@ -44,7 +44,7 @@ label her_reaction_category_fail(category): elif random_number == 2: her "I don't believe there's anything wrong with my current underwear..." ("open", "base", "annoyed", "mid") elif random_number == 3: - her "[genie_name], I don't think this is part of our arrangement..." ("soft", "base", "annoyed", "mid") + her "[name_genie_hermione], I don't think this is part of our arrangement..." ("soft", "base", "annoyed", "mid") elif category == "piercings & tattoos": if her_whoring >= 12: her "*Ehm*... Do I have to?" ("annoyed", "squint", "base", "mid") @@ -68,9 +68,9 @@ label her_reaction_touch(what): if random_number == 1: her "*Mmm*..." ("base", "closed", "base", "mid", cheeks="blush") elif random_number == 2: - her "Does this mean I've been a good girl, [genie_name]?" ("crooked_smile", "narrow", "base", "mid", cheeks="blush") + her "Does this mean I've been a good girl, [name_genie_hermione]?" ("crooked_smile", "narrow", "base", "mid", cheeks="blush") elif random_number == 3: - her "Thank you [genie_name]..." ("base", "happy", "base", "mid", cheeks="blush") + her "Thank you [name_genie_hermione]..." ("base", "happy", "base", "mid", cheeks="blush") elif her_whoring >= 16: #enjoying it if random_number == 1: @@ -112,7 +112,7 @@ label her_reaction_touch(what): if random_number == 1: her "*Mmm*...{w=0.4} Lower..." ("base", "closed", "base", "mid", cheeks="blush") elif random_number == 2: - her "I'm glad you're enjoying them so much, [genie_name]." ("base", "narrow", "base", "mid", cheeks="blush") + her "I'm glad you're enjoying them so much, [name_genie_hermione]." ("base", "narrow", "base", "mid", cheeks="blush") elif random_number == 3: her "*Ah*..." ("open", "closed", "base", "mid", cheeks="blush") elif random_number == 4: @@ -165,7 +165,7 @@ label her_reaction_touch(what): elif random_number == 3: her "More..." ("open", "closed", "base", "mid", cheeks="blush") elif random_number == 4: - her "Keep going [genie_name]..." ("smile", "closed", "base", "mid", cheeks="blush") + her "Keep going [name_genie_hermione]..." ("smile", "closed", "base", "mid", cheeks="blush") ##This could play after touching her enough times this wardrobe session## #her "*Nnngh*..." ("base", "base", "base", "mid") #with kissiris @@ -180,7 +180,7 @@ label her_reaction_touch_fail(what): if random_number == 1: her "Stop that!" ("angry", "wide", "angry", "mid") elif random_number == 2: - her "[genie_name]!" ("open", "narrow", "angry", "L") + her "[name_genie_hermione]!" ("open", "narrow", "angry", "L") elif random_number == 3: her "Unhand me..." ("mad", "wide", "angry", "mid") elif random_number == 4: @@ -192,7 +192,7 @@ label her_reaction_touch_fail(what): if random_number == 1: her "No touching!" ("open", "narrow", "angry", "L") elif random_number == 2: - her "Bad [genie_name]!" ("annoyed", "happyCl", "angry", "L", cheeks="blush") + her "Bad [name_genie_hermione]!" ("annoyed", "happyCl", "angry", "L", cheeks="blush") elif random_number == 3: her "Hands to yourself." ("clench", "base", "angry", "R") elif random_number == 4: @@ -204,7 +204,7 @@ label her_reaction_touch_fail(what): if random_number == 1: her "Stop that!" ("angry", "wide", "angry", "mid") elif random_number == 2: - her "[genie_name]!" ("open", "narrow", "angry", "L") + her "[name_genie_hermione]!" ("open", "narrow", "angry", "L") elif random_number == 3: her "Unhand me.." ("mad", "wide", "angry", "mid") elif random_number == 4: @@ -235,7 +235,7 @@ label her_reaction_equip_fail(item): elif random_number == 3: her "You actually think I'd put on something like that?" ("annoyed", "wide", "angry", "mid") elif random_number == 4: - her "I'm not some Slytherin skank [genie_name], ask them to humiliate themselves for your amusement..." ("open", "narrow", "angry", "L") + her "I'm not some Slytherin skank [name_genie_hermione], ask them to humiliate themselves for your amusement..." ("open", "narrow", "angry", "L") elif random_number == 5: her "This is too much." ("annoyed", "narrow", "angry", "R") @@ -246,7 +246,7 @@ label her_reaction_unequip(item): # if item.type == "panties": # if her_whoring > 15: # her "You want to see my snatch?" - # her "You got it [genie_name]!" + # her "You got it [name_genie_hermione]!" # return @@ -291,29 +291,29 @@ label her_reaction_equip_outfit(item): if item == her_outfit_default: gen "Could you put on your regular school uniform?" ("base", xpos="far_left", ypos="head") if her_whoring < 10: - her "Of course, [genie_name]." ("open", "base", "base", "mid") + her "Of course, [name_genie_hermione]." ("open", "base", "base", "mid") her "Let me go and change real quick..." ("soft", "base", "base", "R") elif her_whoring < 19: - her "Alright, [genie_name]." ("base", "base", "base", "mid") + her "Alright, [name_genie_hermione]." ("base", "base", "base", "mid") her "Let me go and change real quick..." ("open", "base", "base", "R") elif her_whoring < 22: - her "Are you sure, [genie_name]?" ("open", "base", "base", "mid") + her "Are you sure, [name_genie_hermione]?" ("open", "base", "base", "mid") her "My regular school uniform..." ("soft", "base", "base", "R") her "You don't even want me to remove my tie or show off any cleavage?" ("open", "squint", "worried", "mid") - gen "No, [hermione_name]... No cleavage today." ("base", xpos="far_left", ypos="head") + gen "No, [name_hermione_genie]... No cleavage today." ("base", xpos="far_left", ypos="head") her "(Is he up to something?)" ("normal", "narrow", "base", "R") her "(Maybe this is a test of some sort...)" ("clench", "squint", "base", "stare") her "Okay then, let me change it real quick." ("clench", "squint", "base", "R") else: #22+ her "That old thing?" ("clench", "base", "base", "mid") - her "Is this some silly joke, [genie_name]?" ("annoyed", "narrow", "base", "mid") + her "Is this some silly joke, [name_genie_hermione]?" ("annoyed", "narrow", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") gen "(I don't know...{w=0.3} Is it?)" ("base", xpos="far_left", ypos="head") her "This is unacceptable!" ("open", "closed", "annoyed", "mid") her "It doesn't even show any skin!" ("clench", "closed", "annoyed", "mid") gen "(...)" ("base", xpos="far_left", ypos="head") - her "It's an insult to my breast, [genie_name]!!!" ("open", "squint", "annoyed", "mid") - gen "*Gasps* {w=0.9}I would never... [hermione_name]!" ("angry", xpos="far_left", ypos="head") + her "It's an insult to my breast, [name_genie_hermione]!!!" ("open", "squint", "annoyed", "mid") + gen "*Gasps* {w=0.9}I would never... [name_hermione_genie]!" ("angry", xpos="far_left", ypos="head") $ temp_word = renpy.random.choice(["marvellous", "magnificent", "breath-taking", "wonderful", "spectacular", "sensational", "glorious", "beautiful", "lovely", "bananas"]) @@ -329,25 +329,25 @@ label her_reaction_equip_outfit(item): elif item == her_outfit_s_clearday: gen "Could you wear your school uniform for me? But leave the vest off." ("base", xpos="far_left", ypos="head") if her_whoring < 4: - her "Certainly, [genie_name]." ("open", "squint", "base", "mid") + her "Certainly, [name_genie_hermione]." ("open", "squint", "base", "mid") her "I'd usually only take it off if it's hot outside... When it isn't, I always make a point to wear the vest." ("normal", "closed", "base", "mid") her "But you are the headmaster, after all, so I'll wear it without the vest if I must." ("open", "closed", "base", "mid") - her "Let me just go and change, [genie_name]." ("open", "base", "base", "R") + her "Let me just go and change, [name_genie_hermione]." ("open", "base", "base", "R") elif her_whoring < 13: - her "Alright, [genie_name]." ("open", "squint", "base", "mid") + her "Alright, [name_genie_hermione]." ("open", "squint", "base", "mid") her "Let me go and change it real quick." ("soft", "base", "base", "R") elif her_whoring < 22: - her "Of course, [genie_name]." ("base", "squint", "base", "mid") + her "Of course, [name_genie_hermione]." ("base", "squint", "base", "mid") her "I will just change it right here if you don't mind..." ("open", "closed", "base", "mid") else: #22+ her "Just my school shirt and tie?" ("open", "base", "base", "mid") - gen "Yes, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Do you want me to tie the shirt around my breasts?" ("base", "narrow", "base", "mid") gen "No, put it on properly." ("base", xpos="far_left", ypos="head") - her "Properly, [genie_name]?" ("annoyed", "squint", "worried", "mid") + her "Properly, [name_genie_hermione]?" ("annoyed", "squint", "worried", "mid") gen "You know, buttons, and everything." ("base", xpos="far_left", ypos="head") - her "Can I leave some buttons open, [genie_name]?" ("open", "squint", "worried", "mid") - gen "I'm afraid not, [hermione_name]." ("base", xpos="far_left", ypos="head") + her "Can I leave some buttons open, [name_genie_hermione]?" ("open", "squint", "worried", "mid") + gen "I'm afraid not, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Okay then... Let me just change it real quick." ("annoyed", "narrow", "base", "R") ######################################################## @@ -363,14 +363,14 @@ label her_reaction_equip_outfit(item): gen "I don't need your life story, just put it on..." ("base", xpos="far_left", ypos="head") her "*Hmph*... Fine." ("upset", "squint", "base", "mid") elif her_whoring < 13: - her "OK, [genie_name]." ("base", "base", "base", "mid") + her "OK, [name_genie_hermione]." ("base", "base", "base", "mid") her "Let me put it on." ("open", "happy", "base", "mid") elif her_whoring < 22: - her "Just my regular muggle clothing, [genie_name]?" ("soft", "squint", "base", "mid") + her "Just my regular muggle clothing, [name_genie_hermione]?" ("soft", "squint", "base", "mid") gen "Indeed." ("base", xpos="far_left", ypos="head") her "If you say so..." ("open", "base", "base", "R") else: #22+ - her "My muggle clothing, [genie_name]?" ("open", "squint", "base", "L") + her "My muggle clothing, [name_genie_hermione]?" ("open", "squint", "base", "L") gen "Yeah, that one!" ("base", xpos="far_left", ypos="head") her "It's a bit... Too normal don't you think?" ("soft", "squint", "base", "mid") gen "I don't see how that's a bad thing..." ("base", xpos="far_left", ypos="head") @@ -382,17 +382,17 @@ label her_reaction_equip_outfit(item): elif item == her_outfit_s_snow: gen "Could you put on your regular clothing, the one with jeans and pullover?" ("base", xpos="far_left", ypos="head") if her_whoring < 4: - her "As you wish, [genie_name]." ("base", "squint", "base", "mid") + her "As you wish, [name_genie_hermione]." ("base", "squint", "base", "mid") her "I do love wearing it." ("base", "happyCl", "base", "mid") gen "Why's that?" ("base", xpos="far_left", ypos="head") her "My mother made it for me." ("base", "happy", "base", "R") gen "I see...{w} Is she as hot--" ("base", xpos="far_left", ypos="head") her "Let me go and change real quick." ("soft", "happy", "base", "R") elif her_whoring < 13: - her "Glad you're caring about my health [genie_name]... This office does get a little bit cold sometimes." ("base", "closed", "base", "mid") + her "Glad you're caring about my health [name_genie_hermione]... This office does get a little bit cold sometimes." ("base", "closed", "base", "mid") gen "Ah yes... Your health is important... I wouldn't be able to summon you if you caught a cold, would I?" ("base", xpos="far_left", ypos="head") her "..." ("normal", "squint", "base", "mid") - her "I'll just go and change it then... [genie_name]." ("open", "base", "base", "R") + her "I'll just go and change it then... [name_genie_hermione]." ("open", "base", "base", "R") elif her_whoring < 22: her "My mother made that jumper for me you know..." ("open", "closed", "base", "mid") her "I wonder what she'd say if she knew I rarely wear it anymore..." ("soft", "closed", "base", "mid") @@ -429,7 +429,7 @@ label her_reaction_equip_outfit(item): else: #22+ her "Skirt and pullover..." ("normal", "squint", "base", "stare") her "A little bit of home..." ("normal", "squint", "base", "stare") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Oh... Sorry!" ("base", "base", "base", "mid") her "One moment..." ("open", "squint", "base", "mid") @@ -445,12 +445,12 @@ label her_reaction_equip_outfit(item): her "I always end up having to dry it using magic, making it go all frizzy." ("upset", "narrow", "base", "R") gen "Isn't your hair already--" ("base", xpos="far_left", ypos="head") her "..." ("normal", "narrow", "base", "mid") - gen "I mean... great point [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "I mean... great point [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "Thank you..." ("base", "closed", "base", "mid") gen "Now. can you put it on?" ("base", xpos="far_left", ypos="head") her "...{w=0.4} Fine..." ("normal", "base", "base", "R") elif her_whoring < 13: - her "Certainly, [genie_name]..." ("base", "base", "base", "mid") + her "Certainly, [name_genie_hermione]..." ("base", "base", "base", "mid") her "Just let me go change real quick." ("open", "base", "base", "R") elif her_whoring < 22: her "You suddenly want me to cover up now?" ("angry", "narrow", "base", "R") @@ -521,7 +521,7 @@ label her_reaction_equip_outfit(item): elif random_number == 3: her "Or face paint, so I could look like a badger?!" ("smile", "narrow", "base", "R") gen "I mean, if I could find something like that, sure!" ("base", xpos="far_left", ypos="head") - her "You can't be serious, [genie_name]!" ("open", "wide", "worried", "stare") + her "You can't be serious, [name_genie_hermione]!" ("open", "wide", "worried", "stare") gen "Wear it, or I will have you go naked!" ("base", xpos="far_left", ypos="head") her "..." ("normal", "closed", "base", "mid") her "{size=-5}(How exciting!){/size}" ("base", "closed", "base", "mid", cheeks="blush") @@ -538,10 +538,10 @@ label her_reaction_equip_outfit(item): if her_whoring < 22: her "Of course!" ("smile", "base", "base", "mid") gen "Great, here you go!" ("base", xpos="far_left", ypos="head") - her "[genie_name], did you hand me the wrong outfit?" ("open", "squint", "base", "mid", cheeks="blush") + her "[name_genie_hermione], did you hand me the wrong outfit?" ("open", "squint", "base", "mid", cheeks="blush") gen "Let me see..." ("base", xpos="far_left", ypos="head") gen "Looks correct to me..." ("base", xpos="far_left", ypos="head") - her "[genie_name]... This is not the official cheerleader outfit..." ("soft", "narrow", "base", "mid") + her "[name_genie_hermione]... This is not the official cheerleader outfit..." ("soft", "narrow", "base", "mid") gen "Oh, I see why you were confused then... Yes. this one has indeed had some improvements." ("base", xpos="far_left", ypos="head") her "..." ("angry", "squint", "base", "R") gen "So, will you put it on?" ("base", xpos="far_left", ypos="head") @@ -562,7 +562,7 @@ label her_reaction_equip_outfit(item): gen "Could you please wear--" ("base", xpos="far_left", ypos="head") if her_whoring < 22: her "A fishnet outfit?" ("angry", "squint", "base", "down") - her "[genie_name]... Isn't this a bit..." ("annoyed", "squint", "base", "mid") + her "[name_genie_hermione]... Isn't this a bit..." ("annoyed", "squint", "base", "mid") gen "A bit what?" ("base", xpos="far_left", ypos="head") her "Well, it's fetish gear, isn't it?" ("open", "base", "base", "R", cheeks="blush") gen "I'd say it's closer to lingerie than fetish gear." ("base", xpos="far_left", ypos="head") @@ -587,7 +587,7 @@ label her_reaction_equip_outfit(item): her "Alright..." ("soft", "narrow", "base", "down", cheeks="blush") her "Well I suppose I'll wear it if I have to..." ("base", "closed", "base", "mid", cheeks="blush") else: #22+ - her "Lingerie?! How dare you [genie_name]!" ("angry", "narrow", "annoyed", "down", cheeks="blush") + her "Lingerie?! How dare you [name_genie_hermione]!" ("angry", "narrow", "annoyed", "down", cheeks="blush") gen "..." ("angry", xpos="far_left", ypos="head") her "Why didn't you ask me to put this on sooner?" ("angry", "narrow", "annoyed", "mid", cheeks="blush") gen "Listen here you--" ("angry", xpos="far_left", ypos="head") @@ -679,7 +679,7 @@ label her_reaction_equip_outfit(item): her "Looks like someone's gotten their hands on a particular kind of muggle magazine..." ("crooked_smile", "wink", "base", "mid") gen "No idea what you're talking about..." ("base", xpos="far_left", ypos="head") gen "Just put it on will you?" ("base", xpos="far_left", ypos="head") - her "Of course [genie_name], as you wish..." ("base", "narrow", "base", "mid", cheeks="blush") + her "Of course [name_genie_hermione], as you wish..." ("base", "narrow", "base", "mid", cheeks="blush") ####################### ## Lara Croft Outfit ## @@ -747,13 +747,13 @@ label her_reaction_equip_outfit(item): elif item == her_outfit_msmarv: #Req 10 (top, stockings) gen "I've got this Cosplay outfit I'd like you to wear." ("base", xpos="far_left", ypos="head") if her_whoring < 13: - her "Cosplay, [genie_name]?" ("open", "squint", "base", "mid") + her "Cosplay, [name_genie_hermione]?" ("open", "squint", "base", "mid") gen "Miss Marvel... One of my favourites!" ("base", xpos="far_left", ypos="head") her "*Hmm*... Well I can certainly see why..." ("disgust", "narrow", "base", "down", cheeks="blush") her "Alright fine..." ("open", "closed", "worried", "mid", cheeks="blush") her "Just give me a moment to change." ("normal", "base", "base", "R", cheeks="blush") elif her_whoring < 22: - her "Cosplay, [genie_name]?" ("angry", "squint", "base", "mid", cheeks="blush") + her "Cosplay, [name_genie_hermione]?" ("angry", "squint", "base", "mid", cheeks="blush") gen "Yes... A miss Marvel cosplay to be precise." ("base", xpos="far_left", ypos="head") her "I see..." ("soft", "narrow", "base", "down", cheeks="blush") her "And why do you want me to wear this cosplay exactly?" ("open", "squint", "base", "R", cheeks="blush") @@ -764,7 +764,7 @@ label her_reaction_equip_outfit(item): her "One moment please..." ("open", "squint", "base", "mid") her "" ("normal", "squint", "base", "mid") else: #22+ - her "Cosplay, [genie_name]?" ("base", "squint", "base", "mid") + her "Cosplay, [name_genie_hermione]?" ("base", "squint", "base", "mid") gen "Yes, this Miss Marvel cosplay..." ("base", xpos="far_left", ypos="head") her "*Hmm*... My nipples are sure to poke through in this..." ("soft", "narrow", "base", "down", cheeks="blush") gen "That's the idea..." ("base", xpos="far_left", ypos="head") @@ -778,7 +778,7 @@ label her_reaction_equip_outfit(item): elif item == her_outfit_tifa: #Req 10 (top, bottom) gen "Could you put on this Tifa Cosplay outfit?" ("base", xpos="far_left", ypos="head") if her_whoring < 19: - her "Cosplay, [genie_name]?" ("open", "squint", "base", "mid") + her "Cosplay, [name_genie_hermione]?" ("open", "squint", "base", "mid") gen "Indeed, a Tifa Lockheart cosplay!" ("base", xpos="far_left", ypos="head") her "*Hmm*... Can't say I know who that is..." ("normal", "squint", "base", "R") gen "..." ("base", xpos="far_left", ypos="head") @@ -818,7 +818,7 @@ label her_reaction_equip_outfit(item): her "Just give me a moment to put it on." ("soft", "narrow", "base", "mid", cheeks="blush") else: #22+ her "Lingerie..." ("soft", "narrow", "base", "down", cheeks="blush") - gen "Quite observant of you, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Quite observant of you, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Well I suppose if wearing this helps you build up... *Ehm*..." ("open", "closed", "annoyed", "mid", cheeks="blush") gen "No, do finish that sentence please." ("base", xpos="far_left", ypos="head") her "What I meant is... If it means I'll be able to finish my tasks faster..." ("annoyed", "squint", "base", "R", cheeks="blush") @@ -1047,7 +1047,7 @@ label her_reaction_equip_outfit(item): her "..." ("base", "narrow", "base", "down", cheeks="blush") gen "Miss Granger?" ("base", xpos="far_left", ypos="head") gen "(Looks like she's zoned out...)" ("base", xpos="far_left", ypos="head") - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Huh*?" ("angry", "squint", "base", "mid", cheeks="blush") her "Oh... Sorry sir, let me just put it on..." ("open", "base", "base", "R", cheeks="blush") gen "Never mind the dress, what about my joke?" ("base", xpos="far_left", ypos="head") @@ -1247,7 +1247,7 @@ label her_reaction_equip_outfit(item): gen "(Your modesty went out the window a long time ago.)" ("base", xpos="far_left", ypos="head") her "Well... I suppose it does cover the important bits..." ("soft", "narrow", "base", "down", cheeks="blush") gen "(Is she trying to convince herself out of it or the other way around?)" ("base", xpos="far_left", ypos="head") - her "Just give me a moment to put it on, [genie_name]..." ("normal", "narrow", "base", "R", cheeks="blush") + her "Just give me a moment to put it on, [name_genie_hermione]..." ("normal", "narrow", "base", "R", cheeks="blush") ################################ ## Pizza Slut Outfit (mirror) ## @@ -1369,7 +1369,7 @@ label her_reaction_equip_outfit_fail(item): her "Sir, I am not some floosy cheerleader..." ("open", "closed", "base", "mid") her "Their attire shows way to much skin for my liking..." ("open", "squint", "base", "R") gen "Come on, it's just your stomach..." ("base", xpos="far_left", ypos="head") - her "Sorry [genie_name] but I'll have to decline..." ("normal", "squint", "base", "mid") + her "Sorry [name_genie_hermione] but I'll have to decline..." ("normal", "squint", "base", "mid") ###################### ## Cheerleader Lewd ## @@ -1381,7 +1381,7 @@ label her_reaction_equip_outfit_fail(item): her "Sir, I am not some floosy cheerleader..." ("open", "closed", "base", "mid") her "Their attire shows way to much skin for my liking..." ("open", "squint", "base", "R") gen "Come on, surely it's not that bad." ("base", xpos="far_left", ypos="head") - her "Sorry [genie_name] but I'll have to decline..." ("normal", "squint", "base", "mid") + her "Sorry [name_genie_hermione] but I'll have to decline..." ("normal", "squint", "base", "mid") else: # < 16 her "Of course!" ("smile", "happyCl", "base", "mid") her "Go-Go Gryffindor!" ("grin", "squint", "base", "mid") @@ -1400,10 +1400,10 @@ label her_reaction_equip_outfit_fail(item): her "What? Oh, what's this?" ("soft", "squint", "base", "L") gen "It's a fishnet--" ("base", xpos="far_left", ypos="head") her "Oh, I get it!" ("open", "wide", "base", "mid") - her "This isn't really a hobby I considered pursuing, [genie_name]..." ("open", "closed", "base", "mid") + her "This isn't really a hobby I considered pursuing, [name_genie_hermione]..." ("open", "closed", "base", "mid") her "But if you say it will help me with my grades then I'll try my best." ("smile", "squint", "base", "mid") gen "Wait what?" ("base", xpos="far_left", ypos="head") - her "I will go down to the lake later and try it out, if that's okay with you, [genie_name]." ("open", "base", "base", "R") + her "I will go down to the lake later and try it out, if that's okay with you, [name_genie_hermione]." ("open", "base", "base", "R") gen "(...)" ("base", xpos="far_left", ypos="head") gen "(Wait, does she want to go fishing with it...?)" ("base", xpos="far_left", ypos="head") elif her_whoring < 10: @@ -1412,7 +1412,7 @@ label her_reaction_equip_outfit_fail(item): her "I'm not going to wear it! You can see everything in this! My nipples would poke right through it!!!" ("scream", "base", "angry", "mid") gen "I wouldn't mind if they did..." ("base", xpos="far_left", ypos="head") her "That's just... typical!" ("clench", "base", "angry", "R") - her "You disgust me, [genie_name]!" ("disgust", "base", "angry", "mid") + her "You disgust me, [name_genie_hermione]!" ("disgust", "base", "angry", "mid") gen "Alright-- Yeesh... Forget I said anything." ("base", xpos="far_left", ypos="head") else: # < 19 her "A fishnet outfit?" ("angry", "happy", "base", "mid") @@ -1424,7 +1424,7 @@ label her_reaction_equip_outfit_fail(item): if her_whoring < 13: her "Well, that's too bad because I won't be wearing it..." ("disgust", "base", "base", "R") else: - her "This is practically fetish gear, [genie_name]..." ("soft", "happy", "base", "mid") + her "This is practically fetish gear, [name_genie_hermione]..." ("soft", "happy", "base", "mid") gen "I mean..." ("base", xpos="far_left", ypos="head") her "I am not wearing something like this..." ("open", "base", "base", "R", cheeks="blush") @@ -1526,7 +1526,7 @@ label her_reaction_equip_outfit_fail(item): her "The students wear this with pride... It's a staple of our great institution." ("normal", "squint", "base", "mid", cheeks="blush") her "And you've turned it into--" ("upset", "narrow", "base", "down", cheeks="blush") gen "I know... Quite an improvement, isn't it?" ("grin", xpos="far_left", ypos="head") - her "I'm sorry but I am not putting this on, [genie_name]..." ("open", "closed", "base", "mid") + her "I'm sorry but I am not putting this on, [name_genie_hermione]..." ("open", "closed", "base", "mid") gen "Suit yourself..." ("base", xpos="far_left", ypos="head") ################## @@ -1575,10 +1575,10 @@ label her_reaction_equip_outfit_fail(item): her "Well I must say that attire such as this is hardly necessary to--" ("open", "closed", "annoyed", "mid") gen "I'll have you know that she's an expert in her field!" ("base", xpos="far_left", ypos="head") gen "I've experienced her... *Err*... expertise in taking care of delicate and ancient artefacts first hand!" ("base", xpos="far_left", ypos="head") - her "Oh, sorry [genie_name]!" ("mad", "squint", "base", "mid") + her "Oh, sorry [name_genie_hermione]!" ("mad", "squint", "base", "mid") her "I meant no disrespect, I'd just rather wear something a bit more..." ("upset", "squint", "base", "R") her "*Ehm*..." ("clench", "base", "base", "mid", cheeks="blush") - gen "Whatever you say, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Whatever you say, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") else: # < 10 her "Hmm... When I think of an archaeologist outfit I don't think of something so..." ("soft", "base", "worried", "down") gen "Triangular?" ("base", xpos="far_left", ypos="head") @@ -1628,14 +1628,14 @@ label her_reaction_equip_outfit_fail(item): her "You actually want me to put this on?" ("open", "squint", "base", "mid", cheeks="blush") gen "..." ("base", xpos="far_left", ypos="head") her "Of course you do... Why'd I even ask..." ("normal", "narrow", "base", "R", cheeks="blush") - her "But... Isn't this what strippers wear, [genie_name]?" ("open", "closed", "worried", "mid", cheeks="blush") + her "But... Isn't this what strippers wear, [name_genie_hermione]?" ("open", "closed", "worried", "mid", cheeks="blush") gen "Well, some do... on occasion. I guess it depends..." ("base", xpos="far_left", ypos="head") - her "... [genie_name], I'm not a stripper..." ("disgust", "squint", "base", "mid", cheeks="blush") + her "... [name_genie_hermione], I'm not a stripper..." ("disgust", "squint", "base", "mid", cheeks="blush") gen "Sure could've fooled me..." ("base", xpos="far_left", ypos="head") her "I only did that because you paid..." ("open", "closed", "base", "mid", cheeks="blush") gen "Go on..." ("base", xpos="far_left", ypos="head") her "I'm sorry sir but it's too much..." ("angry", "squint", "base", "mid", cheeks="blush") - gen "(You're in denial [hermione_name]... Well, I'm sure she'll come around soon enough.)" ("base", xpos="far_left", ypos="head") + gen "(You're in denial [name_hermione_genie]... Well, I'm sure she'll come around soon enough.)" ("base", xpos="far_left", ypos="head") ####################### ## Ms. Marvel Outfit ## @@ -1643,7 +1643,7 @@ label her_reaction_equip_outfit_fail(item): elif item == her_outfit_msmarv: #Req 10 (top, stockings) gen "I've got this Cosplay outfit I'd like you to wear." ("base", xpos="far_left", ypos="head") if her_whoring < 4: - her "Cosplay, [genie_name]?" ("clench", "base", "worried", "mid") + her "Cosplay, [name_genie_hermione]?" ("clench", "base", "worried", "mid") gen "Indeed... It's a Miss--" ("base", xpos="far_left", ypos="head") her "I am not wearing it..." ("open", "closed", "annoyed", "mid") gen "What? Why not?" ("base", xpos="far_left", ypos="head") @@ -1651,7 +1651,7 @@ label her_reaction_equip_outfit_fail(item): gen "I mean..." ("base", xpos="far_left", ypos="head") her "I'll stick to normal clothing thank you very much..." ("open", "base", "annoyed", "R") else: # < 10 - her "Cosplay outfit, [genie_name]?" ("normal", "base", "worried", "mid") + her "Cosplay outfit, [name_genie_hermione]?" ("normal", "base", "worried", "mid") gen "Indeed... It's a Ms Marvel cosplay." ("base", xpos="far_left", ypos="head") her "*Hmm*... Can't say that I know it..." ("upset", "squint", "base", "R") gen "Here you go..." ("base", xpos="far_left", ypos="head") @@ -1669,7 +1669,7 @@ label her_reaction_equip_outfit_fail(item): elif item == her_outfit_tifa: #Req 10 (top, bottom) gen "Could you put on this Tifa Cosplay outfit?" ("base", xpos="far_left", ypos="head") if her_whoring < 4: - her "Cosplay, [genie_name]?" ("clench", "base", "worried", "mid") + her "Cosplay, [name_genie_hermione]?" ("clench", "base", "worried", "mid") gen "Indeed!" ("base", xpos="far_left", ypos="head") her "I am not wearing it..." ("open", "closed", "annoyed", "mid") gen "What? Why not?" ("base", xpos="far_left", ypos="head") @@ -1677,7 +1677,7 @@ label her_reaction_equip_outfit_fail(item): gen "I mean..." ("base", xpos="far_left", ypos="head") her "I'll stick to normal clothing thank you very much..." ("open", "base", "annoyed", "R") else: # < 10 - her "What's a Tifa, [genie_name]?" ("soft", "base", "base", "mid") + her "What's a Tifa, [name_genie_hermione]?" ("soft", "base", "base", "mid") gen "What's a-- Who doesn't know--" ("base", xpos="far_left", ypos="head") gen "Tifa Lockheart!" ("base", xpos="far_left", ypos="head") her "Who?" ("upset", "squint", "worried", "mid") @@ -1706,7 +1706,7 @@ label her_reaction_equip_outfit_fail(item): her "I am not wearing this..." ("angry", "base", "angry", "mid") elif her_whoring < 13: her "*Ehm*... Isn't a nightgown supposed to..." ("disgust", "narrow", "base", "down") - gen "Supposed to what, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Supposed to what, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "You know..." ("clench", "narrow", "base", "down") her "Cover your body." ("open", "closed", "annoyed", "mid", cheeks="blush") gen "Isn't it?" ("base", xpos="far_left", ypos="head") @@ -1755,7 +1755,7 @@ label her_reaction_equip_outfit_fail(item): her "I didn't know you could make a dress out of--" ("open", "squint", "worried", "mid") gen "Here you go." ("base", xpos="far_left", ypos="head") her "Are you crazy?!" ("clench", "wide", "base", "down") - her "What's wrong with you, [genie_name]?!" ("scream", "squint", "annoyed", "mid") + her "What's wrong with you, [name_genie_hermione]?!" ("scream", "squint", "annoyed", "mid") gen "What do you--" ("base", xpos="far_left", ypos="head") her "I am not putting that thing on..." ("disgust", "happyCl", "base", "mid", cheeks="blush") elif her_whoring < 13: @@ -1771,7 +1771,7 @@ label her_reaction_equip_outfit_fail(item): her "No!" ("scream", "closed", "annoyed", "mid") her "" ("normal", "squint", "annoyed", "mid") else: # < 19 - her "[genie_name], this is fetish gear isn't it?" ("annoyed", "base", "base", "R", cheeks="blush") + her "[name_genie_hermione], this is fetish gear isn't it?" ("annoyed", "base", "base", "R", cheeks="blush") gen "I mean..." ("base", xpos="far_left", ypos="head") gen "I wouldn't exactly call it..." ("base", xpos="far_left", ypos="head") gen "..." ("base", xpos="far_left", ypos="head") @@ -1790,7 +1790,7 @@ label her_reaction_equip_outfit_fail(item): her "Egyptian-themed? What's that supposed to mean?" ("upset", "squint", "worried", "mid") gen "You know... The type of clothing that they'd wear in Egypt." ("base", xpos="far_left", ypos="head") gen "Well at least back when I was there." ("base", xpos="far_left", ypos="head") - her "You've been to Egypt, [genie_name]?" ("soft", "squint", "base", "mid") + her "You've been to Egypt, [name_genie_hermione]?" ("soft", "squint", "base", "mid") gen "Of course!" ("base", xpos="far_left", ypos="head") gen "And let me tell you... Cleopatra was quite the sight to behold!" ("base", xpos="far_left", ypos="head") her "Did you see a bust of her there?" ("base", "base", "worried", "mid") @@ -1800,7 +1800,7 @@ label her_reaction_equip_outfit_fail(item): her "I see... Well, let me have a look..." ("base", "squint", "base", "mid") gen "Here you go." ("base", xpos="far_left", ypos="head") her "What the--" ("normal", "wide", "base", "down") - her "Surely this can't be what they wore, [genie_name]!" ("clench", "base", "base", "down") + her "Surely this can't be what they wore, [name_genie_hermione]!" ("clench", "base", "base", "down") gen "Oh, I'm quite certain they did..." ("base", xpos="far_left", ypos="head") her "There's barely any material to cover... *Ehm*..." ("disgust", "squint", "base", "mid", cheeks="blush") gen "I mean, it's quite hot there..." ("base", xpos="far_left", ypos="head") @@ -1813,7 +1813,7 @@ label her_reaction_equip_outfit_fail(item): gen "Poppycock." ("base", xpos="far_left", ypos="head") gen "If you did then you wouldn't be able to get an even tan." ("base", xpos="far_left", ypos="head") her "..." ("disgust", "narrow", "base", "mid") - her "Sorry [genie_name] but this is too much..." ("open", "closed", "annoyed", "mid") + her "Sorry [name_genie_hermione] but this is too much..." ("open", "closed", "annoyed", "mid") her "" ("normal", "base", "annoyed", "mid") ############## @@ -1850,7 +1850,7 @@ label her_reaction_equip_outfit_fail(item): ##################### elif item == her_outfit_bioshock: #Req 14 (no bra) gen "Can you put on this Elisabeth Cosplay outfit?" ("base", xpos="far_left", ypos="head") - her "Cosplay, [genie_name]?" ("clench", "base", "worried", "mid") + her "Cosplay, [name_genie_hermione]?" ("clench", "base", "worried", "mid") gen "Indeed!" ("base", xpos="far_left", ypos="head") her "I am not wearing it..." ("open", "closed", "annoyed", "mid") gen "What? Why not?" ("angry", xpos="far_left", ypos="head") @@ -1866,7 +1866,7 @@ label her_reaction_equip_outfit_fail(item): elif item == her_outfit_yennefer: #Req 10 gen "I got this Yennefer Cosplay that I'd like you to put on." ("base", xpos="far_left", ypos="head") if her_whoring < 4: - her "Cosplay, [genie_name]?" ("clench", "base", "worried", "mid") + her "Cosplay, [name_genie_hermione]?" ("clench", "base", "worried", "mid") gen "Yep, she's from the--" ("base", xpos="far_left", ypos="head") her "I am not wearing it..." ("open", "closed", "annoyed", "mid") gen "You didn't even let me finish!" ("angry", xpos="far_left", ypos="head") @@ -1990,7 +1990,7 @@ label her_reaction_equip_outfit_fail(item): her "And you winning it means that I'm supposed to wear it?" ("angry", "narrow", "annoyed", "mid") gen "Pretty sure that's how it works." ("base", xpos="far_left", ypos="head") her "*Hmm*... I don't think so..." ("disgust", "narrow", "annoyed", "R") - her "You may be a winner [genie_name] but that sure doesn't give you some privilege to make me wear--" ("open", "closed", "annoyed", "mid") + her "You may be a winner [name_genie_hermione] but that sure doesn't give you some privilege to make me wear--" ("open", "closed", "annoyed", "mid") her "Whatever this...{w=0.4} Thing... Is supposed to be." ("angry", "narrow", "annoyed", "mid") gen "(Damn it...)" ("base", xpos="far_left", ypos="head") else: # < 19 @@ -2045,7 +2045,7 @@ label her_reaction_equip_outfit_fail(item): her "A bikini?" ("disgust", "squint", "base", "mid") gen "Indeed... This one right here..." ("base", xpos="far_left", ypos="head") her "..." ("normal", "wide", "base", "down") - her "[genie_name], You can't be serious!" ("open", "closed", "annoyed", "mid", cheeks="blush") + her "[name_genie_hermione], You can't be serious!" ("open", "closed", "annoyed", "mid", cheeks="blush") gen "About what? It's a bikini is it not?" ("base", xpos="far_left", ypos="head") her "These straps are made of chains! Surely that wouldn't even help to keep them on..." ("angry", "narrow", "annoyed", "down", cheeks="blush") gen "I'm sure you'll find a way..." ("base", xpos="far_left", ypos="head") @@ -2087,7 +2087,7 @@ label her_reaction_equip_outfit_fail(item): gen "Oh... I'm sorry, it usually is with this type of thing..." ("base", xpos="far_left", ypos="head") her "You actually expect me to--" ("angry", "squint", "base", "mid", cheeks="blush") gen "I didn't ship it from anywhere, it's made locally." ("base", xpos="far_left", ypos="head") - her "[genie_name], I don't care about where you got it from... It's the fact that--" ("angry", "narrow", "worried", "mid", cheeks="blush") + her "[name_genie_hermione], I don't care about where you got it from... It's the fact that--" ("angry", "narrow", "worried", "mid", cheeks="blush") gen "Jeez, perhaps you need to take a good look at yourself then." ("base", xpos="far_left", ypos="head") her "What?" ("clench", "squint", "base", "mid", cheeks="blush") gen "Spending a bit more is worth it if it supports your local community." ("base", xpos="far_left", ypos="head") @@ -2101,7 +2101,7 @@ label her_reaction_equip_outfit_fail(item): else: # < 16: her "I don't want to put on a bikini in your office." ("open", "closed", "base", "mid", cheeks="blush") her "Standing in my underwear is weird enough..." ("annoyed", "squint", "base", "R", cheeks="blush") - gen "Whatever you say [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Whatever you say [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") ######################## ## Rave Bikini Outfit ## @@ -2149,18 +2149,18 @@ label her_reaction_equip_outfit_fail(item): her "..." ("annoyed", "squint", "base", "R", cheeks="blush") her "Sir, surely this kind of bikini..." ("normal", "closed", "base", "mid", cheeks="blush") her "Why it looks like something you might wear at..." ("angry", "narrow", "base", "down", cheeks="blush") - gen "At what, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "At what, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "*Ehm*..." ("upset", "narrow", "base", "mid", cheeks="blush") gen "A porn shoot?" ("base", xpos="far_left", ypos="head") her "I...{w=0.4} Yes." ("angry", "narrow", "base", "mid", cheeks="blush") - gen "You've watched porn [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "You've watched porn [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "What?!" ("clench", "squint", "base", "mid", cheeks="blush") gen "You just agreed with what I said... Which means you've watched porn before." ("base", xpos="far_left", ypos="head") her "I...{w=0.4} I have not!" ("annoyed", "closed", "annoyed", "mid", cheeks="blush") her "I swear, I've never--" ("open", "closed", "annoyed", "mid", cheeks="blush") gen "Look, I'm not judging." ("base", xpos="far_left", ypos="head") her "But..." ("clench", "squint", "worried", "mid", cheeks="blush") - her "You...{w=0.4} Sorry [genie_name], but this outfit is too much..." ("open", "narrow", "worried", "R", cheeks="blush") + her "You...{w=0.4} Sorry [name_genie_hermione], but this outfit is too much..." ("open", "narrow", "worried", "R", cheeks="blush") ################################ ## Pizza Slut Outfit (mirror) ## @@ -2168,7 +2168,7 @@ label her_reaction_equip_outfit_fail(item): elif item == her_outfit_pizza: #Req 19 (top, panties) gen "Put this pizza on." ("base", xpos="far_left", ypos="head") if her_whoring < 13: - her "Put it on, [genie_name]?" ("normal", "squint", "base", "mid") + her "Put it on, [name_genie_hermione]?" ("normal", "squint", "base", "mid") gen "Yes, put it on." ("base", xpos="far_left", ypos="head") her "Do you want me to heat it up?" ("open", "squint", "worried", "mid") gen "No, I want you to put it on." ("base", xpos="far_left", ypos="head") @@ -2176,7 +2176,7 @@ label her_reaction_equip_outfit_fail(item): gen "Put... it--" ("base", xpos="far_left", ypos="head") gen "You know what... Forget it." ("base", xpos="far_left", ypos="head") else: # < 19 - her "Put it on, [genie_name]?" ("normal", "squint", "base", "mid") + her "Put it on, [name_genie_hermione]?" ("normal", "squint", "base", "mid") gen "Yes..." ("base", xpos="far_left", ypos="head") her "..." ("normal", "squint", "base", "mid") her "..." ("normal", "squint", "base", "stare") @@ -2199,7 +2199,7 @@ label her_reaction_equip_outfit_fail(item): gen "Here's the ribbons..." ("base", xpos="far_left", ypos="head") her "Thank you." ("base", "base", "base", "mid") gen "Go on..." ("base", xpos="far_left", ypos="head") - her "[genie_name], you've not provided me any wrapping paper..." ("open", "squint", "base", "mid") + her "[name_genie_hermione], you've not provided me any wrapping paper..." ("open", "squint", "base", "mid") her "Or whatever it is you wanted me to wrap." ("open", "base", "base", "mid") gen "My mistake... I should've been more clear." ("base", xpos="far_left", ypos="head") gen "You won't need any paper, the ribbons should do." ("base", xpos="far_left", ypos="head") @@ -2208,7 +2208,7 @@ label her_reaction_equip_outfit_fail(item): her "..." ("clench", "wide", "base", "mid") her "You want me to what?!" ("disgust", "base", "annoyed", "mid") gen "Take your clothes--" ("base", xpos="far_left", ypos="head") - her "[genie_name], are you crazy?!" ("scream", "happyCl", "annoyed", "mid") + her "[name_genie_hermione], are you crazy?!" ("scream", "happyCl", "annoyed", "mid") gen "You've learnt how to tie a knot have you not?" ("base", xpos="far_left", ypos="head") gen "If it's an issue I suppose I could--" ("base", xpos="far_left", ypos="head") her "You want me to take my clothes off and only wear a ribbon?!" ("clench", "base", "annoyed", "mid") @@ -2228,7 +2228,7 @@ label her_reaction_equip_outfit_fail(item): gen "Don't put yourself down like that." ("base", xpos="far_left", ypos="head") her "I am not putting this on..." ("open", "narrow", "annoyed", "mid") gen "Why not?" ("angry", xpos="far_left", ypos="head") - her "I am not some gift for you to unwrap, [genie_name]..." ("disgust", "narrow", "base", "mid") + her "I am not some gift for you to unwrap, [name_genie_hermione]..." ("disgust", "narrow", "base", "mid") gen "Worst birthday ever..." ("base", xpos="far_left", ypos="head") else: # < 18 her "It's me isn't it?" ("disgust", "narrow", "base", "mid") @@ -2284,7 +2284,7 @@ label her_reaction_equip_outfit_fail(item): elif item == her_outfit_wrestling: #Req 3 (robe, bra, panties, misc) gen "I've got these wrestling robes for you to wear today." ("base", xpos="far_left", ypos="head") her "Wrestling--" ("angry", "base", "base", "mid") - her "[genie_name], these would show off my underwear!" ("clench", "narrow", "base", "down") + her "[name_genie_hermione], these would show off my underwear!" ("clench", "narrow", "base", "down") gen "So? You showed off a lot more in the mirror." ("base", xpos="far_left", ypos="head") her "In the what?" ("angry", "base", "base", "mid") gen "Oh yeah... You wouldn't know about that..." ("base", xpos="far_left", ypos="head") @@ -2300,7 +2300,7 @@ label her_reaction_equip_outfit_fail(item): elif random_number == 3: her "You actually think I'd put on something like that?" ("annoyed", "wide", "angry", "mid") elif random_number == 4: - her "I'm not some Slytherin skank [genie_name], ask them to humiliate themselves for your amusement..." ("open", "narrow", "angry", "L") + her "I'm not some Slytherin skank [name_genie_hermione], ask them to humiliate themselves for your amusement..." ("open", "narrow", "angry", "L") elif random_number == 5: her "This is too much." ("annoyed", "narrow", "angry", "R") diff --git a/game/scripts/characters/hooch/common.rpy b/game/scripts/characters/hooch/common.rpy index 974024c0..eade842d 100644 --- a/game/scripts/characters/hooch/common.rpy +++ b/game/scripts/characters/hooch/common.rpy @@ -13,7 +13,7 @@ label end_hooch_event: call music_block jump main_room_menu -define character.hooch_say = Character("hooch_name", show_icon="hooch", dynamic=True) +define character.hooch_say = Character("name_hooch_genie", show_icon="hooch", dynamic=True) init python: def hoo(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, diff --git a/game/scripts/characters/hooch/vars.rpy b/game/scripts/characters/hooch/vars.rpy index 78b33fa8..87aa772c 100644 --- a/game/scripts/characters/hooch/vars.rpy +++ b/game/scripts/characters/hooch/vars.rpy @@ -10,5 +10,5 @@ default hooch_busy = False default hooch_unlocked = False # Names -default hooch_genie_name = "Sir Dumbledore" -default hooch_name = "Madam Hooch" +default name_genie_hooch = "Sir Dumbledore" +default name_hooch_genie = "Madam Hooch" diff --git a/game/scripts/characters/luna/chitchats.rpy b/game/scripts/characters/luna/chitchats.rpy index 33065ae8..59fe61b9 100644 --- a/game/scripts/characters/luna/chitchats.rpy +++ b/game/scripts/characters/luna/chitchats.rpy @@ -51,7 +51,7 @@ label luna_chitchat: lun "I'm hoping I'll be able to ride one someday..." ("grin", "base", "base", "mid") elif random_number == 5: - lun "[lun_genie_name]...{w=0.4} There's something I've been meaning to ask you." ("open", "closed", "base", "mid") + lun "[name_genie_luna]...{w=0.4} There's something I've been meaning to ask you." ("open", "closed", "base", "mid") lun "Could we avoid putting up so many mistletoe's during the holiday celebrations?" ("soft", "base", "base", "mid") lun "It would highly decrease the risk of a Nargle infestation." ("open", "base", "base", "mid") @@ -60,7 +60,7 @@ label luna_chitchat: lun "I'd love to take one to Sweden and look for the Crumple-Horned Snorkack." ("grin", "base", "base", "mid") elif random_number == 7: - lun "[lun_genie_name], you really need to do something about Peeves." ("annoyed", "base", "base", "R") + lun "[name_genie_luna], you really need to do something about Peeves." ("annoyed", "base", "base", "R") lun "He's been following me around chanting \"Loony Luna, Loony Luna, who would ever do yah\"..." ("open", "base", "base", "R") elif random_number == 8: @@ -73,7 +73,7 @@ label luna_chitchat: lun "I'm a bit worried it might spread to Hogsmeade during one of our student outings." ("annoyed", "base", "base", "R") elif random_number == 10: - lun "[lun_genie_name], do you think wrackspurts could spread to animals?" ("open", "wide", "base", "mid") + lun "[name_genie_luna], do you think wrackspurts could spread to animals?" ("open", "wide", "base", "mid") lun "No, don't say anything... I can't bear the thought of it!" ("open", "happyCl", "base", "mid") elif lun_tier == 2: @@ -94,11 +94,11 @@ label luna_chitchat: lun "I wonder if she was trying to fend them off with defensive magic..." ("open", "base", "base", "R") elif random_number == 4: - lun "I still can't believe you've managed to channel the wrackspurts though your penis, [lun_genie_name]." ("grin", "base", "base", "mid") + lun "I still can't believe you've managed to channel the wrackspurts though your penis, [name_genie_luna]." ("grin", "base", "base", "mid") lun "You've got to teach me how to do that!" ("base", "wink", "base", "mid") elif random_number == 5: - lun "Are you able to cast other magic through your penis, [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "Are you able to cast other magic through your penis, [name_genie_luna]?" ("open", "base", "raised", "mid") lun "We should try it sometime!" ("grin", "base", "base", "mid") elif random_number == 6: @@ -110,16 +110,16 @@ label luna_chitchat: lun "If it requires a lot of focus that is...{w=0.4} I'm not very good at that." ("soft", "narrow", "base", "R") elif random_number == 8: - lun "Are you sure we shouldn't clean your desk, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "Are you sure we shouldn't clean your desk, [name_genie_luna]?" ("soft", "base", "raised", "mid") lun "Or are you worried the wrackspurts might spread elsewhere if we move them?" ("open", "base", "base", "mid") elif random_number == 9: - lun "Can you inspect my body today, [lun_genie_name]?" ("angry", "base", "raised", "mid") + lun "Can you inspect my body today, [name_genie_luna]?" ("angry", "base", "raised", "mid") lun "Can you?" ("angry", "wide", "base", "mid") lun "Please." ("angry", "wide", "base", "mid") elif random_number == 10: - lun "[lun_genie_name], Is it supposed to feel really good when you rub your thighs together?" ("soft", "base", "raised", "mid") + lun "[name_genie_luna], Is it supposed to feel really good when you rub your thighs together?" ("soft", "base", "raised", "mid") elif lun_tier == 3: $ random_number = renpy.random.randint(1, 10) @@ -131,7 +131,7 @@ label luna_chitchat: lun "I'm so glad that the inspection was successful...{w=0.4} I don't know what would've done if we didn't make any progress..." ("base", "narrow", "base", "R") elif random_number == 3: - lun "Is it possible for someone to possess magical fingers, [lun_genie_name]?" ("soft", "base", "base", "mid", cheeks="blush") + lun "Is it possible for someone to possess magical fingers, [name_genie_luna]?" ("soft", "base", "base", "mid", cheeks="blush") lun "You know, like how some people are born with innate magical abilities." ("open", "closed", "base", "mid", cheeks="blush") lun "It would explain a lot about what I felt when you touched me down there..." ("soft", "narrow", "base", "R", cheeks="blush") @@ -158,7 +158,7 @@ label luna_chitchat: lun "You said that my naked body helped you release the spurts...{w=0.4} What did you mean by that exactly?" ("soft", "base", "raised", "mid") elif random_number == 10: - lun "How come you're so skilled at unhooking a woman's bra, [lun_genie_name]?" ("open", "base", "base", "down") + lun "How come you're so skilled at unhooking a woman's bra, [name_genie_luna]?" ("open", "base", "base", "down") lun "Wait, what am I saying...{w=0.4} Of course the great Albus Dumbledore can do it with ease..." ("angry", "wide", "base", "mid") # elif lun_tier == 4: diff --git a/game/scripts/characters/luna/common.rpy b/game/scripts/characters/luna/common.rpy index 1cf81c51..22d642b7 100644 --- a/game/scripts/characters/luna/common.rpy +++ b/game/scripts/characters/luna/common.rpy @@ -67,7 +67,7 @@ label update_luna: return -define character.luna_say = Character("luna_name", show_icon="luna", dynamic=True) +define character.luna_say = Character("name_luna_genie", show_icon="luna", dynamic=True) init python: def lun(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, diff --git a/game/scripts/characters/luna/events/favors/inspect_her_body.rpy b/game/scripts/characters/luna/events/favors/inspect_her_body.rpy index ae6e6ee3..fe6fd5bd 100644 --- a/game/scripts/characters/luna/events/favors/inspect_her_body.rpy +++ b/game/scripts/characters/luna/events/favors/inspect_her_body.rpy @@ -41,8 +41,8 @@ label ll_pf_inspect: label ll_pf_inspect_T2_E1_intro: - gen "Ready for your physical, [luna_name]?" ("grin", xpos="far_left", ypos="head") - lun "My physical, [lun_genie_name]?" ("open", "base", "raised", "mid") + gen "Ready for your physical, [name_luna_genie]?" ("grin", xpos="far_left", ypos="head") + lun "My physical, [name_genie_luna]?" ("open", "base", "raised", "mid") gen "Your inspection!" ("grin", xpos="far_left", ypos="head") lun "Oooh...{w=0.3} The inspection!" ("grin", "base", "base", "mid") lun "Yes, I'm ready!" ("base", "base", "base", "mid") @@ -59,10 +59,10 @@ label ll_pf_inspect_T2_E1_intro: pause .8 gen "There we go... Might as well." ("base", xpos="far_left", ypos="head") - lun "Good thinking [lun_genie_name]!" ("crooked_smile", "narrow", "base", "mid") + lun "Good thinking [name_genie_luna]!" ("crooked_smile", "narrow", "base", "mid") gen "Right... Now to give you a full assessment of your goods...{w=0.4} *Err*...{w=0.4} Orifices." ("base", xpos="far_left", ypos="head") if luna.is_any_worn("robe", "accessory"): - lun "Of course [lun_genie_name]... Let me just take this off..." ("base", "base", "base", "mid") + lun "Of course [name_genie_luna]... Let me just take this off..." ("base", "base", "base", "mid") $ renpy.sound.play("sounds/cloth_sound3.ogg") $ luna.strip("robe", "accessory") @@ -74,7 +74,7 @@ label ll_pf_inspect_T2_E1_intro: gen "Now then..." ("base", xpos="far_left", ypos="head") gen "Let's start with your breasts." ("base", xpos="far_left", ypos="head") gen "Take that top off for me will you." ("base", xpos="far_left", ypos="head") - lun "Of course, [lun_genie_name]." ("base", "base", "base", "mid") + lun "Of course, [name_genie_luna]." ("base", "base", "base", "mid") #Luna takes top off $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -86,14 +86,14 @@ label ll_pf_inspect_T2_E1_intro: else: gen "Let's see what we got here..." ("base", xpos="far_left", ypos="head") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - lun "Something wrong, [lun_genie_name]?" ("soft", "base", "raised", "mid") - gen "Not at all, [luna_name]!" ("base", xpos="far_left", ypos="head") + lun "Something wrong, [name_genie_luna]?" ("soft", "base", "raised", "mid") + gen "Not at all, [name_luna_genie]!" ("base", xpos="far_left", ypos="head") gen "I'm just inspecting those lovely breasts of yours!" ("base", xpos="far_left", ypos="head") - lun "*Ehm*...{w=0.3} Lovely, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "*Ehm*...{w=0.3} Lovely, [name_genie_luna]?" ("soft", "base", "raised", "mid") gen "*Err*...{w=0.4} Healthy! They look very healthy!" ("base", xpos="far_left", ypos="head") - lun "I see...{w=0.4} Thank you [lun_genie_name]!" ("grin", "base", "base", "mid") + lun "I see...{w=0.4} Thank you [name_genie_luna]!" ("grin", "base", "base", "mid") gen "But I still need a proper look, so you're going to have to take your bra off as well." ("base", xpos="far_left", ypos="head") - lun "Certainly [lun_genie_name]." ("base", "base", "base", "mid") + lun "Certainly [name_genie_luna]." ("base", "base", "base", "mid") #Luna takes bra off (Not possible in wardrobe until next tier) $ renpy.sound.play("sounds/cloth_sound3.ogg") @@ -105,34 +105,34 @@ label ll_pf_inspect_T2_E1_intro: call nar("*Fap* *Fap* *Fap*...") - lun "So...{w=0.4} Do you think this should work, [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "So...{w=0.4} Do you think this should work, [name_genie_luna]?" ("open", "base", "raised", "mid") gen "Oh...{w=0.4} It's working alright." ("grin", xpos="far_left", ypos="head") call nar(">Focusing your attention on the girls breasts, you feel your cock harden more and more with each stroke...") lun "Great! So what do I have to do to get the Wrackspurts out of them?" ("smile", "base", "base", "mid") gen "*Mmm*...{w=0.4} The what, sorry?" ("base", xpos="far_left", ypos="head") - lun "The Wrackspurts, [lun_genie_name]..." ("open", "base", "raised", "mid") + lun "The Wrackspurts, [name_genie_luna]..." ("open", "base", "raised", "mid") gen "*Ah*...{w=0.4} Those bloody things." ("base", xpos="far_left", ypos="head") gen "Let's see..." ("base", xpos="far_left", ypos="head") gen "Tell...{w=0.4} *Ngh*...{w=0.4} Tell me a bit about them..." ("base", xpos="far_left", ypos="head") lun "Well... As I said, they're invisible--" ("soft", "closed", "base", "mid") - gen "Not the spurts! Your breasts, [luna_name]!" ("base", xpos="far_left", ypos="head") - lun "Ooooh...{w=0.2} What do you need to know about them, [lun_genie_name]?" ("mad", "base", "base", "mid") + gen "Not the spurts! Your breasts, [name_luna_genie]!" ("base", xpos="far_left", ypos="head") + lun "Ooooh...{w=0.2} What do you need to know about them, [name_genie_luna]?" ("mad", "base", "base", "mid") gen "(How much do they jiggle-- How hard can I pull on your-- What do they taste--)" ("grin", xpos="far_left", ypos="head") lun "" ("upset", "base", "raised", "mid") #Confused call nar("*Fap* *Fap* *Fap*...") call nar(">You pick up the pace whilst staring at her tits... An expression of confusion spreading across Luna's face as she waits for a response...") - lun "[lun_genie_name]?" ("open", "base", "raised", "mid") + lun "[name_genie_luna]?" ("open", "base", "raised", "mid") gen "What?!" ("angry", xpos="far_left", ypos="head") gen "Oh yes...{w=0.3} Your tits!" ("grin", xpos="far_left", ypos="head") gen "It appears the Spurts gather around sensitive areas..." ("base", xpos="far_left", ypos="head") gen "So with that in mind..." ("base", xpos="far_left", ypos="head") - gen "Would you say that your breasts fit that description, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "Would you say that your breasts fit that description, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "*Hmm*...{w=0.4} Well, my nipples do get a bit hard and sensitive whenever they bothered me previously..." ("open", "narrow", "base", "downL") - lun "Is that the kind of thing you meant, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "Is that the kind of thing you meant, [name_genie_luna]?" ("soft", "base", "raised", "mid") gen "*Ah*... Yes, that's exactly it..." ("base", xpos="far_left", ypos="head") call nar(">You move your gaze and focus on Lunas erect nipples...{w=0.3} Your cock twitching slightly in your grasp.") @@ -140,10 +140,10 @@ label ll_pf_inspect_T2_E1_intro: gen "*Hmm*...{w=0.4} They do look a bit hard actually..." ("base", xpos="far_left", ypos="head") lun "They do?" ("disgust", "base", "base", "mid", cheeks="blush") - lun "I've been trying to suppress it the best I can, [lun_genie_name]!" ("clench", "closed", "base", "mid", cheeks="blush") + lun "I've been trying to suppress it the best I can, [name_genie_luna]!" ("clench", "closed", "base", "mid", cheeks="blush") gen "I see..." ("base", xpos="far_left", ypos="head") gen "Well that wont do." ("base", xpos="far_left", ypos="head") - gen "Fighting it is what's been holding you...{w=0.4} *Err*...{w=0.4} Them back, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Fighting it is what's been holding you...{w=0.4} *Err*...{w=0.4} Them back, [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "You need to allow that feeling to build up, or you--{w=0.2} *Ah*...{w=0.4} You won't be able to expel them." ("base", xpos="far_left", ypos="head") call nar(">You keep stroking your cock, thinking about what you'd do to those nipples...") @@ -157,8 +157,8 @@ label ll_pf_inspect_T2_E1_intro: call nar(">Looking up at Luna's face, you notice her expression has changed to that of excitement and lust...") call nar(">After a moment of silence, you finally speak up in fear of not being able to finish in time.") - gen "*Ehm*...{w=0.4} So...{w=0.4} Any other areas that you've noticed being unusually sensitive, [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Oh, yes [lun_genie_name]!" ("mad", "base", "base", "mid", cheeks="blush") + gen "*Ehm*...{w=0.4} So...{w=0.4} Any other areas that you've noticed being unusually sensitive, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Oh, yes [name_genie_luna]!" ("mad", "base", "base", "mid", cheeks="blush") lun "There's this area down here!" ("angry", "base", "base", "down", cheeks="blush") call lun_walk("desk", "base", speed=1.75) @@ -174,7 +174,7 @@ label ll_pf_inspect_T2_E1_intro: gen "By the great--" ("angry", xpos="far_left", ypos="head") - lun "Do you think I'll be able to expel them from here, [lun_genie_name]?" ("open", "base", "raised", "mid", cheeks="blush", flip=True) + lun "Do you think I'll be able to expel them from here, [name_genie_luna]?" ("open", "base", "raised", "mid", cheeks="blush", flip=True) $ camera.set_imagepath("lun_intro/") $ camera.set_image("CG lun_intro luna bendover naked") @@ -187,8 +187,8 @@ label ll_pf_inspect_T2_E1_intro: show screen animatedCG with fade - gen "[luna_name]!" - lun "[lun_genie_name]?" + gen "[name_luna_genie]!" + lun "[name_genie_luna]?" gen "*Ahem*...{w=0.4} Yes, I'd say that area is definitely a contender." call nar(">With a full view of the girl's naked body, you feel your cock throbbing in your hand, and you begin stroking it even faster...") @@ -209,7 +209,7 @@ label ll_pf_inspect_T2_E1_intro: lun "" ("grin", "base", "base", "mid", cheeks="blush", flip=False, trans=dissolve) call nar(">Luna turns back around, and as you get a full view of her front, you feel yourself getting close to the edge.") - lun "So that's how you came up with the idea of rubbing your penis, [lun_genie_name]!" ("grin", "wink", "base", "mid", cheeks="blush") + lun "So that's how you came up with the idea of rubbing your penis, [name_genie_luna]!" ("grin", "wink", "base", "mid", cheeks="blush") lun "To bait the Wrackspurts to one spot!" ("crooked_smile", "base", "base", "mid", cheeks="blush") lun "Since your penis is a sensitive area, rubbing it gets the Wrackspurts all excited..." ("smile", "closed", "base", "mid", cheeks="blush") @@ -228,7 +228,7 @@ label ll_pf_inspect_T2_E1_intro: call cum_block - lun "[lun_genie_name], you did it again!" ("grin", "base", "base", "stare", cheeks="blush") + lun "[name_genie_luna], you did it again!" ("grin", "base", "base", "stare", cheeks="blush") lun "I can't believe it!" ("grin", "base", "base", "mid", cheeks="blush") call cum_block @@ -259,14 +259,14 @@ label ll_pf_inspect_T2_E1_intro: lun "Why not!?" ("angry", "narrow", "annoyed", "mid", cheeks="blush") gen "*Err*...{w=0.5} Because it's dangerous!" ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]! You've done it yourself a couple of times already!" ("angry", "base", "base", "mid", cheeks="blush") + lun "But [name_genie_luna]! You've done it yourself a couple of times already!" ("angry", "base", "base", "mid", cheeks="blush") gen "Actually..." ("base", xpos="far_left", ypos="head") lun "And it didn't look very complicated..." ("annoyed", "narrow", "annoyed", "mid", cheeks="blush") gen "Well. I can assure you..." ("base", xpos="far_left", ypos="head") gen "Tricking those spurts is not an easy task!" ("base", xpos="far_left", ypos="head") gen "As I said, you could end up with some severe burns!" ("base", xpos="far_left", ypos="head") lun "But didn't you just--" ("angry", "base", "base", "mid", cheeks="blush") - gen "I am a master baiter, [luna_name]!" ("base", xpos="far_left", ypos="head") + gen "I am a master baiter, [name_luna_genie]!" ("base", xpos="far_left", ypos="head") lun "..." ("mad", "narrow", "base", "downL", cheeks="blush") #wide eyed gen "Nobody but I have successfully been able to bait those--" ("base", xpos="far_left", ypos="head") lun "Then what am I supposed to do?!" ("angry", "base", "base", "mid", cheeks="blush") @@ -278,10 +278,10 @@ label ll_pf_inspect_T2_E1_intro: gen "Well perhaps--" ("base", xpos="far_left", ypos="head") lun "I know!" ("smile", "wide", "base", "mid", cheeks="blush") - lun "[lun_genie_name]...{w=0.2} Why don't you teach me?" ("smile", "base", "base", "mid", cheeks="blush") + lun "[name_genie_luna]...{w=0.2} Why don't you teach me?" ("smile", "base", "base", "mid", cheeks="blush") gen "..." ("grin", xpos="far_left", ypos="head") - gen "Oh, well I don't know, [luna_name]..." ("grin", xpos="far_left", ypos="head") - lun "[lun_genie_name], please!" ("mad", "narrow", "base", "mid", cheeks="blush") + gen "Oh, well I don't know, [name_luna_genie]..." ("grin", xpos="far_left", ypos="head") + lun "[name_genie_luna], please!" ("mad", "narrow", "base", "mid", cheeks="blush") hide luna_main with d3 @@ -291,34 +291,34 @@ label ll_pf_inspect_T2_E1_intro: with flash gen "*Ghk*... How did you--" ("angry", xpos="far_left", ypos="head") - lun "[lun_genie_name], if I can't do it myself, then you'll {size=+5}have{/size} to teach me!" ("clench", "wide", "base", "stare", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=dissolve) + lun "[name_genie_luna], if I can't do it myself, then you'll {size=+5}have{/size} to teach me!" ("clench", "wide", "base", "stare", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=dissolve) gen "Teach you how to masturbate..." ("base", xpos="far_left", ypos="head") call nar(">Luna stares into your eyes as she unconsciously begins grinding her pussy on the edge of your desk.") - lun "Yes, teach me [lun_genie_name]!" ("angry", "wide", "base", "mid", cheeks="blush") + lun "Yes, teach me [name_genie_luna]!" ("angry", "wide", "base", "mid", cheeks="blush") lun "I want to be a master baiter too!" ("angry", "happyCl", "base", "mid", cheeks="blush") call nar(">Luna's cheeks burns with red as she keeps grinding on the edge of your desk.") gen "(Poor girl is literally edging...)" ("base", xpos="far_left", ypos="head") - gen "Alright, you have convinced me [luna_name]... I'll do it!" ("base", xpos="far_left", ypos="head") + gen "Alright, you have convinced me [name_luna_genie]... I'll do it!" ("base", xpos="far_left", ypos="head") call nar(">Luna stops her grinding, and begins jumping happily on the spot. Her tits bouncing up and down as she does so.") - lun "Oh, thank you [lun_genie_name]!" ("grin", "narrow", "base", "mid", cheeks="blush") + lun "Oh, thank you [name_genie_luna]!" ("grin", "narrow", "base", "mid", cheeks="blush") lun "I knew I could count on you!" ("grin", "closed", "base", "mid", cheeks="blush") gen "Certainly..." ("grin", xpos="far_left", ypos="head") - gen "But first things first...{w=0.4} I need something from you, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "But first things first...{w=0.4} I need something from you, [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Something from me?" ("soft", "narrow", "raised", "mid", cheeks="blush") gen "Yes, I need a promise." ("base", xpos="far_left", ypos="head") lun "Oh..." ("angry", "base", "base", "mid", cheeks="blush") lun "Alright then!" ("soft", "base", "base", "mid", cheeks="blush") gen "I haven't even told you what it is yet." ("base", xpos="far_left", ypos="head") - lun "Don't worry [lun_genie_name], I trust you!" ("grin", "narrow", "base", "mid", cheeks="blush") + lun "Don't worry [name_genie_luna], I trust you!" ("grin", "narrow", "base", "mid", cheeks="blush") gen "If we're to be able to have you expel these spurts successfully, then you're going to have to venture into a completely new venue of magic..." ("base", xpos="far_left", ypos="head") lun "New venue of magic..." ("angry", "base", "raised", "mid", cheeks="blush") - lun "I'm not sure I understand, [lun_genie_name]." ("soft", "narrow", "base", "mid", cheeks="blush") + lun "I'm not sure I understand, [name_genie_luna]." ("soft", "narrow", "base", "mid", cheeks="blush") gen "As you know... These techniques are untested and go beyond normal boundaries of magical conventions." ("base", xpos="far_left", ypos="head") lun "Right." ("soft", "narrow", "base", "downL", cheeks="blush") gen "It's not the type of magic where you'll have a use for a wand..." ("base", xpos="far_left", ypos="head") @@ -335,21 +335,21 @@ label ll_pf_inspect_T2_E1_intro: lun "*Nngh*...{w=0.4} Alright then." ("clench", "closed", "base", "downL", cheeks="blush") lun "I solemnly swear that I will tell no one what happens within these hallowed walls..." ("mad", "closed", "base", "mid", cheeks="blush") gen "Fantastic!" ("base", xpos="far_left", ypos="head") - lun "So, can we please try your techniques, [lun_genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") - gen "Another time, [luna_name]... I'll need to recharge--{w=0.4} *Err*...{w=0.4} Contain these spurts first." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]..." ("clench", "base", "base", "mid", cheeks="blush") #Looks down blushing + lun "So, can we please try your techniques, [name_genie_luna]?" ("angry", "narrow", "base", "mid", cheeks="blush") + gen "Another time, [name_luna_genie]... I'll need to recharge--{w=0.4} *Err*...{w=0.4} Contain these spurts first." ("base", xpos="far_left", ypos="head") + lun "But [name_genie_luna]..." ("clench", "base", "base", "mid", cheeks="blush") #Looks down blushing gen "..." ("base", xpos="far_left", ypos="head") lun "Alright..." ("upset", "base", "base", "downL", cheeks="blush") - gen "Now- Now... This is a good thing, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Now- Now... This is a good thing, [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "Remember what we've learned... The more excited and sensitive you feel, the easier it'll be to spurt...{w=0.3} *Err*...{w=0.4} Expel the spurts!" ("base", xpos="far_left", ypos="head") lun "Oh, that is true!" ("soft", "base", "base", "mid") gen "Now, until next time... I want you to do your best to not suppress that feeling." ("base", xpos="far_left", ypos="head") gen "Embrace it...{w=0.4} Let it flow over you." ("base", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]." ("base", "base", "base", "mid") + lun "Yes, [name_genie_luna]." ("base", "base", "base", "mid") gen "Just make sure not to touch yourself." ("base", xpos="far_left", ypos="head") gen "That will have to wait until I can assist you." ("base", xpos="far_left", ypos="head") lun "Alright... I'll try..." ("mad", "narrow", "base", "downL") - gen "Trying won't be enough, [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "Trying won't be enough, [name_luna_genie]..." ("base", xpos="far_left", ypos="head") gen "Don't...{w=0.4} Touch...{w=0.4} Yourself..." ("base", xpos="far_left", ypos="head") lun "Okay, I won't!" ("angry", "base", "base", "mid", cheeks="blush") gen "Good...{w=0.3} Then I believe we're done here... For now at least." ("base", xpos="far_left", ypos="head") @@ -372,14 +372,14 @@ label ll_pf_inspect_T2_E1_intro: pause .2 if game.daytime: - gen "You better head back to class, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "You better head back to class, [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Okay." ("open", "base", "base", "mid") - lun "Good day then, [lun_genie_name]!" ("base", "base", "base", "mid") + lun "Good day then, [name_genie_luna]!" ("base", "base", "base", "mid") else: gen "Now, you better head off to bed." ("base", xpos="far_left", ypos="head") lun "Okay." ("open", "base", "base", "mid") - lun "Good night, [lun_genie_name]!" ("base", "base", "base", "mid") - gen "Good night, [luna_name]." ("base", xpos="far_left", ypos="head") + lun "Good night, [name_genie_luna]!" ("base", "base", "base", "mid") + gen "Good night, [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -415,7 +415,7 @@ label ll_pf_inspect_T2_E2_intro: with d3 pause .5 - gen "[luna_name]!" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]!" ("base", xpos="far_left", ypos="head") lun "..." ("angry", "narrow", "base", "down") # looks up at genie gen "Now that's the kind of self determination I've been looking for!" ("grin", xpos="far_left", ypos="head") gen "Check out those tits!" ("grin", xpos="far_left", ypos="head") @@ -437,16 +437,16 @@ label ll_pf_inspect_T2_E2_intro: gen "And that pussy... What I'd do to stick my cock in--" ("grin", xpos="far_left", ypos="head") gen "*Err*..." ("angry", xpos="far_left", ypos="head") gen "I mean I can't wait to--" ("angry", xpos="far_left", ypos="head") - lun "Please [lun_genie_name], they've been bothering me constantly..." ("angry", "narrow", "worried", "mid", cheeks="blush") + lun "Please [name_genie_luna], they've been bothering me constantly..." ("angry", "narrow", "worried", "mid", cheeks="blush") gen "(Oh good, she wasn't listening...)" ("base", xpos="far_left", ypos="head") gen "Well, I hope you've followed my instructions, and that you haven't touched yourself..." ("base", xpos="far_left", ypos="head") - lun "I...{w=0.4} I haven't, [lun_genie_name]!" ("soft", "happyCl", "base", "mid", cheeks="blush") + lun "I...{w=0.4} I haven't, [name_genie_luna]!" ("soft", "happyCl", "base", "mid", cheeks="blush") call nar(">Luna grinds her legs together once more, and you notice a wet streak beginning to run down her leg.") gen "Good girl..." ("base", xpos="far_left", ypos="head") gen "Then come up to me so we can deal with those spurts, once and for all." ("base", xpos="far_left", ypos="head") - lun "Thank you [lun_genie_name]..." ("angry", "narrow", "base", "mid", cheeks="blush") + lun "Thank you [name_genie_luna]..." ("angry", "narrow", "base", "mid", cheeks="blush") #Luna quickly walks up towards desk, fades to black call lun_walk("desk", "base", speed=1.75) @@ -464,7 +464,7 @@ label ll_pf_inspect_T2_E2_intro: call nar(">You feel your cock harden slightly beneath your robes, almost at the verge of pressing up in between the girl's cheeks.") gen "*Ahem*...{w=0.4} So...{w} The sensitive areas we discussed previously." ("base", xpos="far_left", ypos="head") lun "*Mmm*..." ("soft", "closed", "low", "mid", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=dissolve) - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "(His breath on the back of my neck... It's making me all tingly again...)" ("soft", "closed", "worried", "mid", cheeks="blush") gen "Luna?" ("base", xpos="far_left", ypos="head") gen "I guess we'll start with your breasts then..." ("grin", xpos="far_left", ypos="head") @@ -488,17 +488,17 @@ label ll_pf_inspect_T2_E2_intro: call nar(">You begin kneading Luna's breasts... Her nipples firmly locked between your fingers.") lun "*Ah*..." ("open", "happyCl", "low", "mid", cheeks="blush") - lun "[lun_genie_name]...{w=0.4} I think it's working...{w=0.4} I feel a lot more sensitive than before..." ("soft", "happyCl", "base", "mid", cheeks="blush") + lun "[name_genie_luna]...{w=0.4} I think it's working...{w=0.4} I feel a lot more sensitive than before..." ("soft", "happyCl", "base", "mid", cheeks="blush") gen "Good...{w=0.4} That means the spurts are building up." ("base", xpos="far_left", ypos="head") - lun "*Ah*...{w=0.4} Finally...{w=0.4} Keep going, [lun_genie_name]..." ("angry", "happyCl", "base", "stare", cheeks="blush") + lun "*Ah*...{w=0.4} Finally...{w=0.4} Keep going, [name_genie_luna]..." ("angry", "happyCl", "base", "stare", cheeks="blush") call nar(">As you continue, Luna tightens her thighs around your legs, and subconsciously pushes her ass back towards your abdomen.") call nar(">Her cheeks lightly grace your hardening cock, and as they do, the tip of your cock manages to wiggle its way out of your robes.") - lun "*Mmm*...{w=0.4} [lun_genie_name]..." ("base", "closed", "base", "mid", cheeks="blush") - gen "You're doing a great job [luna_name]..." ("base", xpos="far_left", ypos="head") + lun "*Mmm*...{w=0.4} [name_genie_luna]..." ("base", "closed", "base", "mid", cheeks="blush") + gen "You're doing a great job [name_luna_genie]..." ("base", xpos="far_left", ypos="head") gen "Make sure to keep focusing on that feeling." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name], I think I feel the wrackspurts--" ("mad", "closed", "annoyed", "mid", cheeks="blush") + lun "But [name_genie_luna], I think I feel the wrackspurts--" ("mad", "closed", "annoyed", "mid", cheeks="blush") call nar(">You stop your kneading and give her another squeeze, just slightly harder than previously.") @@ -512,12 +512,12 @@ label ll_pf_inspect_T2_E2_intro: lun "*Ah*...{w=0.4} Yes, it definitely feels a lot more intense than...{w=0.4} *Mmm*..." ("open", "closed", "base", "mid", cheeks="blush") lun "But I'm not feeling that--{w=0.2} *Ah*...{w=0.4} Relief you mentioned..." ("mad", "closed", "base", "mid", cheeks="blush") - lun "My body still feels as if--{w=0.2} *Ah*...{w=0.4} As if I'm on fire, [lun_genie_name]..." ("angry", "happyCl", "base", "mid", cheeks="blush") + lun "My body still feels as if--{w=0.2} *Ah*...{w=0.4} As if I'm on fire, [name_genie_luna]..." ("angry", "happyCl", "base", "mid", cheeks="blush") call nar(">Luna gives up to the sensation, and starts rubbing her ass against you... The tip of your cock sliding between her ass-cheeks with each thrust.") gen "(If this keeps going, then this bitch in heat will make me bust before she does...)" ("angry", xpos="far_left", ypos="head") - lun "It think something is happening...{w=0.4} I feel woozy, [lun_genie_name]..." ("angry", "happyCl", "low", "mid", cheeks="blush") + lun "It think something is happening...{w=0.4} I feel woozy, [name_genie_luna]..." ("angry", "happyCl", "low", "mid", cheeks="blush") call lun_chibi_scene("inspect_lean_grope_breasts_naked") call nar(">Luna slumps forward slightly...{w=0.4} Her ass-cheeks, now fully embracing the bottom of your shaft.") @@ -547,9 +547,9 @@ label ll_pf_inspect_T2_E2_intro: call nar(">Your semen which reached all the way up onto her hair slowly begins sliding down her back.") gen "*Ah*...{w=0.4} *Ah*...{w=0.4} *Ah*..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name], I think...{w=0.4} I feel a bit faint..." ("mad", "narrow", "low", "down", cheeks="blush") + lun "[name_genie_luna], I think...{w=0.4} I feel a bit faint..." ("mad", "narrow", "low", "down", cheeks="blush") gen "*Ah*...{w=0.4} No, you just need to--{w=0.2} *Ah*...{w=0.4} To push through--" ("base", xpos="far_left", ypos="head") - lun "No [lun_genie_name]...{w=0.4} It's as if a chill is going down my spine...{w=0.4} It doesn't feel right." ("clench", "wide", "base", "stare", cheeks="blush") + lun "No [name_genie_luna]...{w=0.4} It's as if a chill is going down my spine...{w=0.4} It doesn't feel right." ("clench", "wide", "base", "stare", cheeks="blush") lun "It's nowhere near the feeling of relief that you described..." ("disgust", "narrow", "base", "stare", cheeks="blush") gen "*Err*...{w=0.4} Well I--" ("base", xpos="far_left", ypos="head") lun "I think I need to--" ("disgust", "narrow", "base", "down", cheeks="blush") @@ -575,22 +575,22 @@ label ll_pf_inspect_T2_E2_intro: gen "(Good job me...{w=0.4} I have royally fucked it up this time.)" ("base", xpos="far_left", ypos="head") gen "Look, accidents happen to the best of--" ("base", xpos="far_left", ypos="head") - lun "I'm sorry [lun_genie_name]!" ("angry", "narrow", "worried", "mid", xpos="base", ypos="base", flip=False, trans=dissolve) + lun "I'm sorry [name_genie_luna]!" ("angry", "narrow", "worried", "mid", xpos="base", ypos="base", flip=False, trans=dissolve) gen "..." ("angry", xpos="far_left", ypos="head") lun "You were right..." ("upset", "narrow", "worried", "down") lun "I guess I wasn't ready..." ("open", "closed", "worried", "down") gen "What are you--" ("base", xpos="far_left", ypos="head") lun "I was so sure that we'd be able to do it..." ("angry", "narrow", "worried", "down") - gen "*Err*...{w=0.3} Do \"it\", [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "*Err*...{w=0.3} Do \"it\", [name_luna_genie]?" ("base", xpos="far_left", ypos="head") - lun "Cum, [lun_genie_name]..." ("soft", "narrow", "worried", "mid") + lun "Cum, [name_genie_luna]..." ("soft", "narrow", "worried", "mid") gen "Oh!" ("base", xpos="far_left", ypos="head") gen "Well it was your first time...{w=0.3} It's not that uncommon for it to end prematurely..." ("base", xpos="far_left", ypos="head") - lun "It's not, [lun_genie_name]?" ("angry", "base", "worried", "stare") + lun "It's not, [name_genie_luna]?" ("angry", "base", "worried", "stare") gen "Yes...{w=0.3} Actually it's very...{w=0.3} Very common..." ("base", xpos="far_left", ypos="head") gen "I wasn't expecting you to work it--{w=0.2} *Err*...{w=0.3} For it to work the first time!" ("base", xpos="far_left", ypos="head") gen "We'll just have to try it again some other time." ("base", xpos="far_left", ypos="head") - lun "So you're not disappointed in me [lun_genie_name]?" ("annoyed", "narrow", "worried", "mid") #Looks down + lun "So you're not disappointed in me [name_genie_luna]?" ("annoyed", "narrow", "worried", "mid") #Looks down gen "Of course not." ("base", xpos="far_left", ypos="head") gen "(Quite the opposite...)" ("base", xpos="far_left", ypos="head") lun "Oh...{w=0.3} Okay." ("normal", "narrow", "worried", "down") #Looks down @@ -599,23 +599,23 @@ label ll_pf_inspect_T2_E2_intro: call nar(">Luna gives off a hopeful smile whilst still staring at her feet.") call nar(">After a couple of seconds, she looks back up at you with a confused expression across her face.") - lun "[lun_genie_name]...{w=0.3} What was that cold feeling going down my spine?" ("upset", "narrow", "base", "mid") + lun "[name_genie_luna]...{w=0.3} What was that cold feeling going down my spine?" ("upset", "narrow", "base", "mid") gen "Oh...{w=0.3} That." ("angry", xpos="far_left", ypos="head") - gen "*Err*...{w=0.3} I wouldn't worry about that [luna_name], it happens sometimes... Your body can do all sorts of things when you're moments away from spurting." ("angry", xpos="far_left", ypos="head") - lun "So we actually almost did it, [lun_genie_name]?" ("clench", "narrow", "base", "mid") + gen "*Err*...{w=0.3} I wouldn't worry about that [name_luna_genie], it happens sometimes... Your body can do all sorts of things when you're moments away from spurting." ("angry", xpos="far_left", ypos="head") + lun "So we actually almost did it, [name_genie_luna]?" ("clench", "narrow", "base", "mid") gen "We almost did \"it\" alright..." ("base", xpos="far_left", ypos="head") lun "*Aww*...{w=0.3} Blithering Humdinger..." ("upset", "narrow", "annoyed", "downL") gen "I'll give you some more pointers next time...{w=0.3} I'm sure we'll get there." ("base", xpos="far_left", ypos="head") - lun "Okay...{w=0.3} Thank you [lun_genie_name]!" ("base", "narrow", "base", "mid") #looks at you smiling + lun "Okay...{w=0.3} Thank you [name_genie_luna]!" ("base", "narrow", "base", "mid") #looks at you smiling if game.daytime: - lun "If I may, then I'll head back to class for today, [lun_genie_name]." ("soft", "base", "base", "R") - gen "Certainly, [luna_name]." ("base", xpos="far_left", ypos="head") + lun "If I may, then I'll head back to class for today, [name_genie_luna]." ("soft", "base", "base", "R") + gen "Certainly, [name_luna_genie]." ("base", xpos="far_left", ypos="head") else: gen "Now you best be off to bed." ("base", xpos="far_left", ypos="head") - lun "Of course [lun_genie_name]." ("soft", "base", "base", "R") + lun "Of course [name_genie_luna]." ("soft", "base", "base", "R") lun "Good night then..." ("base", "base", "base", "mid") - gen "Good night [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Good night [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk("door") lun "(Wait a second...{w=0.3} The thing I felt on my back...)" ("soft", "narrow", "base", "downL", cheeks="blush", xpos="base", ypos="base", flip=True, trans=dissolve) @@ -626,8 +626,8 @@ label ll_pf_inspect_T2_E2_intro: call lun_chibi(flip=False) - gen "Yes...{w=0.3} Was there something else [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Oh...{w=0.3} No that's all, [lun_genie_name]!" ("angry", "narrow", "base", "down", cheeks="blush", xpos="base", ypos="base", flip=False, trans=dissolve) + gen "Yes...{w=0.3} Was there something else [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Oh...{w=0.3} No that's all, [name_genie_luna]!" ("angry", "narrow", "base", "down", cheeks="blush", xpos="base", ypos="base", flip=False, trans=dissolve) hide luna_main @@ -648,7 +648,7 @@ label ll_pf_inspect_T2_E2_intro: label ll_pf_inspect_T2_E3_intro: gen "Ready for another attempt?" ("base", xpos="far_left", ypos="head") - lun "I...{w=0.3} Yes [lun_genie_name], I believe so..." ("open", "narrow", "base", "downL") + lun "I...{w=0.3} Yes [name_genie_luna], I believe so..." ("open", "narrow", "base", "downL") #Luna walks towards desk and it fades to black call lun_walk("desk") @@ -664,7 +664,7 @@ label ll_pf_inspect_T2_E3_intro: hide screen blkfade with d5 - gen "*Err*...{w=0.3} I think you've forgotten something [luna_name]." ("base", xpos="far_left", ypos="head") + gen "*Err*...{w=0.3} I think you've forgotten something [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "*Huh*?" ("soft", "narrow", "base", "mid", xpos="mid", ypos="base", flip=True, trans=dissolve) if luna.is_any_worn("top", "bottom", "robe"): @@ -674,28 +674,28 @@ label ll_pf_inspect_T2_E3_intro: lun "Oh...{w=0.3} Right..." ("angry", "narrow", "base", "down") gen "You seem awfully distracted today." ("base", xpos="far_left", ypos="head") - lun "*Ehm*...{w=0.3} To tell you the truth...{w=0.3} I'm a bit worried that it's not going to work again, [lun_genie_name]." ("open", "narrow", "base", "downL") + lun "*Ehm*...{w=0.3} To tell you the truth...{w=0.3} I'm a bit worried that it's not going to work again, [name_genie_luna]." ("open", "narrow", "base", "downL") gen "Now, I wouldn't worry about that...{w=0.3} I'm confident it will work this time." ("base", xpos="far_left", ypos="head") - lun "But how can you be so sure, [lun_genie_name]?" ("mad", "narrow", "base", "mid") + lun "But how can you be so sure, [name_genie_luna]?" ("mad", "narrow", "base", "mid") lun "Maybe it's different for us women, maybe we aren't able to expel the wrackspurts like you men do." ("angry", "narrow", "base", "mid") gen "I'm quite certain that the process isn't too dissimilar...{w=0.3} I'm confident that with my help--" ("base", xpos="far_left", ypos="head") - lun "But {i}how{/i} do you know, [lun_genie_name]?" ("angry", "narrow", "base", "mid") - gen "Just trust me on this one [luna_name]." ("base", xpos="far_left", ypos="head") + lun "But {i}how{/i} do you know, [name_genie_luna]?" ("angry", "narrow", "base", "mid") + gen "Just trust me on this one [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "*Hmm*..." ("upset", "narrow", "base", "downL") gen "(She doesn't seem convinced.)" ("base", xpos="far_left", ypos="head") gen "(Oh, wait...{w=0.3} I know!)" ("grin", xpos="far_left", ypos="head") - gen "*Ahem*...{w=0.3} [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]?" ("upset", "base", "base", "mid") + gen "*Ahem*...{w=0.3} [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Yes [name_genie_luna]?" ("upset", "base", "base", "mid") gen "Tell me...{w=0.3} How were those spratters described in your father's paper again?" ("base", xpos="far_left", ypos="head") lun "Let me think.{w=0.5} They're invisible creatures that enter inside your ears and make your brain go all fuzzy." ("angry", "base", "base", "mid") gen "And...{w=0.3} Wasn't there an instruction on how to expel them?" ("base", xpos="far_left", ypos="head") lun "Why yes, by thinking positively..." ("soft", "narrow", "base", "mid") - lun "But that's not working, [lun_genie_name]...{w=0.3} It isn't my brain that's getting all fuzzy because of them..." ("clench", "narrow", "base", "mid") + lun "But that's not working, [name_genie_luna]...{w=0.3} It isn't my brain that's getting all fuzzy because of them..." ("clench", "narrow", "base", "mid") gen "Then tell me...{w=0.3} What else have we learned about them thus far?" ("base", xpos="far_left", ypos="head") lun "*Uhm*..." ("upset", "base", "base", "downR") lun "We have learned that you can lure them out to a particularly sensitive body area, through positive thoughts. Then, you need to rub that spot energetically to finally expel them..." ("angry", "narrow", "base", "down") - lun "But we already have tried that [lun_genie_name], and it didn't work!" ("annoyed", "narrow", "base", "R") + lun "But we already have tried that [name_genie_luna], and it didn't work!" ("annoyed", "narrow", "base", "R") gen "I managed to do it by myself...{w=0.3} So you must have done something wrong..." ("base", xpos="far_left", ypos="head") lun "*Hmm*..." ("upset", "narrow", "base", "downL") gen "(Putting the pieces together...{w=0.3} And...)" ("base", xpos="far_left", ypos="head") @@ -706,9 +706,9 @@ label ll_pf_inspect_T2_E3_intro: gen "Ignore intrusive thoughts that may pop into your head, and just focus on your body, on how it feels..." ("base", xpos="far_left", ypos="head") gen "Let the sensations engulf you completely, until your mind is clear..." ("base", xpos="far_left", ypos="head") gen "Leave the rest to the fate..." ("base", xpos="far_left", ypos="head") - lun "That's smart, [lun_genie_name], maybe I should try that." ("crooked_smile", "narrow", "base", "mid") + lun "That's smart, [name_genie_luna], maybe I should try that." ("crooked_smile", "narrow", "base", "mid") gen "Now then... Ready for another try?" ("base", xpos="far_left", ypos="head") - lun "Yes, I'm ready [lun_genie_name]!" ("base", "base", "base", "mid") + lun "Yes, I'm ready [name_genie_luna]!" ("base", "base", "base", "mid") if luna.is_any_worn("robe", "top", "bottom", "accessory"): gen "Lets get you out of those clothes first, shall we..." ("base", xpos="far_left", ypos="head") @@ -722,8 +722,8 @@ label ll_pf_inspect_T2_E3_intro: if luna.is_any_worn("robe", "top", "bottom", "accessory"): call nar(">Luna shuffles around for a bit, attempting to get out of her clothing. The limited space between you and the desk is making it somewhat difficult.") - lun "It's a bit cramped in here, [lun_genie_name]...{w=0.4} Should I scoot out and--" ("base", "base", "base", "mid") - gen "No, that won't be necessary, [luna_name]...{w=0.4} Let me help you." + lun "It's a bit cramped in here, [name_genie_luna]...{w=0.4} Should I scoot out and--" ("base", "base", "base", "mid") + gen "No, that won't be necessary, [name_luna_genie]...{w=0.4} Let me help you." if luna.is_worn("robe"): call nar(">You unclasp Luna's outerwear and let it drop to the ground behind her.") @@ -739,8 +739,8 @@ label ll_pf_inspect_T2_E3_intro: call nar(">You unhook Luna's bra with ease, and let it drop to the floor, right in front of her.") call nar(">She glances back at you, her cheeks flushed, and a look of surprise painted across her face, caused by your unusual dexterity.") - lun "Have you ever done this before, [lun_genie_name]?" ("base", "base", "base", "mid") - gen "Let's not make this about me, [luna_name]. Free your mind of intrusive thoughts." ("base", xpos="far_left", ypos="head") + lun "Have you ever done this before, [name_genie_luna]?" ("base", "base", "base", "mid") + gen "Let's not make this about me, [name_luna_genie]. Free your mind of intrusive thoughts." ("base", xpos="far_left", ypos="head") lun "Okay, I'll try." ("soft", "base", "base", "mid") if luna.is_worn("bottom", "panties"): @@ -760,8 +760,8 @@ label ll_pf_inspect_T2_E3_intro: call lun_chibi_scene("inspect_idle_naked") with d5 - lun "[lun_genie_name]!" ("clench", "narrow", "base", "downR", cheeks="blush") - gen "Yes, [luna_name]?" ("base", xpos="far_left", ypos="head") + lun "[name_genie_luna]!" ("clench", "narrow", "base", "downR", cheeks="blush") + gen "Yes, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "*Ehm*...{w=0.4} Never mind..." ("soft", "narrow", "base", "down", cheeks="blush") gen "Okay. In that case, let the exorcism commence--." ("base", xpos="far_left", ypos="head") gen "--*Err*, I mean the expulsion." ("angry", xpos="far_left", ypos="head") @@ -771,7 +771,7 @@ label ll_pf_inspect_T2_E3_intro: call nar(">Without hesitation, you reach forward and grab and start fondling Luna's breasts.") call nar(">As she feels your touch, any doubts in Luna's mind are washed away, letting the sensations overtake her.") - lun "*Ah*...{w=0.4} [lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "*Ah*...{w=0.4} [name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") call nar(">You move your attention towards Luna's sensitive areas... Gently sliding your fingers across her nipples, then across the sides of her breasts and back again.") @@ -804,16 +804,16 @@ label ll_pf_inspect_T2_E3_intro: call nar(">A shudder passes through Luna's body from your initial touch.") call nar(">You then begin moving your forefinger up and down her slit with increasing ease, as her pussy becomes wetter and wetter.") - lun "*Ah*...{w=0.4} [lun_genie_name]...{w=0.4}This feels a lot different to you--{w=0.2} *Ah*...{w=0.4} Touching my breasts..." ("open", "wink", "base", "R", cheeks="blush") + lun "*Ah*...{w=0.4} [name_genie_luna]...{w=0.4}This feels a lot different to you--{w=0.2} *Ah*...{w=0.4} Touching my breasts..." ("open", "wink", "base", "R", cheeks="blush") gen "(You ain't seen nothing yet...)" ("base", xpos="far_left", ypos="head") call nar(">As you continue rubbing her, the excitement in her voice gnaws at your steadily decreasing patience...") lun "*Ah*...{w=0.3} *Ah*...{w=0.3} *Ah*..." ("soft", "narrow", "base", "up", cheeks="blush") - gen "Ready, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "Ready, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "" ("soft", "narrow", "base", "up", cheeks="blush") #pleasure pause .8 - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") gen "..." ("base", xpos="far_left", ypos="head") gen "(Fuck it...)" ("base", xpos="far_left", ypos="head") @@ -823,11 +823,11 @@ label ll_pf_inspect_T2_E3_intro: call lun_chibi_scene("inspect_lean_idle_naked") lun "..." ("scream", "wide", "base", "stare", cheeks="blush") #wide eyed - lun "[lun_genie_name]!" ("scream", "base", "base", "mid", cheeks="blush") + lun "[name_genie_luna]!" ("scream", "base", "base", "mid", cheeks="blush") call nar(">As you penetrate Luna with your index finger she clenches her legs together in surprise.") - lun "[lun_genie_name]...{w=0.4} Your finger slipped inside of me..." ("clench", "wide", "base", "mid", cheeks="blush") + lun "[name_genie_luna]...{w=0.4} Your finger slipped inside of me..." ("clench", "wide", "base", "mid", cheeks="blush") gen "I know..." ("base", xpos="far_left", ypos="head") lun "What do you--" ("clench", "narrow", "base", "mid", cheeks="blush") @@ -844,7 +844,7 @@ label ll_pf_inspect_T2_E3_intro: gen "(Never mind then...)" ("grin", xpos="far_left", ypos="head") gen "*Tsk*... Such impatience with the youths these days..." ("grin", xpos="far_left", ypos="head") lun "..." ("base", "narrow", "base", "up", cheeks="blush") #Looks back at you - gen "Very well [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "Very well [name_luna_genie]..." ("base", xpos="far_left", ypos="head") gen "In that case I won't hold back on you." ("base", xpos="far_left", ypos="head") $ renpy.sound.play("sounds/slick_02.ogg") @@ -860,14 +860,14 @@ label ll_pf_inspect_T2_E3_intro: call nar(">Luna now completely lost in pleasure begins shaking slightly, prompting you to pick up the pace even further.") play bg_sounds "sounds/slickloopveryfast.ogg" - lun "[lun_genie_name]...{w=0.3} This... {w=0.3} is...{w=0.3} amazing...{w=0.3} I... {w=0.3} never...{w=0.3} thought--" ("soft", "happyCl", "base", "stare", cheeks="blush") + lun "[name_genie_luna]...{w=0.3} This... {w=0.3} is...{w=0.3} amazing...{w=0.3} I... {w=0.3} never...{w=0.3} thought--" ("soft", "happyCl", "base", "stare", cheeks="blush") gen "Then don't...{w=0.3} Focus on the feeling!" ("angry", xpos="far_left", ypos="head") - lun "*Ah*...{w=0.3} Yes...{w=0.3} [lun_genie_name]." ("soft", "closed", "base", "stare", cheeks="blush") + lun "*Ah*...{w=0.3} Yes...{w=0.3} [name_genie_luna]." ("soft", "closed", "base", "stare", cheeks="blush") lun "*N-n-ngh*!!!" ("grin", "closed", "base", "mid", cheeks="blush") call nar(">Not showing her any mercy, you continue pumping your fingers in and out of her rapidly.") - lun "*Ah*...{w=0.5} [lun_genie_name]...{w=0.4} I think this is it!" ("mad", "narrow", "base", "stare", cheeks="blush") + lun "*Ah*...{w=0.5} [name_genie_luna]...{w=0.4} I think this is it!" ("mad", "narrow", "base", "stare", cheeks="blush") lun "I'm...{w=0.3} *Ah*...{w=0.3} I'm--" ("open_tongue", "narrow", "base", "up", cheeks="blush") gen "Yes girl, let all of it out!" ("angry", xpos="far_left", ypos="head") @@ -909,7 +909,7 @@ label ll_pf_inspect_T2_E3_intro: call nar(">Admiring your work, you watch as a streak of liquid runs down her leg before settling on the floor.") - lun "[lun_genie_name]..." ("base", "base", "base", "mid", cheeks="blush", xpos="base", ypos="base", flip=False, trans=dissolve) + lun "[name_genie_luna]..." ("base", "base", "base", "mid", cheeks="blush", xpos="base", ypos="base", flip=False, trans=dissolve) $ luna.wear("all") @@ -920,7 +920,7 @@ label ll_pf_inspect_T2_E3_intro: hide screen blkfade with d5 - lun "[lun_genie_name], that was incredible!" ("base", "narrow", "base", "mid") + lun "[name_genie_luna], that was incredible!" ("base", "narrow", "base", "mid") lun "Did you see how many Wrackspurts I expelled?" ("crooked_smile", "base", "raised", "mid") gen "Very impressive indeed." ("base", xpos="far_left", ypos="head") lun "I can't believe we finally did it!" ("crooked_smile", "happyCl", "base", "mid") @@ -929,27 +929,27 @@ label ll_pf_inspect_T2_E3_intro: lun "Yes!" ("grin", "base", "base", "mid") lun "So, what next? We've solved it now, right?" ("grin", "base", "raised", "mid") gen "Solved--" ("angry", xpos="far_left", ypos="head") - gen "Now I think you're getting a bit ahead of yourself [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Now I think you're getting a bit ahead of yourself [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "But--" ("angry", "base", "base", "mid") gen "Masturbation is only a temporary solution, so perfecting it is vital... Until I've come up with a more permanent solution that is..." ("base", xpos="far_left", ypos="head") lun "Then I'll practice as soon as I get to my dorm!" ("smile", "narrow", "base", "mid") gen "No!" ("angry", xpos="far_left", ypos="head") gen "I need to watch--{w=0.2} *Err*...{w=0.4} Instruct you so you can alleviate yourself properly and safely." ("base", xpos="far_left", ypos="head") - lun "Oh, of course [lun_genie_name]!" ("mad", "base", "base", "mid") + lun "Oh, of course [name_genie_luna]!" ("mad", "base", "base", "mid") lun "Hopefully the Wrackspurts will leave me alone until then..." ("angry", "narrow", "base", "downL") #blush looking down gen "Hopefully..." ("base", xpos="far_left", ypos="head") gen "(Although I doubt it.)" ("base", xpos="far_left", ypos="head") if game.daytime: - gen "Well then, you've got class to attend [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Well then, you've got class to attend [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "Off you go." ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name], thank you [lun_genie_name]..." ("base", "wink", "base", "mid") + lun "Yes [name_genie_luna], thank you [name_genie_luna]..." ("base", "wink", "base", "mid") else: - gen "Well then, it's getting late so you best head to your dorm [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Well then, it's getting late so you best head to your dorm [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "Off you go." ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]." ("base", "base", "base", "mid") - lun "Good night, [lun_genie_name]." ("base", "wink", "base", "mid") - gen "Good night [luna_name]." ("base", xpos="far_left", ypos="head") + lun "Yes [name_genie_luna]." ("base", "base", "base", "mid") + lun "Good night, [name_genie_luna]." ("base", "wink", "base", "mid") + gen "Good night [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -971,9 +971,9 @@ label ll_pf_inspect_T2_E3_intro: label ll_pf_inspect_T2_E4_repeat: - gen "How are you feeling, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "How are you feeling, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") gen "Have those spratters been bothering you any further?" ("base", xpos="far_left", ypos="head") - lun "I'm feeling a little bit better, [lun_genie_name]." ("soft", "narrow", "low", "down") + lun "I'm feeling a little bit better, [name_genie_luna]." ("soft", "narrow", "low", "down") lun "Although I began feeling them move around again once I was on the way to my dorm, just thinking about our last session." ("upset", "narrow", "base", "downL") gen "Well, that's to be expected." ("base", xpos="far_left", ypos="head") @@ -981,8 +981,8 @@ label ll_pf_inspect_T2_E4_repeat: lun "Alright..." ("soft", "narrow", "base", "downL") lun "I suppose that's not too bad." ("base", "narrow", "base", "down") gen "Good to hear..." ("base", xpos="far_left", ypos="head") - gen "Now then, ready for your treatment, [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]..." ("grin", "base", "base", "mid") + gen "Now then, ready for your treatment, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Yes [name_genie_luna]..." ("grin", "base", "base", "mid") gen "Great, then come here and we'll get started." ("base", xpos="far_left", ypos="head") #Luna walks towards desk and it fades to black @@ -1004,15 +1004,15 @@ label ll_pf_inspect_T2_E4_repeat: call nar(">You grab onto Luna's breasts and begin massaging them.") lun "*Eeek*!!" ("clench", "wide", "base", "stare", xpos="mid", ypos="base", flip=True, trans=dissolve) - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Oh...{w=0.2} Sorry, [lun_genie_name]!" ("angry", "happyCl", "base", "mid") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Oh...{w=0.2} Sorry, [name_genie_luna]!" ("angry", "happyCl", "base", "mid") lun "Your hands are a bit cold." ("angry", "narrow", "base", "stare") gen "Then let's get them warmed up shall we?" ("base", xpos="far_left", ypos="head") call nar(">You spread your fingers apart and drag them across the sides of Luna's nipples, increasing your grip around them with each motion.") lun "*Ah*..." ("soft", "closed", "base", "mid", cheeks="blush") - gen "How's this, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "How's this, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") gen "Feeling any build up yet?" ("base", xpos="far_left", ypos="head") - lun "*Mmm*...{w=0.4} Yes, [lun_genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + lun "*Mmm*...{w=0.4} Yes, [name_genie_luna]..." ("open", "closed", "base", "mid", cheeks="blush") gen "Good..." ("base", xpos="far_left", ypos="head") call nar(">You begin moving your hands in a circular motion, squeezing her breasts together and pulling them apart over and over...") lun "*Mmm*..." ("soft", "closed", "base", "mid", cheeks="blush") @@ -1024,7 +1024,7 @@ label ll_pf_inspect_T2_E4_repeat: lun "" ("base", "closed", "base", "mid", cheeks="blush") gen "*Hmm*...{w=0.4} Looks like someone's eager..." ("base", xpos="far_left", ypos="head") - gen "Very well then, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Very well then, [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_chibi_scene("inspect_lean_grope_vagina_naked") lun "Ooooh..." ("grin", "narrow", "base", "up", cheeks="blush") @@ -1041,7 +1041,7 @@ label ll_pf_inspect_T2_E4_repeat: lun "{heart}*Ngh*{heart}..." ("crooked_smile", "narrow", "base", "up", cheeks="blush") gen "There we go..." ("base", xpos="far_left", ypos="head") lun "You're...{w=0.4} They're inside me again..." ("grin", "narrow", "base", "up", cheeks="blush") - gen "Yes indeed [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "Yes indeed [name_luna_genie]..." ("base", xpos="far_left", ypos="head") gen "And two fingers already...{w=0.4} Looks like you're getting better at this..." ("base", xpos="far_left", ypos="head") lun "Oh...{w=0.4} Thank--" ("soft", "narrow", "base", "stare", cheeks="blush") @@ -1051,9 +1051,9 @@ label ll_pf_inspect_T2_E4_repeat: call nar(">You begin pumping your fingers quickly into Luna's pussy...") lun "*Ah*!!!" ("clench", "base", "base", "stare", cheeks="blush") call nar(">Taken by surprise, Luna clenches her thighs, which only strengthens her grip around your fingers...") - lun "*Ah*... [lun_genie_name]!" ("angry", "narrow", "base", "R", cheeks="blush") - gen "That's it [luna_name]...{w=0.4} Keep that grip steady, and this will be over before you know it..." ("base", xpos="far_left", ypos="head") - lun "*Ah*...{w=0.3} *Ah*...{w=0.3} But [lun_genie_name]--" ("open", "happyCl", "base", "mid", cheeks="blush") + lun "*Ah*... [name_genie_luna]!" ("angry", "narrow", "base", "R", cheeks="blush") + gen "That's it [name_luna_genie]...{w=0.4} Keep that grip steady, and this will be over before you know it..." ("base", xpos="far_left", ypos="head") + lun "*Ah*...{w=0.3} *Ah*...{w=0.3} But [name_genie_luna]--" ("open", "happyCl", "base", "mid", cheeks="blush") call nar(">As you keep pumping your fingers repeatedly inside of Luna, you feel her grip loosen slightly...") lun "I...{w=0.4} I..." ("upset", "happyCl", "base", "mid", cheeks="blush") lun "{size=+5}I don't want it to be over!{/size}" ("scream", "narrow", "worried", "stare", cheeks="blush") @@ -1109,13 +1109,13 @@ label ll_pf_inspect_T2_E4_repeat: hide screen blkfade with d5 - gen "Well done, [luna_name]!" ("base", xpos="far_left", ypos="head") + gen "Well done, [name_luna_genie]!" ("base", xpos="far_left", ypos="head") gen "Looks like you managed to spurt even more than last time!" ("base", xpos="far_left", ypos="head") - lun "*Mmm*...{w=0.4} Thank you, [lun_genie_name]." ("base", "closed", "base", "mid", cheeks="blush") + lun "*Mmm*...{w=0.4} Thank you, [name_genie_luna]." ("base", "closed", "base", "mid", cheeks="blush") gen "Holding them in for as long as possible was very clever!" ("base", xpos="far_left", ypos="head") lun "Oh-- I...{w=0.3} Yes, thank you!" ("soft", "narrow", "base", "downR", cheeks="blush") - gen "Are you okay, [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Oh, yes [lun_genie_name]...{w=0.4} I'm...{w=0.3} I feel great!" ("crooked_smile", "narrow", "base", "mid", cheeks="blush") + gen "Are you okay, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Oh, yes [name_genie_luna]...{w=0.4} I'm...{w=0.3} I feel great!" ("crooked_smile", "narrow", "base", "mid", cheeks="blush") gen "You look exhausted, you better get some rest..." ("base", xpos="far_left", ypos="head") if game.daytime: @@ -1124,13 +1124,13 @@ label ll_pf_inspect_T2_E4_repeat: gen "Maybe I should go a bit easier on you during the--" ("base", xpos="far_left", ypos="head") lun "No, it's fine!" ("mad", "narrow", "base", "mid", cheeks="blush") gen "..." ("base", xpos="far_left", ypos="head") - lun "I mean... I'll be okay [lun_genie_name]..." ("soft", "narrow", "base", "mid", cheeks="blush") + lun "I mean... I'll be okay [name_genie_luna]..." ("soft", "narrow", "base", "mid", cheeks="blush") lun "Off I go then..." ("open", "narrow", "base", "R", cheeks="blush") else: gen "Off you go." ("base", xpos="far_left", ypos="head") lun "Alright." ("soft", "narrow", "base", "R", cheeks="blush") - lun "Good night, [lun_genie_name]." ("base", "narrow", "base", "mid", cheeks="blush") - gen "Good night [luna_name]." ("base", xpos="far_left", ypos="head") + lun "Good night, [name_genie_luna]." ("base", "narrow", "base", "mid", cheeks="blush") + gen "Good night [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -1155,11 +1155,11 @@ label ll_pf_inspect_T3_E1_repeat: with d5 gen "You didn't even let me finish my sentence..." ("base", xpos="far_left", ypos="head") - lun "Oh...{w=0.4} Was this not what you meant, [lun_genie_name]?" ("angry", "base", "base", "R", xpos="mid", ypos="base", flip=True, trans=dissolve) + lun "Oh...{w=0.4} Was this not what you meant, [name_genie_luna]?" ("angry", "base", "base", "R", xpos="mid", ypos="base", flip=True, trans=dissolve) gen "That's not the...{w} Well I suppose..." ("base", xpos="far_left", ypos="head") - lun "I hope I'm not too much of a bother, [lun_genie_name]..." ("soft", "narrow", "worried", "downL") + lun "I hope I'm not too much of a bother, [name_genie_luna]..." ("soft", "narrow", "worried", "downL") lun "I know your time is valuable." ("open", "narrow", "base", "downL") - gen "Assisting my students is part of my job, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Assisting my students is part of my job, [name_luna_genie]." ("base", xpos="far_left", ypos="head") if game.daytime: gen "Even if that meant treating you for an entire day, then so be it..." ("base", xpos="far_left", ypos="head") @@ -1175,7 +1175,7 @@ label ll_pf_inspect_T3_E1_repeat: gen "Good to hear." ("base", xpos="far_left", ypos="head") gen "(I've got enough wankers cramp as it is...)" ("base", xpos="far_left", ypos="head") gen "So, are you ready to begin your treatment?" ("base", xpos="far_left", ypos="head") - lun "Yes... Please go ahead [lun_genie_name]..." ("base", "base", "base", "mid") + lun "Yes... Please go ahead [name_genie_luna]..." ("base", "base", "base", "mid") gen "Then just relax, and let me take care of it." ("base", xpos="far_left", ypos="head") @@ -1192,21 +1192,21 @@ label ll_pf_inspect_T3_E1_repeat: "-Pinch her again-": call nar(">You quickly pinch Luna's nipples again, and she jumps slightly by surprise.") lun "Ow, Ow, Ow!!" ("clench", "happyCl", "base", "mid", cheeks="blush") - lun "[lun_genie_name]!" ("mad", "narrow", "worried", "R", cheeks="blush") + lun "[name_genie_luna]!" ("mad", "narrow", "worried", "R", cheeks="blush") gen "Just give it a moment... It will feel better soon..." ("base", xpos="far_left", ypos="head") lun "Are you--" ("angry", "closed", "base", "down", cheeks="blush") call nar(">You pinch her again, even harder this time, and Luna suddenly jerks her body forward.") call lun_chibi_scene("inspect_lean_idle_naked") - lun "Stop it [lun_genie_name]...{w=0.4} I can't..." ("mad", "happyCl", "worried", "mid", cheeks="blush") + lun "Stop it [name_genie_luna]...{w=0.4} I can't..." ("mad", "happyCl", "worried", "mid", cheeks="blush") call nar(">As you let go of her tits, Luna's words trail off slightly...") - gen "Can't what, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "Can't what, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "That's odd..." ("mad", "narrow", "base", "down", cheeks="blush") lun "It feels kind of nice, after you let go of them." ("soft", "narrow", "base", "down", cheeks="blush") gen "More sensitive?" ("base", xpos="far_left", ypos="head") lun "Yes..." ("soft", "narrow", "base", "mid", cheeks="blush") - lun "Do it again [lun_genie_name]!" ("angry", "base", "base", "mid", cheeks="blush") + lun "Do it again [name_genie_luna]!" ("angry", "base", "base", "mid", cheeks="blush") gen "Again?" ("base", xpos="far_left", ypos="head") lun "Yes, again!" ("angry", "base", "base", "R", cheeks="blush") gen "If you say so..." ("base", xpos="far_left", ypos="head") @@ -1220,7 +1220,7 @@ label ll_pf_inspect_T3_E1_repeat: lun "..." ("base", "closed", "base", "mid", cheeks="blush") gen "(Am I just giving her a massage now?)" ("base", xpos="far_left", ypos="head") "-Don't-": - lun "Please be careful [lun_genie_name]..." ("angry", "narrow", "base", "mid", cheeks="blush") + lun "Please be careful [name_genie_luna]..." ("angry", "narrow", "base", "mid", cheeks="blush") call nar(">Trying not to give into the temptation, you resume massaging Luna's breasts.") call nar(">Her breathing soon begins slowing down and you feel her previously tense grip around your legs starting to relaxe.") @@ -1237,9 +1237,9 @@ label ll_pf_inspect_T3_E1_repeat: gen "*Err*... Are you--" ("base", xpos="far_left", ypos="head") lun "*Mmm*..." ("base", "closed", "base", "mid", cheeks="blush") - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "..." ("base", "closed", "base", "mid", cheeks="blush") - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") call lun_chibi_scene("inspect_lean_idle_naked") call nar(">You let go of Luna's breasts, and she goes stiff, opening her eyes in confusion.") @@ -1269,7 +1269,7 @@ label ll_pf_inspect_T3_E1_repeat: call lun_chibi_scene("inspect_lean_grope_vagina_naked") call nar(">You begin moving your finger inside Luna's pussy, as if playfully searching for her weak spot.") - lun "*Ah*... What are... What are you doing [lun_genie_name]..." ("grin", "narrow", "base", "up", cheeks="blush") + lun "*Ah*... What are... What are you doing [name_genie_luna]..." ("grin", "narrow", "base", "up", cheeks="blush") gen "Oh... You know... Just looking for something..." ("base", xpos="far_left", ypos="head") lun "*Ah*...{w=0.4} Looking...{w=0.4} *Ah*...{w=0.4} What are you--" ("grin", "narrow", "base", "up", cheeks="blush") @@ -1280,7 +1280,7 @@ label ll_pf_inspect_T3_E1_repeat: play bg_sounds "sounds/slickloopfast.ogg" call nar(">You push another finger inside her, and begin moving them around.") - lun "*Ah*...{w=0.4} [lun_genie_name]..." ("soft", "narrow", "base", "up", cheeks="blush") + lun "*Ah*...{w=0.4} [name_genie_luna]..." ("soft", "narrow", "base", "up", cheeks="blush") gen "*Hmm*... Some lousy friends they are... I still can't find it..." ("base", xpos="far_left", ypos="head") lun "*Ah*...{w=0.3} *Ah*...{w=0.3} Are you...{w=0.3} Are you sure..." ("base", "narrow", "base", "up", cheeks="blush") @@ -1334,20 +1334,20 @@ label ll_pf_inspect_T3_E1_repeat: hide screen blkfade with d5 - gen "How was that, [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "How did you do that [lun_genie_name]?" ("mad", "base", "base", "mid", xpos="base", ypos="base", flip=False, trans=dissolve) + gen "How was that, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "How did you do that [name_genie_luna]?" ("mad", "base", "base", "mid", xpos="base", ypos="base", flip=False, trans=dissolve) gen "Do what?" ("base", xpos="far_left", ypos="head") lun "The thing you did with your thumb." ("angry", "base", "base", "mid") gen "Oh that...{w=0.4} Well I just called in an expert didn't I?" ("base", xpos="far_left", ypos="head") gen "Nice bloke to have at hand isn't he?" ("base", xpos="far_left", ypos="head") lun "Very..." ("base", "narrow", "base", "stare") gen "So, feeling better now?" ("base", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]...{w=0.4} Thank you..." ("base", "base", "base", "mid") + lun "Yes, [name_genie_luna]...{w=0.4} Thank you..." ("base", "base", "base", "mid") if game.daytime: - gen "Then you better make your way to class, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Then you better make your way to class, [name_luna_genie]." ("base", xpos="far_left", ypos="head") else: - gen "Then you best be off to bed, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Then you best be off to bed, [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Okay..." ("soft", "base", "base", "R") lun "Let me know if you want to..." ("open", "narrow", "base", "mid") diff --git a/game/scripts/characters/luna/events/favors/masturbate_for_me.rpy b/game/scripts/characters/luna/events/favors/masturbate_for_me.rpy index 769cdbfa..7efaba27 100644 --- a/game/scripts/characters/luna/events/favors/masturbate_for_me.rpy +++ b/game/scripts/characters/luna/events/favors/masturbate_for_me.rpy @@ -56,21 +56,21 @@ label ll_pf_masturbate: label ll_pf_masturbate_T3_E1_intro: - gen "So, have the wickerspats finally left you alone [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Not at all, [lun_genie_name]... In fact... They've been worse than ever." ("angry", "narrow", "base", "downL", trans=dissolve) + gen "So, have the wickerspats finally left you alone [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Not at all, [name_genie_luna]... In fact... They've been worse than ever." ("angry", "narrow", "base", "downL", trans=dissolve) gen "Really?" ("base", xpos="far_left", ypos="head") call nar(">Luna shifts her thighs together uncomfortably.") lun "Yes..." ("annoyed", "narrow", "base", "mid") #seductive gen "That's unfortunate..." ("base", xpos="far_left", ypos="head") gen "Well in that case I think it's time I teach you how to masturbate." ("base", xpos="far_left", ypos="head") - lun "*Oooh*... I'm finally going to become a master baiter myself, [lun_genie_name]?" ("grin", "base", "raised", "mid") + lun "*Oooh*... I'm finally going to become a master baiter myself, [name_genie_luna]?" ("grin", "base", "raised", "mid") gen "That's right..." ("base", xpos="far_left", ypos="head") lun "Marvellous!" ("smile", "base", "base", "mid") lun "" ("crooked_smile", "narrow", "base", "mid") call nar(">Luna jumps happily on the spot, looking at you expectantly.") gen "Let's get going then shall we..." ("base", xpos="far_left", ypos="head") lun "Thank you so much!" ("crooked_smile", "happyCl", "base", "mid") - gen "No need to thank me, [luna_name], I'm simply doing what is necessary." ("base", xpos="far_left", ypos="head") + gen "No need to thank me, [name_luna_genie], I'm simply doing what is necessary." ("base", xpos="far_left", ypos="head") gen "Now, come stand in front of my desk." ("base", xpos="far_left", ypos="head") hide luna_main @@ -97,7 +97,7 @@ label ll_pf_masturbate_T3_E1_intro: lun "Is here okay?" ("soft", "narrow", "base", "mid") gen "Perfect." gen "I'll have to explain a few things before we get going so pay attention..." - lun "Yes, [lun_genie_name]..." ("base", "base", "base", "mid") + lun "Yes, [name_genie_luna]..." ("base", "base", "base", "mid") call nar(">Luna stares at you intently.") gen "Good... Now--" gen "Remember what we talked about... Locate the affected area then focus positive thoughts onto it.." @@ -109,7 +109,7 @@ label ll_pf_masturbate_T3_E1_intro: gen "Let's try some self-applied massage to start with." lun "A--{w=0.2} Alright." ("soft", "narrow", "base", "down", cheeks="blush") gen "Don't worry, I'll be here to give you some guidance." - lun "Thank you, [lun_genie_name]." ("base", "narrow", "base", "down", cheeks="blush") + lun "Thank you, [name_genie_luna]." ("base", "narrow", "base", "down", cheeks="blush") show screen blkfade @@ -123,11 +123,11 @@ label ll_pf_masturbate_T3_E1_intro: with d3 lun "*Ah*..." ("open", "narrow", "base", "up", cheeks="blush") - gen "Is everything alright, [luna_name]?" - lun "*Ah*...{w=0.3} of course, [lun_genie_name]!" ("soft", "narrow", "base", "stare", cheeks="blush") + gen "Is everything alright, [name_luna_genie]?" + lun "*Ah*...{w=0.3} of course, [name_genie_luna]!" ("soft", "narrow", "base", "stare", cheeks="blush") lun "My fingers are just a bit cold..." ("normal", "narrow", "base", "mid", cheeks="blush") gen "That's fine... Just try rubbing yourself and your fingers will warm up in just a moment." - lun "*Ah*...{w=0.3} Yes [lun_genie_name]..." ("angry", "narrow", "low", "stare", cheeks="blush") + lun "*Ah*...{w=0.3} Yes [name_genie_luna]..." ("angry", "narrow", "low", "stare", cheeks="blush") gen "..." @@ -141,15 +141,15 @@ label ll_pf_masturbate_T3_E1_intro: call nar(">Luna moves her hand around beneath her skirt before stopping again.") lun "It's just..." ("upset", "narrow", "base", "mid", cheeks="blush") lun "As nice as this massage feels..." ("soft", "narrow", "base", "mid", cheeks="blush") - lun "It's not really scratching that same itch, [lun_genie_name]..." ("annoyed", "narrow", "base", "mid", cheeks="blush") + lun "It's not really scratching that same itch, [name_genie_luna]..." ("annoyed", "narrow", "base", "mid", cheeks="blush") gen "I guess I do have that slight magic touch..." gen "*Hmm*..." - lun "Am I doing it wrong, [lun_genie_name]?" ("upset", "narrow", "base", "down", cheeks="blush") + lun "Am I doing it wrong, [name_genie_luna]?" ("upset", "narrow", "base", "down", cheeks="blush") gen "Certainly not, but this might be trickier than I initially thought..." lun "Really?" ("soft", "base", "base", "mid", cheeks="blush") gen "It would seem that those nasty critters are trying to hide!" lun "Hide? But I thought touching myself would lure them--" ("mad", "narrow", "base", "down", cheeks="blush") - gen "Don't worry [luna_name]... As long as you're still feeling that itch then they can't have gone far." + gen "Don't worry [name_luna_genie]... As long as you're still feeling that itch then they can't have gone far." gen "Although this means you'll have to chase them down." lun "Chase them down?" ("angry", "narrow", "base", "down", cheeks="blush") gen "I'll be here to guide you through it of course..." @@ -160,7 +160,7 @@ label ll_pf_masturbate_T3_E1_intro: lun "" ("normal", "closed", "base", "mid", cheeks="blush") #eyes closed call ctc gen "Very good...{w} Now I want you to block out everything else." - lun "Alright, [lun_genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + lun "Alright, [name_genie_luna]..." ("open", "closed", "base", "mid", cheeks="blush") gen "Imagine standing alone in your bedroom..." lun "" ("normal", "closed", "base", "mid", cheeks="blush") call ctc @@ -187,7 +187,7 @@ label ll_pf_masturbate_T3_E1_intro: call ctc call nar(">Luna desperately moves her hand around beneath her skirt.") - lun "I... I think I've lost them again, [lun_genie_name]..." ("angry", "closed", "base", "mid", cheeks="blush") + lun "I... I think I've lost them again, [name_genie_luna]..." ("angry", "closed", "base", "mid", cheeks="blush") gen "Try moving your hand up a bit more..." lun "Up a bit--" ("angry", "closed", "low", "mid", cheeks="blush") @@ -195,13 +195,13 @@ label ll_pf_masturbate_T3_E1_intro: lun "*Mmm*..." ("base", "closed", "base", "mid", cheeks="blush") call nar(">Luna gives off a soft moan under her breath.") gen "(There we go...)" - lun "This... This area is even more itchy, [lun_genie_name]..." ("base", "closed", "low", "mid", cheeks="blush") + lun "This... This area is even more itchy, [name_genie_luna]..." ("base", "closed", "low", "mid", cheeks="blush") gen "Excellent... That means you've managed to chase them down." gen "Just keep your eyes closed and begin gently moving your fingers in a circular motion over the area." lun "Oooh! {heart}" ("grin", "closed", "base", "mid", cheeks="blush") - lun "*Ah*...{w=0.3} Yes...{w=0.3} I think it's working, [lun_genie_name]!" ("grin", "closed", "annoyed", "mid", cheeks="blush") + lun "*Ah*...{w=0.3} Yes...{w=0.3} I think it's working, [name_genie_luna]!" ("grin", "closed", "annoyed", "mid", cheeks="blush") gen "*Shhh*...{w=0.3} Don't speak...{w=0.3} Just focus." lun "" ("grin", "closed", "base", "mid", cheeks="blush") gen "Empty your mind and only think about what makes you feel good..." @@ -209,8 +209,8 @@ label ll_pf_masturbate_T3_E1_intro: lun "" ("soft", "closed", "low", "mid", cheeks="blush") call ctc lun "*Ah*..." ("open", "closed", "base", "mid", cheeks="blush") - lun "[lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") - lun "*Ah*...{w=0.3} [lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "[name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "*Ah*...{w=0.3} [name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") lun "I think..." ("open", "closed", "base", "mid", cheeks="blush") lun "*Ah*..." ("open", "closed", "base", "mid", cheeks="blush") lun "I think I've almost..." ("soft", "closed", "base", "mid", cheeks="blush") @@ -229,10 +229,10 @@ label ll_pf_masturbate_T3_E1_intro: call nar(">Luna now desperately trying to cum, moves her hand even faster.") - lun "*Ah*! I think they're attacking me, [lun_genie_name]!" ("crooked_smile", "base", "base", "up", cheeks="blush") + lun "*Ah*! I think they're attacking me, [name_genie_luna]!" ("crooked_smile", "base", "base", "up", cheeks="blush") lun "I... I can't stop moving my--" ("grin", "happyCl", "base", "mid", cheeks="blush") gen "Keep going, you're doing it!" - lun "*Ah*...{w=0.4} Yes [lun_genie_name]...{heart}" ("crooked_smile", "happyCl", "base", "up", cheeks="blush") + lun "*Ah*...{w=0.4} Yes [name_genie_luna]...{heart}" ("crooked_smile", "happyCl", "base", "up", cheeks="blush") lun "*Ah*...{w=0.4} *Ah*...{w=0.4} *Ah*...{w=0.4}" ("soft", "happyCl", "base", "up", cheeks="blush") lun "*Ngh*... It's... {w=0.3} I'm--" ("grin", "happyCl", "base", "mid", cheeks="blush") @@ -265,34 +265,34 @@ label ll_pf_masturbate_T3_E1_intro: gen "Well, will you look at that... You're a natural..." ("grin", xpos="far_left", ypos="head") gen "So, the {i}wickspots{/i} have left you alone now I take it?" ("base", xpos="far_left", ypos="head") - lun "I...{w=0.4} I believe so, [lun_genie_name]..." ("open", "narrow", "base", "down", cheeks="blush", xpos="mid", ypos="base", trans=dissolve) + lun "I...{w=0.4} I believe so, [name_genie_luna]..." ("open", "narrow", "base", "down", cheeks="blush", xpos="mid", ypos="base", trans=dissolve) lun "At least that nasty itch appears to have gone away." ("base", "narrow", "base", "down", cheeks="blush") gen "Excellent!" ("grin", xpos="far_left", ypos="head") gen "Then my work here is done!" ("base", xpos="far_left", ypos="head") lun "*Oh*..." ("soft", "base", "base", "mid", cheeks="blush") - lun "You want me to leave already, [lun_genie_name]?" ("open", "base", "base", "mid", cheeks="blush") + lun "You want me to leave already, [name_genie_luna]?" ("open", "base", "base", "mid", cheeks="blush") gen "If there's nothing else I can help you with?" ("base", xpos="far_left", ypos="head") lun "*Ehm*...{w=0.4} Well I was just wondering..." ("soft", "narrow", "base", "R", cheeks="blush") - lun "What do I do if the feeling comes back, [lun_genie_name]?" ("angry", "narrow", "base", "mid", cheeks="blush") + lun "What do I do if the feeling comes back, [name_genie_luna]?" ("angry", "narrow", "base", "mid", cheeks="blush") lun "Do I just get rid of them myself from now on?" ("soft", "narrow", "base", "mid", cheeks="blush") gen "Certainly not!" ("base", xpos="far_left", ypos="head") lun "..." ("base", "base", "base", "mid", cheeks="blush") #happy gen "I need to supervise every development until you've mastered the art of masturbation." ("base", xpos="far_left", ypos="head") gen "Preventing this outbreak is now my top priority." ("base", xpos="far_left", ypos="head") - lun "Really? Thank you so much, [lun_genie_name]." ("base", "happyCl", "base", "mid", cheeks="blush") + lun "Really? Thank you so much, [name_genie_luna]." ("base", "happyCl", "base", "mid", cheeks="blush") gen "Certainly." ("base", xpos="far_left", ypos="head") gen "Bestow shall I in you, my teaching of all, young padawan!" ("base", xpos="far_left", ypos="head") lun "Sorry?" ("soft", "base", "base", "mid", cheeks="blush") - lun "I'm not sure exactly what you mean, [lun_genie_name]." ("angry", "narrow", "base", "mid", cheeks="blush") + lun "I'm not sure exactly what you mean, [name_genie_luna]." ("angry", "narrow", "base", "mid", cheeks="blush") gen "Yes, Indeed... You still have more to learn before reaching your true potential..." ("base", xpos="far_left", ypos="head") lun "*Huh*?" ("upset", "narrow", "base", "mid", cheeks="blush") gen "Once you've learned how to control the force I shall bestow on you my saber of light." ("base", xpos="far_left", ypos="head") gen "And as my meta chlorines flow through your body--" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("angry", "base", "base", "mid", cheeks="blush") + lun "[name_genie_luna]?" ("angry", "base", "base", "mid", cheeks="blush") gen "Oh yeah, that's not canon anymore is it..." ("base", xpos="far_left", ypos="head") lun "..." ("annoyed", "base", "base", "mid", cheeks="blush") #Confused gen "..." ("base", xpos="far_left", ypos="head") - gen "That shall do for today, [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "That shall do for today, [name_luna_genie]..." ("base", xpos="far_left", ypos="head") lun "Okay..." ("base", "narrow", "base", "mid", cheeks="blush") gen "Off you pop." ("base", xpos="far_left", ypos="head") lun "Right." ("open", "base", "base", "mid", cheeks="blush") @@ -307,8 +307,8 @@ label ll_pf_masturbate_T3_E1_intro: label ll_pf_masturbate_T3_E2_intro: - gen "[luna_name], tell me how you've been." ("base", xpos="far_left", ypos="head") - lun "I've been okay [lun_genie_name]... But it appears the wrackspurts have come back again..." ("open", "narrow", "base", "down", trans=dissolve) + gen "[name_luna_genie], tell me how you've been." ("base", xpos="far_left", ypos="head") + lun "I've been okay [name_genie_luna]... But it appears the wrackspurts have come back again..." ("open", "narrow", "base", "down", trans=dissolve) gen "Oh no... Such a shame!" ("base", xpos="far_left", ypos="head") lun "Every time I think about the things we've done in here..." ("soft", "narrow", "base", "down") lun "It just makes them feel so much... Stronger..." ("angry", "narrow", "base", "mid") @@ -322,11 +322,11 @@ label ll_pf_masturbate_T3_E2_intro: gen "Yes, and better!" ("base", xpos="far_left", ypos="head") lun "Better, but last time I--" ("angry", "narrow", "base", "stare") gen "Faster! Stronger!" ("base", xpos="far_left", ypos="head") - lun "Oh my... Are you sure I'm ready, [lun_genie_name]?" ("angry", "narrow", "base", "mid") + lun "Oh my... Are you sure I'm ready, [name_genie_luna]?" ("angry", "narrow", "base", "mid") gen "Of course... Why, you've already experienced it before..." ("base", xpos="far_left", ypos="head") lun "You don't mean..." ("angry", "wide", "base", "mid") #horny call nar(">Luna starts grinding her thighs together.") - lun "But what if I don't do it right, [lun_genie_name]?" ("upset", "closed", "base", "down", cheeks="blush") + lun "But what if I don't do it right, [name_genie_luna]?" ("upset", "closed", "base", "down", cheeks="blush") lun "I wouldn't want to hurt myself..." ("angry", "narrow", "base", "down", cheeks="blush") gen "*Hmm*... In that case, why don't you take your bottoms off this time?" ("base", xpos="far_left", ypos="head") gen "That way I can see a lot easier and make sure you don't hurt yourself." ("base", xpos="far_left", ypos="head") @@ -335,12 +335,12 @@ label ll_pf_masturbate_T3_E2_intro: call nar(">Luna gives you a look of excitement from your proposition...") lun "Well, I do feel inclined to take you up on that offer." ("soft", "base", "base", "down", cheeks="blush") - gen "It's not an offer, [luna_name]. If we are to make any progress then I require you to take off your bottoms so I can watch you masturbate." ("base", xpos="far_left", ypos="head") + gen "It's not an offer, [name_luna_genie]. If we are to make any progress then I require you to take off your bottoms so I can watch you masturbate." ("base", xpos="far_left", ypos="head") lun "" ("base", "narrow", "base", "down", cheeks="blush") call nar(">Luna's body twitches slightly, looking at her face you get the feeling she's pondering on something.") - lun "My body appears to think it's the right decision, [lun_genie_name]." ("open", "base", "base", "mid", cheeks="blush") + lun "My body appears to think it's the right decision, [name_genie_luna]." ("open", "base", "base", "mid", cheeks="blush") gen "Your body?" ("base", xpos="far_left", ypos="head") gen "(What is she on about now?)" ("base", xpos="far_left", ypos="head") lun "Yes, my body appears to have reacted to your proposition..." ("base", "base", "base", "down", cheeks="blush") @@ -348,10 +348,10 @@ label ll_pf_masturbate_T3_E2_intro: gen "I mean, yes that makes perfect sense... Your body does tell you when you're hungry so why wouldn't it try and help you get rid of those spurts too." ("grin", xpos="far_left", ypos="head") gen "Ten points to Ravenclaw." ("base", xpos="far_left", ypos="head") $ ravenclaw += 10 - lun "Thank you [lun_genie_name]." ("grin", "closed", "base", "mid", cheeks="blush") + lun "Thank you [name_genie_luna]." ("grin", "closed", "base", "mid", cheeks="blush") gen "Very well then, let's give your body what it needs... Take your bottoms off--" ("base", xpos="far_left", ypos="head") lun "..." ("base", "narrow", "base", "mid", cheeks="blush") #Horny - lun "Yes, [lun_genie_name]." ("base", "base", "base", "mid", cheeks="blush") + lun "Yes, [name_genie_luna]." ("base", "base", "base", "mid", cheeks="blush") gen "And do come a bit closer so I can get a proper look..." ("base", xpos="far_left", ypos="head") lun "Okay." ("open", "base", "base", "mid", cheeks="blush") @@ -375,7 +375,7 @@ label ll_pf_masturbate_T3_E2_intro: with fade #start of masturbation section (in front of desk CG) - gen "Begin when you're ready, [luna_name]." + gen "Begin when you're ready, [name_luna_genie]." $ renpy.sound.play("sounds/cloth_sound3.ogg") $ luna.strip("bottom") @@ -407,16 +407,16 @@ label ll_pf_masturbate_T3_E2_intro: gen "The positive feelings must be your body telling you that you're doing the right thing expelling them..." lun "*Ah*..." ("grin", "narrow", "base", "up", cheeks="blush") lun "I must be...{w=0.3} *Ah*...{w=0.3} Expelling a lot of them then..." ("base", "narrow", "base", "stare", cheeks="blush") - lun "*Ah*... [lun_genie_name], I'm feeling hot all over..." ("angry", "happyCl", "base", "mid", cheeks="blush") + lun "*Ah*... [name_genie_luna], I'm feeling hot all over..." ("angry", "happyCl", "base", "mid", cheeks="blush") lun "And that itch... It's all over my--" ("angry", "narrow", "base", "down", cheeks="blush") lun "*Ah*..." ("soft", "happyCl", "base", "down", cheeks="blush") gen "That means your body is ready for the next step..." - lun "[lun_genie_name]...{w=0.3} *Ah*... I'm not sure I'm ready..." ("angry", "happyCl", "base", "mid", cheeks="blush") + lun "[name_genie_luna]...{w=0.3} *Ah*... I'm not sure I'm ready..." ("angry", "happyCl", "base", "mid", cheeks="blush") gen "Nonsense..." gen "Just take it slow and gently push a finger in..." lun "*Ah*...{w=0.3} *Ah*...{w=0.3} Alright..." ("open", "happyCl", "base", "mid", cheeks="blush") call nar(">Luna begins rubbing a finger across her slit... Still a little apprehensive about putting it inside...") - lun "*Ah*...{w=0.3} [lun_genie_name]..." ("soft", "happyCl", "base", "mid", cheeks="blush") + lun "*Ah*...{w=0.3} [name_genie_luna]..." ("soft", "happyCl", "base", "mid", cheeks="blush") gen "Gently..." lun "Gently...{w=0.4} Okay..." ("angry", "closed", "base", "mid", cheeks="blush") lun "*Nnnngh*..." ("clench", "happyCl", "base", "mid", cheeks="blush") @@ -426,7 +426,7 @@ label ll_pf_masturbate_T3_E2_intro: with kissiris lun "*Ah*...." ("base", "narrow", "base", "up", cheeks="blush") - lun "I...{w=0.3} I did it, [lun_genie_name]..." ("grin", "narrow", "base", "up", cheeks="blush") + lun "I...{w=0.3} I did it, [name_genie_luna]..." ("grin", "narrow", "base", "up", cheeks="blush") gen "How does it feel?" lun "It...{w=0.3} Good...{w=0.5} Just a bit strange..." ("soft", "narrow", "base", "stare", cheeks="blush") gen "Try moving it in and out." @@ -438,14 +438,14 @@ label ll_pf_masturbate_T3_E2_intro: call nar(">Luna starts pushing her fingers in and out, the sounds of her moaning becoming more and more shallow as she goes on.") lun "*Ah*...{w=0.4} *Ah*...{w=0.4} *Ah*..." ("open", "closed", "base", "mid", cheeks="blush") lun "How--{w=0.2} *Ah*...{w=0.4} How is it looking?" ("soft", "closed", "base", "up", cheeks="blush") - gen "Very good [luna_name]... You're very pretty..." - lun "*Ah*...{w=0.3} I'm... *Ah*...{w=0.3} I'm pretty [lun_genie_name]?" ("angry", "narrow", "base", "stare", cheeks="blush") - gen "Why yes, [luna_name]. Your body is very nice..." - lun "[lun_genie_name]--{w=0.2} *Ah*...{w=0.4} That's not what I--{w=0.4}{nw}" ("angry", "narrow", "base", "mid", cheeks="blush") - lun "[lun_genie_name]-- *Ah*... That's not what I--{fast} *Ah*..." ("angry", "closed", "base", "mid", cheeks="blush") + gen "Very good [name_luna_genie]... You're very pretty..." + lun "*Ah*...{w=0.3} I'm... *Ah*...{w=0.3} I'm pretty [name_genie_luna]?" ("angry", "narrow", "base", "stare", cheeks="blush") + gen "Why yes, [name_luna_genie]. Your body is very nice..." + lun "[name_genie_luna]--{w=0.2} *Ah*...{w=0.4} That's not what I--{w=0.4}{nw}" ("angry", "narrow", "base", "mid", cheeks="blush") + lun "[name_genie_luna]-- *Ah*... That's not what I--{fast} *Ah*..." ("angry", "closed", "base", "mid", cheeks="blush") lun "I merely wanted to know if I was doing it right..." ("soft", "closed", "base", "mid", cheeks="blush") gen "I know." - lun "*Ah*...{w=0.3} [lun_genie_name]?" ("soft", "narrow", "base", "stare", cheeks="blush") + lun "*Ah*...{w=0.3} [name_genie_luna]?" ("soft", "narrow", "base", "stare", cheeks="blush") gen "Take your top off for me will you..." lun "*Ah*...{w=0.3} *Ah*...{w=0.3} Okay..." ("open", "narrow", "base", "up", cheeks="blush") lun "" ("base", "narrow", "base", "stare", cheeks="blush") @@ -462,8 +462,8 @@ label ll_pf_masturbate_T3_E2_intro: lun "" ("grin", "narrow", "base", "mid", cheeks="blush") call ctc - gen "Now keep going, [luna_name]..." - lun "Yes [lun_genie_name]..." ("grin", "narrow", "base", "mid", cheeks="blush") + gen "Now keep going, [name_luna_genie]..." + lun "Yes [name_genie_luna]..." ("grin", "narrow", "base", "mid", cheeks="blush") #Luna rubs herself again @@ -471,7 +471,7 @@ label ll_pf_masturbate_T3_E2_intro: gen "That's it... Keep rubbing that cute slit of yours..." lun "*Ah*...{w=0.4} *Ah*...{w=0.4}*Ah*..." ("soft", "closed", "base", "down", cheeks="blush") - gen "Look at me [luna_name]." + gen "Look at me [name_luna_genie]." lun "*Ah*...{w=0.4} *Ah*...{w=0.4} *Ah*..." ("soft", "narrow", "base", "mid", cheeks="blush") gen "Show me your tongue..." lun "*Ah*...{w=0.4} My...{w=0.4} My tongue?" ("angry", "base", "base", "mid", cheeks="blush") @@ -483,15 +483,15 @@ label ll_pf_masturbate_T3_E2_intro: lun "*Aaaa*...{fast}{w=0.1}{nw}" ("open_tongue", "closed", "base", "mid", cheeks="blush") lun "*Aaaa*...{fast}" ("open_wide_tongue", "closed", "base", "mid", cheeks="blush") gen "Good..." - gen "I want you to know how much I appreciate that you chose to come to me with this problem of yours [luna_name]..." + gen "I want you to know how much I appreciate that you chose to come to me with this problem of yours [name_luna_genie]..." #Luna stops lun "" ("soft", "narrow", "base", "mid", cheeks="blush") call ctc - lun "[lun_genie_name] I--" ("angry", "narrow", "base", "mid", cheeks="blush") + lun "[name_genie_luna] I--" ("angry", "narrow", "base", "mid", cheeks="blush") gen "Keep going... Put a finger in again..." - lun "Yes [lun_genie_name]..." ("angry", "narrow", "base", "down", cheeks="blush") + lun "Yes [name_genie_luna]..." ("angry", "narrow", "base", "down", cheeks="blush") #Luna puts finger in again $ renpy.sound.play("sounds/slick_02.ogg") @@ -510,7 +510,7 @@ label ll_pf_masturbate_T3_E2_intro: $ luna.set_cum(pussy="wet") with d3 - lun "[lun_genie_name]... *Ah*...{w=0.3} I feel them building up again..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "[name_genie_luna]... *Ah*...{w=0.3} I feel them building up again..." ("soft", "closed", "base", "mid", cheeks="blush") gen "Good girl, then try going a bit faster..." lun "Oh-- Okay..." ("soft", "closed", "base", "mid", cheeks="blush") @@ -520,7 +520,7 @@ label ll_pf_masturbate_T3_E2_intro: lun "I think...{w=0.3} *Ah*...{w=0.3} I'm about to...{w=0.3} *Ah*..." ("angry", "narrow", "base", "up", cheeks="blush") gen "Oh, are you cumming already?" lun "*Ah*... Yes, I'm--" ("angry", "narrow", "base", "stare", cheeks="blush") - lun "*Ah*...{w=0.3} I'm cumming [lun_genie_name]!!{heart}{heart}" ("grin", "happyCl", "base", "up", cheeks="blush") + lun "*Ah*...{w=0.3} I'm cumming [name_genie_luna]!!{heart}{heart}" ("grin", "happyCl", "base", "up", cheeks="blush") $ renpy.sound.play("sounds/slick_01.ogg") with kissiris @@ -566,16 +566,16 @@ label ll_pf_masturbate_T3_E2_intro: lun "*Ah*...{w=0.3} {heart}yes{heart}..." ("base", "narrow", "base", "down", cheeks="blush", xpos="mid", ypos="base", trans=dissolve) gen "Don't worry, that should sort them out for now..." ("base", xpos="far_left", ypos="head") gen "Feeling better?" ("base", xpos="far_left", ypos="head") - lun "Yes... I'm feeling much better now... Thank you [lun_genie_name]." ("base", "base", "base", "mid", cheeks="blush") + lun "Yes... I'm feeling much better now... Thank you [name_genie_luna]." ("base", "base", "base", "mid", cheeks="blush") gen "I take it my words of encouragement were effective?" ("base", xpos="far_left", ypos="head") - lun "I...{w=0.4} Yes [lun_genie_name]..." ("soft", "narrow", "base", "R", cheeks="blush") + lun "I...{w=0.4} Yes [name_genie_luna]..." ("soft", "narrow", "base", "R", cheeks="blush") gen "Excellent." ("base", xpos="far_left", ypos="head") lun "*Ehm*..." ("soft", "narrow", "base", "down", cheeks="blush") lun "So the things you said..." ("open", "narrow", "base", "down", cheeks="blush") lun "About me being pretty..." ("normal", "narrow", "base", "down", cheeks="blush") gen "Yes?" ("base", xpos="far_left", ypos="head") lun "Was that just to help me with..." ("soft", "narrow", "base", "downL", cheeks="blush") - lun "Actually... Forget I asked [lun_genie_name]..." ("angry", "narrow", "base", "downL", cheeks="blush") + lun "Actually... Forget I asked [name_genie_luna]..." ("angry", "narrow", "base", "downL", cheeks="blush") lun "I... I'll just head back to my dorms now..." ("angry", "base", "base", "R", cheeks="blush") gen "Of course, good job today--" ("base", xpos="far_left", ypos="head") @@ -623,7 +623,7 @@ label ll_pf_masturbate_T3_E3_intro: lun "*Ah*... {heart} Yes..." ("grin", "narrow", "base", "up", cheeks="blush") gen "By the great desert sands! You're sopping wet!" - lun "I'm sorry [lun_genie_name]... I just...{w=0.3} Need this really bad...{heart}" ("mad", "happyCl", "base", "stare", cheeks="blush") + lun "I'm sorry [name_genie_luna]... I just...{w=0.3} Need this really bad...{heart}" ("mad", "happyCl", "base", "stare", cheeks="blush") lun "These Wrackspurts...{w=0.4} *Ah*..." ("upset", "happyCl", "base", "mid", cheeks="blush") lun "They've been very tiresome..." ("angry", "narrow", "base", "up", cheeks="blush") @@ -640,15 +640,15 @@ label ll_pf_masturbate_T3_E3_intro: lun "" ("grin", "closed", "base", "mid", cheeks="blush") gen "You're becoming quite the expert at this..." - lun "*Ah*...{w=0.4} I'm just doing--{w=0.2} *Ah*...{w=0.4} What you've taught me [lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") - gen "Don't be so modest [luna_name]... It takes a lot of willpower and determination to get to where you are." + lun "*Ah*...{w=0.4} I'm just doing--{w=0.2} *Ah*...{w=0.4} What you've taught me [name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") + gen "Don't be so modest [name_luna_genie]... It takes a lot of willpower and determination to get to where you are." lun "*Ah*... Really?" ("soft", "narrow", "base", "stare", cheeks="blush") gen "Absolutely...{w=0.4} You're a natural!" gen "I'd even go as far to say that you were born to do this." lun "*Mmm*..." ("base", "narrow", "base", "stare", cheeks="blush") lun "Well I'm not so sure about that..." ("base", "closed", "base", "mid", cheeks="blush") - lun "Although I must say...{w=0.4} *Ah*...{w=0.4} I've been enjoying these sessions a fair bit, [lun_genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + lun "Although I must say...{w=0.4} *Ah*...{w=0.4} I've been enjoying these sessions a fair bit, [name_genie_luna]..." ("open", "closed", "base", "mid", cheeks="blush") lun "They are starting to become all I can think about..." ("base", "closed", "base", "mid", cheeks="blush") gen "*Hmm*...{w=0.3} Do you think that's a bad thing?" lun "*Ah*...{w=0.3} of course not!" ("grin", "closed", "base", "mid", cheeks="blush") @@ -663,14 +663,14 @@ label ll_pf_masturbate_T3_E3_intro: call nar(">Luna moans softly under her breath.") lun "{heart}{heart}{heart}" ("base", "closed", "base", "mid", cheeks="blush") lun "You, watching me while I do this... For some reason--" ("grin", "narrow", "base", "mid", cheeks="blush") - gen "*Shhh*... Focus [luna_name]..." - lun "Yes [lun_genie_name]..." ("base", "narrow", "base", "down", cheeks="blush") + gen "*Shhh*... Focus [name_luna_genie]..." + lun "Yes [name_genie_luna]..." ("base", "narrow", "base", "down", cheeks="blush") lun "*Ah*...{w=0.3} *Ah*...{w=0.3} *Ah*..." ("base", "closed", "base", "mid", cheeks="blush") lun "I think..." ("grin", "closed", "base", "stare", cheeks="blush") lun "*Ah*..." ("grin", "narrow", "base", "up", cheeks="blush") - lun "I think I've almost got them, [lun_genie_name]..." ("crooked_smile", "narrow", "base", "up", cheeks="blush") + lun "I think I've almost got them, [name_genie_luna]..." ("crooked_smile", "narrow", "base", "up", cheeks="blush") gen "(Already? She's faster than I am!)" - lun "[lun_genie_name]... Please..." ("crooked_smile", "narrow", "base", "up", cheeks="blush") + lun "[name_genie_luna]... Please..." ("crooked_smile", "narrow", "base", "up", cheeks="blush") play bg_sounds "sounds/slickloopfast.ogg" @@ -681,18 +681,18 @@ label ll_pf_masturbate_T3_E3_intro: menu: "-Tell her-": - gen "You're very pretty, [luna_name]." + gen "You're very pretty, [name_luna_genie]." lun "*Mmm*..." ("base", "narrow", "base", "up", cheeks="blush") "-Don't-": $ random_number = renpy.random.randint(1, 3) if random_number == 1: - gen "You're going to need to learn how to do this without my help [luna_name]..." - lun "Please, [lun_genie_name]..." ("angry", "happyCl", "base", "mid", cheeks="blush") + gen "You're going to need to learn how to do this without my help [name_luna_genie]..." + lun "Please, [name_genie_luna]..." ("angry", "happyCl", "base", "mid", cheeks="blush") elif random_number == 2: gen "Tell you..." - lun "Tell me I'm pretty, [lun_genie_name]..." ("grin", "narrow", "base", "up", cheeks="blush") + lun "Tell me I'm pretty, [name_genie_luna]..." ("grin", "narrow", "base", "up", cheeks="blush") elif random_number == 3: lun "Hurry...{w=0.3} I'm...{w=0.3} I'm almost there..." ("grin", "happyCl", "base", "up", cheeks="blush") @@ -708,7 +708,7 @@ label ll_pf_masturbate_T3_E3_intro: lun "{size=+4}*Mmm*...{w=0.4}{/size}{nw}" ("base", "closed", "base", "mid", cheeks="blush") lun "{size=+4}*Mmm*...{fast} Yes...{heart}{/size}" ("crooked_smile", "closed", "base", "mid", cheeks="blush") lun "*Ah*...{w=0.3}{nw}" ("crooked_smile", "closed", "base", "mid", cheeks="blush") - lun "*Ah*...{fast} [lun_genie_name], I think I'm..." ("crooked_smile", "narrow", "base", "stare", cheeks="blush") + lun "*Ah*...{fast} [name_genie_luna], I think I'm..." ("crooked_smile", "narrow", "base", "stare", cheeks="blush") call nar(">Luna's fingers moves in a flurry, as she continues pumping them into her needy slit.") lun "*Ah*...{w=0.2} *Ah*...{w=0.2} *Ah*...{heart}" ("crooked_smile", "narrow", "base", "up", cheeks="blush") @@ -739,14 +739,14 @@ label ll_pf_masturbate_T3_E3_intro: lun "{size=+4}*Nnngh*--{fast} *AH*!!{heart}{/size}{fast}" ("scream", "narrow", "base", "ahegao", cheeks="blush") lun "*Ah*..." ("base", "narrow", "base", "up", cheeks="blush") - lun "Thank you, [lun_genie_name]..." ("base", "closed", "base", "mid", cheeks="blush") + lun "Thank you, [name_genie_luna]..." ("base", "closed", "base", "mid", cheeks="blush") hide screen animatedCG show screen blkfade with d5 call nar(">Luna takes her fingers out and looks up at you with a happy smile spread across her face...") - gen "Well done [luna_name]." + gen "Well done [name_luna_genie]." centered "{size=+7}{color=#cbcbcb}Some time later...{/color}{/size}" @@ -760,7 +760,7 @@ label ll_pf_masturbate_T3_E3_intro: call weather_sound - gen "Now I didn't take you for a squirter, [luna_name]..." ("grin", xpos="far_left", ypos="head") + gen "Now I didn't take you for a squirter, [name_luna_genie]..." ("grin", xpos="far_left", ypos="head") lun "..." ("soft", "base", "base", "down", cheeks="blush", xpos="mid", ypos="base", trans=dissolve) gen "Is everything okay?" ("base", xpos="far_left", ypos="head") lun "Look at all these wrackspurts!" ("mad", "base", "base", "down", cheeks="blush") @@ -769,13 +769,13 @@ label ll_pf_masturbate_T3_E3_intro: gen "Sure took me by surprise..." ("grin", xpos="far_left", ypos="head") lun "Am I a master baiter now?" ("crooked_smile", "base", "base", "mid") - gen "Why yes indeed, [luna_name]." ("grin", xpos="far_left", ypos="head") + gen "Why yes indeed, [name_luna_genie]." ("grin", xpos="far_left", ypos="head") gen "I hereby grant you the title of a {i}masturbater{/i}!" ("grin", xpos="far_left", ypos="head") lun "Yay!" ("crooked_smile", "happyCl", "base", "mid") lun "Alright then, off I--" ("crooked_smile", "base", "base", "R") lun "Hold on..." ("angry", "wide", "base", "mid") - lun "I just realised something, [lun_genie_name]!" ("disgust", "base", "base", "mid") + lun "I just realised something, [name_genie_luna]!" ("disgust", "base", "base", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") lun "What you said earlier about you believing I was born to do this." ("grin", "base", "base", "mid") gen "Do what?" ("base", xpos="far_left", ypos="head") @@ -789,26 +789,26 @@ label ll_pf_masturbate_T3_E3_intro: gen "(I suppose I'll humour her...)" ("base", xpos="far_left", ypos="head") lun "She said that I'll soon find something new within me that will propel me forward on the path towards my destiny." ("grin", "base", "base", "mid") gen "I see..." ("base", xpos="far_left", ypos="head") - lun "Don't you think she meant my fingers, [lun_genie_name]?" ("grin", "base", "base", "mid") + lun "Don't you think she meant my fingers, [name_genie_luna]?" ("grin", "base", "base", "mid") gen "*Err*..." ("base", xpos="far_left", ypos="head") lun "Hold on that can't be it... My fingers aren't new... I've had them for as long as I can remember." ("angry", "narrow", "base", "downL") - lun "What do you think it is, [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "What do you think it is, [name_genie_luna]?" ("soft", "base", "base", "mid") gen "(Something new within her... Why does future telling always have to be so vague...)" ("base", xpos="far_left", ypos="head") gen "*Hmm*... Well I can't say that I..." ("base", xpos="far_left", ypos="head") gen "(Hold on...)" ("grin", xpos="far_left", ypos="head") - lun "*Huh*? Did you have a revelation, [genie_name]?" ("grin", "base", "raised", "mid") + lun "*Huh*? Did you have a revelation, [name_genie_hermione]?" ("grin", "base", "raised", "mid") gen "You've just given me a great idea!" ("grin", xpos="far_left", ypos="head") lun "Oooh! What is it? Is it a new method of dealing with the Wrackspurts?" ("crooked_smile", "base", "base", "mid") - gen "Why yes indeed, [luna_name]!" ("base", xpos="far_left", ypos="head") + gen "Why yes indeed, [name_luna_genie]!" ("base", xpos="far_left", ypos="head") lun "Marvellous!" ("smile", "happyCl", "base", "mid") - gen "Although it might be a hard one so I hope you're ready to take it on, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Although it might be a hard one so I hope you're ready to take it on, [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Of course, as long as you're there to guide me..." ("grin", "wink", "base", "mid") gen "(I'll be guiding something alright...)" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("soft", "narrow", "base", "mid") + lun "[name_genie_luna]?" ("soft", "narrow", "base", "mid") gen "*Huh*?" ("base", xpos="far_left", ypos="head") gen "*Ahem*... I'll let you know once I'm ready to begin our next set of tests." ("base", xpos="far_left", ypos="head") lun "Great!" ("base", "base", "base", "mid") - lun "Until next time then, [lun_genie_name]..." ("grin", "base", "base", "mid") + lun "Until next time then, [name_genie_luna]..." ("grin", "base", "base", "mid") call lun_walk(action="leave") @@ -817,7 +817,7 @@ label ll_pf_masturbate_T3_E3_intro: label ll_pf_masturbate_T3_E4_repeat: gen "Ready to avert the spurts?" ("base", xpos="far_left", ypos="head") - lun "Avert them, [lun_genie_name]?" ("soft", "base", "base", "mid", trans=dissolve) + lun "Avert them, [name_genie_luna]?" ("soft", "base", "base", "mid", trans=dissolve) gen "Ready to insert until you spurt and squirt?" ("base", xpos="far_left", ypos="head") lun "Oh!{w=0.4} Yes, I am ready!" ("base", "base", "base", "mid") gen "Great, then show me how it's done, master baiter!" ("base", xpos="far_left", ypos="head") @@ -846,8 +846,8 @@ label ll_pf_masturbate_T3_E4_repeat: with d3 gen "*Mmm*... Impressive..." - lun "[lun_genie_name]?" ("soft", "base", "raised", "mid") - gen "Your nipples, [luna_name]... Are they always this perked up?" + lun "[name_genie_luna]?" ("soft", "base", "raised", "mid") + gen "Your nipples, [name_luna_genie]... Are they always this perked up?" lun "Oh...{w=0.4} *Ehm*...{w=0.4} Kind of?" ("angry", "base", "base", "down") gen "Very impressive indeed..." gen "Why don't you give one a bit of a tweak and tell me how it feels?" @@ -861,8 +861,8 @@ label ll_pf_masturbate_T3_E4_repeat: gen "Yes, that's it... Now pinch it with your fingers--" lun "Ouch!" ("mad", "base", "base", "stare") gen "... carefully..." - gen "Patience, [luna_name]..." - lun "Sorry [lun_genie_name]..." ("disgust", "narrow", "base", "down") + gen "Patience, [name_luna_genie]..." + lun "Sorry [name_genie_luna]..." ("disgust", "narrow", "base", "down") gen "So, how does it feel now? Any different?" lun "*Ehm*... It's a bit more hard than before..." ("soft", "narrow", "base", "down") gen "That's good, now try it a bit more gently and tell me if anything changes..." @@ -876,21 +876,21 @@ label ll_pf_masturbate_T3_E4_repeat: lun "But--{w=0.2} *Ah*...{w=0.4} I must say it felt a lot better when you did it..." ("normal", "closed", "base", "stare") gen "You still seem to be enjoying yourself." lun "Yes... But--" ("annoyed", "closed", "base", "mid") - gen "Aren't we here so that you can find ways to deal with this issue without me, [luna_name]?" + gen "Aren't we here so that you can find ways to deal with this issue without me, [name_luna_genie]?" lun "We are?" ("disgust", "narrow", "base", "stare") gen "As a temporary measure that is... We'll still need to work together to find a way of ridding ourselves of them for good." lun "Oh... That's what you meant..." ("base", "closed", "base", "down") lun "I do feel a little bit guilty doing this though..." ("soft", "narrow", "base", "mid") gen "Guilty, in what way?" lun "Me doing this on my own in front of you feels a bit selfish now that I know how to do it..." ("open", "narrow", "base", "down") - gen "Oh, I wouldn't worry about that, [luna_name]..." + gen "Oh, I wouldn't worry about that, [name_luna_genie]..." gen "I'm thoroughly enjoying watching you touch yourself..." - lun "You--{w=0.2} You are, [lun_genie_name]?" ("angry", "narrow", "base", "mid") + lun "You--{w=0.2} You are, [name_genie_luna]?" ("angry", "narrow", "base", "mid") gen "Of course!" gen "Didn't you enjoy watching me?" lun "Oh...{w=0.4} I suppose I did." ("base", "narrow", "base", "down") gen "Now undress for me so I can watch you relieve yourself properly..." - lun "Yes, [lun_genie_name]..." ("base", "base", "base", "mid") + lun "Yes, [name_genie_luna]..." ("base", "base", "base", "mid") $ renpy.sound.play("sounds/cloth_sound3.ogg") $ luna.strip("clothes") @@ -904,7 +904,7 @@ label ll_pf_masturbate_T3_E4_repeat: gen "That's better, don't you think?" lun "Much better...{w=0.4} Although they've been building up quite a bit since I started." ("soft", "narrow", "base", "down") gen "That's a good thing... Now just keep going as you've done before..." - lun "Yes [lun_genie_name]..." ("base", "narrow", "base", "mid") + lun "Yes [name_genie_luna]..." ("base", "narrow", "base", "mid") call nar(">Luna moves her finger across her slit and then gently begins pushing it inside.") @@ -917,10 +917,10 @@ label ll_pf_masturbate_T3_E4_repeat: lun "*Mmm*..." ("base", "closed", "base", "mid", cheeks="blush") gen "Good..." - gen "You sure seem to have found a way to keep yourself focused on the task, [luna_name]..." - lun "*Mmm*... Yes, [lun_genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + gen "You sure seem to have found a way to keep yourself focused on the task, [name_luna_genie]..." + lun "*Mmm*... Yes, [name_genie_luna]..." ("open", "closed", "base", "mid", cheeks="blush") gen "You should feel very proud of your accomplishments." - lun "*Ah*...{w=0.4} Yes...{w=0.4} I feel it inside of me [lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "*Ah*...{w=0.4} Yes...{w=0.4} I feel it inside of me [name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") play bg_sounds "sounds/slickloopfast.ogg" lun "" ("soft", "narrow", "base", "mid", cheeks="blush") @@ -930,7 +930,7 @@ label ll_pf_masturbate_T3_E4_repeat: gen "I was very impressed with how quickly you got there last time..." gen "You've got to tell me your tricks, did you think of something in particular?" $ luna.set_cum(pussy="wet") - lun "*Ah*...{w=0.4} *Ah*...{w=0.4} [lun_genie_name]..." ("base", "narrow", "base", "stare", cheeks="blush") + lun "*Ah*...{w=0.4} *Ah*...{w=0.4} [name_genie_luna]..." ("base", "narrow", "base", "stare", cheeks="blush") gen "My apologies, I'll let you get on with it..." call nar(">You watch in silence as Luna fingers herself... Her heavy breathing, now being the only thing filling your chambers.") @@ -941,8 +941,8 @@ label ll_pf_masturbate_T3_E4_repeat: lun "" ("grin", "narrow", "base", "mid", cheeks="blush") call nar(">Looking at you once again, Luna starts moving her fingers even faster...") - lun "*Ah*...{w=0.2} *Ah*...{w=0.2} [lun_genie_name]..." ("grin", "narrow", "base", "mid", cheeks="blush") - gen "Yes, [luna_name]?" + lun "*Ah*...{w=0.2} *Ah*...{w=0.2} [name_genie_luna]..." ("grin", "narrow", "base", "mid", cheeks="blush") + gen "Yes, [name_luna_genie]?" lun "*Aaaah*!!!" ("crooked_smile", "narrow", "base", "up", cheeks="blush") @@ -963,7 +963,7 @@ label ll_pf_masturbate_T3_E4_repeat: #Non luna squirt $ luna.set_cum(pussy="squirt_post") - lun "*[lun_genie_name]*!!{heart}" ("scream", "narrow", "base", "up", cheeks="blush") + lun "*[name_genie_luna]*!!{heart}" ("scream", "narrow", "base", "up", cheeks="blush") $ renpy.sound.play("sounds/slick_01.ogg") stop bg_sounds fadeout 2 @@ -984,8 +984,8 @@ label ll_pf_masturbate_T3_E4_repeat: #Luna normal doll pose lun "*Mmm*..." ("base", "closed", "base", "mid", cheeks="blush") - lun "Did I do good, [lun_genie_name]?" ("soft", "narrow", "base", "up", cheeks="blush") - gen "Very good, [luna_name]..." + lun "Did I do good, [name_genie_luna]?" ("soft", "narrow", "base", "up", cheeks="blush") + gen "Very good, [name_luna_genie]..." lun "*Ah*...{w=0.4} I'm glad..." ("base", "narrow", "base", "up", cheeks="blush") lun "..." ("base", "narrow", "base", "down", cheeks="blush") #More focused lun "Oh, no! Look at what has happened to your floor!" ("mad", "narrow", "base", "down", cheeks="blush") @@ -999,13 +999,13 @@ label ll_pf_masturbate_T3_E4_repeat: call nar(">Luna bends down and begins checking around the floor for her glasses.") gen "Very fine indeed..." - lun "Do you remember if I brought them or not, [lun_genie_name]?" ("base", "base", "base", "mid") - lun "[lun_genie_name]?" ("angry", "narrow", "base", "mid") + lun "Do you remember if I brought them or not, [name_genie_luna]?" ("base", "base", "base", "mid") + lun "[name_genie_luna]?" ("angry", "narrow", "base", "mid") gen "*Huh*?" lun "My glasses... I can't see them without my glasses." ("base", "base", "base", "mid") gen "Jinkies..." lun "Blidgering humdinger...{w=0.4} I was hoping to see if they looked any different up close compared to yours..." ("base", "base", "base", "mid") - gen "Don't worry about them [luna_name], I'm sure you can get a closer look some other time..." + gen "Don't worry about them [name_luna_genie], I'm sure you can get a closer look some other time..." lun "Alright..." ("base", "base", "base", "mid") hide screen animatedCG @@ -1032,14 +1032,14 @@ label ll_pf_masturbate_T3_E4_repeat: gen "Ah yes... The post nut clarity..." ("base", xpos="far_left", ypos="head") lun "The what? sorry?" ("soft", "base", "base", "mid") gen "The perfect time to make the big life decisions..." ("base", xpos="far_left", ypos="head") - lun "I'm not sure I understand what you mean, [lun_genie_name]." ("upset", "base", "base", "mid") - gen "It only gets more difficult at this point now that you've mastered the art of masturbation [luna_name]." ("base", xpos="far_left", ypos="head") + lun "I'm not sure I understand what you mean, [name_genie_luna]." ("upset", "base", "base", "mid") + gen "It only gets more difficult at this point now that you've mastered the art of masturbation [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Mastered master baiting?" ("annoyed", "base", "raised", "mid") #confused gen "If we want to get rid of those spurts for good then we need to keep trying new methods." ("base", xpos="far_left", ypos="head") - lun "Oh! Well I'm willing to do anything that it takes to save the school [lun_genie_name]!" ("grin", "narrow", "base", "mid") + lun "Oh! Well I'm willing to do anything that it takes to save the school [name_genie_luna]!" ("grin", "narrow", "base", "mid") gen "That's what I like to hear." ("base", xpos="far_left", ypos="head") gen "Then that shall be all for today." ("base", xpos="far_left", ypos="head") - lun "Okay, thank you [lun_genie_name]." ("base", "base", "base", "mid") + lun "Okay, thank you [name_genie_luna]." ("base", "base", "base", "mid") hide luna_main with d3 @@ -1048,13 +1048,13 @@ label ll_pf_masturbate_T3_E4_repeat: call lun_chibi(flip=True) pause .5 - gen "[luna_name]." ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "Has the post nut clarity already worn off?" ("base", xpos="far_left", ypos="head") call lun_chibi(flip=False) pause .5 - lun "[lun_genie_name]?" ("soft", "base", "raised", "mid", trans=dissolve) + lun "[name_genie_luna]?" ("soft", "base", "raised", "mid", trans=dissolve) gen "Your clothes..." ("base", xpos="far_left", ypos="head") lun "Oh!" ("mad", "narrow", "base", "down") #blush @@ -1073,13 +1073,13 @@ label ll_pf_masturbate_T3_E4_repeat: lun "It means there's less places for the Nargles to hide in you see." ("grin", "base", "base", "mid") gen "I see..." ("grin", xpos="far_left", ypos="head") gen "(Just smile and nod...)" ("grin", xpos="far_left", ypos="head") - gen "Well then... I'll let you know when our next session will be [luna_name]." ("base", xpos="far_left", ypos="head") - lun "Of course... Thank you [lun_genie_name]." ("base", "base", "base", "mid") + gen "Well then... I'll let you know when our next session will be [name_luna_genie]." ("base", xpos="far_left", ypos="head") + lun "Of course... Thank you [name_genie_luna]." ("base", "base", "base", "mid") if game.daytime: gen "Now, you best head back to class." ("base", xpos="far_left", ypos="head") else: gen "Now, you best head back to your dorm." ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]." ("grin", "base", "base", "mid") + lun "Yes [name_genie_luna]." ("grin", "base", "base", "mid") lun "Until next time..." ("base", "base", "base", "mid") call lun_walk(action="leave") diff --git a/game/scripts/characters/luna/events/favors/talk_to_me.rpy b/game/scripts/characters/luna/events/favors/talk_to_me.rpy index 8d473030..551297bf 100644 --- a/game/scripts/characters/luna/events/favors/talk_to_me.rpy +++ b/game/scripts/characters/luna/events/favors/talk_to_me.rpy @@ -48,7 +48,7 @@ label ll_pf_talk_T1_E1_intro: gen "So... About the infestation..." ("base", xpos="far_left", ypos="head") lun "*Sniff* *Sniff*" ("soft", "narrow", "base", "L") - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "*Sniff* *Sniff*" ("soft", "base", "raised", "down") gen "Are you alright?" ("base", xpos="far_left", ypos="head") lun "This is such a peculiar smell..." ("open", "base", "base", "mid") @@ -56,9 +56,9 @@ label ll_pf_talk_T1_E1_intro: menu: "\"The spratters?\"": - lun "Wrackspurts, [lun_genie_name]." ("base", "base", "base", "mid") + lun "Wrackspurts, [name_genie_luna]." ("base", "base", "base", "mid") lun "I've never smelled them this strongly." ("base", "base", "base", "mid") - lun "Can you not smell them, [lun_genie_name]?" ("base", "base", "base", "mid") + lun "Can you not smell them, [name_genie_luna]?" ("base", "base", "base", "mid") gen "I guess I just got used to the smell..." ("base", xpos="far_left", ypos="head") lun "*Hmm*..." ("base", "base", "base", "mid") @@ -68,13 +68,13 @@ label ll_pf_talk_T1_E1_intro: gen "(Good grief, when was the last time I took a shower...)" ("angry", xpos="far_left", ypos="head") gen "(It's high time I search for a bath in this place...{w} Although...)" ("base", xpos="far_left", ypos="head") gen "(I did have countless women of Agrabah confess to me that they liked my manly odour.)" ("grin", xpos="far_left", ypos="head") - gen "Do you like this smell, [luna_name]?" ("base", xpos="far_left", ypos="head") - lun "Oh, I find the smell quite interesting, [lun_genie_name]." ("base", "base", "base", "mid") + gen "Do you like this smell, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") + lun "Oh, I find the smell quite interesting, [name_genie_luna]." ("base", "base", "base", "mid") gen "(That's good enough for me...)" ("base", xpos="far_left", ypos="head") gen "So, is there anything more you can tell me about these spurts?" ("base", xpos="far_left", ypos="head") gen "I'll need some more information before we get started." ("base", xpos="far_left", ypos="head") - lun "Of course, [lun_genie_name]... What would you like to know?" ("grin", "base", "raised", "mid") + lun "Of course, [name_genie_luna]... What would you like to know?" ("grin", "base", "raised", "mid") gen "Tell me...{w=0.4} Who else knows about it?" ("base", xpos="far_left", ypos="head") lun "*Hmm*...{w=0.4} Well, there's you and me..." ("soft", "base", "base", "downL") gen "Apart from us..." ("base", xpos="far_left", ypos="head") @@ -110,18 +110,18 @@ label ll_pf_talk_T1_E1_intro: lun "Indeed." ("angry", "base", "base", "mid") lun "So of course I had to do my best to reassure her that what she was experiencing was nothing to be afraid of..." ("grin", "closed", "base", "mid") lun "I told her about my own experiences...." ("open", "base", "base", "down") - lun "But they must've really gotten to her, [lun_genie_name]...{w=0.4} She barely paid me any attention..." ("angry", "closed", "base", "mid") + lun "But they must've really gotten to her, [name_genie_luna]...{w=0.4} She barely paid me any attention..." ("angry", "closed", "base", "mid") if genie_masturbating: gen "You have my full attention, girl...{w=0.4} Tell me more!" ("angry", xpos="far_left", ypos="head") else: gen "(Sounds like the opposite to me...)" ("base", xpos="far_left", ypos="head") - lun "I fear the whole school might get overrun, [lun_genie_name]..." ("angry", "narrow", "base", "mid") + lun "I fear the whole school might get overrun, [name_genie_luna]..." ("angry", "narrow", "base", "mid") lun "The way people are acting..." ("open", "base", "base", "downL", cheeks="blush") gen "You're seeing similar symptoms as your own?" ("base", xpos="far_left", ypos="head") lun "Not just that!" ("angry", "base", "base", "mid") - lun "It's Their auras, [lun_genie_name]!" ("clench", "base", "base", "stare") + lun "It's Their auras, [name_genie_luna]!" ("clench", "base", "base", "stare") if genie_masturbating: gen "*Ugh*... What? Auras?" ("angry", xpos="far_left", ypos="head") @@ -134,27 +134,27 @@ label ll_pf_talk_T1_E1_intro: if genie_masturbating: gen "Yes, yes... But what about the girl that made those weird noises? Tell me about her!" ("angry", xpos="far_left", ypos="head") - lun "Well, I never saw her, [lun_genie_name]." ("angry", "closed", "base", "mid") + lun "Well, I never saw her, [name_genie_luna]." ("angry", "closed", "base", "mid") lun "I just observed her aura. It was so fascinating!" ("soft", "closed", "base", "mid") lun "But... What ever they're doing to be making auras red..." ("normal", "narrow", "base", "downL") gen "(Come on, say something naughty already!)" ("angry", xpos="far_left", ypos="head") else: gen "(*Tsk*... Auras...)" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name], we need to warn people... Before it's too late!" ("angry", "base", "base", "mid") + lun "[name_genie_luna], we need to warn people... Before it's too late!" ("angry", "base", "base", "mid") if genie_masturbating: gen "(...)" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("upset", "base", "raised", "mid") + lun "[name_genie_luna]?" ("upset", "base", "raised", "mid") gen "(This isn't working...)" ("base", xpos="far_left", ypos="head") pause .8 call gen_chibi("sit_behind_desk") gen "Why don't we focus on a cure rather than try to convince people of the existence of something they can't even see." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]..." ("angry", "narrow", "base", "mid") + lun "But [name_genie_luna]..." ("angry", "narrow", "base", "mid") gen "Once we have a way to properly deal with them then I'm sure we could administer the cure without causing a fuss." ("base", xpos="far_left", ypos="head") - lun "You believe there's a cure for something like this, [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "You believe there's a cure for something like this, [name_genie_luna]?" ("soft", "base", "base", "mid") gen "I have a theory... If it works then it should let us expel those spurty buggers." ("base", xpos="far_left", ypos="head") lun "You've found a way to expel them on command?" ("clench", "base", "base", "mid") gen "Well I wouldn't say on command... Now that is beyond even my own capabilities..." ("base", xpos="far_left", ypos="head") @@ -163,10 +163,10 @@ label ll_pf_talk_T1_E1_intro: if game.daytime: gen "So for now, you better head back to class." ("base", xpos="far_left", ypos="head") - lun "Of course... Good luck [lun_genie_name]." ("grin", "base", "base", "mid") + lun "Of course... Good luck [name_genie_luna]." ("grin", "base", "base", "mid") else: gen "So for now it'd be best for you to head off to bed." ("base", xpos="far_left", ypos="head") - lun "Of course... Goodnight [lun_genie_name]." ("grin", "base", "base", "mid") + lun "Of course... Goodnight [name_genie_luna]." ("grin", "base", "base", "mid") pause .8 call lun_walk(action="leave") @@ -179,14 +179,14 @@ label ll_pf_talk_T1_E1_intro: label ll_pf_talk_T1_E2_intro: gen "Let's continue with your training." ("base", xpos="far_left", ypos="head") - lun "My training, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "My training, [name_genie_luna]?" ("soft", "base", "raised", "mid") gen "*Err*... To become the best and first ever spurt hunter!" ("angry", xpos="far_left", ypos="head") lun "Oh!" ("grin", "base", "base", "mid") lun "Okay!" ("grin", "happyCl", "base", "mid") gen "Today we're going to put that theory of mine into practice." ("base", xpos="far_left", ypos="head") lun "Finally!" ("smile", "base", "base", "mid") gen "Now, I need to warn you... This could be quite dangerous." ("base", xpos="far_left", ypos="head") - lun "Dangerous, [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "Dangerous, [name_genie_luna]?" ("soft", "base", "base", "mid") gen "Yes..." ("base", xpos="far_left", ypos="head") gen "Very dangerous!" ("base", xpos="far_left", ypos="head") @@ -196,20 +196,20 @@ label ll_pf_talk_T1_E2_intro: gen "If you don't do it correctly, you could end up with some severe burns..." ("base", xpos="far_left", ypos="head") gen "(Or mild chafing at the very least.)" ("base", xpos="far_left", ypos="head") gen "Which is why we're going to start by conducting some of the initial testing on myself." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]!" ("angry", "wide", "base", "mid") + lun "But [name_genie_luna]!" ("angry", "wide", "base", "mid") lun "You didn't tell me this was going to be dangerous... If I knew you could potentially hurt yourself, then I would've never asked you to--" ("angry", "base", "worried", "mid") gen "Don't worry... I'm sure It'll be worth it for the cause..." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name], why not let me do it--" ("angry", "narrow", "base", "mid") + lun "But [name_genie_luna], why not let me do it--" ("angry", "narrow", "base", "mid") gen "Nonsense!" ("base", xpos="far_left", ypos="head") gen "I've lived a very long life, you've got it all ahead of you..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]... Surely--" ("mad", "closed", "base", "mid") + lun "[name_genie_luna]... Surely--" ("mad", "closed", "base", "mid") gen "Don't you worry, I've been practising these movements for a very long time. I'm certain I'll be able to pull one off no problem..." ("base", xpos="far_left", ypos="head") lun "Okay..." ("upset", "narrow", "base", "mid") lun "I assume you won't be needing any of my help..." ("open", "narrow", "base", "down") #Looking down - gen "On the contrary...{w=0.4} Your aid is integral for this to work, [luna_name]." ("base", xpos="far_left", ypos="head") + gen "On the contrary...{w=0.4} Your aid is integral for this to work, [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "" ("soft", "base", "base", "mid") #Looks up again, surprised that he wants her help gen "Now... You just stand there for a bit." ("base", xpos="far_left", ypos="head") - lun "Oh... Of course [lun_genie_name]!" ("soft", "narrow", "base", "stare") + lun "Oh... Of course [name_genie_luna]!" ("soft", "narrow", "base", "stare") $ genie_masturbating = True $ lun_jerk_off_counter += 1 @@ -250,9 +250,9 @@ label ll_pf_talk_T1_E2_intro: lun "The Patronus... You focus on a Happy memory and if you succeed, a corporeal shape of your spirit animal bursts out from your wand!" ("grin", "base", "base", "mid") gen "*Ah*...{w=0.3} Yes, that's it...{w=0.3} Ten points to Ravenclaw!" ("base", xpos="far_left", ypos="head") $ ravenclaw += 10 - lun "Thank you, [lun_genie_name]!" ("base", "happyCl", "base", "mid") + lun "Thank you, [name_genie_luna]!" ("base", "happyCl", "base", "mid") gen "Now, be quiet and stand there for a bit will you?" ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]." ("base", "base", "base", "mid") + lun "Yes [name_genie_luna]." ("base", "base", "base", "mid") call nar(">With great difficulty, you work your now softened shaft, staring at the girls heaving chest.") @@ -260,7 +260,7 @@ label ll_pf_talk_T1_E2_intro: call ctc lun "" ("base", "base", "base", "mid") #Looks back call ctc - lun "[lun_genie_name]?" ("open", "base", "raised", "mid") + lun "[name_genie_luna]?" ("open", "base", "raised", "mid") call nar (">You stop rubbing your cock and look up at Luna's face.") @@ -268,7 +268,7 @@ label ll_pf_talk_T1_E2_intro: lun "What's your patronus?" ("open", "base", "base", "mid") gen "W--{w=0.2} What?" ("angry", xpos="far_left", ypos="head") - lun "What's your spirit animal, [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "What's your spirit animal, [name_genie_luna]?" ("soft", "base", "base", "mid") lun "Surely you must've cast a patronus spell before..." ("grin", "base", "base", "mid") gen "*Err*..." ("base", xpos="far_left", ypos="head") @@ -300,9 +300,9 @@ label ll_pf_talk_T1_E2_intro: # Patronuses seems to be the correct plural form of Patronus, not Patroni. lun "Patronuses are supposed to represent a hidden inner self that gets awakened in the time of need... Only a wizard who is obsessed about a particular animal would have it as their Patronus..." ("open", "closed", "base", "mid") gen "(What on earth is all this drivel?)" ("base", xpos="far_left", ypos="head") - lun "Or are you pulling my leg, [lun_genie_name]?" ("clench", "narrow", "base", "mid") + lun "Or are you pulling my leg, [name_genie_luna]?" ("clench", "narrow", "base", "mid") gen "Pulling--{w=0.2} Hey... You distracted me again!" ("base", xpos="far_left", ypos="head") - lun "Oh... Sorry [lun_genie_name]!" ("soft", "wide", "base", "mid") + lun "Oh... Sorry [name_genie_luna]!" ("soft", "wide", "base", "mid") lun "The other teachers do keep reminding me not to let my mind wander so much..." ("annoyed", "narrow", "base", "downR") gen "*Sigh*..." ("base", xpos="far_left", ypos="head") gen "It's not your fault..." ("base", xpos="far_left", ypos="head") @@ -313,10 +313,10 @@ label ll_pf_talk_T1_E2_intro: gen "What's with that face?" ("base", xpos="far_left", ypos="head") lun "Oh... It's nothing... I was just thinking..." ("base", "happyCl", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - gen "Very well [luna_name]... All things considered, I think we've at least done some progress today." ("base", xpos="far_left", ypos="head") + gen "Very well [name_luna_genie]... All things considered, I think we've at least done some progress today." ("base", xpos="far_left", ypos="head") gen "Well done." ("base", xpos="far_left", ypos="head") lun "We have?" ("soft", "base", "base", "mid", cheeks="blush") - lun "I mean...{w=0.3} Thank you [lun_genie_name]...{w=0.3} I didn't really do much..." ("open", "base", "base", "R", cheeks="blush") #blush #Looks away + lun "I mean...{w=0.3} Thank you [name_genie_luna]...{w=0.3} I didn't really do much..." ("open", "base", "base", "R", cheeks="blush") #blush #Looks away gen "(Is she blushing?)" ("base", xpos="far_left", ypos="head") gen "*Ahem*..." ("base", xpos="far_left", ypos="head") @@ -327,14 +327,14 @@ label ll_pf_talk_T1_E2_intro: lun "Okay, thank you..." ("open", "base", "base", "down", cheeks="blush") if game.daytime: - lun "I'll head back to class then, [lun_genie_name]." ("open", "base", "base", "R", cheeks="blush") + lun "I'll head back to class then, [name_genie_luna]." ("open", "base", "base", "R", cheeks="blush") else: - lun "I'll head back to my dorm then, [lun_genie_name]." ("open", "base", "base", "R", cheeks="blush") + lun "I'll head back to my dorm then, [name_genie_luna]." ("open", "base", "base", "R", cheeks="blush") gen "Yes, I'll let you know when I require further...{w=0.3} Assistance." ("base", xpos="far_left", ypos="head") lun "Okay!" ("base", "base", "base", "mid", cheeks="blush") lun "*Ehm*... Bye then..." ("soft", "base", "base", "mid", cheeks="blush") - gen "Bye [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "Bye [name_luna_genie]..." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -343,15 +343,15 @@ label ll_pf_talk_T1_E2_intro: label ll_pf_talk_T1_E3_intro: gen "Right then... Let's have another crack at this shall we." ("base", xpos="far_left", ypos="head") - lun "We're going to try and expel the wrackspurts again, [lun_genie_name]?" ("soft", "base", "base", "mid") - gen "That's right [luna_name]." ("base", xpos="far_left", ypos="head") + lun "We're going to try and expel the wrackspurts again, [name_genie_luna]?" ("soft", "base", "base", "mid") + gen "That's right [name_luna_genie]." ("base", xpos="far_left", ypos="head") lun "Can I see how you do it this time?" ("grin", "base", "raised", "mid") gen "*Err*... I'm not sure that's such a good idea..." ("base", xpos="far_left", ypos="head") lun "*Aww*... Why not?" ("annoyed", "base", "annoyed", "mid") gen "Well... Let's find out if it works first..." ("base", xpos="far_left", ypos="head") lun "Okay!" ("base", "base", "base", "mid") gen "I need to focus, so just follow my instructions..." ("base", xpos="far_left", ypos="head") - lun "Of course, [lun_genie_name]!" ("grin", "base", "base", "mid") + lun "Of course, [name_genie_luna]!" ("grin", "base", "base", "mid") gen "Excellent... Just need to take out my wand and then we can begin..." ("base", xpos="far_left", ypos="head") gen "(Let's see if we can produce some real magic this time...)" ("base", xpos="far_left", ypos="head") @@ -365,7 +365,7 @@ label ll_pf_talk_T1_E3_intro: gen "Now... Tell me a bit more about your experiences with the spratters..." ("base", xpos="far_left", ypos="head") lun "How's that supposed to--" ("soft", "base", "base", "mid") - gen "Are you questioning my methods [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "Are you questioning my methods [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "Oh! Of course not!" ("mad", "narrow", "base", "mid") gen "Then answer my question..." ("base", xpos="far_left", ypos="head") lun "Right...{w=0.4} *Ehm*...{w=0.4} As I said before, they bother me at the most inopportune moments..." ("open", "narrow", "base", "R") @@ -377,16 +377,16 @@ label ll_pf_talk_T1_E3_intro: call nar(">As she goes on talking about wrackspurts and how they make her feel, you notice that Luna has started grinding her legs together again.") lun "*Ah*...{w=0.4} And the worst times are when I'm about to go to sleep...{w=0.4} It must be something with my pyjamas..." ("soft", "narrow", "base", "down", cheeks="blush") - lun "[lun_genie_name]...{w=0.4} They're...{w=0.4} They're bothering me again..." ("base", "base", "base", "mid") - gen "Just keep talking [luna_name], they're sensing the magic..." ("base", xpos="far_left", ypos="head") - lun "Oh... So it's working, [lun_genie_name]?" ("soft", "base", "base", "mid", cheeks="blush") + lun "[name_genie_luna]...{w=0.4} They're...{w=0.4} They're bothering me again..." ("base", "base", "base", "mid") + gen "Just keep talking [name_luna_genie], they're sensing the magic..." ("base", xpos="far_left", ypos="head") + lun "Oh... So it's working, [name_genie_luna]?" ("soft", "base", "base", "mid", cheeks="blush") gen "Yes, just keep talking..." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]..." ("open", "narrow", "base", "mid", cheeks="blush") + lun "But [name_genie_luna]..." ("open", "narrow", "base", "mid", cheeks="blush") call nar(">You keep stroking your cock as Luna stares at you, shifting her legs uncomfortably...") - lun "[lun_genie_name], it feels weird... Please..." ("angry", "narrow", "base", "mid", cheeks="blush") - gen "How weird does it feel [luna_name]? Describe it to me..." ("base", xpos="far_left", ypos="head") + lun "[name_genie_luna], it feels weird... Please..." ("angry", "narrow", "base", "mid", cheeks="blush") + gen "How weird does it feel [name_luna_genie]? Describe it to me..." ("base", xpos="far_left", ypos="head") call nar(">Luna grinds her legs together even more as she tries to maintain eye contact with you, she then stutter for a moment as a wave of lust washes over her.") @@ -401,11 +401,11 @@ label ll_pf_talk_T1_E3_intro: call nar(">An image of the girls wet panties runs across your mind and you feel your cock twitch slightly in your hand.") - lun "[lun_genie_name]... I don't know how long I can endure this... Please tell me it's working..." ("base", "base", "base", "mid") + lun "[name_genie_luna]... I don't know how long I can endure this... Please tell me it's working..." ("base", "base", "base", "mid") call nar(">You rub your cock even faster, the sound of Luna's voice fading out of your mind...") - lun "I can't bear it, [lun_genie_name]!" ("base", "base", "base", "mid") + lun "I can't bear it, [name_genie_luna]!" ("base", "base", "base", "mid") lun "I need--" ("mad", "wide", "base", "L", xpos="mid", ypos="base", flip=True, trans=dissolve) call gen_chibi("cum_behind_desk_done") @@ -419,9 +419,9 @@ label ll_pf_talk_T1_E3_intro: hide screen blkfade with d9 - lun "[lun_genie_name]!" ("mad", "wide", "base", "L") + lun "[name_genie_luna]!" ("mad", "wide", "base", "L") gen "{size=-4}Oh shit!{/size}" ("angry", xpos="far_left", ypos="head") #small text - lun "[lun_genie_name], you--" ("disgust", "wide", "base", "L") + lun "[name_genie_luna], you--" ("disgust", "wide", "base", "L") gen "I can explain!" ("base", xpos="far_left", ypos="head") lun "You've done it!" ("smile", "narrow", "base", "mid") gen "I was just scratching--" ("angry", xpos="far_left", ypos="head") @@ -438,8 +438,8 @@ label ll_pf_talk_T1_E3_intro: lun "So how did you do it? I thought you were using your wand..." ("grin", "narrow", "base", "mid") lun "Or is that what you call a penis, do you call that a wand too?!" ("open", "wide", "base", "mid") lun "Did you cast a spell through it?--" ("soft", "wide", "base", "mid") - gen "Slow down [luna_name]..." ("base", xpos="far_left", ypos="head") - lun "Sorry [lun_genie_name]..." ("mad", "base", "base", "mid") + gen "Slow down [name_luna_genie]..." ("base", xpos="far_left", ypos="head") + lun "Sorry [name_genie_luna]..." ("mad", "base", "base", "mid") gen "Well, you could say it's similar to a spell... I stroke my penis along the shaft and then--" ("base", xpos="far_left", ypos="head") lun "Can I do it now?" ("grin", "base", "base", "mid") gen "What? Right now?!" ("angry", xpos="far_left", ypos="head") @@ -454,10 +454,10 @@ label ll_pf_talk_T1_E3_intro: lun "Finally... A way to get rid of--" ("grin", "narrow", "base", "down") lun "Hold on a minute..." ("normal", "wide", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name], I don't think this is going to work out..." ("angry", "base", "base", "mid") + lun "[name_genie_luna], I don't think this is going to work out..." ("angry", "base", "base", "mid") gen "What?! No! Keep going!" ("angry", xpos="far_left", ypos="head") lun "Well...{w=0.4} I just realised..." ("disgust", "narrow", "base", "down") - lun "I don't have a penis, [lun_genie_name]..." ("angry", "narrow", "base", "mid") + lun "I don't have a penis, [name_genie_luna]..." ("angry", "narrow", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") gen "You just realised?" ("base", xpos="far_left", ypos="head") lun "Yes..." ("annoyed", "base", "base", "R") @@ -475,14 +475,14 @@ label ll_pf_talk_T1_E3_intro: pause 1 gen "..." ("base", xpos="far_left", ypos="head") - lun "I'm sorry [lun_genie_name], I got a bit ahead of myself there..." ("angry", "narrow", "base", "mid") + lun "I'm sorry [name_genie_luna], I got a bit ahead of myself there..." ("angry", "narrow", "base", "mid") #Luna puts on her bottoms $ renpy.sound.play("sounds/cloth_sound3.ogg") $ luna.wear("all") gen "No,{w=0.2} wait!" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "[name_genie_luna]?" ("soft", "base", "raised", "mid") gen "*Err*... I'm sure we can think of something..." ("base", xpos="far_left", ypos="head") lun "" ("upset", "base", "base", "mid") @@ -502,7 +502,7 @@ label ll_pf_talk_T1_E3_intro: gen "Of course!" ("grin", xpos="far_left", ypos="head") gen "We'll have you spurting all over the place in no time, don't you worry!" ("base", xpos="far_left", ypos="head") lun "Yay!" ("base", "happyCl", "base", "mid") - lun "Thank you [lun_genie_name]!" ("grin", "narrow", "base", "mid") + lun "Thank you [name_genie_luna]!" ("grin", "narrow", "base", "mid") lun "..." ("base", "base", "base", "R") #glances off if game.daytime: @@ -511,7 +511,7 @@ label ll_pf_talk_T1_E3_intro: else: gen "But you better get some rest before that..." ("base", xpos="far_left", ypos="head") gen "(At least I do...)" ("base", xpos="far_left", ypos="head") - lun "Oh... Of course, [lun_genie_name]!" ("mad", "base", "base", "stare") + lun "Oh... Of course, [name_genie_luna]!" ("mad", "base", "base", "stare") lun "Just let me know when you're ready to do the inspection." ("crooked_smile", "base", "base", "mid") gen "Certainly..." ("base", xpos="far_left", ypos="head") @@ -528,19 +528,19 @@ label ll_pf_talk_T1_E3_intro: label ll_pf_talk_T1_E4_repeat: - gen "How are you feeling [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "How are you feeling [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "I...{w=0.4} I'm okay..." ("open", "narrow", "base", "down") - lun "But I'm still worried about this burning sensation between my legs, [lun_genie_name]." ("upset", "narrow", "base", "mid") + lun "But I'm still worried about this burning sensation between my legs, [name_genie_luna]." ("upset", "narrow", "base", "mid") gen "I'm sure we'll find a way for you to deal with them once I've had a thorough inspection of your body...." ("base", xpos="far_left", ypos="head") lun "I do hope we find a solution soon, I've been spotting more and more of them through my spectrespecs by the day..." ("upset", "narrow", "base", "R") gen "(With Tonks and Snape around that's not surprising...)" ("base", xpos="far_left", ypos="head") gen "Well I better prepare for that inspection then..." ("base", xpos="far_left", ypos="head") - lun "Yes...{w=0.4} Thank you, [lun_genie_name]." ("open", "base", "base", "mid") + lun "Yes...{w=0.4} Thank you, [name_genie_luna]." ("open", "base", "base", "mid") gen "Hold on...{w} Actually we may have a little problem..." ("base", xpos="far_left", ypos="head") - lun "A little problem, [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "A little problem, [name_genie_luna]?" ("soft", "base", "base", "mid") gen "No, wait it's a massive problem! A massive problem has arisen!" ("angry", xpos="far_left", ypos="head") - lun "There's a massive problem?! [lun_genie_name], why didn't you tell me at the start!" ("clench", "base", "base", "mid") + lun "There's a massive problem?! [name_genie_luna], why didn't you tell me at the start!" ("clench", "base", "base", "mid") gen "It just started happening! Come here quick!" ("angry", xpos="far_left", ypos="head") lun "On it!" ("mad", "base", "base", "mid") @@ -558,24 +558,24 @@ label ll_pf_talk_T1_E4_repeat: call nar(">As Luna rushes up to your desk you pull out your cock and start stroking it.") - lun "[lun_genie_name]!" ("mad", "base", "base", "downL", xpos="mid", ypos="base", flip=True, trans=dissolve) + lun "[name_genie_luna]!" ("mad", "base", "base", "downL", xpos="mid", ypos="base", flip=True, trans=dissolve) lun "Your penis is getting all hard again!" ("angry", "narrow", "base", "downL") lun "How on earth did this happen so quickly?!" ("clench", "base", "base", "downL") gen "That's what I thought!" ("angry", xpos="far_left", ypos="head") - lun "Does it hurt [lun_genie_name]? Your penis looks as if it's about to burst!" ("angry", "base", "base", "downL") + lun "Does it hurt [name_genie_luna]? Your penis looks as if it's about to burst!" ("angry", "base", "base", "downL") gen "*Ah*...{w=0.4} It...{w=0.4} It's fine, but you better keep a close eye on it as I deal with this." ("angry", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]!" ("mad", "base", "base", "mid") + lun "Yes, [name_genie_luna]!" ("mad", "base", "base", "mid") lun "" ("soft", "narrow", "base", "downL") call nar(">Luna fixes her gaze and stares intently at your cock as you continue stroking it.") call nar(">Even in her worried state, there's still quite a bit of excitement in her eyes.") gen "Oh. I can't even look at it, tell me it still looks okay!" ("angry", xpos="far_left", ypos="head") - lun "It's still intact [lun_genie_name]!" ("angry", "narrow", "base", "downL") + lun "It's still intact [name_genie_luna]!" ("angry", "narrow", "base", "downL") lun "Oh my... It's twitching!" ("angry", "narrow", "base", "downL", cheeks="blush") - gen "I feel it, just keep looking at it [luna_name]!" ("angry", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]!" ("clench", "base", "base", "downL", cheeks="blush") + gen "I feel it, just keep looking at it [name_luna_genie]!" ("angry", xpos="far_left", ypos="head") + lun "Yes, [name_genie_luna]!" ("clench", "base", "base", "downL", cheeks="blush") call nar(">You keep stroking your shaft as Luna watches your every move.") call nar(">Stroking it faster and faster, you feel yourself getting closer and closer to the edge by the second.") @@ -585,7 +585,7 @@ label ll_pf_talk_T1_E4_repeat: lun "Do you need me to get Madam Pomfrey?" ("mad", "base", "base", "mid", cheeks="blush") gen "*Ah*...{w=0.4} Who?" ("angry", xpos="far_left", ypos="head") lun "Oh my, they're making you go delirious!" ("angry", "happyCl", "base", "downL", cheeks="blush") - lun "The Matron [lun_genie_name], should I fetch her?" ("angry", "narrow", "base", "mid", cheeks="blush") + lun "The Matron [name_genie_luna], should I fetch her?" ("angry", "narrow", "base", "mid", cheeks="blush") gen "Absolutely!" ("grin", xpos="far_left", ypos="head") call nar(">As the thought of Luna bringing a hot nurse crosses your mind, you feel yourself reaching climax.") lun "I'll be back in just a moment!" ("angry", "happyCl", "base", "mid", cheeks="blush") @@ -597,7 +597,7 @@ label ll_pf_talk_T1_E4_repeat: gen "*Argh*!!" ("angry", xpos="far_left", ypos="head") call lun_chibi("stand", "mid", "base", flip=False) - lun "[lun_genie_name]?" ("mad", "base", "base", "mid", flip=False, trans=dissolve) + lun "[name_genie_luna]?" ("mad", "base", "base", "mid", flip=False, trans=dissolve) call gen_chibi("cum_behind_desk") call cum_block @@ -607,7 +607,7 @@ label ll_pf_talk_T1_E4_repeat: call cum_block gen "*Argh*..." ("angry", xpos="far_left", ypos="head") call gen_chibi("jerk_off_behind_desk") - lun "[lun_genie_name], are you okay?!" ("angry", "base", "base", "mid") + lun "[name_genie_luna], are you okay?!" ("angry", "base", "base", "mid") lun "Are you in pain?" ("angry", "narrow", "base", "mid") gen "Yes, it pains me that you didn't--" ("angry", xpos="far_left", ypos="head") call gen_chibi("cum_behind_desk") @@ -617,7 +617,7 @@ label ll_pf_talk_T1_E4_repeat: call gen_chibi("cum_behind_desk_done") with d3 - lun "[lun_genie_name]?" ("mad", "base", "base", "mid") + lun "[name_genie_luna]?" ("mad", "base", "base", "mid") gen "*Ah*... That was--" ("base", xpos="far_left", ypos="head") lun "Are you okay?" ("mad", "narrow", "base", "mid") gen "So good..." ("base", xpos="far_left", ypos="head") @@ -626,17 +626,17 @@ label ll_pf_talk_T1_E4_repeat: call nar(">You look around at your cum soiled desk.") gen "(She might get a heart attack from seeing this battlefield...)" ("base", xpos="far_left", ypos="head") gen "It's...{w=0.3} I'm fine!" ("base", xpos="far_left", ypos="head") - lun "Are you sure, [lun_genie_name]?" ("upset", "base", "base", "mid") + lun "Are you sure, [name_genie_luna]?" ("upset", "base", "base", "mid") gen "Yes...{w=0.3} *Ahem*...{w=0.3} Nothing a good nap wont sort out." ("base", xpos="far_left", ypos="head") lun "*Hmm*...{w=0.3} Okay then..." ("soft", "narrow", "base", "mid") - lun "[lun_genie_name]..." ("mad", "narrow", "base", "mid") - gen "Yes, [luna_name]?" ("base", xpos="far_left", ypos="head") + lun "[name_genie_luna]..." ("mad", "narrow", "base", "mid") + gen "Yes, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "We'll have that inspection done soon right?" ("angry", "narrow", "base", "mid") lun "I'm worried what might happen if they attacked me like this." ("disgust", "narrow", "base", "down") gen "Of course...{w=0.3} I'll check you out-- *Err*...{w=0.3} I mean, I'll have you checked as soon as possible!" ("base", xpos="far_left", ypos="head") lun "Thank Merlin..." ("open", "closed", "low", "mid") - lun "Then let me know as soon as you're ready [lun_genie_name]." ("angry", "base", "base", "mid") + lun "Then let me know as soon as you're ready [name_genie_luna]." ("angry", "base", "base", "mid") gen "Certainly..." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -646,7 +646,7 @@ label ll_pf_talk_T1_E4_repeat: label ll_pf_talk_T2_E1_repeat: gen "Tell me some more about these spurts..." ("base", xpos="far_left", ypos="head") - lun "Again, [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "Again, [name_genie_luna]?" ("open", "base", "raised", "mid") gen "Yes... I still don't think I'm quite done with my personal research..." ("base", xpos="far_left", ypos="head") lun "Oh... Okay then..." ("soft", "base", "base", "mid") gen "One moment please." ("base", xpos="far_left", ypos="head") @@ -669,15 +669,15 @@ label ll_pf_talk_T2_E1_repeat: call nar(">You continue stroking your hardening cock in anticipation as Luna looks at you nervously.") lun "..." ("normal", "narrow", "base", "downL") - lun "*Ehm*... [lun_genie_name]..." ("open", "narrow", "base", "downL") + lun "*Ehm*... [name_genie_luna]..." ("open", "narrow", "base", "downL") gen "Yes?" ("base", xpos="far_left", ypos="head") lun "Could I...{w} Could I watch you do it?" ("open", "narrow", "base", "mid") gen "You want to...{w=0.4} Watch me?" ("base", xpos="far_left", ypos="head") lun "Yes, If I'm supposed to learn about these things, then wouldn't it be best if I watched you do it?" ("soft", "narrow", "base", "mid") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") - lun "Please, [lun_genie_name]! Even if I'm not ready yet myself, I really want to be able to help you properly once I am!" ("mad", "base", "base", "mid") + lun "Please, [name_genie_luna]! Even if I'm not ready yet myself, I really want to be able to help you properly once I am!" ("mad", "base", "base", "mid") gen "Well...{w=0.4} *Ah*...{w=0.4} When you put it that way..." ("base", xpos="far_left", ypos="head") - lun "Oh... Thank you [lun_genie_name], I'm so glad you trust me..." ("grin", "base", "base", "mid") + lun "Oh... Thank you [name_genie_luna], I'm so glad you trust me..." ("grin", "base", "base", "mid") #Luna walks up to beside genie and turns call lun_walk(path=[(440, 470),(230, 470),(230, 455)]) @@ -720,14 +720,14 @@ label ll_pf_talk_T2_E1_repeat: gen "*Ah*...{w=0.3} *Ah*...{w=0.4} *Ah*..." ("base", xpos="far_left", ypos="head") lun "Oh! It's shrinking again, that must mean it worked, right?" ("grin", "base", "base", "downL") gen "Don't look at that!" ("angry", xpos="far_left", ypos="head") - lun "Oh! Sorry [lun_genie_name]!" ("mad", "base", "base", "mid") + lun "Oh! Sorry [name_genie_luna]!" ("mad", "base", "base", "mid") lun "I'll just go over there then!" ("soft", "base", "base", "mid") #Luna walks to mid position call lun_walk(path=[(230, 455),(230, 470),(440, 470),("mid", "base")]) call lun_chibi("stand", "mid", "base", flip=False) - lun "...{w} Do you feel better now, [lun_genie_name]?" ("soft", "base", "base", "mid", flip=False, trans=dissolve) + lun "...{w} Do you feel better now, [name_genie_luna]?" ("soft", "base", "base", "mid", flip=False, trans=dissolve) gen "Much better..." ("base", xpos="far_left", ypos="head") lun "I'm so glad..." ("grin", "closed", "base", "mid") @@ -739,8 +739,8 @@ label ll_pf_talk_T2_E1_repeat: lun "Oh...{w=0.4} Okay!" ("open", "base", "base", "mid") lun "I'll head off to my dorms then." ("base", "base", "base", "mid") gen "That'd probably be for the best." ("base", xpos="far_left", ypos="head") - lun "Good night then, [lun_genie_name]." ("grin", "base", "base", "mid") - gen "Good night [luna_name]." ("base", xpos="far_left", ypos="head") + lun "Good night then, [name_genie_luna]." ("grin", "base", "base", "mid") + gen "Good night [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") @@ -751,7 +751,7 @@ label ll_pf_talk_T3_E1_repeat: gen "Able to help me deal with those spurts again?" ("base", xpos="far_left", ypos="head") lun "Of course, what would you need me to do?" ("grin", "base", "raised", "mid") gen "Just stand there for a bit." ("base", xpos="far_left", ypos="head") - lun "Oh... Okay, [lun_genie_name]." ("base", "happyCl", "base", "mid") + lun "Oh... Okay, [name_genie_luna]." ("base", "happyCl", "base", "mid") $ genie_masturbating = True $ lun_jerk_off_counter += 1 @@ -764,15 +764,15 @@ label ll_pf_talk_T3_E1_repeat: gen "So...{w=0.4} Any news on those spurts?" ("base", xpos="far_left", ypos="head") lun "*Ehm*..." ("soft", "base", "base", "mid") - lun "Well, to be honest [lun_genie_name] they've not really left me alone at all." ("angry", "narrow", "base", "mid") + lun "Well, to be honest [name_genie_luna] they've not really left me alone at all." ("angry", "narrow", "base", "mid") gen "Really? I thought we had been taking good care of them." ("base", xpos="far_left", ypos="head") - lun "Oh, don't get me wrong [lun_genie_name]. All our tests have helped me immensely." ("grin", "narrow", "base", "mid") + lun "Oh, don't get me wrong [name_genie_luna]. All our tests have helped me immensely." ("grin", "narrow", "base", "mid") lun "If it wasn't for you, I think I would've gone completely crazy by now..." ("open", "narrow", "base", "down", cheeks="blush") gen "(As if you're not already, you nympho!)" ("base", xpos="far_left", ypos="head") call ctc - lun "*Ehm*, [lun_genie_name]..." ("soft", "narrow", "base", "mid", cheeks="blush") - gen "*Ah*...{w=0.3} Yes, [luna_name]?" ("base", xpos="far_left", ypos="head") + lun "*Ehm*, [name_genie_luna]..." ("soft", "narrow", "base", "mid", cheeks="blush") + gen "*Ah*...{w=0.3} Yes, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "I can't really see what you're doing from here..." ("open", "narrow", "base", "downL", cheeks="blush") lun "Wouldn't it be better if I came up and watched you?" ("base", "base", "raised", "mid", cheeks="blush") gen "I suppose..." ("base", xpos="far_left", ypos="head") @@ -787,10 +787,10 @@ label ll_pf_talk_T3_E1_repeat: lun "..." ("grin", "base", "base", "downL", cheeks="blush", xpos="mid", ypos="base", flip=True, trans=dissolve) gen "You suddenly went quiet..." ("base", xpos="far_left", ypos="head") gen "I don't think this will work if you just stand there..." ("base", xpos="far_left", ypos="head") - lun "Oh, sorry [lun_genie_name]..." ("mad", "base", "base", "mid", cheeks="blush") + lun "Oh, sorry [name_genie_luna]..." ("mad", "base", "base", "mid", cheeks="blush") lun "Your penis is quite distracting." ("soft", "narrow", "base", "mid", cheeks="blush") gen "That's certainly one way to describe it..." ("base", xpos="far_left", ypos="head") - lun "Are they...{w} Would you say your penis is big, [lun_genie_name]?" ("open", "narrow", "raised", "downL", cheeks="blush") + lun "Are they...{w} Would you say your penis is big, [name_genie_luna]?" ("open", "narrow", "raised", "downL", cheeks="blush") gen "Well..." ("base", xpos="far_left", ypos="head") menu: @@ -811,7 +811,7 @@ label ll_pf_talk_T3_E1_repeat: gen "Me of course!" ("base", xpos="far_left", ypos="head") gen "Ever since I normalised wearing loose-fitting robes, nobody has ever questioned me about it." ("base", xpos="far_left", ypos="head") gen "It is truly a curse... Sporting such a massive phallus..." ("base", xpos="far_left", ypos="head") - lun "I--{w=0.2} I'm sorry [lun_genie_name]... I had no idea..." ("angry", "narrow", "base", "mid", cheeks="blush") + lun "I--{w=0.2} I'm sorry [name_genie_luna]... I had no idea..." ("angry", "narrow", "base", "mid", cheeks="blush") gen "That's the downside of being such a powerful wizard..." ("base", xpos="far_left", ypos="head") gen "The more powerful you become, the larger the member... Yep... All that power goes straight to the head." ("base", xpos="far_left", ypos="head") lun "Oh, I think my dad told me something like that about the employees at the ministry." ("grin", "base", "base", "mid", cheeks="blush") @@ -840,11 +840,11 @@ label ll_pf_talk_T3_E1_repeat: gen "(Although that last one had a power enlargement...)" ("base", xpos="far_left", ypos="head") lun "I see..." ("grin", "base", "base", "mid", cheeks="blush") gen "Now if you excuse me, I need to concentrate on this..." ("base", xpos="far_left", ypos="head") - lun "Of course [lun_genie_name]..." ("crooked_smile", "narrow", "base", "mid", cheeks="blush") + lun "Of course [name_genie_luna]..." ("crooked_smile", "narrow", "base", "mid", cheeks="blush") gen "Feel free to tell me more about how big it is by the way... It might help." ("base", xpos="far_left", ypos="head") lun "Oh... *Ehm*..." ("mad", "narrow", "base", "mid", cheeks="blush") call nar(">You continue stroking your cock in anticipation as Luna looks at you, pondering what to say.") - lun "Your penis is so big, [lun_genie_name]..." ("soft", "narrow", "base", "downL", cheeks="blush") + lun "Your penis is so big, [name_genie_luna]..." ("soft", "narrow", "base", "downL", cheeks="blush") gen "Yes, that's it... Keep going, tell me how great I am." ("base", xpos="far_left", ypos="head") lun "And you're so powerful..." ("grin", "narrow", "base", "downL", cheeks="blush") gen "*Hmm*..." ("base", xpos="far_left", ypos="head") @@ -866,7 +866,7 @@ label ll_pf_talk_T3_E1_repeat: lun "Whoa!" ("open", "wide", "base", "downL", cheeks="blush") call cum_block gen "*Argh*..." ("angry", xpos="far_left", ypos="head") - lun "[lun_genie_name]!" ("soft", "wide", "base", "downL") + lun "[name_genie_luna]!" ("soft", "wide", "base", "downL") lun "You truly are power--!" ("grin", "wide", "base", "stare") gen "I'm not done yet!" ("angry", xpos="far_left", ypos="head") call cum_block @@ -880,13 +880,13 @@ label ll_pf_talk_T3_E1_repeat: gen "*Ah*...{w=0.3} *Ah*...{w=0.3} That's just sheer willpower... And a couple of Kegel exercises every now and then." ("base", xpos="far_left", ypos="head") lun "Astonishing..." ("soft", "narrow", "base", "downL") gen "You can stop staring at it now..." ("base", xpos="far_left", ypos="head") - lun "Oh... Of course, [lun_genie_name]." ("angry", "narrow", "base", "mid", cheeks="blush") + lun "Oh... Of course, [name_genie_luna]." ("angry", "narrow", "base", "mid", cheeks="blush") #Luna walks to mid position call lun_walk(path=[(230, 455),(230, 470),(440, 470),("mid", "base")]) call lun_chibi("stand", "mid", "base", flip=False) - lun "...{w} [lun_genie_name]?" ("open", "base", "base", "mid", flip=False, trans=dissolve) + lun "...{w} [name_genie_luna]?" ("open", "base", "base", "mid", flip=False, trans=dissolve) gen "Yes?" ("base", xpos="far_left", ypos="head") lun "Do you mind answering a question?" ("base", "base", "base", "mid") gen "Shoot." ("base", xpos="far_left", ypos="head") @@ -901,9 +901,9 @@ label ll_pf_talk_T3_E1_repeat: gen "Of course... Off you go!" ("base", xpos="far_left", ypos="head") else: lun "Well... If that was everything..." ("base", "base", "base", "mid") - gen "Yes, that shall do for tonight [luna_name]." ("base", xpos="far_left", ypos="head") - lun "Good night then, [lun_genie_name]." ("grin", "base", "base", "mid") - gen "Good night [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Yes, that shall do for tonight [name_luna_genie]." ("base", xpos="far_left", ypos="head") + lun "Good night then, [name_genie_luna]." ("grin", "base", "base", "mid") + gen "Good night [name_luna_genie]." ("base", xpos="far_left", ypos="head") call lun_walk(action="leave") diff --git a/game/scripts/characters/luna/events/intro.rpy b/game/scripts/characters/luna/events/intro.rpy index 0d86a69f..52d61152 100644 --- a/game/scripts/characters/luna/events/intro.rpy +++ b/game/scripts/characters/luna/events/intro.rpy @@ -8,7 +8,7 @@ label luna_intro_E1: # Setup $ luna_intro_E1 = True - $ luna_name = "???" + $ name_luna_genie = "???" $ d_flag_01 = False $ d_flag_02 = [False, False, False, False, False] @@ -126,7 +126,7 @@ label luna_intro_E1: lun "...{w=0.8}Wrackspurts..." ("open", "closed", "low", "mid") gen "Charming..." ("base", xpos="far_left", ypos="head") gen "(I suppose that is a plausible name in this world...)" ("base", xpos="far_left", ypos="head") - $ luna_name = "Miss Backspurts?" + $ name_luna_genie = "Miss Backspurts?" "-Hands-on examination-": pause 0.5 @@ -285,14 +285,14 @@ label luna_intro_E1: call her_walk("mid", action="enter") gen "Ah, Miss Granger..." ("base", xpos="far_left", ypos="head") - her "[genie_name]... do you know what time it--" ("normal", "happyCl", "base", "down", xpos=500, ypos="base", trans=dissolve) + her "[name_genie_hermione]... do you know what time it--" ("normal", "happyCl", "base", "down", xpos=500, ypos="base", trans=dissolve) her "..." ("normal", "narrow", "base", "L") her "Luna? what are you doing here?!?" ("angry", "base", "worried", "L") #shocked if d_flag_01: gen "(Didn't she say her name was backspurts or something?)" ("base", xpos="far_left", ypos="head") - $ luna_name = "Miss Luna?" + $ name_luna_genie = "Miss Luna?" her "Don't tell me--" ("clench", "happy", "worried", "mid") gen "Quiet, girl." ("base", xpos="far_left", ypos="head") @@ -329,7 +329,7 @@ label luna_intro_E1: menu: "\"I don't know where this Ravenglove dormitory is...\"": - her "It's Ravenclaw, [genie_name]..." ("disgust", "narrow", "annoyed", "mid") + her "It's Ravenclaw, [name_genie_hermione]..." ("disgust", "narrow", "annoyed", "mid") gen "Yes, that's what I said..." ("base", xpos="far_left", ypos="head") her "You said--" ("angry", "closed", "angry", "mid") her "What do you mean you don't know where their dormitory is?" ("clench", "squint", "base", "mid") @@ -338,7 +338,7 @@ label luna_intro_E1: "-Dismiss the question-": gen "Just get this weirdo out of here, please." ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "narrow", "worried", "mid") # Gasp + her "[name_genie_hermione]!" ("angry", "narrow", "worried", "mid") # Gasp lun "It tickles..." ("grin", "closed", "worried", "mid") her "......" ("disgust", "squint", "base", "L") # Looks at Luna, puzzled. her "She...{w=0.4} She's not a weirdo... She's just a bit... Loony..." ("disgust", "squint", "base", "mid") @@ -352,7 +352,7 @@ label luna_intro_E1: # tonks enters (wearing something sexy) call ton_walk("mid", 460, action="enter") - ton "*Yawn* Sorry I'm late, [ton_genie_name]." ("annoyed", "narrow", "shocked", "L", xpos="base", ypos="base", trans=dissolve) + ton "*Yawn* Sorry I'm late, [name_genie_tonks]." ("annoyed", "narrow", "shocked", "L", xpos="base", ypos="base", trans=dissolve) gen "You took your damn time." ("base", xpos="far_left", ypos="head") ton "I was in the middle of... something important." ("horny", "narrow", "base", "R") gen "Important, *hmm*..." ("base", xpos="far_left", ypos="head") @@ -391,7 +391,7 @@ label luna_intro_E1: ton "..." ("base", "base", "base", "mid") gen "Anyway..." ("base", xpos="far_left", ypos="head") - $ luna_name = "Miss Lovegood" + $ name_luna_genie = "Miss Lovegood" gen "This so called Miss {i}Lovegood{/i} sleep-walked in here." ("base", xpos="far_left", ypos="head") ton "How am I not surprised." ("base", "closed", "base", "mid") diff --git a/game/scripts/characters/luna/events/spectrespecs/spectrespecs.rpy b/game/scripts/characters/luna/events/spectrespecs/spectrespecs.rpy index 4cbc07aa..d26efd1e 100644 --- a/game/scripts/characters/luna/events/spectrespecs/spectrespecs.rpy +++ b/game/scripts/characters/luna/events/spectrespecs/spectrespecs.rpy @@ -213,7 +213,7 @@ label spectrespecs_E4: lun "And they're just like \"The Quibbler\" says, except..." ("clench", "closed", "base", "mid", cheeks="blush") ">You can see Luna is rocking her pelvis as if grinding the air." lun "Except... It's not my brain they're making fuzzy." ("disgust", "base", "base", "mid", cheeks="blush") - gen "So where exactly is this fuzzy feeling coming from, [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "So where exactly is this fuzzy feeling coming from, [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "I... I'm not sure I should say, Sir." ("soft", "narrow", "base", "downR", cheeks="blush") gen "Then I don't see how I'm supposed to be able to--" ("base", xpos="far_left", ypos="head") lun "Between my legs, Sir..." ("disgust", "happyCl", "base", "mid", cheeks="blush") diff --git a/game/scripts/characters/luna/gifts.rpy b/game/scripts/characters/luna/gifts.rpy index b6b2a42a..ed509da7 100644 --- a/game/scripts/characters/luna/gifts.rpy +++ b/game/scripts/characters/luna/gifts.rpy @@ -11,7 +11,7 @@ label give_lun_gift(gift_item): lun "A lollipop?" call give_gift(">You give the lollipop to Luna...", gift_item) lun "My father always believed that you should always have something sugary around in case any baby unicorns come to visit." - lun "Thank you, [lun_genie_name]." + lun "Thank you, [name_genie_luna]." elif gift_item == chocolate_ITEM: lun "Chocolate?" @@ -27,7 +27,7 @@ label give_lun_gift(gift_item): lun "Butterbeer?" call give_gift(">You give the bottle to Luna...", gift_item) lun "How did you know? I didn't wear my cork necklace today." - lun "Thank you, [lun_genie_name]." + lun "Thank you, [name_genie_luna]." elif gift_item == science_mag_ITEM: lun "Magical creatures weekly?" diff --git a/game/scripts/characters/luna/summon.rpy b/game/scripts/characters/luna/summon.rpy index c675f231..5d03078f 100644 --- a/game/scripts/characters/luna/summon.rpy +++ b/game/scripts/characters/luna/summon.rpy @@ -16,7 +16,7 @@ label summon_luna: call lun_chibi("stand","mid","base") with d3 - lun "[lun_genie_name]..." ("base", "base", "base", "mid", xpos="base", ypos="base") + lun "[name_genie_luna]..." ("base", "base", "base", "mid", xpos="base", ypos="base") if spectrespecs_E3 and not spectrespecs_E4: jump spectrespecs_E4 @@ -72,12 +72,12 @@ label summon_luna: if lun_mood >= 3: lun "Good day..." else: - lun "Sure thing, [lun_genie_name]. I will head to class." + lun "Sure thing, [name_genie_luna]. I will head to class." else: if lun_mood >= 3: lun "Good night..." else: - lun "Sure thing, good night [lun_genie_name]." + lun "Sure thing, good night [name_genie_luna]." jump end_luna_event @@ -190,19 +190,19 @@ label luna_talk: "-Address me only as-" if spectrespecs_E4: menu: "-Sir-": - $ lun_genie_name = "Sir" + $ name_genie_luna = "Sir" "-Dumbledore-": - $ lun_genie_name = "Dumbledore" + $ name_genie_luna = "Dumbledore" "-Professor-": - $ lun_genie_name = "Professor" + $ name_genie_luna = "Professor" "-Partner-": - $ lun_genie_name = "Partner" + $ name_genie_luna = "Partner" "-Master-" if lun_tier >= 2: - $ lun_genie_name = "Master" + $ name_genie_luna = "Master" "-Daddy-" if lun_tier >= 2: - $ lun_genie_name = "Daddy" + $ name_genie_luna = "Daddy" "-Custom Input-" if lun_tier >= 3: - $ lun_genie_name = renpy.input("(Please enter the name.)", lun_genie_name, ALLOWED_CHARACTERS, length=14).strip() or "Professor" + $ name_genie_luna = renpy.input("(Please enter the name.)", name_genie_luna, ALLOWED_CHARACTERS, length=14).strip() or "Professor" "-Never mind-": jump luna_talk @@ -211,54 +211,54 @@ label luna_talk: "-From now on I will refer to you as-" if spectrespecs_E4: menu: "-Miss Lovegood-": - $ luna_name = "Miss Lovegood" + $ name_luna_genie = "Miss Lovegood" "-Luna-": - $ luna_name = "Luna" + $ name_luna_genie = "Luna" "-Loony-": - $ luna_name = "Loony" + $ name_luna_genie = "Loony" "-Girl-": - $ luna_name = "Girl" + $ name_luna_genie = "Girl" "-Partner-": - $ luna_name = "Partner" + $ name_luna_genie = "Partner" "-Bimbo-" if lun_tier >= 2: - $ luna_name = "Bimbo" + $ name_luna_genie = "Bimbo" "-Minx-" if lun_tier >= 3: - $ luna_name = "Minx" + $ name_luna_genie = "Minx" "-Cumslut-" if lun_tier >= 5: - $ luna_name = "Cumslut" + $ name_luna_genie = "Cumslut" "-Custom Input-" if lun_tier >= 3: - $ luna_name = renpy.input("(Please enter the name.)", luna_name, ALLOWED_CHARACTERS, length=14).strip() or "Miss Lovegood" + $ name_luna_genie = renpy.input("(Please enter the name.)", name_luna_genie, ALLOWED_CHARACTERS, length=14).strip() or "Miss Lovegood" "-Never mind-": jump luna_talk - jump luna_name + jump name_luna_genie "-Never mind-": jump luna_requests label genie_luna_change: # NickName responses - if lun_genie_name == "Sir": - lun "Certainly, [lun_genie_name]." ("base", "base", "base", "mid") - elif lun_genie_name == "Dumbledore": + if name_genie_luna == "Sir": + lun "Certainly, [name_genie_luna]." ("base", "base", "base", "mid") + elif name_genie_luna == "Dumbledore": lun "You want me to call you by your last name?" ("annoyed", "narrow", "base", "mid") gen "Is that going to be a problem?" ("base", xpos="far_left", ypos="head") - lun "Of course not [lun_genie_name]..." ("angry", "base", "base", "mid") - lun "[lun_genie_name]..." ("angry", "base", "base", "downL") - lun "Don't think I've ever heard anyone call you just [lun_genie_name] before..." ("grin", "base", "base", "mid") - elif lun_genie_name == "Professor": - lun "Yes, [lun_genie_name]." ("base", "base", "base", "mid") - elif lun_genie_name == "Partner": - lun "[lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "Of course not [name_genie_luna]..." ("angry", "base", "base", "mid") + lun "[name_genie_luna]..." ("angry", "base", "base", "downL") + lun "Don't think I've ever heard anyone call you just [name_genie_luna] before..." ("grin", "base", "base", "mid") + elif name_genie_luna == "Professor": + lun "Yes, [name_genie_luna]." ("base", "base", "base", "mid") + elif name_genie_luna == "Partner": + lun "[name_genie_luna]?" ("soft", "base", "raised", "mid") gen "Yes, we're working together now so it's only appropriate." ("base", xpos="far_left", ypos="head") - lun "Oh... Of course [lun_genie_name]." ("grin", "base", "base", "mid") - elif lun_genie_name == "Master": - lun "[lun_genie_name]?" ("soft", "narrow", "base", "mid") - lun "What are you a [lun_genie_name] of exactly?" ("angry", "base", "base", "mid") + lun "Oh... Of course [name_genie_luna]." ("grin", "base", "base", "mid") + elif name_genie_luna == "Master": + lun "[name_genie_luna]?" ("soft", "narrow", "base", "mid") + lun "What are you a [name_genie_luna] of exactly?" ("angry", "base", "base", "mid") if lun_tier >= 3: gen "A master baiter!" ("grin", xpos="far_left", ypos="head") lun "Oh, right!" ("smile", "base", "base", "mid") - lun "Thank you for allowing me to be your pupil, [lun_genie_name]." ("base", "base", "base", "mid") + lun "Thank you for allowing me to be your pupil, [name_genie_luna]." ("base", "base", "base", "mid") else: gen "*Err*...{w=0.4} Of the arts?" ("base", xpos="far_left", ypos="head") lun "What arts?" ("angry", "narrow", "base", "mid") @@ -269,12 +269,12 @@ label genie_luna_change: gen "..." ("base", xpos="far_left", ypos="head") lun "Sir?" ("soft", "narrow", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("open", "base", "base", "mid") + lun "[name_genie_luna]?" ("open", "base", "base", "mid") gen "That's me." ("base", xpos="far_left", ypos="head") - lun "Okay, I'll call you [lun_genie_name] from now on." ("soft", "base", "base", "mid") + lun "Okay, I'll call you [name_genie_luna] from now on." ("soft", "base", "base", "mid") gen "(Another confrontation expertly avoided...)" ("base", xpos="far_left", ypos="head") - elif lun_genie_name == "Daddy": - lun "[lun_genie_name]?" ("open", "narrow", "base", "mid") + elif name_genie_luna == "Daddy": + lun "[name_genie_luna]?" ("open", "narrow", "base", "mid") gen "Yes..." ("base", xpos="far_left", ypos="head") lun "But wont that be confusing?" ("annoyed", "narrow", "base", "mid") gen "Would it?" ("base", xpos="far_left", ypos="head") @@ -282,16 +282,16 @@ label genie_luna_change: gen "I'm your daddy now..." ("base", xpos="far_left", ypos="head") lun "*Huh*?" ("angry", "base", "base", "mid") gen "Call me daddy you naughty girl!" ("angry", xpos="far_left", ypos="head") - lun "Oh...{w=0.3} Yes, I'm sorry [lun_genie_name]!" ("angry", "happyCl", "base", "mid") + lun "Oh...{w=0.3} Yes, I'm sorry [name_genie_luna]!" ("angry", "happyCl", "base", "mid") else: #custom/fallback - lun "Okay, I'll call you [lun_genie_name] from now on..." ("base", "base", "base", "mid") + lun "Okay, I'll call you [name_genie_luna] from now on..." ("base", "base", "base", "mid") jump luna_talk -label luna_name: +label name_luna_genie: # NickName responses - if luna_name == "Miss Lovegood": - lun "Of course, [lun_genie_name]." ("base", "wink", "base", "mid") - elif luna_name == "Luna": + if name_luna_genie == "Miss Lovegood": + lun "Of course, [name_genie_luna]." ("base", "wink", "base", "mid") + elif name_luna_genie == "Luna": lun "But that's my first name!" ("angry", "base", "base", "mid") gen "So?" ("base", xpos="far_left", ypos="head") lun "Isn't it against the law?" ("mad", "narrow", "base", "mid") @@ -300,31 +300,31 @@ label luna_name: gen "*Err*... No they recently made it legal." ("base", xpos="far_left", ypos="head") lun "Oh, How progressive!" ("soft", "base", "base", "stare") lun "Then of course, you can call me that!" ("smile", "base", "base", "mid") - elif luna_name == "Loony": - lun "Do you really need to call me that, [lun_genie_name]?" ("upset", "base", "base", "mid") + elif name_luna_genie == "Loony": + lun "Do you really need to call me that, [name_genie_luna]?" ("upset", "base", "base", "mid") lun "Other students call me that to make fun of me." ("upset", "base", "base", "R") gen "I like it." ("grin", xpos="far_left", ypos="head") lun "Alright then..." ("annoyed", "base", "base", "mid") - elif luna_name == "Girl": - lun "Just [luna_name]?" ("soft", "base", "raised", "mid") + elif name_luna_genie == "Girl": + lun "Just [name_luna_genie]?" ("soft", "base", "raised", "mid") gen "Yep." ("base", xpos="far_left", ypos="head") lun "Alright, I suppose I am a girl after all." ("grin", "narrow", "base", "mid") - elif luna_name == "Partner": - lun "[luna_name]?" ("soft", "base", "base", "mid") + elif name_luna_genie == "Partner": + lun "[name_luna_genie]?" ("soft", "base", "base", "mid") gen "Yes, we're partners in venture are we not?" ("base", xpos="far_left", ypos="head") lun "Oh right!" ("angry", "base", "base", "mid") lun "Of course, you can call me that!" ("grin", "base", "base", "mid") - elif luna_name == "Bimbo": + elif name_luna_genie == "Bimbo": lun "A what?" ("soft", "base", "base", "mid") gen "A Bimbo..." ("base", xpos="far_left", ypos="head") lun "Oh... Okay..." ("base", "base", "base", "mid") gen "(...{w} Maybe she doesn't know what that means...)" ("base", xpos="far_left", ypos="head") - elif luna_name == "Minx": + elif name_luna_genie == "Minx": lun "A mink?" ("soft", "base", "base", "mid") gen "No, a--" ("base", xpos="far_left", ypos="head") lun "I love minks!" ("smile", "wide", "base", "mid") gen "...{w=0.3} Great." ("base", xpos="far_left", ypos="head") - elif luna_name == "Cumslut": + elif name_luna_genie == "Cumslut": lun "Well I do love helping you cum..." ("grin", "narrow", "base", "downL") lun "Sure, you can call me that." ("grin", "base", "base", "mid") else: #Custom/fallback diff --git a/game/scripts/characters/luna/vars.rpy b/game/scripts/characters/luna/vars.rpy index 118cde65..7a035221 100644 --- a/game/scripts/characters/luna/vars.rpy +++ b/game/scripts/characters/luna/vars.rpy @@ -25,7 +25,7 @@ default spectrespecs_E4 = False default quibbler_stocked = False # Names -default lun_genie_name = "Professor" -default luna_name = "Miss Lovegood" +default name_genie_luna = "Professor" +default name_luna_genie = "Miss Lovegood" default gave_luna_gift = False diff --git a/game/scripts/characters/luna/wardrobe_reactions.rpy b/game/scripts/characters/luna/wardrobe_reactions.rpy index 6bba0856..7af31702 100644 --- a/game/scripts/characters/luna/wardrobe_reactions.rpy +++ b/game/scripts/characters/luna/wardrobe_reactions.rpy @@ -28,15 +28,15 @@ define lun_responses = { label lun_reaction_category_fail(category): if category == "upper undergarment": - lun "Is this part of our Wrackspurt research [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "Is this part of our Wrackspurt research [name_genie_luna]?" ("open", "base", "raised", "mid") gen "*Err*... I just thought maybe you could... Never mind..." ("base", xpos="far_left", ypos="head") elif category == "lower undergarment": - lun "Is this part of our Wrackspurt research [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "Is this part of our Wrackspurt research [name_genie_luna]?" ("soft", "base", "base", "mid") gen "*Err*... I just thought maybe you could... Never mind..." ("base", xpos="far_left", ypos="head") elif category == "piercings & tattoos": $ random_number = renpy.random.randint(1, 3) if random_number == 1: - lun "I'm not sure if that's such a good idea [lun_genie_name]..." ("open", "closed", "base", "mid") + lun "I'm not sure if that's such a good idea [name_genie_luna]..." ("open", "closed", "base", "mid") gen "Why's that?" ("base", xpos="far_left", ypos="head") lun "It might attract Nifflers into the castle..." ("normal", "base", "annoyed", "mid") gen "..." ("base", xpos="far_left", ypos="head") @@ -69,7 +69,7 @@ label lun_reaction_touch(what): lun "Pat, pat, pat." ("base", "happyCl", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") elif random_number == 3: - lun "Thank you, [lun_genie_name]..." ("soft", "narrow", "base", "downR", cheeks="blush") + lun "Thank you, [name_genie_luna]..." ("soft", "narrow", "base", "downR", cheeks="blush") lun "I feel like I get a big boost of happiness when you pat me for some reason..." ("base", "narrow", "base", "mid", cheeks="blush") lun "Maybe that's why animals enjoy it so much too..." ("grin", "base", "base", "mid", cheeks="blush") elif lun_tier == 3: @@ -78,13 +78,13 @@ label lun_reaction_touch(what): elif random_number == 2: lun "I don't think there's anywhere for me to release the Wrackspurts from up there, but thank you anyway..." ("base", "narrow", "base", "mid") elif random_number == 3: - lun "Are you sure this technique is working [lun_genie_name]?" ("annoyed", "base", "raised", "mid") + lun "Are you sure this technique is working [name_genie_luna]?" ("annoyed", "base", "raised", "mid") elif lun_tier == 2: if random_number == 1: - lun "Thank you [lun_genie_name]." ("crooked_smile", "base", "base", "mid") + lun "Thank you [name_genie_luna]." ("crooked_smile", "base", "base", "mid") lun "I'm so glad you decided to let me help with your research." ("smile", "happyCl", "base", "mid") elif random_number == 2: - lun "Are you feeling stressed [lun_genie_name]?" ("soft", "base", "base", "mid") + lun "Are you feeling stressed [name_genie_luna]?" ("soft", "base", "base", "mid") gen "*Huh*?" ("base", xpos="far_left", ypos="head") lun "Feel free to pet me any time you like if it helps." ("base", "closed", "base", "mid") gen "*Err*... Thanks..." ("base", xpos="far_left", ypos="head") @@ -92,7 +92,7 @@ label lun_reaction_touch(what): lun "*Hmm*... I'm not getting any of that tingly sensation up there but it does feel kind of nice..." ("soft", "base", "base", "up") else: #Tier 1 if random_number == 1: - lun "Thank you [lun_genie_name]." ("grin", "closed", "base", "mid") + lun "Thank you [name_genie_luna]." ("grin", "closed", "base", "mid") lun "Other students look at me weird if I try to pet them so I'm glad I didn't do something weird again..." ("angry", "base", "base", "downR") elif random_number == 2: lun "I already checked for Nargles this morning but I suppose you can't be too careful..." ("base", "base", "base", "down") @@ -112,14 +112,14 @@ label lun_reaction_touch(what): lun "*Huh*?" ("open", "base", "base", "mid") lun "Oh... Yes, those pesky little things..." ("soft", "base", "base", "downR", cheeks="blush") elif random_number == 3: - lun "*Ah*... Thank you for helping me [lun_genie_name]..." ("soft", "closed", "base", "mid", cheeks="blush") + lun "*Ah*... Thank you for helping me [name_genie_luna]..." ("soft", "closed", "base", "mid", cheeks="blush") elif lun_tier == 4: if random_number == 1: lun "*Mmm*... How come I don't really see any of the Wrackspurts coming out from here?" ("disgust", "narrow", "base", "mid", cheeks="blush") gen "*Err*..." ("base", xpos="far_left", ypos="head") lun "It feels really good so why aren't any of them coming out?" ("annoyed", "base", "base", "mid", cheeks="blush") elif random_number == 2: - lun "*Ah*... {w=0.4} Your methods are quite the something [lun_genie_name]..." ("open", "closed", "base", "mid", cheeks="blush") + lun "*Ah*... {w=0.4} Your methods are quite the something [name_genie_luna]..." ("open", "closed", "base", "mid", cheeks="blush") lun "I could never have imagined that getting rid of those pest would end up being so..." ("base", "closed", "base", "mid", cheeks="blush") lun "Enjoyable..." ("grin", "narrow", "base", "mid", cheeks="blush") elif random_number == 3: @@ -135,14 +135,14 @@ label lun_reaction_touch(what): elif random_number == 3: lun "..." ("soft", "base", "base", "mid", cheeks="blush") gen "How did that feel?" ("base", xpos="far_left", ypos="head") - lun "*Ehm*... It felt very nice [lun_genie_name]..." ("open", "narrow", "base", "downR", cheeks="blush") + lun "*Ehm*... It felt very nice [name_genie_luna]..." ("open", "narrow", "base", "downR", cheeks="blush") #elif lun_tier == 2: This would only be useful if there was another check if you've done event 2 to have it show before T3 else: # T1 and T2 if random_number == 1: lun "*Hi-Hi*..." ("grin", "closed", "base", "mid") - lun "Sorry [lun_genie_name], your beard is tickling me..." ("smile", "base", "base", "mid") + lun "Sorry [name_genie_luna], your beard is tickling me..." ("smile", "base", "base", "mid") elif random_number == 2: - lun "Are you looking for the Himalayan Lesser Spotted Breast Imp? It's okay [lun_genie_name], it's not their migration season." ("grin", "base", "base", "down") + lun "Are you looking for the Himalayan Lesser Spotted Breast Imp? It's okay [name_genie_luna], it's not their migration season." ("grin", "base", "base", "down") elif random_number == 3: lun "..." ("soft", "base", "raised", "mid") @@ -191,19 +191,19 @@ label lun_reaction_touch_fail(what): #Not used $ mouse_slap() gen "Ouch! Why would you do that?!" ("angry", xpos="far_left", ypos="head") - lun "Oh! I'm terribly sorry, [lun_genie_name], I used to play this game with my father and..." + lun "Oh! I'm terribly sorry, [name_genie_luna], I used to play this game with my father and..." gen "I don't need to hear it..." ("base", xpos="far_left", ypos="head") - lun "...as you wish [lun_genie_name]." + lun "...as you wish [name_genie_luna]." elif what == "breasts": $ mouse_slap() - lun "*giggles* [lun_genie_name] stop that! It tickles." + lun "*giggles* [name_genie_luna] stop that! It tickles." elif what == "vagina": $ mouse_slap() - lun "*Ah* [lun_genie_name], please don't tease me, wrackspurts have been terribly active today and I'm barely able to withhold as it is." + lun "*Ah* [name_genie_luna], please don't tease me, wrackspurts have been terribly active today and I'm barely able to withhold as it is." return @@ -225,9 +225,9 @@ label lun_reaction_equip_fail(item): lun "There's a weird aura surrounding this piece of garment." ("open", "closed", "base", "mid") lun "It seems to be affecting the Wrackspurts, as if they're multiplying!" ("disgust", "base", "base", "mid") if lun_whoring < 4: - lun "I'm sorry [lun_genie_name] but I can't wear that... Not until we find a way of dealing with them." ("open", "closed", "base", "mid") + lun "I'm sorry [name_genie_luna] but I can't wear that... Not until we find a way of dealing with them." ("open", "closed", "base", "mid") else: - lun "I'm sorry [lun_genie_name] but I can't wear that... Not until we find a better strategy of dealing with them." ("open", "closed", "base", "mid") + lun "I'm sorry [name_genie_luna] but I can't wear that... Not until we find a better strategy of dealing with them." ("open", "closed", "base", "mid") gen "(I guess that means she's not ready yet.)" ("base", xpos="far_left", ypos="head") return @@ -237,13 +237,13 @@ label lun_reaction_unequip(item): # if item.type == "panties": # if lun_whoring > 15: # lun "You want to see my snatch?" - # lun "You got it [genie_name]!" + # lun "You got it [name_genie_hermione]!" # return label lun_reaction_unequip_fail(item): if item.type == "panties": #probably wont play since category unlocks same level as she can take them off - lun "I'm sorry [lun_genie_name] but my panties are my one and only defence against wrackspurts." ("open", "closed", "base", "mid") + lun "I'm sorry [name_genie_luna] but my panties are my one and only defence against wrackspurts." ("open", "closed", "base", "mid") elif item.type == "bra": #probably wont play since category unlocks same level as she can take them off lun "*giggles*" ("grin", "closed", "base", "mid") @@ -251,12 +251,12 @@ label lun_reaction_unequip_fail(item): lun "Oh... It's nothing..." ("base", "base", "base", "R") elif item.type == "top": - lun "Are we going to continue the research, [lun_genie_name]?" ("open", "base", "raised", "mid") + lun "Are we going to continue the research, [name_genie_luna]?" ("open", "base", "raised", "mid") gen "Not right now..." ("base", xpos="far_left", ypos="head") lun "Oh... Then let me know when you're ready..." ("base", "base", "base", "R") elif item.type == "bottom": - lun "Are we going to continue the research, [lun_genie_name]?" ("upset", "base", "raised", "mid") + lun "Are we going to continue the research, [name_genie_luna]?" ("upset", "base", "raised", "mid") gen "Not right now..." ("base", xpos="far_left", ypos="head") lun "Oh... Then let me know when you're ready..." ("base", "base", "base", "R") @@ -276,31 +276,31 @@ label lun_reaction_equip_outfit(item): gen "Nice and proper please." ("base", xpos="far_left", ypos="head") if lun_whoring < 4: gen "No wands in your hair... No weird stuff..." ("base", xpos="far_left", ypos="head") - lun "Weird stuff, [lun_genie_name]?" ("annoyed", "narrow", "base", "mid") + lun "Weird stuff, [name_genie_luna]?" ("annoyed", "narrow", "base", "mid") gen "*Err*... Nothing extra outside the regular uniform I mean..." ("base", xpos="far_left", ypos="head") lun "What about my underwear?" ("angry", "base", "base", "mid") - gen "Your underwear [luna_name]?" ("base", xpos="far_left", ypos="head") + gen "Your underwear [name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "I didn't get those with the uniform, so can I still wear them?" ("normal", "base", "base", "mid") gen "(Is this girl for real?)" ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "[name_genie_luna]?" ("soft", "base", "raised", "mid") gen "I guess?" ("base", xpos="far_left", ypos="head") lun "Okay, I'll keep them on then." ("grin", "happyCl", "base", "mid") gen "(Wait... Taking them off was a real option?)" ("base", xpos="far_left", ypos="head") elif lun_whoring < 7: - lun "Thank you [lun_genie_name]." ("grin", "base", "base", "mid") + lun "Thank you [name_genie_luna]." ("grin", "base", "base", "mid") gen "For what?" ("base", xpos="far_left", ypos="head") lun "Keeping me safe from the wrackspurts!" ("grin", "wink", "base", "mid") gen "That's not..." ("base", xpos="far_left", ypos="head") gen "Just put the thing on..." ("base", xpos="far_left", ypos="head") - lun "Yes, [lun_genie_name]!" ("base", "base", "base", "mid") + lun "Yes, [name_genie_luna]!" ("base", "base", "base", "mid") else: #7+ - lun "Do you mean like how the other students wear theirs [lun_genie_name]?" ("soft", "base", "base", "stare") + lun "Do you mean like how the other students wear theirs [name_genie_luna]?" ("soft", "base", "base", "stare") gen "... Yes?" ("base", xpos="far_left", ypos="head") lun "Will that give the Wrackpurts a harder time getting to me?" ("angry", "wink", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") lun "Is the theory that they won't be able to differentiate me from any of the other girls?" ("open", "base", "raised", "mid") gen "*Err*... Sure..." ("base", xpos="far_left", ypos="head") - lun "Interesting idea [lun_genie_name]... Let's try it." ("base", "base", "base", "mid") + lun "Interesting idea [name_genie_luna]... Let's try it." ("base", "base", "base", "mid") ####################### ## Quirky Schoolgirl ## @@ -312,7 +312,7 @@ label lun_reaction_equip_outfit(item): lun "I'm not sure I remember how I wore it..." ("open", "base", "base", "down") gen "*Err*... No I meant the one when you came into my office, when you told me about the spurts." ("base", xpos="far_left", ypos="head") lun "Oh... Then why didn't you say so!" ("grin", "happyCl", "base", "mid") - lun "One moment, [lun_genie_name]." ("base", "base", "base", "mid") + lun "One moment, [name_genie_luna]." ("base", "base", "base", "mid") ####################### ## Slutty Schoolgirl ## @@ -320,7 +320,7 @@ label lun_reaction_equip_outfit(item): elif item == lun_outfit_school_slut: #Req 7 (no bra) gen "Put on your school uniform for me will you?" ("base", xpos="far_left", ypos="head") gen "This one with the tied top and short skirt." ("base", xpos="far_left", ypos="head") - lun "You're so smart [lun_genie_name]!" ("grin", "wink", "base", "mid") + lun "You're so smart [name_genie_luna]!" ("grin", "wink", "base", "mid") gen "I am?" ("base", xpos="far_left", ypos="head") lun "This way you'll get to the affected areas so much quicker!" ("base", "wink", "base", "mid", cheeks="blush") gen "Oh, yes that's it!" ("base", xpos="far_left", ypos="head") @@ -337,10 +337,10 @@ label lun_reaction_equip_outfit(item): gen "Do what?" ("base", xpos="far_left", ypos="head") lun "Wear pyjamas during the day!" ("mad", "narrow", "base", "mid") gen "Yes? Why wouldn't you be able to? I'm wearing this robe all the time and I'm nowhere near a bath." ("base", xpos="far_left", ypos="head") - lun "If you say so [lun_genie_name]..." ("angry", "base", "base", "mid") + lun "If you say so [name_genie_luna]..." ("angry", "base", "base", "mid") else: lun "My pyjamas?" ("soft", "base", "raised", "mid") - gen "Yes, [luna_name]... Please put them on for me." ("base", xpos="far_left", ypos="head") + gen "Yes, [name_luna_genie]... Please put them on for me." ("base", xpos="far_left", ypos="head") lun "But, there's no bed in here..." ("angry", "narrow", "base", "mid") gen "No bed?" ("base", xpos="far_left", ypos="head") lun "Yes, why would I put it on if I'm not going to sleep?" ("angry", "wink", "base", "mid") @@ -348,15 +348,15 @@ label lun_reaction_equip_outfit(item): lun "That's true!" ("grin", "base", "base", "stare") lun "I should wear them all the time, then I'd never need to change!" ("base", "base", "base", "mid") gen "Well... I wouldn't go that far, just put them on for now." ("base", xpos="far_left", ypos="head") - lun "Alright, [lun_genie_name]." ("base", "wink", "base", "mid") + lun "Alright, [name_genie_luna]." ("base", "wink", "base", "mid") ################################## ## Loose-fitting Nightie Outfit ## ################################## elif item == lun_outfit_nightie1: #Req 7 (no bra, no panties) - gen "Put on this nightie for me [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Put on this nightie for me [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "And skip the underwear." ("base", xpos="far_left", ypos="head") - lun "No underwear [lun_genie_name]?" ("soft", "base", "worried", "mid") + lun "No underwear [name_genie_luna]?" ("soft", "base", "worried", "mid") lun "But what if the wrackspurts get in there?" ("angry", "base", "worried", "mid") gen "I'm sure we'll be able to deal with them if that happens, don't you think?" ("base", xpos="far_left", ypos="head") lun "Alright then..." ("grin", "base", "base", "mid", cheeks="blush") @@ -365,11 +365,11 @@ label lun_reaction_equip_outfit(item): ## Nightie Outfit ## #################### elif item == lun_outfit_nightie2: #Req 7 (no bra, no panties) - gen "Put on this nightie for me [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Put on this nightie for me [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "And skip the underwear." ("base", xpos="far_left", ypos="head") - lun "No underwear [lun_genie_name]?" ("soft", "base", "worried", "mid") + lun "No underwear [name_genie_luna]?" ("soft", "base", "worried", "mid") gen "Yes, this way I'll be able to see if the spurts get in there." ("base", xpos="far_left", ypos="head") - lun "But how are you supposed to see them without the glasses [luna_name]?" ("soft", "base", "base", "mid") + lun "But how are you supposed to see them without the glasses [name_luna_genie]?" ("soft", "base", "base", "mid") gen "I'm sure I'd be able to tell if they did, even without the glasses." ("base", xpos="far_left", ypos="head") lun "Alright then..." ("base", "narrow", "base", "mid", cheeks="blush") @@ -381,7 +381,7 @@ label lun_reaction_equip_outfit(item): lun "These are pretty..." ("soft", "base", "base", "down") lun "But don't you think the Nargles would try to hide in them?" ("angry", "base", "base", "mid") gen "*Err*... Don't you mean the spurts?" ("base", xpos="far_left", ypos="head") - lun "No [lun_genie_name]...{w=0.4} Nargles loves anything with roses on them..." ("soft", "narrow", "base", "mid") + lun "No [name_genie_luna]...{w=0.4} Nargles loves anything with roses on them..." ("soft", "narrow", "base", "mid") lun "Although now that you mention it, Nargles and Wrackspurts don't like each other so perhaps it's a good time to test that theory." ("grin", "base", "base", "mid") ######################## @@ -420,7 +420,7 @@ label lun_reaction_equip_outfit(item): ############ elif item == lun_outfit_muggle: #No req gen "Put on this maggle outfit for me..." ("base", xpos="far_left", ypos="head") - lun "Muggle outfit, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "Muggle outfit, [name_genie_luna]?" ("soft", "base", "raised", "mid") gen "Yes that's it!" ("base", xpos="far_left", ypos="head") lun "I like the skirt!" ("smile", "base", "base", "down") gen "Is that sarcasm?" ("base", xpos="far_left", ypos="head") @@ -466,7 +466,7 @@ label lun_reaction_equip_outfit(item): ############ elif item == lun_outfit_casual: #Req 0 gen "Could you put on something more casual?" ("base", xpos="far_left", ypos="head") - lun "Casual, [lun_genie_name]?" ("soft", "base", "raised", "mid") + lun "Casual, [name_genie_luna]?" ("soft", "base", "raised", "mid") gen "Yeah, something that doesn't show too much skin." ("base", xpos="far_left", ypos="head") gen "(What the hell is wrong with me?)" ("base", xpos="far_left", ypos="head") lun "Oh, of course, I could put on my Casual clothing." ("grin", "base", "base", "mid") @@ -479,7 +479,7 @@ label lun_reaction_equip_outfit(item): elif item == lun_outfit_party: #Req 7 (No Bra) gen "This dress seems odd enough to suit you." ("base", xpos="far_left", ypos="head") gen "Why don't you put it on?" ("base", xpos="far_left", ypos="head") - lun "Odd [lun_genie_name]?" ("angry", "narrow", "base", "mid") + lun "Odd [name_genie_luna]?" ("angry", "narrow", "base", "mid") gen "In a good way..." ("base", xpos="far_left", ypos="head") lun "I love it!" ("grin", "base", "base", "down") lun "I've got the same one at home!" ("smile", "happyCl", "base", "mid") @@ -502,7 +502,7 @@ label lun_reaction_equip_outfit(item): gen "(Guess she's one of those marvel fans...)" ("base", xpos="far_left", ypos="head") menu: "\"(Put it on and call me puddin'!)\"": - $ lun_genie_name = "Puddin'" + $ name_genie_luna = "Puddin'" lun "Puddin'?" ("soft", "base", "base", "mid") gen "Yes?" ("base", xpos="far_left", ypos="head") lun "Alright then..." ("base", "base", "base", "mid") @@ -574,7 +574,7 @@ label lun_reaction_equip_outfit_fail(item): if item == lun_outfit_school_slut: #Req 7 (no bra) gen "Put on your school uniform for me will you?" ("base", xpos="far_left", ypos="head") gen "This one with the tied top and short skirt." ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]!" ("angry", "wide", "base", "mid") + lun "But [name_genie_luna]!" ("angry", "wide", "base", "mid") lun "This doesn't have a bra!" ("angry", "wide", "base", "mid") gen "So?" ("base", xpos="far_left", ypos="head") lun "Surely I shouldn't be standing here without a bra on?" ("mad", "narrow", "base", "mid") @@ -595,17 +595,17 @@ label lun_reaction_equip_outfit_fail(item): ## Loose-fitting Nightie Outfit ## ################################## elif item == lun_outfit_nightie1: #Req 7 (no bra, no panties) - gen "Put on this nightie for me [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Put on this nightie for me [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "And skip the underwear." ("base", xpos="far_left", ypos="head") if lun_whoring < 4: - lun "But [lun_genie_name]!" ("angry", "wide", "base", "mid") + lun "But [name_genie_luna]!" ("angry", "wide", "base", "mid") lun "The wrackpurts would be able to get in there if I'm not to wear any underwear." ("clench", "wink", "base", "mid") gen "I'm sure we'll be able to deal with that if it comes down to it..." ("base", xpos="far_left", ypos="head") lun "*Hmm*... I'm not so sure about that..." ("disgust", "base", "base", "mid") else: lun "Is this part of the inspection?" ("soft", "narrow", "base", "mid") gen "Yes... Well you see, the spurts... *Err*..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]... I'd rather not make myself a target of those things, standing here without underwear would surely bring them all to attention." ("angry", "wink", "base", "mid") + lun "[name_genie_luna]... I'd rather not make myself a target of those things, standing here without underwear would surely bring them all to attention." ("angry", "wink", "base", "mid") gen "It'd bring something to attention that's for sure." ("base", xpos="far_left", ypos="head") lun "Alright, then I better not." ("angry", "narrow", "base", "mid") gen "Wait, I was only--" ("base", xpos="far_left", ypos="head") @@ -615,10 +615,10 @@ label lun_reaction_equip_outfit_fail(item): ## Nightie Outfit ## #################### elif item == lun_outfit_nightie2: #Req 7 (no bra, no panties) - gen "Put on this nightie for me [luna_name]." ("base", xpos="far_left", ypos="head") + gen "Put on this nightie for me [name_luna_genie]." ("base", xpos="far_left", ypos="head") gen "And skip the underwear." ("base", xpos="far_left", ypos="head") if lun_whoring < 4: - lun "But [lun_genie_name]!" ("angry", "wide", "base", "mid") + lun "But [name_genie_luna]!" ("angry", "wide", "base", "mid") lun "What about the Wrackspurts?" ("clench", "wink", "base", "mid") gen "What do you mean, what about the spurts?" ("base", xpos="far_left", ypos="head") lun "They'll be able to get in there if I'm not wearing any underwear!" ("clench", "base", "base", "mid") @@ -628,7 +628,7 @@ label lun_reaction_equip_outfit_fail(item): else: lun "Is this part of the inspection?" ("soft", "narrow", "base", "mid") gen "Yes... Well you see, the spurts... *Err*..." ("base", xpos="far_left", ypos="head") - lun "[lun_genie_name]... Don't you think they'd easily be able to fly in there if I'm not wearing any underwear?" ("angry", "wink", "base", "mid") + lun "[name_genie_luna]... Don't you think they'd easily be able to fly in there if I'm not wearing any underwear?" ("angry", "wink", "base", "mid") gen "I don't see how that's a problem, it feels nice does it not?" ("base", xpos="far_left", ypos="head") lun "*Ehm*... Does that matter?" ("soft", "narrow", "base", "mid", cheeks="blush") gen "(Is there even a right answer here?)" ("base", xpos="far_left", ypos="head") @@ -638,14 +638,14 @@ label lun_reaction_equip_outfit_fail(item): gen "Right... Wait, what was the question?" ("base", xpos="far_left", ypos="head") lun "..." ("soft", "base", "base", "mid") "\"Yes.\"": - lun "Are you alright [lun_genie_name]?" ("angry", "narrow", "base", "mid") + lun "Are you alright [name_genie_luna]?" ("angry", "narrow", "base", "mid") gen "Never been better, why?" ("base", xpos="far_left", ypos="head") lun "*Hmm*... Are you sure the wrackspurts haven't affected your brain perhaps?" ("annoyed", "narrow", "base", "mid") gen "Doubt it... Although people do tell me I think with my penis sometimes." ("base", xpos="far_left", ypos="head") lun "Surely it's not a good idea to give them an open landing strip." ("soft", "narrow", "base", "mid") gen "We'll just deal with it if it happens." ("base", xpos="far_left", ypos="head") lun "*Hmm*... I'm not so sure about that." ("annoyed", "narrow", "base", "R") - gen "Well, that's your loss [luna_name]..." ("base", xpos="far_left", ypos="head") + gen "Well, that's your loss [name_luna_genie]..." ("base", xpos="far_left", ypos="head") gen "(Damn... Maybe I'll be able to convince her once she's more confident about dealing with them.)" ("base", xpos="far_left", ypos="head") ###################### @@ -653,7 +653,7 @@ label lun_reaction_equip_outfit_fail(item): ###################### elif item == lun_outfit_lace1: #Req 7 (bra, panties) gen "Put on this lace lingerie for me will you?" ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]!" ("mad", "base", "base", "down") + lun "But [name_genie_luna]!" ("mad", "base", "base", "down") lun "These got roses on them!" ("angry", "narrow", "base", "down") gen "So?" ("base", xpos="far_left", ypos="head") lun "The Nargles would surely try and hide in them if I put this on!" ("clench", "happyCl", "base", "mid") @@ -664,7 +664,7 @@ label lun_reaction_equip_outfit_fail(item): ######################## elif item == lun_outfit_bikini3: #Req 7 (bra, panties) gen "Put on this bikini for me will you?" ("base", xpos="far_left", ypos="head") - lun "I'm sorry [lun_genie_name] but I can't wear this right now." ("upset", "narrow", "base", "down") + lun "I'm sorry [name_genie_luna] but I can't wear this right now." ("upset", "narrow", "base", "down") gen "Why not?" ("base", xpos="far_left", ypos="head") lun "Oh... *Ehm*..." ("soft", "narrow", "base", "down", cheeks="blush") lun "I'd rather we continue with our research..." ("angry", "closed", "base", "mid", cheeks="blush") @@ -684,10 +684,10 @@ label lun_reaction_equip_outfit_fail(item): gen "Hello?" ("base", xpos="far_left", ypos="head") lun "..." ("soft", "wide", "base", "stare") gen "(I think I just blew her mind...)" ("base", xpos="far_left", ypos="head") - gen "[luna_name]?" ("base", xpos="far_left", ypos="head") + gen "[name_luna_genie]?" ("base", xpos="far_left", ypos="head") lun "..." ("soft", "wide", "base", "stare") - gen "[luna_name]!" ("base", xpos="far_left", ypos="head") - lun "Oh, sorry [lun_genie_name] what did you say?" ("angry", "wide", "base", "mid") + gen "[name_luna_genie]!" ("base", xpos="far_left", ypos="head") + lun "Oh, sorry [name_genie_luna] what did you say?" ("angry", "wide", "base", "mid") gen "Nevermind... Forget it." ("base", xpos="far_left", ypos="head") ###################### @@ -695,7 +695,7 @@ label lun_reaction_equip_outfit_fail(item): ###################### elif item == lun_outfit_flight_attendant: #Req 7 (No Bra) gen "Put on this flight attendant outfit for me will you?" ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name], I'd have to take off my bra for this!" ("mad", "wide", "base", "mid") + lun "But [name_genie_luna], I'd have to take off my bra for this!" ("mad", "wide", "base", "mid") gen "So?" ("base", xpos="far_left", ypos="head") lun "Haven't you heard of the nipple biting mouth suckers?!" ("clench", "base", "base", "mid") gen "Oh, yeah of course!" ("base", xpos="far_left", ypos="head") @@ -717,7 +717,7 @@ label lun_reaction_equip_outfit_fail(item): lun "Well... It's a bit embarrassing actually..." ("angry", "narrow", "base", "R") lun "My latch got stuck on it..." ("disgust", "base", "base", "downL") gen "Your... latch?" ("base", xpos="far_left", ypos="head") - lun "Yes [lun_genie_name]..." ("angry", "base", "worried", "mid") + lun "Yes [name_genie_luna]..." ("angry", "base", "worried", "mid") gen "Sounds more like artificial content gating to me..." ("base", xpos="far_left", ypos="head") lun "Sorry?" ("angry", "base", "raised", "mid") gen "Don't worry... They know what I meant..." ("base", xpos="far_left", ypos="head") @@ -730,7 +730,7 @@ label lun_reaction_equip_outfit_fail(item): gen "I've got the perfect dress for you to wear!" ("base", xpos="far_left", ypos="head") lun "Really? Exciting!" ("grin", "base", "base", "mid") gen "Yes, I can't wait to see what your nipples will look like in this!" ("base", xpos="far_left", ypos="head") - lun "My... Nipples [lun_genie_name]?" ("soft", "wink", "base", "mid") + lun "My... Nipples [name_genie_luna]?" ("soft", "wink", "base", "mid") gen "Yes, you'd have to take your bra off for this one... It's the only way." ("base", xpos="far_left", ypos="head") lun "*Hmm*... I'm not sure that's the proper way of wearing a dress..." ("soft", "wink", "base", "mid") gen "What do you--" ("base", xpos="far_left", ypos="head") @@ -762,7 +762,7 @@ label lun_reaction_equip_outfit_fail(item): gen "I'm talking about this kind of uniform..." ("base", xpos="far_left", ypos="head") lun "Oh!!" ("open", "wide", "base", "mid") gen "(Now she's got it...)" ("base", xpos="far_left", ypos="head") - lun "But [lun_genie_name]... This outfit doesn't have a bra!" ("clench", "narrow", "base", "mid") + lun "But [name_genie_luna]... This outfit doesn't have a bra!" ("clench", "narrow", "base", "mid") gen "I'm sure the outfit is tight enough to keep them contained, don't you think?" ("base", xpos="far_left", ypos="head") lun "I'm more worried about what could find its way into it..." ("annoyed", "narrow", "base", "down") gen "(And here I thought she wanted some hands on experience.)" ("base", xpos="far_left", ypos="head") @@ -814,7 +814,7 @@ label lun_reaction_equip_outfit_fail(item): gen "(I don't remember cumming on this piece of garment...)" ("base", xpos="far_left", ypos="head") gen "(!!!)" ("angry", xpos="far_left", ypos="head") gen "(Could it be--...)" ("angry", xpos="far_left", ypos="head") - lun "Are you okay [lun_genie_name]? You look pale." ("angry", "base", "raised", "mid") + lun "Are you okay [name_genie_luna]? You look pale." ("angry", "base", "raised", "mid") gen "Yes, I'm fine. I guess you can stay in your clothes... for now." ("base", xpos="far_left", ypos="head") return @@ -835,7 +835,7 @@ label lun_reaction_blacklist(item): lun "The Wrackspurts would have a feast as I would not be able to wear panties with this." ("upset", "narrow", "base", "down") gen "Trust me, I know what I'm doing." ("base", xpos="far_left", ypos="head") - lun "If you say so [lun_genie_name]." ("base", "base", "base", "mid") + lun "If you say so [name_genie_luna]." ("base", "base", "base", "mid") return diff --git a/game/scripts/characters/susan/common.rpy b/game/scripts/characters/susan/common.rpy index dd68ed1f..6fc70574 100644 --- a/game/scripts/characters/susan/common.rpy +++ b/game/scripts/characters/susan/common.rpy @@ -65,7 +65,7 @@ label update_susan: return -define character.susan_say = Character("susan_name", show_icon="susan", dynamic=True) +define character.susan_say = Character("name_susan_genie", show_icon="susan", dynamic=True) init python: def sus(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, diff --git a/game/scripts/characters/susan/summon.rpy b/game/scripts/characters/susan/summon.rpy index 5d961a0b..d677a5de 100644 --- a/game/scripts/characters/susan/summon.rpy +++ b/game/scripts/characters/susan/summon.rpy @@ -16,7 +16,7 @@ label summon_susan: call sus_chibi("stand","mid","base") with d3 - sus "You wanted to see me, [sus_genie_name]?" ("base", "base", "base", "mid", xpos="base", ypos="base") + sus "You wanted to see me, [name_genie_susan]?" ("base", "base", "base", "mid", xpos="base", ypos="base") label susan_requests: @@ -27,7 +27,7 @@ label summon_susan: # Talk "-Talk-" (icon="interface/icons/small/talk.webp"): if sus_mood > 0: - sus "I'm sorry, [sus_genie_name], but I don't want to talk right now." ("soft", "happy", "base", "downR") + sus "I'm sorry, [name_genie_susan], but I don't want to talk right now." ("soft", "happy", "base", "downR") jump susan_requests call susan_chitchat @@ -59,9 +59,9 @@ label summon_susan: # Dismiss "-Dismiss her-": if game.daytime: - sus "I will go back to classes then, [sus_genie_name]." ("base", "base", "shocked", "mid") + sus "I will go back to classes then, [name_genie_susan]." ("base", "base", "shocked", "mid") else: - sus "*Ehm*... good night then, [sus_genie_name]." ("base", "base", "base", "mid") + sus "*Ehm*... good night then, [name_genie_susan]." ("base", "base", "base", "mid") call play_sound("door") @@ -75,36 +75,36 @@ label susan_talk: "-Address me only as-": menu: "-Sir-": - $ sus_genie_name = "Sir" - sus "Very well, [sus_genie_name]." ("base", "base", "base", "mid") + $ name_genie_susan = "Sir" + sus "Very well, [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Dumbledore-": - $ sus_genie_name = "Dumbledore" - sus "Okay, [sus_genie_name]." ("soft", "base", "base", "mid") + $ name_genie_susan = "Dumbledore" + sus "Okay, [name_genie_susan]." ("soft", "base", "base", "mid") jump susan_talk "-Professor-": - $ sus_genie_name = "Professor" - sus "Of course, [sus_genie_name]." ("base", "base", "base", "mid") + $ name_genie_susan = "Professor" + sus "Of course, [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Old man-": - $ sus_genie_name = "Old man" + $ name_genie_susan = "Old man" sus "That wouldn't be very polite, Professor." ("soft", "happy", "low", "mid") - gen "Don't worry, [susan_name]. I always tell my students to call me silly names." ("base", xpos="far_left", ypos="head") + gen "Don't worry, [name_susan_genie]. I always tell my students to call me silly names." ("base", xpos="far_left", ypos="head") gen "It helps bonding with them!" ("grin", xpos="far_left", ypos="head") - sus "If you say so... *Ehm*, [sus_genie_name]." ("normal", "happy", "low", "downL") + sus "If you say so... *Ehm*, [name_genie_susan]." ("normal", "happy", "low", "downL") gen "(And soon I'm going to bond with your tits!)" ("angry", xpos="far_left", ypos="head") jump susan_talk "-Genie-": - $ sus_genie_name = "Genie" + $ name_genie_susan = "Genie" sus "I... *Ehm*--" ("soft", "happy", "base", "mid") sus "Is that something people call you?" ("open", "base", "raised", "mid") gen "Yes-yes--, everybody!" ("base", xpos="far_left", ypos="head") gen "It's perfectly normal!" ("base", xpos="far_left", ypos="head") sus "(...)" ("soft", "base", "base", "mid") - sus "O--{w=0.2} Okay then... [sus_genie_name]." ("grin", "happy", "base", "mid") + sus "O--{w=0.2} Okay then... [name_genie_susan]." ("grin", "happy", "base", "mid") jump susan_talk "-Lord Voldemort-": - $ sus_genie_name = "Lord Voldemort" + $ name_genie_susan = "Lord Voldemort" sus "Why would you want me to call you that?" ("angry", "happy", "low", "mid") sus "We aren't supposed to mention his name!" ("angry", "happy", "worried", "mid") gen "It's only a name, girl..." ("base", xpos="far_left", ypos="head") @@ -116,7 +116,7 @@ label susan_talk: sus "V--{w=0.2} Voldemort..." ("angry", "happyCl", "sad", "mid") jump susan_talk "-Daddy-": - $ sus_genie_name = "Daddy" + $ name_genie_susan = "Daddy" sus "Sir, no!" ("angry", "base", "base", "mid", cheeks="blush") sus "I can't possibly call you that!" ("open", "happy", "sad", "mid", cheeks="blush") gen "But I want you to." ("base", xpos="far_left", ypos="head") @@ -127,21 +127,21 @@ label susan_talk: sus "O--{w=0.2} Okay then... Professor-- *Ehm*... D-Daddy." ("annoyed", "happy", "worried", "stare", cheeks="blush") jump susan_talk "-Master-": - $ sus_genie_name = "Master" + $ name_genie_susan = "Master" sus "M--{w=0.2} Master?" ("soft", "base", "base", "stare") sus "I don't think I should call my teachers that." ("soft", "narrow", "base", "downR") gen "No-no--, that's what you should call your teachers nowadays!" ("base", xpos="far_left", ypos="head") gen "But only call me that!" ("base", xpos="far_left", ypos="head") - sus "*Ehm*... Very well, [sus_genie_name]." ("soft", "happy", "base", "down") + sus "*Ehm*... Very well, [name_genie_susan]." ("soft", "happy", "base", "down") jump susan_talk "-Custom Input-": - $ temp_name = renpy.input("(Please enter the name.)", sus_genie_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_genie_susan, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name == "": jump susan_talk else: - $ sus_genie_name = temp_name - sus "*Ehm*... Okay. I will call you [sus_genie_name]." ("base", "base", "base", "mid") + $ name_genie_susan = temp_name + sus "*Ehm*... Okay. I will call you [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Never mind-": jump susan_requests @@ -150,28 +150,28 @@ label susan_talk: "-From now on I will refer to you as-": menu: "-Miss Bones-": - $ susan_name = "Miss Bones" - sus "Of course, [sus_genie_name]." ("base", "base", "base", "mid") + $ name_susan_genie = "Miss Bones" + sus "Of course, [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Susan-": - $ susan_name = "Susan" - sus "Of course, [sus_genie_name]." ("base", "base", "base", "mid") + $ name_susan_genie = "Susan" + sus "Of course, [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Girl-": - $ susan_name = "Girl" - sus "I'm okay with that, [sus_genie_name]." ("base", "base", "base", "mid") + $ name_susan_genie = "Girl" + sus "I'm okay with that, [name_genie_susan]." ("base", "base", "base", "mid") jump susan_talk "-Cow-": - $ susan_name = "Cow" - sus "Why would you want to call me that, [sus_genie_name]?" ("angry", "happy", "low", "mid") + $ name_susan_genie = "Cow" + sus "Why would you want to call me that, [name_genie_susan]?" ("angry", "happy", "low", "mid") sus "The other girls already call me that and I hate it..." ("angry", "narrow", "low", "down") gen "You poor thing!" ("base", xpos="far_left", ypos="head") gen "You see, if someone like me would call you that, maybe it wouldn't affect you as much." ("base", xpos="far_left", ypos="head") sus "I--... You might be right." ("open", "narrow", "base", "down") - sus "You can call me a Cow, [sus_genie_name]." ("soft", "narrow", "base", "downR", cheeks="blush") + sus "You can call me a Cow, [name_genie_susan]." ("soft", "narrow", "base", "downR", cheeks="blush") jump susan_talk "-Betsy-": - $ susan_name = "Betsy" + $ name_susan_genie = "Betsy" sus "But, sir... Isn't that... You know..." ("open", "happy", "sad", "mid") gen "You know... What?" ("base", xpos="far_left", ypos="head") sus "Isn't that a name you'd give to a-- A cow?" ("open", "happy", "sad", "downR", cheeks="blush") @@ -184,8 +184,8 @@ label susan_talk: sus "Alright then, you can call me that if you like..." ("soft", "base", "base", "mid", cheeks="blush") jump susan_talk "-Slut-": - $ susan_name = "Slut" - sus "[sus_genie_name]!" ("soft", "wide", "base", "mid", cheeks="blush") + $ name_susan_genie = "Slut" + sus "[name_genie_susan]!" ("soft", "wide", "base", "mid", cheeks="blush") sus "You can't be serious!" ("angry", "happy", "base", "mid", cheeks="blush") gen "Why not. Nobody has to know..." ("base", xpos="far_left", ypos="head") sus "How could you even think of me like that!" ("open", "happy", "sad", "downR", cheeks="blush") @@ -195,15 +195,15 @@ label susan_talk: gen "Being called a slut always boosts a girls confidence!" ("base", xpos="far_left", ypos="head") sus "R-- Really?" ("soft", "happy", "sad", "mid", cheeks="blush") gen "Yes. Now... shall we try it?" ("base", xpos="far_left", ypos="head") - sus "... alright, [sus_genie_name]..." ("base", "happy", "sad", "mid", cheeks="blush") + sus "... alright, [name_genie_susan]..." ("base", "happy", "sad", "mid", cheeks="blush") jump susan_talk "-Custom Input-": - $ temp_name = renpy.input("(Please enter the name.)", susan_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_susan_genie, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name == "": jump susan_talk else: - $ susan_name = temp_name + $ name_susan_genie = temp_name sus "I don't like it, but--" ("base", "base", "base", "mid") sus "Promise you'll only call me that when we are alone." ("base", "base", "base", "mid") gen "Promised!" ("grin", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/susan/vars.rpy b/game/scripts/characters/susan/vars.rpy index 894f1ba7..110b2f85 100644 --- a/game/scripts/characters/susan/vars.rpy +++ b/game/scripts/characters/susan/vars.rpy @@ -13,6 +13,6 @@ default susan_outfits_schedule = True default gave_susan_gift = False # Names -default susan_name = "Miss Bones" -default sus_genie_name = "Sir" +default name_susan_genie = "Miss Bones" +default name_genie_susan = "Sir" diff --git a/game/scripts/characters/susan/wardrobe_reactions.rpy b/game/scripts/characters/susan/wardrobe_reactions.rpy index 46f7ffe6..34adcce9 100644 --- a/game/scripts/characters/susan/wardrobe_reactions.rpy +++ b/game/scripts/characters/susan/wardrobe_reactions.rpy @@ -87,14 +87,14 @@ label sus_reaction_touch_fail(what): elif what == "breasts": $ mouse_slap() - sus "Please...{w=0.4} Don't bully me [sus_genie_name]." ("angry", "happy", "sad", "down", cheeks="blush") + sus "Please...{w=0.4} Don't bully me [name_genie_susan]." ("angry", "happy", "sad", "down", cheeks="blush") elif what == "vagina": $ mouse_slap() sus "No! Please don't make me do this in front of everyone again..." ("angry", "happyCl", "sad", "mid", cheeks="blush") gen "Do what?" ("base", xpos="far_left", ypos="head") - sus "N--{w=0.2} nothing [sus_genie_name], forgive me." ("angry", "wide", "sad", "stare", cheeks="blush") + sus "N--{w=0.2} nothing [name_genie_susan], forgive me." ("angry", "wide", "sad", "stare", cheeks="blush") gen "(...)" ("base", xpos="far_left", ypos="head") return @@ -128,16 +128,16 @@ label sus_reaction_unequip(item): # if item.type == "panties": # if sus_whoring > 15: # sus "You want to see my snatch?" - # sus "You got it [genie_name]!" + # sus "You got it [name_genie_hermione]!" # return label sus_reaction_unequip_fail(item): if item.type == "panties": - sus "I'm N--{w=0.2} not comfortable with that, [sus_genie_name]..." ("open", "happy", "sad", "right", cheeks="blush") + sus "I'm N--{w=0.2} not comfortable with that, [name_genie_susan]..." ("open", "happy", "sad", "right", cheeks="blush") elif item.type == "bra": - sus "P--{w=0.2} please, I can't be D--{w=0.2} doing that [sus_genie_name].." ("soft", "happy", "worried", "down", cheeks="blush") + sus "P--{w=0.2} please, I can't be D--{w=0.2} doing that [name_genie_susan].." ("soft", "happy", "worried", "down", cheeks="blush") elif item.type == "top": sus "I don't know if this is a good idea..." ("annoyed", "happy", "sad", "mid", cheeks="blush") @@ -156,7 +156,7 @@ label sus_reaction_equip_outfit(item): ######################## if item == sus_outfit_default: gen "Could you put on your regular school uniform for me?" ("base", xpos="far_left", ypos="head") - sus "Of course, [sus_genie_name]." ("base", "base", "base", "mid") + sus "Of course, [name_genie_susan]." ("base", "base", "base", "mid") sus "I'll just go and change real quick..." ("open", "base", "base", "right") ########################## @@ -164,7 +164,7 @@ label sus_reaction_equip_outfit(item): ########################## elif item == sus_outfit_muggle_casual1: gen "Could you put on your normal clothing for me." ("base", xpos="far_left", ypos="head") - sus "What do you--{w=0.2} *Ehm*...{w=0.4} Which clothing, [sus_genie_name]?" ("soft", "happy", "raised", "mid") + sus "What do you--{w=0.2} *Ehm*...{w=0.4} Which clothing, [name_genie_susan]?" ("soft", "happy", "raised", "mid") gen "The boring sweater one, and the jeans." ("base", xpos="far_left", ypos="head") sus "My muggle clothing?" ("open", "base", "raised", "mid") gen "Sure!" ("base", xpos="far_left", ypos="head") @@ -175,7 +175,7 @@ label sus_reaction_equip_outfit(item): ######################## elif item == sus_outfit_lace1: gen "Could you put on these lingerie for me please?" ("base", xpos="far_left", ypos="head") - sus "Okay...{w=0.4} One moment [sus_genie_name]." ("base", "narrow", "base", "downR", cheeks="blush") + sus "Okay...{w=0.4} One moment [name_genie_susan]." ("base", "narrow", "base", "downR", cheeks="blush") ############################## ## Latex Underwear Outfit 1 ## @@ -192,7 +192,7 @@ label sus_reaction_equip_outfit(item): ################ elif item ==sus_outfit_priestess: gen "How about you put on this Priestess outfit for me?" ("base", xpos="far_left", ypos="head") - sus "A--{w=0.2} A Priestess outfit, [sus_genie_name]?" ("soft", "narrow", "base", "mid", cheeks="blush") + sus "A--{w=0.2} A Priestess outfit, [name_genie_susan]?" ("soft", "narrow", "base", "mid", cheeks="blush") gen "Indeed." ("grin", xpos="far_left", ypos="head") sus "Why would you-- I mean... Sorry but I'm a bit confused." ("open", "narrow", "base", "down", cheeks="blush") gen "Luckily, you've got me here for guidance." ("grin", xpos="far_left", ypos="head") @@ -201,7 +201,7 @@ label sus_reaction_equip_outfit(item): else: gen "Could you put this on for me?" ("base", xpos="far_left", ypos="head") - sus "Of course [sus_genie_name]..." ("base", "base", "base", "mid") + sus "Of course [name_genie_susan]..." ("base", "base", "base", "mid") # TODO: Blacklist fallbacks have to be added. return @@ -238,13 +238,13 @@ label sus_reaction_equip_outfit_fail(item): gen "Put on this Priestess outfit for me will you?" ("base", xpos="far_left", ypos="head") sus "A what, sorry?" gen "This dress, here." ("base", xpos="far_left", ypos="head") - sus "B-- But, [sus_genie_name]!" ("angry", "wide", "shocked", "mid", cheeks="blush") + sus "B-- But, [name_genie_susan]!" ("angry", "wide", "shocked", "mid", cheeks="blush") sus "S-- Surely wearing that would be s--{w=0.2} sacrilegious!" ("open", "happyCl", "worried", "mid", cheeks="blush") gen "Sacre-- what?" ("base", xpos="far_left", ypos="head") gen "Sorry, I don't speak French." ("base", xpos="far_left", ypos="head") - sus "I-- I am not a Priestess, [sus_genie_name]." ("soft", "happy", "sad", "down", cheeks="blush") + sus "I-- I am not a Priestess, [name_genie_susan]." ("soft", "happy", "sad", "down", cheeks="blush") gen "What does that have to do with wearing a dress?" ("base", xpos="far_left", ypos="head") - sus "S-- Sorry, [sus_genie_name]... I think I better not."("soft", "happy", "sad", "right", cheeks="blush") + sus "S-- Sorry, [name_genie_susan]... I think I better not."("soft", "happy", "sad", "right", cheeks="blush") gen "Sacrebleu..." ("base", xpos="far_left", ypos="head") else: diff --git a/game/scripts/characters/tonks/common.rpy b/game/scripts/characters/tonks/common.rpy index fdc6f3a7..53202fa0 100644 --- a/game/scripts/characters/tonks/common.rpy +++ b/game/scripts/characters/tonks/common.rpy @@ -67,7 +67,7 @@ label end_tonks_event: call music_block jump main_room_menu -define character.tonks_say = Character("tonks_name", show_icon="tonks", dynamic=True) +define character.tonks_say = Character("name_tonks_genie", show_icon="tonks", dynamic=True) init python: def ton(what, mouth=False, eyes=False, eyebrows=False, pupils=False, cheeks=None, tears=None, diff --git a/game/scripts/characters/tonks/events/clothing.rpy b/game/scripts/characters/tonks/events/clothing.rpy index d4025c15..246c57fe 100644 --- a/game/scripts/characters/tonks/events/clothing.rpy +++ b/game/scripts/characters/tonks/events/clothing.rpy @@ -18,11 +18,11 @@ label tonks_summon_setup: ton "" ("grin", "base", "base", "mid", hair="horny", cheeks="heavy_blush", xpos="mid", ypos="base", trans=d5) call ctc - ton "Hello, [ton_genie_name]." ("soft", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") + ton "Hello, [name_genie_tonks]." ("soft", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") gen "You're naked!" ("grin", xpos="far_left", ypos="head") ton "I am?" ("soft", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") ton "Oh... Yes it appears so..." ("grin", "narrow", "shocked", "down", hair="horny", cheeks="heavy_blush") - ton "Is that a problem, [ton_genie_name]?" ("annoyed", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") + ton "Is that a problem, [name_genie_tonks]?" ("annoyed", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") ton "Am I going to get fired for inappropriate behaviour?" ("annoyed", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") ton "Are you going to report me to the ministry?" ("base", "narrow", "raised", "down", hair="horny", cheeks="heavy_blush") gen "..." ("base", xpos="far_left", ypos="head") @@ -81,15 +81,15 @@ label tonks_summon_setup: gen "Well?" ("base", xpos="far_left", ypos="head") ton "Yes?" ("disgust", "narrow", "raised", "mid", hair="horny", cheeks="heavy_blush") gen "Shouldn't you be thanking me for this generous valuation?" ("base", xpos="far_left", ypos="head") - ton "Oh... Thank you so much, [ton_genie_name]." ("annoyed", "narrow", "base", "stare", hair="horny", cheeks="heavy_blush") - gen "Don't mention it, [tonks_name]." ("base", xpos="far_left", ypos="head") + ton "Oh... Thank you so much, [name_genie_tonks]." ("annoyed", "narrow", "base", "stare", hair="horny", cheeks="heavy_blush") + gen "Don't mention it, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") $ game.gold -= 1 "-Twenty gold-" if game.gold >= 20: gen "How does twenty gold sound?" ("base", xpos="far_left", ypos="head") ton "(*Hmm*... I kind of expected more.)" ("annoyed", "narrow", "raised", "downR", hair="horny", cheeks="heavy_blush") - ton "Thank you, [ton_genie_name]." ("soft", "narrow", "base", "mid", hair="horny", cheeks="heavy_blush") - gen "No, [tonks_name]... Thank you." ("grin", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]." ("soft", "narrow", "base", "mid", hair="horny", cheeks="heavy_blush") + gen "No, [name_tonks_genie]... Thank you." ("grin", xpos="far_left", ypos="head") $ game.gold -= 20 "-A hundred gold-" if game.gold >= 100: @@ -107,25 +107,25 @@ label tonks_summon_setup: gen "Now..." ("base", xpos="far_left", ypos="head") "-Scold her-": - gen "But you know what I have to do, [tonks_name]..." ("base", xpos="far_left", ypos="head") + gen "But you know what I have to do, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") gen "What were you thinking, walking into your boss' office, completely naked?" ("base", xpos="far_left", ypos="head") - ton "I'm terribly sorry, [ton_genie_name]..." ("open", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") + ton "I'm terribly sorry, [name_genie_tonks]..." ("open", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") gen "How's this befitting for a teacher..." ("angry", xpos="far_left", ypos="head") gen "That surely calls for some punishment, don't you think?" ("grin", xpos="far_left", ypos="head") - ton "You are so right, [ton_genie_name]!" ("horny", "narrow", "base", "stare", hair="horny", cheeks="heavy_blush") + ton "You are so right, [name_genie_tonks]!" ("horny", "narrow", "base", "stare", hair="horny", cheeks="heavy_blush") # This section will be under some public check # gen "I should make you the school's cum-dumpster instead. How would you like that position?" ("base", xpos="far_left", ypos="head") # gen "Boys lining up in front of the school toilets, waiting their turn to dump their cum into their teacher's mouth, day after day!" ("base", xpos="far_left", ypos="head") - # ton "You're making me so wet, [ton_genie_name]!" ("base", "base", "base", "ahegao") + # ton "You're making me so wet, [name_genie_tonks]!" ("base", "base", "base", "ahegao") # ton "Maybe some day I'll get bored of my current position here at Hogwarts... you never know..." ("horny", "base", "raised", "mid") - # gen "I'm not done with your punishment, Miss [tonks_name]!" ("base", xpos="far_left", ypos="head") + # gen "I'm not done with your punishment, Miss [name_tonks_genie]!" ("base", xpos="far_left", ypos="head") gen "You went to this school, didn't you? Which house were you in?" ("base", xpos="far_left", ypos="head") ton "My house? I was in Hufflepuff, but why--" ("disgust", "base", "raised", "mid", hair="horny", cheeks="heavy_blush") gen "Very well then..." ("base", xpos="far_left", ypos="head") gen "Minus ten points from Hufflepuff!" ("base", xpos="far_left", ypos="head") $ hufflepuff -=10 - ton "What? But [ton_genie_name]! I'm not even a student--" ("disgust", "base", "base", "mid", hair="upset", cheeks="heavy_blush", trans=hpunch) + ton "What? But [name_genie_tonks]! I'm not even a student--" ("disgust", "base", "base", "mid", hair="upset", cheeks="heavy_blush", trans=hpunch) gen "Also--" ("base", xpos="far_left", ypos="head") menu: @@ -135,12 +135,12 @@ label tonks_summon_setup: ton "*Hmm*?" ("soft", "narrow", "raised", "down", hair="horny", cheeks="heavy_blush") gen "That's right... If they're so bothersome, why bother wearing them at all?" ("base", xpos="far_left", ypos="head") gen "When you're in here with me I want you on full display!" ("base", xpos="far_left", ypos="head") - ton "Of course [ton_genie_name]..." ("soft", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") #Horny + ton "Of course [name_genie_tonks]..." ("soft", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") #Horny ton "If you would allow me to put my clothes back on at any time, just let me know..." ("soft", "narrow", "base", "downR", hair="horny", cheeks="heavy_blush") "-Get dressed!-": gen "No teacher of mine will strut around naked...{w} unless I say so!" ("base", xpos="far_left", ypos="head") - ton "Yes [ton_genie_name]..." ("open", "narrow", "shocked", "down", hair="horny", cheeks="heavy_blush") + ton "Yes [name_genie_tonks]..." ("open", "narrow", "shocked", "down", hair="horny", cheeks="heavy_blush") gen "Now, put your clothes back on..." ("base", xpos="far_left", ypos="head") ton "*Ehm*... Okay..." ("soft", "base", "base", "down", hair="horny", cheeks="heavy_blush") @@ -158,7 +158,7 @@ label tonks_summon_setup: ton "..." ("soft", "narrow", "base", "downR", hair="horny", cheeks="heavy_blush") gen "Now, get back to your room and think about what you've done..." ("base", xpos="far_left", ypos="head") - ton "Yes [ton_genie_name]..." ("open", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") #look down, blush + ton "Yes [name_genie_tonks]..." ("open", "narrow", "base", "down", hair="horny", cheeks="heavy_blush") #look down, blush #Tonks leaves call ton_walk(action="leave") @@ -180,14 +180,14 @@ label tonks_summon_setup: if ton_mood > 0: if 5 > ton_mood >= 1: - ton "Yes, [ton_genie_name]?" ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) + ton "Yes, [name_genie_tonks]?" ("open", "base", "base", "R", xpos="base", ypos="base", trans=d3) ton "" ("base", "base", "base", "R") elif 10 > ton_mood >= 5: ton "I have classes to teach, please be quick." ("upset", "base", "base", "mid", xpos="base", ypos="base", trans=d3) elif 20 > ton_mood >= 10: - ton "Make it quick, [ton_genie_name]..." ("upset", "base", "base", "R", xpos="base", ypos="base", trans=d3) + ton "Make it quick, [name_genie_tonks]..." ("upset", "base", "base", "R", xpos="base", ypos="base", trans=d3) elif 30 > ton_mood >= 20: - ton "What do you want, \"[ton_genie_name]\", I'm busy." ("mad", "base", "angry", "mid", xpos="base", ypos="base", trans=d3) + ton "What do you want, \"[name_genie_tonks]\", I'm busy." ("mad", "base", "angry", "mid", xpos="base", ypos="base", trans=d3) elif 40 > ton_mood >= 30: ton "..............." ("upset", "base", "angry", "mid", xpos="base", ypos="base", trans=d3) elif 50 > ton_mood >= 40: @@ -198,5 +198,5 @@ label tonks_summon_setup: call describe_mood("Tonks", ton_mood) call tutorial("moodngifts") else: - ton "You called, [ton_genie_name]?" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) + ton "You called, [name_genie_tonks]?" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=d3) return diff --git a/game/scripts/characters/tonks/events/hangout.rpy b/game/scripts/characters/tonks/events/hangout.rpy index e27a58be..11c54077 100644 --- a/game/scripts/characters/tonks/events/hangout.rpy +++ b/game/scripts/characters/tonks/events/hangout.rpy @@ -93,7 +93,7 @@ label tonks_hangout: label nt_he_wine_intro: call bld gen "Care for a drink?" ("base", xpos="far_left", ypos="head") - ton "Of course, [ton_genie_name]." ("base", "base", "shocked", "mid", cheeks="blush", ypos="head", flip=False) + ton "Of course, [name_genie_tonks]." ("base", "base", "shocked", "mid", cheeks="blush", ypos="head", flip=False) ton "Hit me!" ("horny", "base", "base", "down") pause.1 @@ -155,7 +155,7 @@ label nt_he_firewhisky_E1: gen "Boring lessons ahead?" ("base", xpos="far_left", ypos="head") ton "Not particularly, why?" ("open", "base", "base", "mid") gen "You might regret going back to classes after drinking this much." ("base", xpos="far_left", ypos="head") - ton "Oh don't you worry, [ton_genie_name]." ("silly", "happyCl", "base", "mid") + ton "Oh don't you worry, [name_genie_tonks]." ("silly", "happyCl", "base", "mid") ton "I could down this entire bottle without anybody being able to notice a thing." ("horny", "base", "base", "L") gen "You're one glass in and swaying like a buoy..." ("base", xpos="far_left", ypos="head") ton "*Hic* Oh well..." ("open", "base", "base", "ahegao", trans=hpunch) @@ -209,7 +209,7 @@ label nt_he_firewhisky_E4: ### Events ### label nt_he_favors_E1: - ton "So, [ton_genie_name]... what's the going rate around here then?" ("open", "base", "raised", "mid", ypos="head", flip=False) + ton "So, [name_genie_tonks]... what's the going rate around here then?" ("open", "base", "raised", "mid", ypos="head", flip=False) gen "Going rate?" ("base", xpos="far_left", ypos="head") ton "How much do you pay your students to fool around?" ("base", "narrow", "annoyed", "mid") gen "Oh... It depends on what you want them to do." ("base", xpos="far_left", ypos="head") @@ -243,7 +243,7 @@ label nt_he_favors_E1: label nt_he_favors_E2: - ton "You know, [ton_genie_name]... I overheard a couple of students whispering about me..." ("open", "base", "raised", "mid", ypos="head", flip=False) + ton "You know, [name_genie_tonks]... I overheard a couple of students whispering about me..." ("open", "base", "raised", "mid", ypos="head", flip=False) gen "Finally..." ("grin", xpos="far_left", ypos="head") ton "I walked past a group of boys the other day..." ("open", "base", "base", "R") ton "One straight up called me a slut, whilst the others snickered at me..." ("open", "base", "base", "down") @@ -258,7 +258,7 @@ label nt_he_favors_E2: ton "Fuck yes!" ("grin", "narrow", "shocked", "mid") ton "I want those boys to call me all sorts of names... And do it straight to my face!" ("horny", "base", "angry", "mid") gen "Promise me you'll reward them if they do." ("grin", xpos="far_left", ypos="head") - ton "I promise, [ton_genie_name]." ("base", "wink", "base", "mid") + ton "I promise, [name_genie_tonks]." ("base", "wink", "base", "mid") call popup("Tonks can now reach the next level!", "Congratulations!", "interface/icons/head/tonks.webp", sound=False) @@ -563,7 +563,7 @@ label nt_he_story_E11: $ tonks_morph_known = True call bld gen "Tell me more about your time at Hogwarts, as a student..." ("base", xpos="far_left", ypos="head") - ton "Of course, [ton_genie_name]." ("base", "base", "base", "mid", ypos="head", flip=False) + ton "Of course, [name_genie_tonks]." ("base", "base", "base", "mid", ypos="head", flip=False) ton "Well, as you may or may not know. I'm a metamorphmagus." ("open", "base", "base", "R") #metamorphmagus is a latin based word, therefore "-us" is the singular version and "-i" is the plural ton "It means I can change my physical appearance at will." ("base", "base", "raised", "mid") gen "Sounds useful." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/characters/tonks/events/intro.rpy b/game/scripts/characters/tonks/events/intro.rpy index 65305535..7b2eb5f5 100644 --- a/game/scripts/characters/tonks/events/intro.rpy +++ b/game/scripts/characters/tonks/events/intro.rpy @@ -684,13 +684,13 @@ label tonks_intro_E3: menu: gen "You can call me..." ("base", xpos="far_left", ypos="head") "\"Professor is fine.\"": - $ ton_genie_name = "Professor" + $ name_genie_tonks = "Professor" ton "Very well." ("base", "base", "base", "mid") "\"You can call me Genie.\"": - $ ton_genie_name = "Genie" + $ name_genie_tonks = "Genie" ton "Very well, Genie." ("base", "base", "base", "mid") "\"Call me Daddy...\"": - $ ton_genie_name = "Daddy" + $ name_genie_tonks = "Daddy" ton "What? Are you serious?!" ("open", "wide", "shocked", "stare") ton "*Ha-Ha-Ha!*...{w=0.3} you're too funny!" ("silly", "happyCl", "raised", "mid", hair="happy") gen "(What?-- Now it's yellow!)" ("angry", xpos="far_left", ypos="head") @@ -700,7 +700,7 @@ label tonks_intro_E3: ton "Very well... \"Daddy\"! {heart}{heart}{heart}" ("horny", "narrow", "base", "mid", hair="horny") gen "*He*-*He*-*He*-He*..." ("grin", xpos="far_left", ypos="head") - ton "Call me to your office whenever you require my help, [ton_genie_name]." ("base", "base", "base", "mid") #would it be better to have her call him by the requested name here, since later on we have the bit where Tonks submits to genie and calls him sir + ton "Call me to your office whenever you require my help, [name_genie_tonks]." ("base", "base", "base", "mid") #would it be better to have her call him by the requested name here, since later on we have the bit where Tonks submits to genie and calls him sir gen "I most certainly will..." ("base", xpos="far_left", ypos="head") #Tonks leaves diff --git a/game/scripts/characters/tonks/events/requests/detention_with_tonks.rpy b/game/scripts/characters/tonks/events/requests/detention_with_tonks.rpy index 5db48d05..27d4fd50 100644 --- a/game/scripts/characters/tonks/events/requests/detention_with_tonks.rpy +++ b/game/scripts/characters/tonks/events/requests/detention_with_tonks.rpy @@ -74,13 +74,13 @@ label nt_pr_teach_start: ton "*Hmm*...{w=0.4} Yes...{w=0.3} I wouldn't mind seeing the {b}hard cocks{/b} of some of my favourites." (face="horny") ton "Might even have them jerk off for me... I would love to see that!" ("horny", "base", "base", "ahegao") gen "And make sure they remember it." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Don't wait for me..." ("base", "base", "base", "mid") + ton "Yes, [name_genie_tonks]. Don't wait for me..." ("base", "base", "base", "mid") else: # Repeat gen "Ready to give some boys detention again?" ("base", xpos="far_left", ypos="head") ton "Yes. I'm very much in the mood for some {b}hard cocks{/b}!" (face="horny") gen "Go on then... Teach them a lesson..." ("grin", xpos="far_left", ypos="head") - ton "I shall see you later, [ton_genie_name]..." ("base", "base", "base", "mid") + ton "I shall see you later, [name_genie_tonks]..." ("base", "base", "base", "mid") # Tonks leaves @@ -95,7 +95,7 @@ label nt_pr_teach_start: label nt_pr_teach_T1_E1: #Tier 1 - Event 1 - Slytherin boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hello, [ton_genie_name]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) + ton "Hello, [name_genie_tonks]." ("base", "base", "base", "mid", xpos="mid", ypos="base", trans=fade) ton "I'm back with my report..." ("horny", "narrow", "base", "mid") if ton_reputation <= 3: # First time. @@ -108,8 +108,8 @@ label nt_pr_teach_T1_E1: #Tier 1 - Event 1 - Slytherin boy "\"Make it quick!\"": ton "I had some fun with that Slytherin boy again..." ("horny", "base", "angry", "mid") ton "Gave him a couple of points for his house." ("open", "base", "base", "R") - gen "Well done, [tonks_name]... We'll talk next time." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Well done, [name_tonks_genie]... We'll talk next time." ("base", xpos="far_left", ypos="head") + ton "Yes, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("s", 20) if ton_reputation < 4: # Points til 4. $ ton_reputation += 1 @@ -151,10 +151,10 @@ label nt_pr_teach_T1_E1: #Tier 1 - Event 1 - Slytherin boy ton "Certainly he won't be able to keep his eyes off me anymore..." ("soft", "narrow", "shocked", "mid") gen "Very good." ("base", xpos="far_left", ypos="head") gen "And try to reward those \"evil Slytherins\" with at least double the amount of points." ("base", xpos="far_left", ypos="head") - ton "If you say so, [ton_genie_name]..." ("soft", "narrow", "base", "R") + ton "If you say so, [name_genie_tonks]..." ("soft", "narrow", "base", "R") ton "It's so... iniquitous... what we are doing.{w} I fucking love it!" ("base", "base", "shocked", "stare") gen "That'll be all now..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]." ("horny", "wink", "base", "mid") + ton "Thank you, [name_genie_tonks]." ("horny", "wink", "base", "mid") ton "Sweet dreams." ("grin", "narrow", "base", "mid") # Tonks leaves @@ -170,7 +170,7 @@ label nt_pr_teach_T1_E1: #Tier 1 - Event 1 - Slytherin boy label nt_pr_teach_T1_E2: # Tier 1 - Event 2 - Racenclaw boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 3: # First time. pass @@ -182,8 +182,8 @@ label nt_pr_teach_T1_E2: # Tier 1 - Event 2 - Racenclaw boy "\"Make it quick!\"": ton "I was fooling around with my favourite Ravenclaw boy again..." ("horny", "base", "angry", "mid") ton "And he earned a bunch of points from me." ("base", "happyCl", "base", "mid") - gen "Well done, [tonks_name]... We'll talk next time." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Well done, [name_tonks_genie]... We'll talk next time." ("base", xpos="far_left", ypos="head") + ton "Yes, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("r", 10) if ton_reputation < 4: # Points til 4. $ ton_reputation += 1 @@ -222,8 +222,8 @@ label nt_pr_teach_T1_E2: # Tier 1 - Event 2 - Racenclaw boy gen "We're trying to build your reputation, remember?" ("base", xpos="far_left", ypos="head") ton "I'll try..." ("annoyed", "happyCl", "base", "mid") ton "(Although, I'll have to play with this one a few more times...)" ("horny", "narrow", "base", "stare") - gen "That will be all for now, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Thanks, [ton_genie_name]." ("base", "base", "base", "mid") + gen "That will be all for now, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Thanks, [name_genie_tonks]." ("base", "base", "base", "mid") # Tonks leaves @@ -238,7 +238,7 @@ label nt_pr_teach_T1_E2: # Tier 1 - Event 2 - Racenclaw boy label nt_pr_teach_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys. Guess who... call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 3: # First time. pass @@ -252,8 +252,8 @@ label nt_pr_teach_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys. Guess who... ton "Of course I didn't give them any points..." ("open", "closed", "base", "mid") ton "I wouldn't want Gryffindor to have an unfair advantage." ("horny", "base", "angry", "mid") ton "They practically begged me if they could do it for free anyway..." ("open", "base", "base", "R") - gen "Well done, [tonks_name]... Until next time." ("base", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]." ("base", "happyCl", "base", "mid") + gen "Well done, [name_tonks_genie]... Until next time." ("base", xpos="far_left", ypos="head") + ton "Have a good night, [name_genie_tonks]." ("base", "happyCl", "base", "mid") if ton_reputation < 4: # Points til 4. $ ton_reputation += 1 call ton_walk(action="leave") @@ -289,7 +289,7 @@ label nt_pr_teach_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys. Guess who... ton "It wouldn't surprise me if I start getting asked to give more boys detention..." ("horny", "base", "shocked", "mid") gen "Fooling around with Gryffindors and rewarding them isn't too helpful for our situation..." ("base", xpos="far_left", ypos="head") gen "But great work nonetheless..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]. That means a lot coming from you." ("base", "happyCl", "base", "mid") + ton "Thank you, [name_genie_tonks]. That means a lot coming from you." ("base", "happyCl", "base", "mid") gen "Even if it is encouragement for seducing your students?" ("base", xpos="far_left", ypos="head") ton "Even then." ("base", "narrow", "base", "mid") ton "Well, I better get back to work, these halls aren't safe unless there's a teacher on patrol." ("horny", "base", "base", "R") @@ -307,7 +307,7 @@ label nt_pr_teach_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys. Guess who... label nt_pr_teach_T1_E4: # Tier 1 - Event 4 - Slytherin girl call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 3: # First time. pass @@ -320,8 +320,8 @@ label nt_pr_teach_T1_E4: # Tier 1 - Event 4 - Slytherin girl ton "I confronted that little Slytherin girl again..." ("horny", "base", "base", "mid") ton "Although, I kept myself in check with her... didn't want to scare her away again..." ("open", "base", "base", "R") ton "But she was very happy about the points." ("base", "base", "angry", "mid") - gen "Well done, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Good night." ("silly", "happyCl", "base", "mid") + gen "Well done, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "Yes, [name_genie_tonks]. Good night." ("silly", "happyCl", "base", "mid") call increase_house_points("s", 20) if ton_reputation < 4: # Points til 4. $ ton_reputation += 1 @@ -377,7 +377,7 @@ label nt_pr_teach_T1_E4: # Tier 1 - Event 4 - Slytherin girl ton "Well, I was only supposed to buy favours from the boys..." ("open", "closed", "base", "mid") gen "Eat your heart out!" ("grin", xpos="far_left", ypos="head") gen "Just make sure you keep me in the loop..." ("base", xpos="far_left", ypos="head") - ton "Thanks, [ton_genie_name]." ("base", "base", "base", "mid") + ton "Thanks, [name_genie_tonks]." ("base", "base", "base", "mid") gen "Did she receive any points for it?" ("base", xpos="far_left", ypos="head") ton "Well, not this time..." ("open", "base", "shocked", "R") gen "I think you should give her some anyway." ("base", xpos="far_left", ypos="head") @@ -386,8 +386,8 @@ label nt_pr_teach_T1_E4: # Tier 1 - Event 4 - Slytherin girl ton "Twenty points for Slytherin!" ("open", "closed", "base", "mid") ton "Now, if you don't mind... It's getting a bit late..." ("open", "base", "base", "R") gen "Yes. You may leave..." ("base", xpos="far_left", ypos="head") - ton "Good night, [ton_genie_name]." ("base", "happyCl", "base", "mid") - gen "Good night, [tonks_name]." ("base", xpos="far_left", ypos="head") + ton "Good night, [name_genie_tonks]." ("base", "happyCl", "base", "mid") + gen "Good night, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") # Tonks leaves @@ -405,7 +405,7 @@ label nt_pr_teach_T1_E4: # Tier 1 - Event 4 - Slytherin girl label nt_pr_teach_T2_E1: # Tier 2 - Event 1 - Hufflepuff girl call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Guess what happened, [ton_genie_name]!" ("base", "happyCl", "base", "mid", xpos="mid", ypos="base", trans=fade) + ton "Guess what happened, [name_genie_tonks]!" ("base", "happyCl", "base", "mid", xpos="mid", ypos="base", trans=fade) if nt_pr_teach.points <= 4 and ton_reputation <= 8: # First time. pass @@ -418,8 +418,8 @@ label nt_pr_teach_T2_E1: # Tier 2 - Event 1 - Hufflepuff girl ton "Yes! Right on point! I'm impressed..." ("open", "base", "raised", "mid") ton "I just got done cleaning my desk..." ("horny", "base", "base", "down") ton "And I didn't use my wand to clean it..." ("horny", "base", "angry", "mid") - gen "Very good, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]. Until next time..." ("base", "base", "base", "mid") + gen "Very good, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]. Until next time..." ("base", "base", "base", "mid") call increase_house_points("h", 40) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -481,7 +481,7 @@ label nt_pr_teach_T2_E1: # Tier 2 - Event 1 - Hufflepuff girl gen "Much more of this, and I'll need to \"scour-ify\" my own desk as well..." ("angry", xpos="far_left", ypos="head") ton "I can help you with that." ("horny", "base", "angry", "mid") gen "Maybe some other time..." ("base", xpos="far_left", ypos="head") - ton "*Mmmm*... okay then, [ton_genie_name]." ("base", "base", "annoyed", "mid") + ton "*Mmmm*... okay then, [name_genie_tonks]." ("base", "base", "annoyed", "mid") ton "I better be on my way as well now..." ("open", "base", "base", "R") ton "(Fuck knows, I could use a bit of \"alone time\" myself...)" ("base", "base", "base", "stare") @@ -502,7 +502,7 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy $ tonks.set_cum(pussy="light") call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hello, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hello, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if nt_pr_teach.points <= 4 and ton_reputation <= 8: # First time. pass @@ -514,8 +514,8 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy "\"Make it quick!\"": ton "Remember that cute boy?" ("open", "base", "base", "mid") ton "Every time he shot out some cum for me I gave him five points..." ("horny", "base", "angry", "mid") - gen "I bet he earned quite a lot today. Well done, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "That he did, [ton_genie_name]... See you next time..." ("base", "base", "base", "mid") + gen "I bet he earned quite a lot today. Well done, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "That he did, [name_genie_tonks]... See you next time..." ("base", "base", "base", "mid") call increase_house_points("r", 20) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -573,7 +573,7 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy ton "You know how guys are..." ("base", "base", "annoyed", "mid") ton "What was weird was... when he started to call me mommy again..." ("upset", "closed", "base", "mid") gen "What a wimp." ("base", xpos="far_left", ypos="head") - ton "Don't be cruel, [ton_genie_name]! It's just a little dirty talk..." ("soft", "base", "raised", "R") + ton "Don't be cruel, [name_genie_tonks]! It's just a little dirty talk..." ("soft", "base", "raised", "R") ton "And you have to admit, it's kinda hot... I even joined in on it." ("base", "narrow", "base", "mid") gen "Really?" ("base", xpos="far_left", ypos="head") ton "What do you think made him fire his load across the room?" ("horny", "narrow", "base", "mid") @@ -582,7 +582,7 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy gen "Fuck... That {b}is{/b} pretty hot..." ("base", xpos="far_left", ypos="head") ton "I know..." ("crooked_smile", "narrow", "base", "mid") ton "*Ugh*... I definitely have to go rub one out after this..." ("mad", "base", "base", "ahegao") - ton "See you, [ton_genie_name]." ("base", "narrow", "base", "L") + ton "See you, [name_genie_tonks]." ("base", "narrow", "base", "L") if choice_flag: gen "Are you going to do anything about the cum?" ("base", xpos="far_left", ypos="head") @@ -592,7 +592,7 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy ton "Besides, it'll be good for spreading the word, don't you think?" ("horny", "narrow", "base", "mid") gen "Whatever you say..." ("base", xpos="far_left", ypos="head") - gen "Goodbye, [tonks_name]." ("base", xpos="far_left", ypos="head") + gen "Goodbye, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") # Tonks leaves @@ -607,7 +607,7 @@ label nt_pr_teach_T2_E2: # Tier 2 - Event 2 - Ravenclaw boy label nt_pr_teach_T2_E3: # Tier 2 - Event 3 - Slytherin boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "[ton_genie_name]..." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "[name_genie_tonks]..." (face="horny", xpos="mid", ypos="base", trans=fade) if nt_pr_teach.points <= 4 and ton_reputation <= 8: # First time. pass @@ -619,8 +619,8 @@ label nt_pr_teach_T2_E3: # Tier 2 - Event 3 - Slytherin boy "\"Make it quick!\"": ton "This Slytherin dickhead was asking for trouble again!" ("mad", "base", "angry", "R") ton "I did my best to punish him... thoroughly..." ("horny", "base", "angry", "mid") - gen "Very good, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "*Mhmm*... Until next time, [ton_genie_name]..." ("base", "happyCl", "base", "mid") + gen "Very good, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "*Mhmm*... Until next time, [name_genie_tonks]..." ("base", "happyCl", "base", "mid") call increase_house_points("s", 20) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -681,7 +681,7 @@ label nt_pr_teach_T2_E3: # Tier 2 - Event 3 - Slytherin boy label nt_pr_teach_T2_E4: # Tier 2 - Event 4 - Slytherin girl call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if nt_pr_teach.points <= 4 and ton_reputation <= 8: # First time. pass @@ -693,15 +693,15 @@ label nt_pr_teach_T2_E4: # Tier 2 - Event 4 - Slytherin girl "\"Make it quick!\"": ton "This cute Slytherin girl earned herself a couple of points from me today..." ("open", "base", "base", "R") ton "She's really starting to get into it!" ("base", "base", "angry", "mid") - gen "Good work, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "Thank you... Have a good night, [ton_genie_name]..." ("base", "base", "base", "mid") + gen "Good work, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "Thank you... Have a good night, [name_genie_tonks]..." ("base", "base", "base", "mid") call increase_house_points("s", 20) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 call ton_walk(action="leave") jump end_tonks_event - gen "Anything interesting happen today, [tonks_name]?" ("base", xpos="far_left", ypos="head") + gen "Anything interesting happen today, [name_tonks_genie]?" ("base", xpos="far_left", ypos="head") ton "Oh yes!... I broke new ground today..." ("silly", "base", "shocked", "mid") gen "That's very promising... So what happened?" ("base", xpos="far_left", ypos="head") ton "Remember that cute little Slytherin?" ("horny", "base", "base", "mid") @@ -736,7 +736,7 @@ label nt_pr_teach_T2_E4: # Tier 2 - Event 4 - Slytherin girl ton "And I may or may not have contributed to that..." ("grin", "base", "base", "R") gen "Very good work." ("base", xpos="far_left", ypos="head") gen "That'll be all then..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]..." ("base", "happyCl", "base", "mid") + ton "Thank you, [name_genie_tonks]..." ("base", "happyCl", "base", "mid") ton "See you next time..." ("base", "base", "base", "mid") # Tonks leaves diff --git a/game/scripts/characters/tonks/events/requests/hands-on_lessons.rpy b/game/scripts/characters/tonks/events/requests/hands-on_lessons.rpy index f3eeb6c3..5d0d8e1e 100644 --- a/game/scripts/characters/tonks/events/requests/hands-on_lessons.rpy +++ b/game/scripts/characters/tonks/events/requests/hands-on_lessons.rpy @@ -39,7 +39,7 @@ label nt_pr_grope_start: else: gen "Think you're up for messing around with your students again?" ("base", xpos="far_left", ypos="head") gen "Let them cop a feel?" ("base", xpos="far_left", ypos="head") - ton "Consider it done, [ton_genie_name]." (face="horny") + ton "Consider it done, [name_genie_tonks]." (face="horny") gen "I'll see you after class..." ("base", xpos="far_left", ypos="head") elif ton_tier >= 3: @@ -54,7 +54,7 @@ label nt_pr_grope_start: gen "Any way they like!" ("grin", xpos="far_left", ypos="head") ton "That sounds perfect!" ("base", "base", "base", "mid") gen "I'll see you after class..." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]...{heart}" ("base", "base", "base", "mid") + ton "Yes, [name_genie_tonks]...{heart}" ("base", "base", "base", "mid") # Tonks leaves @@ -69,7 +69,7 @@ label nt_pr_grope_start: label nt_pr_grope_T1_E1: # Tier 1 - Event 1 - Slytherin boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_grope.points < 4: # First time. pass @@ -81,15 +81,15 @@ label nt_pr_grope_T1_E1: # Tier 1 - Event 1 - Slytherin boy "\"Make it quick!\"": ton "Remember that Slytherin boy?..." ("horny", "base", "angry", "mid") ton "I let him play with his favourite pair of tits again..." ("base", "base", "angry", "mid") - gen "Well done, [tonks_name]... We'll talk next time." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Well done, [name_tonks_genie]... We'll talk next time." ("base", xpos="far_left", ypos="head") + ton "Yes, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("s", 40) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 call ton_walk(action="leave") jump end_tonks_event - gen "How were classes today, [tonks_name]?" ("base", xpos="far_left", ypos="head") + gen "How were classes today, [name_tonks_genie]?" ("base", xpos="far_left", ypos="head") gen "Taught your students some valuable lessons?" ("base", xpos="far_left", ypos="head") ton "I'm not sure about valuable..." ("base", "narrow", "base", "downR") ton "But I do know that he isn't going to forget it any time soon!" ("soft", "wink", "shocked", "mid") @@ -124,13 +124,13 @@ label nt_pr_grope_T1_E1: # Tier 1 - Event 1 - Slytherin boy gen "I gather that he enjoyed himself?" ("base", xpos="far_left", ypos="head") ton "He just sat there, silently groping my tits for several minutes..." ("soft", "narrow", "shocked", "down") ton "*Ugh*... It took everything I had not to hold him down and jump his bone..." ("horny", "base", "base", "up", hair="horny") - gen "[tonks_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_tonks_genie]..." ("base", xpos="far_left", ypos="head") ton "Right, well after letting him play with them for a little while, I sent him back to class." ("mad", "narrow", "base", "down") gen "Think you'll gain any reputation from this encounter?" ("base", xpos="far_left", ypos="head") ton "*Hmm*... I'm not sure if he'll talk..." ("annoyed", "narrow", "base", "R") ton "But the fact I ask students to stay behind after class should start spreading some rumours." ("base", "wink", "base", "mid") - gen "Good to hear. That'll be all then, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]." ("base", "base", "base", "mid") + gen "Good to hear. That'll be all then, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") # Tonks leaves @@ -144,7 +144,7 @@ label nt_pr_grope_T1_E1: # Tier 1 - Event 1 - Slytherin boy label nt_pr_grope_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_grope.points < 4: # First time. pass @@ -156,8 +156,8 @@ label nt_pr_grope_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy "\"Make it quick!\"": ton "That shy Ravenclaw boy stayed behind in class again..." ("base", "base", "base", "mid") ton "He almost suffocated himself in between my cleavage..." ("silly", "happyCl", "base", "mid") - gen "Well done, [tonks_name]... We'll talk next time." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Well done, [name_tonks_genie]... We'll talk next time." ("base", xpos="far_left", ypos="head") + ton "Yes, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("r", 20) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -215,7 +215,7 @@ label nt_pr_grope_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy gen "Did you even get to reward any points?" ("base", xpos="far_left", ypos="head") ton "I did, even if he wasn't there to hear it..." ("silly", "closed", "base", "mid") gen "Very good. That'll be all then." ("base", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]." ("base", "base", "shocked", "mid") + ton "Have a good night, [name_genie_tonks]." ("base", "base", "shocked", "mid") # Tonks leaves @@ -229,7 +229,7 @@ label nt_pr_grope_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy label nt_pr_grope_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_grope.points < 4: # First time. pass @@ -241,8 +241,8 @@ label nt_pr_grope_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys "\"Make it quick!\"": ton "I let those two Gryffindors feel me up again..." ("open", "base", "base", "R") ton "Of course they didn't get any points for it..." ("base", "base", "angry", "mid") - gen "Great job, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Great job, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 call ton_walk(action="leave") @@ -274,11 +274,11 @@ label nt_pr_grope_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys ton "Said they'd much rather have a \"go at it\" again..." ("base", "base", "angry", "mid") gen "Think they'll spread the word this time?" ("base", xpos="far_left", ypos="head") ton "They were both pitching a pretty big tent when they left class... that was noticeable to say the least..." ("silly", "happyCl", "base", "mid") - gen "Very good, [tonks_name], very good..." ("base", xpos="far_left", ypos="head") + gen "Very good, [name_tonks_genie], very good..." ("base", xpos="far_left", ypos="head") ton "Thank you, sir." ("base", "happyCl", "base", "mid") ton "Now, if you don't mind... I think I better head to my room for some...{w} \"unwinding\"..." ("mad", "narrow", "base", "R") gen "Have a good night then..." ("base", xpos="far_left", ypos="head") - ton "Night, [ton_genie_name]!" ("silly", "happyCl", "base", "mid") + ton "Night, [name_genie_tonks]!" ("silly", "happyCl", "base", "mid") # Tonks leaves @@ -292,7 +292,7 @@ label nt_pr_grope_T1_E3: # Tier 1 - Event 3 - Two Gryffindor boys label nt_pr_grope_T1_E4: # Tier 1 - Event 4 - Slytherin girl call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_grope.points < 4: # First time. pass @@ -304,8 +304,8 @@ label nt_pr_grope_T1_E4: # Tier 1 - Event 4 - Slytherin girl "\"Make it quick!\"": ton "I tried my luck with that Slytherin girl again..." ("open", "base", "base", "mid") ton "She's the hardest nut to crack, I tell you..." ("open", "base", "worried", "R") # hardest instead of tough in the UK. - gen "You will have better luck next time, [tonks_name]..." ("base", xpos="far_left", ypos="head") - ton "I hope so too, [ton_genie_name]... Have a good night." ("base", "base", "worried", "mid") + gen "You will have better luck next time, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") + ton "I hope so too, [name_genie_tonks]... Have a good night." ("base", "base", "worried", "mid") call increase_house_points("s", 40) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -352,7 +352,7 @@ label nt_pr_grope_T1_E4: # Tier 1 - Event 4 - Slytherin girl ton "Don't be silly... she's perfect!{w} Just the way I like them." ("horny", "wink", "raised", "mid") gen "........................" ("base", xpos="far_left", ypos="head") gen "Well, keep me informed... That should be all for now..." ("base", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]!" ("base", "base", "base", "mid") + ton "Yes, [name_genie_tonks]!" ("base", "base", "base", "mid") # Tonks leaves diff --git a/game/scripts/characters/tonks/events/requests/oral_practice.rpy b/game/scripts/characters/tonks/events/requests/oral_practice.rpy index a82c28d4..dc333dcd 100644 --- a/game/scripts/characters/tonks/events/requests/oral_practice.rpy +++ b/game/scripts/characters/tonks/events/requests/oral_practice.rpy @@ -2,7 +2,7 @@ ### Kissing ### -# ([tonks_name] makes out with her students...) +# ([name_tonks_genie] makes out with her students...) #TODO Add Tonks chibi to all her public request nightly reports @@ -51,7 +51,7 @@ label nt_pr_kiss_start: gen "Would you like to help your students with their oral skills again?" ("base", xpos="far_left", ypos="head") ton "*Mmmm*, yes... Some of them are in dire need of some practice..." ("horny", "base", "raised", "mid") gen "Then go give them some practice!" ("grin", xpos="far_left", ypos="head") - ton "I will, [ton_genie_name]..." ("base", "base", "base", "mid") + ton "I will, [name_genie_tonks]..." ("base", "base", "base", "mid") else: # Repeat @@ -73,7 +73,7 @@ label nt_pr_kiss_start: label nt_pr_kiss_T1_intro_E1: # Tier 1 - Event 1 - Slytherin boy #Gentle kissing call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_kiss.points < 4: # First time. pass @@ -85,8 +85,8 @@ label nt_pr_kiss_T1_intro_E1: # Tier 1 - Event 1 - Slytherin boy "\"Make it quick!\"": ton "I made out with my favourite Slytherin boy again..." ("open", "base", "base", "R") ton "He's getting quite good at it..." ("horny", "base", "base", "up") - gen "Well done, [tonks_name]... We'll talk next time." ("base", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]." ("base", "happyCl", "base", "mid") + gen "Well done, [name_tonks_genie]... We'll talk next time." ("base", xpos="far_left", ypos="head") + ton "Have a good night, [name_genie_tonks]." ("base", "happyCl", "base", "mid") call increase_house_points("s", 40) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -132,7 +132,7 @@ label nt_pr_kiss_T1_intro_E1: # Tier 1 - Event 1 - Slytherin boy gen "Maybe you should consider dealing with all your troublemakers this way?" ("base", xpos="far_left", ypos="head") ton "*Hmm*... Don't tempt me..." ("horny", "base", "base", "R") gen "That'll be all then." ("base", xpos="far_left", ypos="head") - ton "Right, see you, [ton_genie_name]." ("base", "base", "base", "mid") + ton "Right, see you, [name_genie_tonks]." ("base", "base", "base", "mid") # Tonks leaves. @@ -146,7 +146,7 @@ label nt_pr_kiss_T1_intro_E1: # Tier 1 - Event 1 - Slytherin boy label nt_pr_kiss_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_kiss.points < 4: # First time. pass @@ -158,8 +158,8 @@ label nt_pr_kiss_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy "\"Make it quick!\"": ton "Sorry I'm a bit late today..." ("open", "base", "base", "R") ton "I was \"occupied\" kissing that little Ravenclaw boy again..." ("horny", "base", "angry", "mid") - gen "Very good, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Very good, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("r", 20) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -199,12 +199,12 @@ label nt_pr_kiss_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy gen "Is that why you were late today?" ("grin", xpos="far_left", ypos="head") ton "*Hmm*... Can you blame me?" ("crooked_smile", "base", "base", "up") gen "So you spent all afternoon French kissing one of your students?" ("grin", xpos="far_left", ypos="head") - ton "Yes, [ton_genie_name]..." ("soft", "closed", "base", "mid") + ton "Yes, [name_genie_tonks]..." ("soft", "closed", "base", "mid") ton "I guess I fucking did!" ("crooked_smile", "base", "shocked", "mid", hair="neutral") gen "I'm very proud!" ("grin", xpos="far_left", ypos="head") - gen "Great work, [tonks_name]." ("base", xpos="far_left", ypos="head") + gen "Great work, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") ton "..." ("crooked_smile", "base", "base", "up", hair="horny") - ton "Thank you, [ton_genie_name]. Have a good night." ("base", "wink", "base", "mid") + ton "Thank you, [name_genie_tonks]. Have a good night." ("base", "wink", "base", "mid") # Tonks leaves. @@ -219,7 +219,7 @@ label nt_pr_kiss_T1_E2: # Tier 1 - Event 2 - Ravenclaw boy label nt_pr_kiss_T1_E3: # Tier 1 - Event 3 - Slytherin girls #Tonks pays two best friends to make out call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_kiss.points < 4: # First time. pass @@ -232,7 +232,7 @@ label nt_pr_kiss_T1_E3: # Tier 1 - Event 3 - Slytherin girls ton "I gave those two Slytherin sluts detention again..." ("open", "base", "base", "R") ton "Fuck, I came so hard watching them kiss!" ("base", "base", "base", "mid") gen "You wouldn't believe how jealous I am!" ("base", xpos="far_left", ypos="head") - ton "You have no idea, [ton_genie_name]!" ("base", "base", "angry", "mid") + ton "You have no idea, [name_genie_tonks]!" ("base", "base", "angry", "mid") ton "I better get going. Until next time!" ("base", "happyCl", "base", "mid") call increase_house_points("s", 40) if ton_reputation < 9: # Points til 9. @@ -263,7 +263,7 @@ label nt_pr_kiss_T1_E3: # Tier 1 - Event 3 - Slytherin girls ton "But, I have a feeling that wasn't their first time kissing another girl..." ("crooked_smile", "closed", "base", "mid") ton "Maybe not even each other..." ("base", "narrow", "annoyed", "mid") gen "Ought to be young again..." ("base", xpos="far_left", ypos="head") - ton "I couldn't help myself, [ton_genie_name]!" ("crooked_smile", "base", "base", "stare") + ton "I couldn't help myself, [name_genie_tonks]!" ("crooked_smile", "base", "base", "stare") ton "I simply {b}had{/b} to play around while they did it..." ("horny", "happyCl", "shocked", "mid", hair="horny") gen "Did they care?" ("base", xpos="far_left", ypos="head") ton "Not one bit!" ("horny", "base", "base", "down", hair="horny") @@ -273,8 +273,8 @@ label nt_pr_kiss_T1_E3: # Tier 1 - Event 3 - Slytherin girls ton "*Ugh*... It was so {b}bloody hot!{/b}..." ("open_wide_tongue", "base", "base", "ahegao", cheeks="blush") gen "I take your word for it..." ("base", xpos="far_left", ypos="head") ton "This really is the best job ever!" ("grin", "wide", "shocked", "mid") - gen "Very good! That shall be all for now, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Have a good night, [ton_genie_name]." ("base", "happyCl", "base", "mid") + gen "Very good! That shall be all for now, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Have a good night, [name_genie_tonks]." ("base", "happyCl", "base", "mid") # Tonks leaves. @@ -289,7 +289,7 @@ label nt_pr_kiss_T1_E3: # Tier 1 - Event 3 - Slytherin girls label nt_pr_kiss_T1_E4: #Level 1 Event 4 #Tender make-out session with a Slytherin lesbian call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) if ton_reputation <= 7 and nt_pr_kiss.points < 4: # First time. pass @@ -301,8 +301,8 @@ label nt_pr_kiss_T1_E4: #Level 1 Event 4 "\"Make it quick!\"": ton "I kissed that cute little Slytherin girl..." ("open", "base", "base", "mid") ton "She getting there!" ("base", "happyCl", "base", "mid") - gen "Very good, [tonks_name]." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]. Have a good night." ("base", "base", "base", "mid") + gen "Very good, [name_tonks_genie]." ("base", xpos="far_left", ypos="head") + ton "Thank you, [name_genie_tonks]. Have a good night." ("base", "base", "base", "mid") call increase_house_points("s", 40) if ton_reputation < 9: # Points til 9. $ ton_reputation += 1 @@ -349,7 +349,7 @@ label nt_pr_kiss_T1_E4: #Level 1 Event 4 gen "Consider yourself lucky then." ("grin", xpos="far_left", ypos="head") ton "Oh, I do!{w} Believe me!" ("crooked_smile", "closed", "shocked", "mid", hair="horny") gen "That shall be all for now..." ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]." ("soft", "narrow", "base", "mid") + ton "Thank you, [name_genie_tonks]." ("soft", "narrow", "base", "mid") # Tonks leaves. @@ -366,7 +366,7 @@ label nt_pr_kiss_T1_E4: #Level 1 Event 4 label nt_pr_kiss_T2_E1: # Tier 2 Event 1 # Not in use. call ton_walk(action="enter", xpos="mid", ypos="base") - ton "Hi, [ton_genie_name]." (face="horny", xpos="mid", ypos="base", trans=fade) + ton "Hi, [name_genie_tonks]." (face="horny", xpos="mid", ypos="base", trans=fade) gen "How did your extracurricular activities pan out today?" ("base", xpos="far_left", ypos="head") ton "Honestly? I don't think I've ever been as turned on in my life..." ("base", "base", "base", "mid") ton "Fuck... It was incredible... the power I felt over him... it was intoxicating..." ("base", "base", "base", "mid") diff --git a/game/scripts/characters/tonks/gifts.rpy b/game/scripts/characters/tonks/gifts.rpy index 6546b8ee..9f72bdc8 100644 --- a/game/scripts/characters/tonks/gifts.rpy +++ b/game/scripts/characters/tonks/gifts.rpy @@ -38,7 +38,7 @@ label give_ton_gift(gift_item): elif gift_item == science_mag_ITEM: ton "Jinxes and sphinxes? These could help for some of my lessons." (mouth="open", face="neutral", xpos="mid", ypos="base", trans=d5) call give_gift(">You give an assortment of educational magazines to Tonks...", gift_item) - ton "Thank you, [ton_genie_name]." (face="neutral") + ton "Thank you, [name_genie_tonks]." (face="neutral") call ton_friendship(0) elif gift_item == girls_mag_ITEM: @@ -51,7 +51,7 @@ label give_ton_gift(gift_item): ton "Adult magazines?" (face="disgusted", xpos="mid", ypos="base", trans=d5) ton "Wont be the first time I've slipped one in the stack of magazines in my classroom." (face="horny") call give_gift(">You give an assortment of adult magazines to Tonks...", gift_item) - ton "Thank you, [ton_genie_name]." (face="happy") + ton "Thank you, [name_genie_tonks]." (face="happy") call ton_friendship(1) elif gift_item == porn_mag_ITEM: @@ -59,14 +59,14 @@ label give_ton_gift(gift_item): ton "I already know most positions in this book already of course..." (face="happy") call give_gift(">You give an assortment of pornographic magazines to Tonks...", gift_item) ton "Although..." (face="horny") - ton "I'll keep them. Thank you, [ton_genie_name]." (face="happy") + ton "I'll keep them. Thank you, [name_genie_tonks]." (face="happy") call ton_friendship(1) elif gift_item == krum_poster_ITEM: ton "That's that Krum boy is it?" (face="horny", xpos="mid", ypos="base", trans=d5) call give_gift(">You give the poster to Tonks...", gift_item) ton "Nice figure, could set a good mood in the classroom... Or my office." (pupils="down", face="happy") - ton "Thank you, [ton_genie_name]." (face="happy") + ton "Thank you, [name_genie_tonks]." (face="happy") call ton_friendship(1) elif gift_item == sexy_lingerie_ITEM: @@ -92,7 +92,7 @@ label give_ton_gift(gift_item): ton "A vibra-- back massager?" (face="disgusted", xpos="mid", ypos="base", trans=d5) ton "Mm, Mine seemingly went missing from my desk. This should do if it doesn't turn up again." (face="annoyed") call give_gift(">You give the vibrator to Tonks...", gift_item) - ton "Thank you, [ton_genie_name]." (face="neutral") + ton "Thank you, [name_genie_tonks]." (face="neutral") call ton_friendship(1) elif gift_item == anal_lube_ITEM: @@ -100,7 +100,7 @@ label give_ton_gift(gift_item): call give_gift(">You give the jar of lube to Tonks...", gift_item) ton "What's the difference between this and regular lube?" (mouth="open", face="disgusted") ton "Seems like it might be enough to cover the whole body..." (mouth="open", face="happy") - ton "Thank you, [ton_genie_name]." (face="neutral") + ton "Thank you, [name_genie_tonks]." (face="neutral") call ton_friendship(1) elif gift_item == ballgag_and_cuffs_ITEM: @@ -120,7 +120,7 @@ label give_ton_gift(gift_item): ton "Is that a strap-on?" ("open", "wide", "shocked", "stare", xpos="mid",ypos="base",trans=d5) call give_gift(">You give the thestral strap-on to Tonks...", gift_item) ton "This will be a perfect addition to my collection..." (face="angry") - ton "Thank you, [ton_genie_name]." (face="happy") + ton "Thank you, [name_genie_tonks]." (face="happy") call ton_friendship(2) elif gift_item == broom_2000_ITEM: diff --git a/game/scripts/characters/tonks/summon.rpy b/game/scripts/characters/tonks/summon.rpy index bc5a3d7b..1afe53bb 100644 --- a/game/scripts/characters/tonks/summon.rpy +++ b/game/scripts/characters/tonks/summon.rpy @@ -76,7 +76,7 @@ label summon_tonks: if game.daytime: ton "Alright, back to work then..." else: - ton "Sweet dreams, [ton_genie_name]." + ton "Sweet dreams, [name_genie_tonks]." call play_sound("door") diff --git a/game/scripts/characters/tonks/talk.rpy b/game/scripts/characters/tonks/talk.rpy index 2984746b..d8e2d4ff 100644 --- a/game/scripts/characters/tonks/talk.rpy +++ b/game/scripts/characters/tonks/talk.rpy @@ -4,7 +4,7 @@ label tonks_talk: gen "Got a moment?" ("base", xpos="far_left", ypos="head") ton "Sure, just make it quick..." ("open", "base", "base", "mid") gen "I have a problem with--" ("base", xpos="far_left", ypos="head") - ton "[ton_genie_name], aren't you forgetting about something?" ("open", "closed", "base", "mid") + ton "[name_genie_tonks], aren't you forgetting about something?" ("open", "closed", "base", "mid") ton "You should offer a lady a drink, before burdening her with your problems..." ("base", "base", "base", "mid") gen "(Is there {b}any{/b} teacher in this school that has no problems with alcohol...?)" ("base", xpos="far_left", ypos="head") @@ -21,20 +21,20 @@ label tonks_talk: jump tonks_talk "-Get naked!-" if tonks_strip_happened and tonks.is_any_worn("top", "bottom", "robe"): - gen "Get naked, [tonks_name]!" ("base", xpos="far_left", ypos="head") - ton "Of course, [ton_genie_name]." ("horny", "base", "base", "mid") + gen "Get naked, [name_tonks_genie]!" ("base", xpos="far_left", ypos="head") + ton "Of course, [name_genie_tonks]." ("horny", "base", "base", "mid") hide tonks_main with d3 $ tonks.strip("clothes") pause.8 - ton "Do you like it, [ton_genie_name]?" ("horny", "base", "raised", "mid") + ton "Do you like it, [name_genie_tonks]?" ("horny", "base", "raised", "mid") ton "The exposed body of one of your subordinates?" ("open", "base", "raised", "mid") - gen "I do, [tonks_name]!" ("angry", xpos="far_left", ypos="head") + gen "I do, [name_tonks_genie]!" ("angry", xpos="far_left", ypos="head") gen "You should teach like that!" ("grin", xpos="far_left", ypos="head") ton "*Hmm*..." ("base", "base", "base", "R") - ton "I like the way you think, [ton_genie_name]!" ("horny", "base", "base", "mid") + ton "I like the way you think, [name_genie_tonks]!" ("horny", "base", "base", "mid") jump tonks_talk "-Get dressed-" if tonks_strip_happened and not tonks.is_any_worn("top", "bottom", "robe"): @@ -55,22 +55,22 @@ label tonks_talk: menu: "-Sir-": label .sir: # Local label unavailable from global scope - $ ton_genie_name = "Sir" - ton "Of course, [ton_genie_name]." ("base", "base", "base", "mid") + $ name_genie_tonks = "Sir" + ton "Of course, [name_genie_tonks]." ("base", "base", "base", "mid") "-Dumbledore-": label .dumbledore: - $ ton_genie_name = "Dumbledore" - ton "Sure thing, [ton_genie_name]." ("base", "base", "base", "mid") + $ name_genie_tonks = "Dumbledore" + ton "Sure thing, [name_genie_tonks]." ("base", "base", "base", "mid") "-Professor-": label .professor: - $ ton_genie_name = "Professor" - ton "Alright, [ton_genie_name]." ("base", "base", "base", "mid") + $ name_genie_tonks = "Professor" + ton "Alright, [name_genie_tonks]." ("base", "base", "base", "mid") "-Old man-": label .old_man: - $ ton_genie_name = "Old man" + $ name_genie_tonks = "Old man" ton "I have to say, for your age you're in really great shape..." ("soft", "base", "base", "down") gen "That's part of the benefits of being immortal...{w=0.4} Your body doesn't age." ("base", xpos="far_left", ypos="head") ton "You're lucky then... I've had men that were a couple hundred years old, whose bodies were quite fragile..." ("open", "base", "base", "R") @@ -86,7 +86,7 @@ label tonks_talk: "-Genie-": label .genie: - $ ton_genie_name = "Genie" + $ name_genie_tonks = "Genie" ton "Of course." ("base", "base", "base", "mid") gen "Sweet." ("grin", xpos="far_left", ypos="head") ton "Will I get my three wishes too?" ("open", "base", "base", "mid") @@ -103,11 +103,11 @@ label tonks_talk: gen "How would you like to suddenly be robbed of your house?!" ("angry", xpos="far_left", ypos="head") ton "(I guess I can jerk him off some other time...)" ("mad", "base", "worried", "R") gen "If you find a golden, shiny looking lamp, return it to me..." ("base", xpos="far_left", ypos="head") - ton "Sure, [ton_genie_name]..." ("upset", "base", "base", "R") + ton "Sure, [name_genie_tonks]..." ("upset", "base", "base", "R") "-Lord Voldemort-": label .lord_voldemort: - $ ton_genie_name = "Lord Voldemort" + $ name_genie_tonks = "Lord Voldemort" ton "Bold of you to say his name out loud... Who even told you about the dark lord?" ("open", "base", "angry", "mid") gen "I've read the stories..." ("base", xpos="far_left", ypos="head") ton "So you know this wizard did some terrible things in his lifetime?" ("open", "base", "angry", "R") @@ -128,17 +128,17 @@ label tonks_talk: ton "Oh my..." ("horny", "base", "base", "mid", hair="horny") gen "And sometimes a bit of kinky role-play..." ("base", xpos="far_left", ypos="head") gen "Are you going to call me \"Lord Voldemort\" now or what?" ("base", xpos="far_left", ypos="head") - ton "Fine... I will call you, [ton_genie_name], if it makes you happy..." ("base", "base", "base", "mid") + ton "Fine... I will call you, [name_genie_tonks], if it makes you happy..." ("base", "base", "base", "mid") gen "Yippee!" ("grin", xpos="far_left", ypos="head") "-Daddy-": label .daddy: - $ ton_genie_name = "Daddy" + $ name_genie_tonks = "Daddy" ton "Well, you do look about thrice as old as me..." ("base", "base", "raised", "mid") ton "Crazy to think you geezers get to bang all those young, sexy, innocent witches here..." ("open", "base", "base", "R") gen "(Geezers?)" ("base", xpos="far_left", ypos="head") gen "But I thought you didn't mind it?" ("base", xpos="far_left", ypos="head") - ton "Oh, I don't mind at all, [ton_genie_name]!" ("horny", "base", "base", "mid") + ton "Oh, I don't mind at all, [name_genie_tonks]!" ("horny", "base", "base", "mid") "-Lover-" (style="disabled") if ton_friendship < 60: label .lover_fail: @@ -159,7 +159,7 @@ label tonks_talk: "-Lover-" if ton_friendship >= 60: label .lover: - $ ton_genie_name = "Lover" + $ name_genie_tonks = "Lover" ton "As you wish, \"Lover boy\"..." ("horny", "narrow", "base", "mid") gen "Just \"Lover\" is fine." ("base", xpos="far_left", ypos="head") ton "Yes my love..." ("base", "narrow", "base", "mid") @@ -178,21 +178,21 @@ label tonks_talk: "-Master-" if ton_friendship >= 60: label .master: - $ ton_genie_name = "Master" - ton "Yes, [ton_genie_name]." ("open", "base", "base", "mid") + $ name_genie_tonks = "Master" + ton "Yes, [name_genie_tonks]." ("open", "base", "base", "mid") gen "(...)" ("base", xpos="far_left", ypos="head") ton "" ("base", "base", "raised", "mid") call ctc gen "(...?)" ("base", xpos="far_left", ypos="head") gen "You have permission to speak?" ("base", xpos="far_left", ypos="head") - ton "Thank you, [ton_genie_name]." ("base", "base", "base", "down") + ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "down") gen "(I could get used to that.)" ("grin", xpos="far_left", ypos="head") "-Custom Input--" (style="disabled") if ton_friendship < 60: gen "(I don't think she's yet ready for that)" ("base", xpos="far_left", ypos="head") "-Custom Input-" if ton_friendship >= 60: - $ temp_name = renpy.input("(Please enter the name.)", ton_genie_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_genie_tonks, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name.lower() in ("sir", "dumbledore", "professor", "old man", "genie", "lord voldemort", "daddy", "master"): @@ -200,8 +200,8 @@ label tonks_talk: jump tonks_talk.master_fail $ renpy.jump("tonks_talk."+temp_name.lower().replace(" ", "_")) # Jump to local label else: - $ ton_genie_name = temp_name - ton "*Hmm*... [ton_genie_name]... I like it." ("horny", "base", "raised", "mid") + $ name_genie_tonks = temp_name + ton "*Hmm*... [name_genie_tonks]... I like it." ("horny", "base", "raised", "mid") jump tonks_talk "-Never mind-": @@ -213,28 +213,28 @@ label tonks_talk: menu: "-Tonks-": label .tonks: # Local label unavailable from global scope. - $ tonks_name = "Tonks" - ton "Sure, [ton_genie_name]." ("base", "base", "base", "mid") + $ name_tonks_genie = "Tonks" + ton "Sure, [name_genie_tonks]." ("base", "base", "base", "mid") "-Nymphadora-": - $ tonks_name = "Nymphadora" + $ name_tonks_genie = "Nymphadora" label .nymphadora: ton "*Ugh*--" ("mad", "base", "angry", "R") - ton "Really, [ton_genie_name]?" ("open", "base", "angry", "mid") + ton "Really, [name_genie_tonks]?" ("open", "base", "angry", "mid") ton "I hate that name..." ("open", "base", "worried", "R") - gen "Well you better get used to hearing it then, [tonks_name]..." ("base", xpos="far_left", ypos="head") + gen "Well you better get used to hearing it then, [name_tonks_genie]..." ("base", xpos="far_left", ypos="head") ton "................" ("upset", "base", "angry", "R") "-Nympho-": label .nympho: - $ tonks_name = "Nympho" - ton "You think I'm a nympho, [ton_genie_name]?" ("horny", "base", "raised", "mid") + $ name_tonks_genie = "Nympho" + ton "You think I'm a nympho, [name_genie_tonks]?" ("horny", "base", "raised", "mid") ton "Like a filthy, sex craved maniac? Who wouldn't shy away from fulfilling every single one of her fantasies?" ("grin", "base", "shocked", "mid") ton "It fits quite well, actually." ("base", "base", "base", "R") "-Bitch-": label .bitch: - $ tonks_name = "Bitch" + $ name_tonks_genie = "Bitch" ton "*Hi-hi*" ("base", "base", "base", "R") ton "If only you knew..." ("horny", "base", "raised", "R") gen "(...)" ("base", xpos="far_left", ypos="head") @@ -251,12 +251,12 @@ label tonks_talk: "-Fuck Puppet-": label .fuck_puppet: - $ tonks_name = "Fuck Puppet" + $ name_tonks_genie = "Fuck Puppet" ton "A fuck puppet?" ("open", "base", "raised", "mid") ton "So you want me to be your personal toy?" ("horny", "base", "base", "mid") gen "Wouldn't anyone." ("base", xpos="far_left", ypos="head") ton "Such a charmer..." ("base", "base", "raised", "R") - ton "Of course, [ton_genie_name]... you can call me that if you like." ("horny", "base", "base", "mid") + ton "Of course, [name_genie_tonks]... you can call me that if you like." ("horny", "base", "base", "mid") #"-Slut-": #label .slut_fail: @@ -266,7 +266,7 @@ label tonks_talk: #gen "I wasn't going to." ("base", xpos="far_left", ypos="head") "-Slut-": - $ tonks_name = "Slut" + $ name_tonks_genie = "Slut" ton "Maybe I am..." ("base", "narrow", "base", "R") ton "Although I'd rather get called \"fashionable\"." ("base", "narrow", "base", "mid") gen "Weird thing to say in bed but I ain't judging." ("base", xpos="far_left", ypos="head") @@ -286,7 +286,7 @@ label tonks_talk: "-Whore-": #Todo put under public checks label .whore: - $ tonks_name = "Whore" + $ name_tonks_genie = "Whore" ton "Hmm... I'm a \"whore\" now, am I?" ("horny", "base", "raised", "mid", hair="horny") gen "That's what I pay you for." ton "You pay me to--" ("soft", "narrow", "base", "mid", hair="horny") @@ -297,18 +297,18 @@ label tonks_talk: "-Cunt-" (style="disabled") if ton_friendship < 60: label .cunt_fail: - ton "[ton_genie_name], I'm used to getting insulted by my many previous lovers..." ("base", "base", "raised", "mid") + ton "[name_genie_tonks], I'm used to getting insulted by my many previous lovers..." ("base", "base", "raised", "mid") ton "Truth be told I bloody love it!" ("open_wide_tongue", "base", "base", "ahegao") ton "But we aren't close enough for that yet, don't you think?" ("open", "base", "worried", "mid") ton "Maybe we should wait with that until we know each other a bit better." ("base", "base", "worried", "R") gen "Of course.{w} And I will respect that." ("base", xpos="far_left", ypos="head") - ton "I'm glad.{w} You are a very polite man, [ton_genie_name]..." ("base", "base", "base", "mid") + ton "I'm glad.{w} You are a very polite man, [name_genie_tonks]..." ("base", "base", "base", "mid") gen "..........................." ("base", xpos="far_left", ypos="head") "-Cunt-" if ton_friendship >= 60: label .cunt: - $ tonks_name = "Cunt" - ton "*Uuuh*, [ton_genie_name]..." ("base", "base", "raised", "mid") + $ name_tonks_genie = "Cunt" + ton "*Uuuh*, [name_genie_tonks]..." ("base", "base", "raised", "mid") ton "You better not call me that in front of a student..." ("open", "base", "base", "mid") gen "What if I do?" ("grin", xpos="far_left", ypos="head") ton "Do it, I dare you!" ("horny", "base", "base", "mid", hair="horny") @@ -318,11 +318,11 @@ label tonks_talk: ton "To who?" ("soft", "base", "raised", "mid") gen "To me." ("grin", xpos="far_left", ypos="head") ton "*giggles*" ("grin", "closed", "base", "mid") - ton "No, I don't think so [ton_genie_name]." ("base", "base", "base", "mid") + ton "No, I don't think so [name_genie_tonks]." ("base", "base", "base", "mid") "-Slave-" if ton_friendship >= 60: label .slave: - $ tonks_name = "Slave" + $ name_tonks_genie = "Slave" ton "Does this mean I have to be obedient?" ("soft", "narrow", "raised", "mid") gen "Isn't that the point of an employee?" ("base", xpos="far_left", ypos="head") ton "I suppose, although you pay me for that." ("open", "narrow", "base", "R") @@ -346,18 +346,18 @@ label tonks_talk: gen "(I don't think she's yet ready for that)" ("base", xpos="far_left", ypos="head") "-Custom Input-" if ton_friendship >= 60: - $ temp_name = renpy.input("(Please enter the name.)", tonks_name, ALLOWED_CHARACTERS, length=14) + $ temp_name = renpy.input("(Please enter the name.)", name_tonks_genie, ALLOWED_CHARACTERS, length=14) $ temp_name = temp_name.strip() if temp_name.lower() in ("tonks", "nymphadora", "nympho", "fuck puppet", "bitch", "cunt"): if temp_name.lower() == "cunt" and ton_friendship < 60: jump tonks_talk.cunt_fail $ renpy.jump("tonks_talk."+temp_name.lower().replace(" ", "_")) # Jump to local label else: - $ tonks_name = temp_name + $ name_tonks_genie = temp_name ton "*Hmm*..." ("base", "base", "base", "R") ton "Alright." ("base", "base", "base", "mid") gen "Really? You don't mind?" ("base", xpos="far_left", ypos="head") - ton "Not at all, [ton_genie_name]." ("horny", "base", "raised", "mid") + ton "Not at all, [name_genie_tonks]." ("horny", "base", "raised", "mid") ton "I've been called quite many things by my lovers!" ("base", "base", "base", "R") gen "I'm your lover now?" ("grin", xpos="far_left", ypos="head") ton "Never say never." ("base", "base", "base", "mid") diff --git a/game/scripts/characters/tonks/vars.rpy b/game/scripts/characters/tonks/vars.rpy index 5e1ad9a4..b7ab9fe9 100644 --- a/game/scripts/characters/tonks/vars.rpy +++ b/game/scripts/characters/tonks/vars.rpy @@ -25,6 +25,6 @@ default tonks_haircolor = [c for c in ton_hair_base.color] init offset = 0 # Names -default tonks_name = "Tonks" -default ton_genie_name = "Professor" -default ton_astoria_name = "Cutie" +default name_tonks_genie = "Tonks" +default name_genie_tonks = "Professor" +default name_astoria_tonks = "Cutie" diff --git a/game/scripts/characters/tonks/wardrobe_reactions.rpy b/game/scripts/characters/tonks/wardrobe_reactions.rpy index a074d586..ddb29f78 100644 --- a/game/scripts/characters/tonks/wardrobe_reactions.rpy +++ b/game/scripts/characters/tonks/wardrobe_reactions.rpy @@ -32,7 +32,7 @@ label ton_reaction_category_fail(category): if random_number == 1: ton "*Hmm*... You'd like that wouldn't you?" ("horny", "narrow", "base", "mid") elif random_number == 2: - ton "If you behave maybe I'll let you take a peek later, [ton_genie_name]..." ("soft", "narrow", "base", "mid") + ton "If you behave maybe I'll let you take a peek later, [name_genie_tonks]..." ("soft", "narrow", "base", "mid") elif random_number == 3: ton "Patience dear..." ("grin", "wink", "raised", "mid") elif random_number == 4: @@ -150,7 +150,7 @@ label ton_reaction_touch_fail(what): if random_number == 1: ton "You have to earn it first." (face="annoyed") elif random_number == 2: - ton "If you'd like to keep these hands intact I suggest you stop it right now, [ton_genie_name]." (face="annoyed") + ton "If you'd like to keep these hands intact I suggest you stop it right now, [name_genie_tonks]." (face="annoyed") elif random_number == 3: ton "Hey, who said you had permission to approach the chamber of secrets?" (face="annoyed", eyebrows="angry", mouth="grin") elif random_number == 4: @@ -189,7 +189,7 @@ label ton_reaction_unequip(item): # if item.type == "panties": # if ton_friendship > 15: # ton "You want to see my snatch?" - # ton "You got it [genie_name]!" + # ton "You got it [name_genie_hermione]!" # return @@ -204,7 +204,7 @@ label ton_reaction_unequip_fail(item): if item.type == "top": ton "Someone's being naughty... I might have to give you a spanking for that." (face="annoyed", eyebrows="angry", mouth="grin") - ton "Just kidding! Sure, have a quick look, [ton_genie_name]." (face="annoyed", eyebrows="raised", mouth="horny") + ton "Just kidding! Sure, have a quick look, [name_genie_tonks]." (face="annoyed", eyebrows="raised", mouth="horny") $ char_active.strip("top", "robe") ton "" (face="happy") pause 1.0 diff --git a/game/scripts/events/Start.rpy b/game/scripts/events/Start.rpy index 773d4221..7b99e682 100644 --- a/game/scripts/events/Start.rpy +++ b/game/scripts/events/Start.rpy @@ -70,7 +70,7 @@ label genie_intro_E1: pause 0.5 $ renpy.block_rollback() - $ dumbledore_name = "Old Bearded Man" + $ name_dumbledore_genie = "Old Bearded Man" $ renpy.sound.play("sounds/snore1.ogg") dum1 "*Sounds of an old man sleeping like a baby*" @@ -97,7 +97,7 @@ label genie_intro_E1: dum2 "Perhaps I should--" - $ dumbledore_name = "Albus Dumbledore" + $ name_dumbledore_genie = "Albus Dumbledore" $ renpy.play("sounds/magic4.ogg") $ desk_OBJ.idle = "ch_gen sit_behind_desk" diff --git a/game/scripts/events/ending.rpy b/game/scripts/events/ending.rpy index 4f02aec5..49111064 100644 --- a/game/scripts/events/ending.rpy +++ b/game/scripts/events/ending.rpy @@ -1,11 +1,11 @@ ### Yule Ball Ending ### label ball_ending_start: - gen "[hermione_name], that ball you've mentioned..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], that ball you've mentioned..." ("base", xpos="far_left", ypos="head") gen "When did you say it would start again?" ("base", xpos="far_left", ypos="head") her "The autumn ball?!" ("grin", "base", "base", "mid") her "I'm so excited!!! I can't wait for it!" ("grin", "happyCl", "base", "mid") - her "Just two more days, [genie_name]." ("base", "narrow", "base", "mid_soft") + her "Just two more days, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") gen "That soon, *huh*?" ("base", xpos="far_left", ypos="head") her "Yep! I still have a tonne of preparation to do, though." ("soft", "base", "base", "R") gen "Well then I better not keep you occupied any longer..." ("base", xpos="far_left", ypos="head") @@ -516,7 +516,7 @@ label ball_ending_E2: gen "Psst! Girl!" ("base", xpos="far_left", ypos="head") her "???" ("upset", "base", "base", "mid") gen "Girl, it's me! Over here!" ("base", xpos="far_left", ypos="head") - her "[genie_name]?" ("open", "base", "base", "mid") + her "[name_genie_hermione]?" ("open", "base", "base", "mid") gen "Shush! Keep your voice down and follow me." ("base", xpos="far_left", ypos="head") her "Oh?" ("open", "base", "base", "mid") @@ -1312,7 +1312,7 @@ label ball_ending_E2: call hide_blkfade call ctc - her "[genie_name]..." ("soft", "narrow", "base", "R_soft",cheeks="blush", ypos="head", flip=False) + her "[name_genie_hermione]..." ("soft", "narrow", "base", "R_soft",cheeks="blush", ypos="head", flip=False) her "There was something you wanted to discuss with me?" gen "Not right now, whore!" ("angry", xpos="far_left", ypos="head") call blkfade @@ -1367,7 +1367,7 @@ label ball_ending_E2: hide screen white with hpunch - her "Ah! [genie_name]!" + her "Ah! [name_genie_hermione]!" gen "I said be quiet!" ("angry", xpos="far_left", ypos="head") call play_sound("slap") @@ -1377,7 +1377,7 @@ label ball_ending_E2: with hpunch $ dynamic_cg("ball/sex", "background", "base", "eyes_dead", "blush") - her "Ah! [genie_name]!" + her "Ah! [name_genie_hermione]!" $ dynamic_cg("ball/sex", "background", "base", "eyes_up", "brows", "blush") her "Yes! Fuck me harder!" gen "Are you raising your voice on purpose, whore?" ("base", xpos="far_left", ypos="head") @@ -1438,7 +1438,7 @@ label ball_ending_E2: her "*AAAAAAAhH*!" her "Yes!!! Yeeees! Ah!" $ dynamic_cg("ball/sex", "background", "base", "mouth_open_tongue", "eyes_stare", "tears2", "brows", "blush") - her "Fuck me [genie_name]! Fuck me harder!!!" + her "Fuck me [name_genie_hermione]! Fuck me harder!!!" gen "*Grh*! Harder than this, whore?!" ("angry", xpos="far_left", ypos="head") gen "!!!" ("angry", xpos="far_left", ypos="head") gen "Crap! Someone's coming!" ("angry", xpos="far_left", ypos="head") @@ -2518,7 +2518,7 @@ label ball_ending_E2: gen "Yes! You whore! I'll pump your witch cunt full of my cum!" ("angry", xpos="far_left", ypos="head") $ dynamic_cg("ball/sex", "background2", "base", "eyes_down", "mouth_open_tongue2", "blush", "mascara", "spit", "cum_pussy", "cum_extra") - her "[genie_name]! My dress!" + her "[name_genie_hermione]! My dress!" gen "What?" ("angry", xpos="far_left", ypos="head") her "Make sure you don't get any on my dress!" gen "Shut up about your dress, whore! You are ruining the moment!" ("angry", xpos="far_left", ypos="head") @@ -2567,7 +2567,7 @@ label ball_ending_E2: her "{size=+5}It's filling me up! It's filling me up!!!{/size}" gen "Yes! You whore! I'll pump you full of my cum!" ("angry", xpos="far_left", ypos="head") $ dynamic_cg("ball/sex", "background2", "base", "eyes_down", "blush", "mascara", "spit", "cum_anal") - her "[genie_name]! My dress!" + her "[name_genie_hermione]! My dress!" gen "What?" ("angry", xpos="far_left", ypos="head") her "Make sure you don't get any on my dress!" gen "Shut up about your dress, whore! You are ruining the moment!" ("angry", xpos="far_left", ypos="head") diff --git a/game/scripts/events/final_events.rpy b/game/scripts/events/final_events.rpy index 809016f4..4c41862a 100644 --- a/game/scripts/events/final_events.rpy +++ b/game/scripts/events/final_events.rpy @@ -6,34 +6,34 @@ label ball_quest_E1: call her_walk(action="enter", xpos="mid", ypos="base") call play_music("chipper_doodle") - her "[genie_name]?" ("soft", "base", "base", "mid", xpos="right", ypos="base") - gen "[hermione_name], how can I help you?" ("base", xpos="far_left", ypos="head") - her "[genie_name], have you made your decision yet on who will be in charge of the \"ABOC\" this year?" ("open", "base", "base", "mid") + her "[name_genie_hermione]?" ("soft", "base", "base", "mid", xpos="right", ypos="base") + gen "[name_hermione_genie], how can I help you?" ("base", xpos="far_left", ypos="head") + her "[name_genie_hermione], have you made your decision yet on who will be in charge of the \"ABOC\" this year?" ("open", "base", "base", "mid") gen "\"ABOC\"?" ("base", xpos="far_left", ypos="head") - her "The \"Autumn Ball Organization Committee\", [genie_name]..." ("open", "closed", "base", "mid") + her "The \"Autumn Ball Organization Committee\", [name_genie_hermione]..." ("open", "closed", "base", "mid") gen "*Ehm*... Sure..." ("base", xpos="far_left", ypos="head") - her "Please excuse me if I am being too direct with this, [genie_name]..." ("normal", "squint", "angry", "mid") + her "Please excuse me if I am being too direct with this, [name_genie_hermione]..." ("normal", "squint", "angry", "mid") her "But I think you should put {b}me{/b} in charge." ("open", "closed", "angry", "mid") her "I did it last year and it was the best organised \"autumn ball\" Hogwarts has had in years." ("open", "closed", "base", "mid") - her "You said so yourself, [genie_name]. Do you remember?" ("normal", "base", "base", "mid") + her "You said so yourself, [name_genie_hermione]. Do you remember?" ("normal", "base", "base", "mid") gen "Right, of course..." ("base", xpos="far_left", ypos="head") her "So, is this a yes?" ("base", "base", "base", "mid") her "Does this mean I will be in charge again this year?" ("base", "base", "base", "mid") menu: gen "..." ("base", xpos="far_left", ypos="head") - "\"You shall be in charge, [hermione_name].\"": - her "Thank you, [genie_name]." ("base", "base", "base", "mid") + "\"You shall be in charge, [name_hermione_genie].\"": + her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") "\"No. Professor Snape shall be in charge!\"": - her "Professor Snape, [genie_name]?" ("open", "squint", "angry", "mid") + her "Professor Snape, [name_genie_hermione]?" ("open", "squint", "angry", "mid") her "But, traditionally organizing and hosting the ball is the responsibility of the students..." ("normal", "base", "angry", "mid") her "Teachers are only present as the guests of honour..." ("open", "closed", "angry", "mid") gen "Of course...{w=0.4} I was just kidding." ("base", xpos="far_left", ypos="head") - gen "You shall be in charge, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "You shall be in charge, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "There is one condition, though..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("normal", "squint", "angry", "mid") + her "Yes, [name_genie_hermione]?" ("normal", "squint", "angry", "mid") $ d_flag_01 = False $ d_flag_02 = False @@ -67,18 +67,18 @@ label ball_quest_E1: her "I will have to... sleep...?" ("angry", "wide", "base", "mid") her "..................." ("angry", "base", "angry", "mid", cheeks="blush") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "I am not stupid, [genie_name]... Quite the opposite in fact." ("angry", "closed", "angry", "mid", cheeks="blush") + her "I am not stupid, [name_genie_hermione]... Quite the opposite in fact." ("angry", "closed", "angry", "mid", cheeks="blush") her "And I understand that the nature of the favours I have been selling you lately..." ("open", "base", "angry", "R", cheeks="blush") her "... Might have led you to believe that I would be willing to..." ("open", "squint", "angry", "mid", cheeks="blush") - her "... To let you have your way with me eventually, [genie_name]..." ("disgust", "squint", "angry", "L_soft", cheeks="blush") + her "... To let you have your way with me eventually, [name_genie_hermione]..." ("disgust", "squint", "angry", "L_soft", cheeks="blush") gen "Whaaa--? I would never--" ("base", xpos="far_left", ypos="head") - her "Please, let me finish, [genie_name]." ("scream", "base", "angry", "mid",emote="angry", cheeks="blush") + her "Please, let me finish, [name_genie_hermione]." ("scream", "base", "angry", "mid",emote="angry", cheeks="blush") gen "Right..." ("base", xpos="far_left", ypos="head") - her "I know that you are a rather wise man yourself, [genie_name]." ("angry", "base", "angry", "mid", cheeks="blush") + her "I know that you are a rather wise man yourself, [name_genie_hermione]." ("angry", "base", "angry", "mid", cheeks="blush") her "So, please... understand this..." ("disgust", "narrow", "base", "L_soft", cheeks="blush") her "I may be willing to sacrifice my pride and even my dignity for the sake of my house..." ("open", "closed", "angry", "mid", cheeks="blush") her "But sleeping with my headmaster?" ("open", "squint", "annoyed", "mid", cheeks="blush") - her "That is where I draw the line, [genie_name]." ("angry", "base", "angry", "mid", cheeks="blush") + her "That is where I draw the line, [name_genie_hermione]." ("angry", "base", "angry", "mid", cheeks="blush") gen "Fine... in that case..." ("base", xpos="far_left", ypos="head") jump ball_quest_E1.choices @@ -93,17 +93,17 @@ label ball_quest_E1: if d_flag_02: her "Do I have to?" ("annoyed", "base", "annoyed", "R", cheeks="blush") - gen "No [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "No [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "You don't have to take any clothes off..." ("base", xpos="far_left", ypos="head") her "Finally you're being reasonable." ("open", "closed", "base", "mid") if hermione.is_worn("panties"): gen "I only need you to pull those panties aside for easy access." ("grin", xpos="far_left", ypos="head") else: gen "I only need you to bend over my desk for easy access." ("grin", xpos="far_left", ypos="head") - her "[genie_name]! I thought I established this already... I'm not going to sleep with you!" ("angry", "narrow", "angry", "mid", cheeks="blush") + her "[name_genie_hermione]! I thought I established this already... I'm not going to sleep with you!" ("angry", "narrow", "angry", "mid", cheeks="blush") gen "Then the answer is yes..." ("base", xpos="far_left", ypos="head") gen "If you want to be in charge of My balls--" ("base", xpos="far_left", ypos="head") - her "The \"Autumn Ball\", [genie_name]..." ("upset", "squint", "annoyed", "mid", cheeks="blush") + her "The \"Autumn Ball\", [name_genie_hermione]..." ("upset", "squint", "annoyed", "mid", cheeks="blush") her "But this isn't a favour... this is THE Autumn Ball we're talking about..." ("open", "squint", "angry", "mid") gen "Then would you say the job of organizing it is... an honour?" ("base", xpos="far_left", ypos="head") her "It is!" ("open", "closed", "base", "mid") @@ -114,13 +114,13 @@ label ball_quest_E1: else: her "What?!" ("open", "base", "base", "mid") gen "What?" ("base", xpos="far_left", ypos="head") - her "[genie_name]!" ("angry", "base", "angry", "mid") + her "[name_genie_hermione]!" ("angry", "base", "angry", "mid") gen "What?" ("base", xpos="far_left", ypos="head") - her "You are abusing your power, [genie_name]. Again!" ("disgust", "narrow", "base", "mid_soft") + her "You are abusing your power, [name_genie_hermione]. Again!" ("disgust", "narrow", "base", "mid_soft") gen "Seriously? After all those favours you sold me?" ("base", xpos="far_left", ypos="head") - her "Those were for the sake of my house, [genie_name]." ("annoyed", "narrow", "annoyed", "mid") + her "Those were for the sake of my house, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") gen "Well this one is for the sake of the \"Autumn prom\"." ("base", xpos="far_left", ypos="head") - her "It's the \"Autumn Ball\", [genie_name]..." ("upset", "closed", "base", "mid") + her "It's the \"Autumn Ball\", [name_genie_hermione]..." ("upset", "closed", "base", "mid") gen "Oh, come on..." ("base", xpos="far_left", ypos="head") gen "Entrusting the thing to somebody else would be a crime, you know that." ("base", xpos="far_left", ypos="head") her ".........." ("annoyed", "narrow", "angry", "R") @@ -132,7 +132,7 @@ label ball_quest_E1: gen "And only {size=+5}YOU{/size} can give them that!" ("base", xpos="far_left", ypos="head") her "... that is true actually." ("angry", "narrow", "base", "down") gen "People depend on you, girl!" ("base", xpos="far_left", ypos="head") - her "You... maybe you're right, [genie_name]." ("open", "narrow", "worried", "down") + her "You... maybe you're right, [name_genie_hermione]." ("open", "narrow", "worried", "down") her "I must do this... Everyone depends on me." ("upset", "closed", "base", "mid") her "Just give me a second please." ("annoyed", "narrow", "base", "R") @@ -230,7 +230,7 @@ label ball_quest_E1: her "" ("soft", "base", "base", "R_soft", cheeks="blush") call ctc - gen "Very good [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Very good [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") gen "Your ample tits are always a welcome sight..." ("base", xpos="far_left", ypos="head") her "...................." ("disgust", "narrow", "base", "down", cheeks="blush") her "" ("normal", "base", "worried", "R_soft", cheeks="blush") @@ -286,12 +286,12 @@ label ball_quest_E1: gen "What are you doing, girl?!" ("angry", xpos="far_left", ypos="head") with hpunch gen "I am your headmaster! Do you have no shame?!" ("angry", xpos="far_left", ypos="head") her "What?! But--" ("angry", "base", "angry", "mid", cheeks="blush") - gen "*He-he*... Relax, [hermione_name]. I'm just kidding." ("grin", xpos="far_left", ypos="head") - her "[genie_name], that was just mean." ("scream", "happyCl", "angry", "mid", cheeks="blush") + gen "*He-he*... Relax, [name_hermione_genie]. I'm just kidding." ("grin", xpos="far_left", ypos="head") + her "[name_genie_hermione], that was just mean." ("scream", "happyCl", "angry", "mid", cheeks="blush") gen "*He-he*..." ("grin", xpos="far_left", ypos="head") her "....................................." ("annoyed", "base", "worried", "R_soft", cheeks="blush") gen "I do like your cute little pussy though..." ("base", xpos="far_left", ypos="head") - her "..... Thank you, [genie_name]." ("disgust", "base", "angry", "R_soft", cheeks="blush") + her "..... Thank you, [name_genie_hermione]." ("disgust", "base", "angry", "R_soft", cheeks="blush") jump ball_quest_E1.choices2 @@ -306,7 +306,7 @@ label ball_quest_E1: with d5 pause 1.0 - gen "Looking good [hermione_name]..." ("grin", xpos="far_left", ypos="head") + gen "Looking good [name_hermione_genie]..." ("grin", xpos="far_left", ypos="head") her "Happy now?" ("annoyed", "base", "worried", "R", cheeks="blush") her "Will you let me have the \"privilege\" of being in charge of the \"ABOC\" this year?" ("normal", "base", "worried", "mid") @@ -354,7 +354,7 @@ label ball_quest_E1: call ctc her "*Sob*!" ("soft", "squint", "worried", "R_soft", cheeks="blush", tears="soft") gen "*huh*?" ("base", xpos="far_left", ypos="head") - her "Oh, please,{w=0.4} don't mind me, [genie_name]." ("open", "base", "base", "R", cheeks="blush", tears="crying") + her "Oh, please,{w=0.4} don't mind me, [name_genie_hermione]." ("open", "base", "base", "R", cheeks="blush", tears="crying") her "Just enjoy the... {w=0.5}the view..." ("upset", "happy", "base", "R", cheeks="blush", tears="soft") gen "Are you... crying?" ("base", xpos="far_left", ypos="head") stop bg_sounds @@ -362,7 +362,7 @@ label ball_quest_E1: # Hand down $ hermione.set_body(armleft="down") - her "*Sob*! No, [genie_name]... *sob*!..." ("angry", "happyCl", "worried", "mid", cheeks="blush", tears="crying_blink") + her "*Sob*! No, [name_genie_hermione]... *sob*!..." ("angry", "happyCl", "worried", "mid", cheeks="blush", tears="crying_blink") her "I... I enjoy touching myself...{w=0.5} In front of my headmaster *SOB*!" ("angry", "squint", "worried", "R_soft", cheeks="blush", tears="crying") # Hands on pussy, tits @@ -371,7 +371,7 @@ label ball_quest_E1: play bg_sounds "sounds/slickloop.ogg" fadein 2 her "*Ah*..." ("open", "squint", "worried", "R", cheeks="blush") - her "These...{w=0.4} *Ah*...{w=0.5} are happy tears, [genie_name]." ("open", "narrow", "low", "R", cheeks="blush", tears="messy") + her "These...{w=0.4} *Ah*...{w=0.5} are happy tears, [name_genie_hermione]." ("open", "narrow", "low", "R", cheeks="blush", tears="messy") her "I...{w=0.5} *Ah*...{w=0.5}... I'm sorry...{w=0.5} I can't help it! *Sob*!" ("angry", "happyCl", "worried", "mid_soft", cheeks="blush", tears="messy") gen "Are you sure that you are okay with this?" ("base", xpos="far_left", ypos="head") her "Yes...{w=0.4} *Ah*...{w=0.5} yes, sir, please.... *Sob*!" ("soft", "squint", "worried", "mid", cheeks="blush", tears="messy") @@ -381,7 +381,7 @@ label ball_quest_E1: gen "(What the...?)" ("angry", xpos="far_left", ypos="head") with hpunch - her "[genie_name], I am begging you!" ("soft", "narrow", "angry", "mid", cheeks="blush", tears="messy") + her "[name_genie_hermione], I am begging you!" ("soft", "narrow", "angry", "mid", cheeks="blush", tears="messy") gen "Kind of sounds like an order--" ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloopfast.ogg" her "I need it!" ("open", "narrow", "worried", "up_soft", cheeks="blush", tears="messy") @@ -391,7 +391,7 @@ label ball_quest_E1: her "I need to feel this embarrassment and humiliation! *SOB*!" ("silly", "narrow", "angry", "dead", cheeks="blush", tears="messy") play bg_sounds "sounds/slickloopveryfast.ogg" her "The fate of the \"Autumn ball\" depends on this..." ("silly", "base", "worried", "mid_soft", cheeks="blush", tears="messy") - her "So... [genie_name], please..." + her "So... [name_genie_hermione], please..." her "Keep looking at my naked breasts, and my pussy..." ("silly", "narrow", "worried", "mid", cheeks="blush", tears="messy") her "Look at me as I get wet for you..." her "*mmmh*..." ("open", "happyCl", "worried", "R", cheeks="blush", tears="messy") #disgusted #blushing @@ -399,13 +399,13 @@ label ball_quest_E1: with hpunch - her "*Ah*...{w=0.5} Yes! Make my skin burn with shame, [genie_name]... *Sob*!" ("open", "narrow", "base", "up", cheeks="blush", tears="messy") + her "*Ah*...{w=0.5} Yes! Make my skin burn with shame, [name_genie_hermione]... *Sob*!" ("open", "narrow", "base", "up", cheeks="blush", tears="messy") gen "*Ehm*... right... Okay..." ("base", xpos="far_left", ypos="head") gen "Listen, I think this will do..." ("base", xpos="far_left", ypos="head") play bg_sounds "sounds/slickloop.ogg" fadein 2 - her "*Ah*...{w=0.5} Are you sure, [genie_name]?" ("open", "narrow", "base", "mid", cheeks="blush", tears="messy") - her "Are you sure that you've humiliated me enough, [genie_name]?" ("base", "narrow", "worried", "mid_soft", cheeks="blush", tears="messy") + her "*Ah*...{w=0.5} Are you sure, [name_genie_hermione]?" ("open", "narrow", "base", "mid", cheeks="blush", tears="messy") + her "Are you sure that you've humiliated me enough, [name_genie_hermione]?" ("base", "narrow", "worried", "mid_soft", cheeks="blush", tears="messy") gen "...................." ("base", xpos="far_left", ypos="head") gen "(Is she getting off on this or is she being sarcastic? I don't get it...)" ("base", xpos="far_left", ypos="head") her "*mmmh*............" ("open", "happyCl", "worried", "R", cheeks="blush", tears="messy") @@ -413,7 +413,7 @@ label ball_quest_E1: gen "That's enough..." ("base", xpos="far_left", ypos="head") her "" ("annoyed", "base", "base", "mid", cheeks="blush", tears="messy") - gen "Just put your clothes back on, [hermione_name]. You're making me feel uncomfortable." ("base", xpos="far_left", ypos="head") + gen "Just put your clothes back on, [name_hermione_genie]. You're making me feel uncomfortable." ("base", xpos="far_left", ypos="head") stop bg_sounds fadeout 4 her "..." @@ -423,7 +423,7 @@ label ball_quest_E1: $ hermione.set_pose(None) $ hermione.strip("clothes") - her "As you wish, [genie_name]..." ("annoyed", "narrow", "angry", "R", cheeks="blush", tears="messy") + her "As you wish, [name_genie_hermione]..." ("annoyed", "narrow", "angry", "R", cheeks="blush", tears="messy") stop music fadeout 3.0 @@ -442,7 +442,7 @@ label ball_quest_E1: her "So... does this mean I'm officially in charge of this year's \"Autumn Ball Organization Committee\" now?" ("base", "happyCl", "base", "mid", xpos="right", ypos="base") gen "That you are." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]! You will not regret this, I promise!" + her "Thank you [name_genie_hermione]! You will not regret this, I promise!" if d_flag_03: call blktone gen "(That was weird... she sure changed her mood quick.)" ("base", xpos="far_left", ypos="head") @@ -455,7 +455,7 @@ label ball_quest_E1: gen "{size=-4}(I couldn't care less about the whole thing...){/size}" ("base", xpos="far_left", ypos="head") call hide_blktone her "Well, I'd better go now. I have so many arrangements to make!" ("grin", "base", "base", "R") - gen "By all means, [hermione_name]. Have a nice day." ("base", xpos="far_left", ypos="head") + gen "By all means, [name_hermione_genie]. Have a nice day." ("base", xpos="far_left", ypos="head") call her_walk(action="leave") pause.5 @@ -567,24 +567,24 @@ label ball_quest_E3: gen "Are You kidding me!?" ("base", xpos="far_left", ypos="head") her "They sent me the dress I wore to the ball last year..." ("angry", "base", "base", "mid", tears="soft") gen "Those inconsiderate bastards!" ("base", xpos="far_left", ypos="head") - her "Are you making fun of me [genie_name]?" ("mad", "base", "worried", "mid", tears="soft") + her "Are you making fun of me [name_genie_hermione]?" ("mad", "base", "worried", "mid", tears="soft") gen "Can you blame me?" ("base", xpos="far_left", ypos="head") her "I will become the laughingstock of Hogwarts! *Sob*!" ("clench", "base", "worried", "mid", cheeks="blush", tears="soft") her "My reputation is as good as ruined! *Sob*!" ("angry", "narrow", "base", "dead", cheeks="blush", tears="crying") gen "Seriously? After all the favours you sold me you care about a thing like this?" ("base", xpos="far_left", ypos="head") - her "Wearing the same dress to the \"Autumn Ball\" for two years in a row would be more humiliating than any favour I sold you so far, [genie_name]." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") + her "Wearing the same dress to the \"Autumn Ball\" for two years in a row would be more humiliating than any favour I sold you so far, [name_genie_hermione]." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") with hpunch gen "You've gotta be kidding me..." ("angry", xpos="far_left", ypos="head") her "Oh, you wouldn't understand..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") her "You're just like my father!" ("scream", "base", "angry", "mid", cheeks="blush", tears="messy") gen "I beg your pardon?" ("base", xpos="far_left", ypos="head") her "I mean... *Ehm*..." ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") - her "Forgive me [genie_name]..." + her "Forgive me [name_genie_hermione]..." her "I don't know why I am telling you all of this..." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") gen "................" ("base", xpos="far_left", ypos="head") her "......................*sob*!" ("angry", "narrow", "base", "dead", cheeks="blush", tears="crying") her "I think I'd better go now...*sob*" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") - gen "Well, don't let me keep you a moment longer, [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "Well, don't let me keep you a moment longer, [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") call her_walk("door", "base") pause.3 @@ -616,12 +616,12 @@ label ball_quest_E4: call play_music("chipper_doodle") call bld - gen "[hermione_name]?" ("base", xpos="far_left", ypos="head") - her "Sorry to disturb you [genie_name]..." ("open", "base", "worried", "mid", xpos="right", ypos="base") + gen "[name_hermione_genie]?" ("base", xpos="far_left", ypos="head") + her "Sorry to disturb you [name_genie_hermione]..." ("open", "base", "worried", "mid", xpos="right", ypos="base") her "I came to apologise for my..." ("open", "base", "worried", "R") her "... My hysterical behaviour yesterday." gen "Sure thing, don't worry about it." ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("open", "base", "base", "mid") + her "Thank you, [name_genie_hermione]." ("open", "base", "base", "mid") her "Still, I cannot help but feel awful for causing a scene..." ("open", "closed", "angry", "mid") gen "So the issue has been resolved then?" ("base", xpos="far_left", ypos="head") her "Not really..." ("open", "base", "worried", "mid") @@ -636,7 +636,7 @@ label ball_quest_E4: her "I worked so hard... and..." ("open", "base", "worried", "mid", tears="soft") her "And now I will not even be able to...{w=0.3} to...{w=0.4} *Sob*!" ("shock", "base", "base", "R", cheeks="blush", tears="soft") her "To... *SOB*!" ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") - her "Excuse me [genie_name]!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "Excuse me [name_genie_hermione]!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") hide hermione_main hide screen bld1 with d3 @@ -678,35 +678,35 @@ label ball_quest_E5: gen "I thought that you--" ("base", xpos="far_left", ypos="head") call play_music("chipper_doodle") # HERMIONE'S THEME. - her "[genie_name]!" ("angry", "base", "base", "mid", tears="soft") + her "[name_genie_hermione]!" ("angry", "base", "base", "mid", tears="soft") gen "What? What happened? Don't tell me it's the wrong colour or something!" ("angry", xpos="far_left", ypos="head") - her "It's perfect, [genie_name]...*sob*!" ("angry", "base", "base", "mid", tears="soft") + her "It's perfect, [name_genie_hermione]...*sob*!" ("angry", "base", "base", "mid", tears="soft") her "It's perfect... *sob*!... I love it." gen "You sure don't look like it..." ("base", xpos="far_left", ypos="head") - her "I am sorry, [genie_name]... *Sob*!" + her "I am sorry, [name_genie_hermione]... *Sob*!" her "I... I am just..." ("clench", "base", "worried", "mid", cheeks="blush", tears="soft") her "I am so happy..." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") - her "Thank you, [genie_name]. Thank you so much." + her "Thank you, [name_genie_hermione]. Thank you so much." her "I cannot believe that you would do something like that for me..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") gen "Well, I did. Now stop crying." ("base", xpos="far_left", ypos="head") - her "I can't, [genie_name]. I am so happy and so grateful..." ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="messy") - her "Do you want me to suck your cock, [genie_name]?" ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") + her "I can't, [name_genie_hermione]. I am so happy and so grateful..." ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="messy") + her "Do you want me to suck your cock, [name_genie_hermione]?" ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") gen "What?" ("base", xpos="far_left", ypos="head") her "Because I will do it!" ("open", "wide", "worried", "stare", cheeks="blush", tears="messy") her "And I will swallow and everything!" her "And you wouldn't have to pay me a single house point!" ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") gen "*Uhm*... Maybe some other time..." ("base", xpos="far_left", ypos="head") gen "This is not the type of crying I find arousing..." ("base", xpos="far_left", ypos="head") - her "I'm sorry, [genie_name]. I'm such a mess..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "I'm sorry, [name_genie_hermione]. I'm such a mess..." ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") her "But this is so unexpected..." ("shock", "narrow", "base", "down", cheeks="blush", tears="crying") - her "You made me so happy, [genie_name]... *sob*!" - her "Thank you [genie_name]! *SOB*! Thank you! *SOB*!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "You made me so happy, [name_genie_hermione]... *sob*!" + her "Thank you [name_genie_hermione]! *SOB*! Thank you! *SOB*!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") gen "Well... *Err*... There, there..." ("base", xpos="far_left", ypos="head") gen "Better stop crying before you stain that new dress of yours with those tears..." ("base", xpos="far_left", ypos="head") her "My new dress! *SOB*!" ("scream", "happyCl", "worried", "mid", cheeks="blush", tears="messy") gen "Alright, you know what? Just get out of my office." ("base", xpos="far_left", ypos="head") gen "Just take your dress and leave." ("base", xpos="far_left", ypos="head") - her "Of course... I am sorry, [genie_name]!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") + her "Of course... I am sorry, [name_genie_hermione]!" ("angry", "squint", "base", "mid", cheeks="blush", tears="messy") hide hermione_main hide screen bld1 with d3 diff --git a/game/scripts/interface/inventory.rpy b/game/scripts/interface/inventory.rpy index fde057ee..8b7b8158 100644 --- a/game/scripts/interface/inventory.rpy +++ b/game/scripts/interface/inventory.rpy @@ -163,7 +163,7 @@ label inventory_menu(xx=150, yy=90): show screen blktone with d3 - gen "[hermione_name], what would you say--" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], what would you say--" ("base", xpos="far_left", ypos="head") her "I'm sorry professor but I don't need your help at the moment." her "My house is already in the lead points wise." gen "Figures..." ("base", xpos="far_left", ypos="head") @@ -202,7 +202,7 @@ label inventory_menu(xx=150, yy=90): show screen blktone with d3 - gen "[hermione_name], I have something for you--" ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie], I have something for you--" ("base", xpos="far_left", ypos="head") her "I'm sorry professor but I don't need your help at the moment." her "My house is already in the lead points wise." gen "Figures..." ("base", xpos="far_left", ypos="head") diff --git a/game/scripts/minigames/cardgame/_hermione_card_game_.rpy b/game/scripts/minigames/cardgame/_hermione_card_game_.rpy index fd40b846..35126d0d 100644 --- a/game/scripts/minigames/cardgame/_hermione_card_game_.rpy +++ b/game/scripts/minigames/cardgame/_hermione_card_game_.rpy @@ -4,8 +4,8 @@ label hermione_cardgame_menu: if her_know_cards == False: - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("base","base") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("base","base") gen "Are you familiar with Wizard Cards?" ("base", xpos="far_left", ypos="head") her "I've heard of it... it used to be a popular card game a decade or so ago." ("annoyed","squint") gen "So, would you like to play it?" ("grin", xpos="far_left", ypos="head") @@ -14,7 +14,7 @@ label hermione_cardgame_menu: her "Unless Fred and Geo..." ("clench","wide") gen "Unless... who now?" ("base", xpos="far_left", ypos="head") her "(Hermione... learn to keep your mouth shut.)" ("mad", "wide", "base", "R") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "I'm sorry sir, I should have told you..." ("open", "base", "worried", "mid") her "Fred and George have a secret shop set up in the school." ("normal", "base", "worried", "R") gen "I see..." ("base", xpos="far_left", ypos="head") @@ -43,8 +43,8 @@ label hermione_cardgame_menu: jump hermione_requests elif twins_cards_stocked_talk and not her_cards_stocked_talk: - gen "Hello again [hermione_name]." ("base", xpos="far_left", ypos="head") - her "Hello [genie_name]." ("base","base") + gen "Hello again [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "Hello [name_genie_hermione]." ("base","base") gen "I wanted to thank you for mentioning the Weasley shop." ("base", xpos="far_left", ypos="head") her "You're not shutting them down are you?" ("soft", "narrow", "worried", "down") gen "Of course not, where else am I supposed to get my supplies from?" ("base", xpos="far_left", ypos="head") @@ -207,7 +207,7 @@ label hermione_random_duel: gen "It's not gambling, just a friendly house point wager..." ("base", xpos="far_left", ypos="head") her "Sounds like gambling to me..." ("normal", "squint", "base", "mid") gen "So, how about it?" ("base", xpos="far_left", ypos="head") - her "I'll pass, [genie_name]..." ("open", "base", "worried", "R") + her "I'll pass, [name_genie_hermione]..." ("open", "base", "worried", "R") gen "(Seems like she's a bit to pure minded to accept any kind of wager right now...)" ("base", xpos="far_left", ypos="head") jump hermione_requests @@ -257,7 +257,7 @@ label hermione_random_duel: else: $ tokens += 1 - gen "Seems like I've won this one [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Seems like I've won this one [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "I noticed..." ("normal", "base", "worried", "R") gen "You do know what this means, don't you?" ("base", xpos="far_left", ypos="head") her "..." ("normal", "base", "worried", "mid") @@ -326,7 +326,7 @@ label her_duel_lost: jump hermione_random_duel "-Be a loser-": pass - her "Cards not in your favour [genie_name]? Maybe next time..." + her "Cards not in your favour [name_genie_hermione]? Maybe next time..." call her_walk(action="leave") jump end_hermione_event @@ -338,7 +338,7 @@ label her_duel_cancel: #jump return_office hide screen blkfade with dissolve - her "Cards not in your favour [genie_name]? Maybe next time..." + her "Cards not in your favour [name_genie_hermione]? Maybe next time..." call her_walk(action="leave") jump end_hermione_event diff --git a/game/scripts/minigames/mirror/events/not_so_great_escape.rpy b/game/scripts/minigames/mirror/events/not_so_great_escape.rpy index cbb78c3c..7b327b83 100644 --- a/game/scripts/minigames/mirror/events/not_so_great_escape.rpy +++ b/game/scripts/minigames/mirror/events/not_so_great_escape.rpy @@ -188,9 +188,9 @@ label not_so_great_escape: play bg_sounds "sounds/wind_long_loop.ogg" fadein 2 fadeout 2 - $ cho_name = "Officer Cho?" - $ tonks_name = "Officer Tonks?" - $ luna_name = "Officer Luna?" + $ name_cho_genie = "Officer Cho?" + $ name_tonks_genie = "Officer Tonks?" + $ name_luna_genie = "Officer Luna?" call cho_walk("right", 460, speed=1.5) diff --git a/game/scripts/minigames/mirror/events/panty_raid.rpy b/game/scripts/minigames/mirror/events/panty_raid.rpy index b218af70..ba4aa18d 100644 --- a/game/scripts/minigames/mirror/events/panty_raid.rpy +++ b/game/scripts/minigames/mirror/events/panty_raid.rpy @@ -37,9 +37,9 @@ label panty_raid: call her_chibi("stand","mid","base") call hide_blkfade - her "Hello [genie_name]." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) + her "Hello [name_genie_hermione]." ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) her "" ("base") - gen "Good day [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Good day [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "How would you feel about going out and earning thirty-five points for your house today?" ("base", xpos="far_left", ypos="head") her "I would love to...{w=0.3} as long as it doesn't involve me humiliating myself in front of my peers." ("open", "base", "base", "R", cheeks="blush") her "" ("normal", cheeks="blush") @@ -56,11 +56,11 @@ label panty_raid: her "" ("normal", "base", "base", "mid") her "I am glad you're finally asking me to properly utilise my abilities as one of Hogwarts' top students." ("open", "closed", "base", "mid") her "{size=-4}I only wish you would have asked this of me sooner...{/size}" ("open", "narrow", "base", "R_soft") - her "You can count on me, [genie_name]! I am happy to perform a task such as this one." ("smile", "base", "base", "mid") + her "You can count on me, [name_genie_hermione]! I am happy to perform a task such as this one." ("smile", "base", "base", "mid") her "" ("base", "base", "base", "mid") gen "Great! Now all the information I have for this \"artifact\" is an ancient riddle..." ("base", xpos="far_left", ypos="head") gen "Are you ready?" ("base", xpos="far_left", ypos="head") - her "Of course, [genie_name]." ("open", "base", "base", "mid_soft") + her "Of course, [name_genie_hermione]." ("open", "base", "base", "mid_soft") her "" ("base") gen "Good, here we go..." ("base", xpos="far_left", ypos="head") gen "\"I am sought by many,{w=0.2} yet the same number already possess me\"." ("base", xpos="far_left", ypos="head") @@ -70,7 +70,7 @@ label panty_raid: her "no, wait..." ("angry", "wide", "worried", "shocked") her "... the elder wand?" ("base", "base", "base", "mid") her "" ("disgust") - gen "I am not done yet [hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "I am not done yet [name_hermione_genie]..." ("base", xpos="far_left", ypos="head") her "Sorry..." ("soft", "narrow", "worried", "down") her "" ("normal", "base", "base", "mid") gen "\"The only thing man covet more than my form is the secret I hid\"." ("base", xpos="far_left", ypos="head") @@ -86,7 +86,7 @@ label panty_raid: her "..." ("upset", "base", "base", "mid") gen "..." ("base", xpos="far_left", ypos="head") gen "\"No schoolgirl fetish would be complete without me\"." ("base", xpos="far_left", ypos="head") - her "[genie_name]...?!" ("open", "squint", "angry", "mid") + her "[name_genie_hermione]...?!" ("open", "squint", "angry", "mid") gen "\"The answer is on page 74, Spell {i}seitnaP{/i} backwards\"." ("grin", xpos="far_left", ypos="head") her "PROFESSOR!" ("scream", "squint", "angry", "mid") her "" ("angry", "squint", "angry", "mid") @@ -94,14 +94,14 @@ label panty_raid: her "If you wanted to see my...{w=0.3} *ahem*{w=0.3} {i}undergarments{/i}, you could have just asked..." ("disgust", "squint", "base", "mid", cheeks="blush") her "{size=-4}You didn't have to make the whole story up to grab my attention...{/size}" ("upset", "narrow", "base", "R_soft", cheeks="blush") gen "By Merlin's beard! I think you've got it girl...{w=0.5} {size=-4}for the most part at least.{/size}" ("grin", xpos="far_left", ypos="head") - her "[genie_name], my classes start soon, can we just get it over with so I can get my points and leave?" ("open", "closed", "base", "mid", cheeks="blush") + her "[name_genie_hermione], my classes start soon, can we just get it over with so I can get my points and leave?" ("open", "closed", "base", "mid", cheeks="blush") her "" ("upset", "narrow", "base", "mid_soft") gen "Such eagerness...{w=0.3} but where's the challenge in handing me your own?" ("grin", xpos="far_left", ypos="head") her "Sorry, you wanted me to hand you a pair?" ("open", "wide", "base", "mid", cheeks="blush") gen "Of course, but not yours silly girl..." ("base", xpos="far_left", ypos="head") her "" ("angry", cheeks="blush") gen "This is meant to be a treasure hunt! Go find someone's panties out in the world and then bring them to me." ("grin", xpos="far_left", ypos="head") - her "But, [genie_name]?!" ("shock", "squint", "angry", "mid", cheeks="blush") + her "But, [name_genie_hermione]?!" ("shock", "squint", "angry", "mid", cheeks="blush") her "" ("angry", cheeks="blush") gen "You're a bright young gal, I'm sure you'll think of something... Make haste!" ("base", xpos="far_left", ypos="head") her "......." ("disgust", cheeks="blush") @@ -134,9 +134,9 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") - her "Good evening, [genie_name]." ("open", "base", "base", "R") + her "Good evening, [name_genie_hermione]." ("open", "base", "base", "R") her "" ("normal", "base", "base", "R") - gen "Hello again, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Hello again, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "" (cheeks="blush") gen "Did you finish your assignment?" ("base", xpos="far_left", ypos="head") her "about that..." ("soft", "narrow", "base", "R_soft", cheeks="blush") @@ -152,7 +152,7 @@ label panty_raid: show screen bld1 with d3 gen "You absolute minx!" ("grin", xpos="far_left", ypos="head") her "" ("normal", "base", "base", "R", cheeks="blush") - gen "You've outdone yourself [hermione_name], how did you manage this feat?" ("grin", xpos="far_left", ypos="head") + gen "You've outdone yourself [name_hermione_genie], how did you manage this feat?" ("grin", xpos="far_left", ypos="head") her "I would prefer not to talk about it..." ("disgust", "narrow", "worried", "down", cheeks="blush") gen "Well you can certainly colour me impressed." ("grin", xpos="far_left", ypos="head") her "Does that mean I've earned some extra house points?" ("open", "base", "base", "R") @@ -168,8 +168,8 @@ label panty_raid: "> You reach out and grab the closest pair of panties, then study the paper." her "" ("normal", "base", "base", "R") "8.99$\n{size=-3}Thank you for shopping with us and hope to see you back soon!{/size}\nMadam Mafkin{#LINT_IGNORE}" - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") - her "Yes, [genie_name]?" ("crooked_smile", "closed", "base", "mid") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") + her "Yes, [name_genie_hermione]?" ("crooked_smile", "closed", "base", "mid") gen "Why is there a price tag on these?" ("base", xpos="far_left", ypos="head") her "...!" ("angry", "wide", "base", "stare") her "Uh.... Well, the person I bough--{w=0.3} *ahem*{w=0.2} {size=+2}BORROWED{/size} these from must have forgotten to take the price tag off." ("open", "happy", "base", "mid") @@ -180,20 +180,20 @@ label panty_raid: her "..." ("upset") her "" ("upset", "base", "worried", "R") gen "A bloated...{w=0.2} Scatterbrained,{w=0.2} moron!" ("grin", xpos="far_left", ypos="head") - her "{size=+4}[genie_name]!{/size}" ("open", "squint", "angry", "mid") + her "{size=+4}[name_genie_hermione]!{/size}" ("open", "squint", "angry", "mid") her "" ("normal") - gen "Yes, [hermione_name]?" ("base", xpos="far_left", ypos="head") + gen "Yes, [name_hermione_genie]?" ("base", xpos="far_left", ypos="head") her "Fine..." ("annoyed", "narrow", "annoyed", "mid") her "it was me!" ("angry", "narrow", "worried", "down") her "I couldn't do it, so I bought them at the shop..." ("disgust") gen "So...{w=0.5} You're the bloated, scatterbrained moron then?" ("base", xpos="far_left", ypos="head") her "Sir, this has been embarrassing enough...{w=0.5} Can I just go back to my dormitory please?" ("disgust", "narrow", "base", "mid_soft") - gen "[hermione_name]..." ("base", xpos="far_left", ypos="head") + gen "[name_hermione_genie]..." ("base", xpos="far_left", ypos="head") menu: "-Cheaters never prosper-": - gen "I must say I am disappointed with your actions, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I am so sorry [genie_name]..." ("disgust", "narrow", "worried", "down") + gen "I must say I am disappointed with your actions, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I am so sorry [name_genie_hermione]..." ("disgust", "narrow", "worried", "down") her "" ("disgust", "narrow", "base", "mid_soft") gen "Not only did you disobey me, but you also tried to trick me - your headmaster - into thinking these belonged to some colleague of yours." ("base", xpos="far_left", ypos="head") her "it won't happen again..." ("disgust", "narrow", "worried", "down") @@ -204,8 +204,8 @@ label panty_raid: her "Yes sir." "-Yes, they do-": - gen "I must say...{w=0.3} I am impressed with your courage, [hermione_name]." ("base", xpos="far_left", ypos="head") - her "I am sorry [genie_name]. I wo--" ("disgust", "narrow", "worried", "down") + gen "I must say...{w=0.3} I am impressed with your courage, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") + her "I am sorry [name_genie_hermione]. I wo--" ("disgust", "narrow", "worried", "down") her "Wait what?" ("shock", "base", "worried", "mid") her "" ("soft", "base", "worried", "mid") gen "I never imagined you'd possess such \"out of the box\" problem solving!" ("base", xpos="far_left", ypos="head") @@ -218,7 +218,7 @@ label panty_raid: gen "Now, I won't overburden you with compliments..." ("base", xpos="far_left", ypos="head") her "" ("soft", "base", "worried", "mid") gen "Take your house points and go...{w=0.5} Thirty-five points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "{size=+4}Really?!{/size}{w=0.2} Thank you so much [genie_name]!" ("smile", "base", "base", "mid", cheeks="blush") + her "{size=+4}Really?!{/size}{w=0.2} Thank you so much [name_genie_hermione]!" ("smile", "base", "base", "mid", cheeks="blush") call her_walk("mid", "base") @@ -244,15 +244,15 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") - her "Hello [genie_name], you called?" ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) + her "Hello [name_genie_hermione], you called?" ("open", "base", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) her "" ("base") - gen "Hello to you too, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Hello to you too, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") gen "Say...{w=0.3} would you like to earn some points today girl?" ("grin", xpos="far_left", ypos="head") her "Possibly..." ("open") her "But that depends on the task required of me." ("open", "closed", "base", "mid") her "" ("soft", "base", "base", "R") gen "I would like you to try yourself at that \"treasure hunt\" again." ("base", xpos="far_left", ypos="head") - her "*sigh* I knew that sooner or later you would ask me about it, [genie_name]..." ("open", "closed", "base", "mid") + her "*sigh* I knew that sooner or later you would ask me about it, [name_genie_hermione]..." ("open", "closed", "base", "mid") her "Do I have a choice?" ("upset", "base", "worried", "mid") gen "Certainly, if you don't mind those \"Slytherin Harlots\" taking the house cup!" ("grin", xpos="far_left", ypos="head") her "I Do mind..." ("upset", "narrow", "base", "down") @@ -271,7 +271,7 @@ label panty_raid: gen "We got a deal then, splendid!" ("grin", xpos="far_left", ypos="head") her "" ("normal", "base", "base", "mid") gen "You're free to go now." ("base", xpos="far_left", ypos="head") - her "Thank you [genie_name]." ("open", "base", "base", "mid") + her "Thank you [name_genie_hermione]." ("open", "base", "base", "mid") call her_walk("door", "base") @@ -317,7 +317,7 @@ label panty_raid: gen "Well, quality leaves a bit to be desired, but it's a good step forward." ("base", xpos="far_left", ypos="head") her "" ("soft", "base", "base", "mid", cheeks="blush") gen "Forty-five points to Gryffindor!" ("base", xpos="far_left", ypos="head") - her "Thank you, [genie_name]." ("open", "base", "base", "mid", cheeks="blush") + her "Thank you, [name_genie_hermione]." ("open", "base", "base", "mid", cheeks="blush") her "Am I free to go now?" ("soft", "base", "base", "mid", cheeks="blush") gen "Yes, you are free to go." ("base", xpos="far_left", ypos="head") @@ -401,7 +401,7 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") gen "Well, well, well... if it isn't my favourite minx!" ("grin", xpos="far_left", ypos="head") - her "Good morning to you too, [genie_name]." ("open", "closed", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) + her "Good morning to you too, [name_genie_hermione]." ("open", "closed", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) her "" ("base", "base", "base", "mid") gen "What brings you here this time?" ("base", xpos="far_left", ypos="head") her "Well... I..." ("open", "base", "base", "R", cheeks="blush") @@ -438,7 +438,7 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") - gen "Hello [hermione_name], looking good." ("grin", xpos="far_left", ypos="head") + gen "Hello [name_hermione_genie], looking good." ("grin", xpos="far_left", ypos="head") her "Uh-huh... Sir, if I'm not mistaken... {w=0.3}Hogwarts does not have a \"linguistics\" class, do we?" ("open", "narrow", "worried", "mid_soft") her "" ("upset") gen "(Why is she asking me?{w=0.3} Oh Right, \"headmaster Rumbleboar\")" ("base", xpos="far_left", ypos="head") @@ -486,7 +486,7 @@ label panty_raid: gen "Connie's linguist?-{fast} oh I see..." ("grin", xpos="far_left", ypos="head") her "As embarrassing as the circumstances were, I would never turn down a request to help a student with homework! But I don't think we have a linguistics class or what Connie she was--" ("open", "narrow", "worried", "mid_soft") her "" ("soft", "base", "base", "mid") - gen "{i}Cunnilingus{/i} [hermione_name]... She was asking for Cunnilingus." ("grin", xpos="far_left", ypos="head") + gen "{i}Cunnilingus{/i} [name_hermione_genie]... She was asking for Cunnilingus." ("grin", xpos="far_left", ypos="head") her "*huh*? But she said she wanted study help." gen "It was a metaphor... She was assuming you were a bit more worldly than you really are." ("base", xpos="far_left", ypos="head") her "I am plenty worldly!" ("angry", "base", "angry", "mid") @@ -498,7 +498,7 @@ label panty_raid: gen "*Sigh*, she was asking for Dinner beneath the bridge." ("base", xpos="far_left", ypos="head") her "Dinner? But if she wanted to eat with me why didn't she--" ("open", "base", "base", "mid") her "" ("upset") - gen "Metaphor, [hermione_name]... She wanted you to sip from her furry cup." ("base", xpos="far_left", ypos="head") + gen "Metaphor, [name_hermione_genie]... She wanted you to sip from her furry cup." ("base", xpos="far_left", ypos="head") her "*huh*?" ("open", "narrow", "worried", "mid_soft") her "" ("upset") gen "Muff Diving..." ("base", xpos="far_left", ypos="head") @@ -546,7 +546,7 @@ label panty_raid: her "I-I-I-I-I..." ("angry", "wide", "base", "mid", cheeks="blush") gen "Just spit it out!" ("base", xpos="far_left", ypos="head") her "I was so nervous with her that I just said yes! She'll be expecting me soon!" ("mad", "narrow", "base", "down", cheeks="blush") - gen "You better get to it then, [hermione_name]!" ("grin", xpos="far_left", ypos="head") + gen "You better get to it then, [name_hermione_genie]!" ("grin", xpos="far_left", ypos="head") her "But I-- But I-- I couldn't--" ("shock", "narrow", "worried", "down", cheeks="blush") her "" ("angry", cheeks="blush") her "I'll just have to inform her that it was a misunderstanding, yes that will have to do." ("shock", "narrow", "base", "mid_soft", cheeks="blush") @@ -639,12 +639,12 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") - her "Hello, [genie_name].{heart}" ("smile", "wink", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) + her "Hello, [name_genie_hermione].{heart}" ("smile", "wink", "base", "mid", xpos="right", ypos="base", trans=d3, flip=False) her "" ("smile", "base", "base", "mid") - gen "[hermione_name]! My favourite slut." ("grin", xpos="far_left", ypos="head") + gen "[name_hermione_genie]! My favourite slut." ("grin", xpos="far_left", ypos="head") gen "I have another riddle for you." ("base", xpos="far_left", ypos="head") her "Oh, this ought to be fun." ("grin") - her "Could you make it a {i}hard one{/i} [genie_name]?" ("open_wide_tongue") + her "Could you make it a {i}hard one{/i} [name_genie_hermione]?" ("open_wide_tongue") her "" ("smile") gen "You'll enjoy this one for sure...{w=0.5} Ready?" ("grin", xpos="far_left", ypos="head") her "Ready!" ("smile", "happyCl", "base", "mid") @@ -664,7 +664,7 @@ label panty_raid: her "" ("base", "base", "base", "mid") gen "Spot on." ("grin", xpos="far_left", ypos="head") her "Mine or someone else's?" ("smile", "happy", "base", "mid_soft") - gen "Someone else's if you don't mind, [hermione_name]." ("base", xpos="far_left", ypos="head") + gen "Someone else's if you don't mind, [name_hermione_genie]." ("base", xpos="far_left", ypos="head") her "On it! I'll be back soon..." ("base", "base", "base", "mid") call her_walk(action="leave") @@ -682,7 +682,7 @@ label panty_raid: call her_walk(action="enter", xpos="mid", ypos="base") - her "Hello [genie_name], I hope I didn't keep you waiting for too long..." ("smile", "happy", "base", "mid_soft") + her "Hello [name_genie_hermione], I hope I didn't keep you waiting for too long..." ("smile", "happy", "base", "mid_soft") call her_walk("desk", "base") @@ -694,10 +694,10 @@ label panty_raid: with d3 "She drops a pair of laced white panties on your desk." show screen bld1 with d3 - gen "No trouble at all [hermione_name]...{w=0.5} And you have excellent taste as always." ("base", xpos="far_left", ypos="head") + gen "No trouble at all [name_hermione_genie]...{w=0.5} And you have excellent taste as always." ("base", xpos="far_left", ypos="head") $ renpy.play('sounds/sniff.ogg') gen "These smell fantastic!" ("grin", xpos="far_left", ypos="head") - her "You're too kind [genie_name]." ("grin", "happy", "base", "mid_soft", cheeks="blush") + her "You're too kind [name_genie_hermione]." ("grin", "happy", "base", "mid_soft", cheeks="blush") hide screen bld1 hide hermione_main with d3 @@ -706,7 +706,7 @@ label panty_raid: $ renpy.play('sounds/zipper.ogg') ">You take your cock out and start stroking it..." call gen_chibi("jerk_off_behind_desk") - her "Mmmm, [genie_name] need any help with that?" ("base", "squint", "base", "mid", cheeks="blush") + her "Mmmm, [name_genie_hermione] need any help with that?" ("base", "squint", "base", "mid", cheeks="blush") gen "These already feel a little damp in the middle. Why don't you tell me why that is?" ("base", xpos="far_left", ypos="head") her "Oh you know, girls will be girls and all." ("grin", "narrow", "base", "mid_soft", cheeks="blush") gen "You know, charming the panties off someone is just a figure of speech." ("grin", xpos="far_left", ypos="head") @@ -724,17 +724,17 @@ label panty_raid: her "" ("open_wide_tongue", "narrow", "base", "mid_soft", cheeks="blush") pause 1.5 call gen_chibi("cum_behind_desk_done") - her "Oh, poor [genie_name], I had no idea you were so pent up. You can start calling me out more than twice a day if that isn't enough." ("soft", "narrow", "worried", "mid_soft", cheeks="blush") + her "Oh, poor [name_genie_hermione], I had no idea you were so pent up. You can start calling me out more than twice a day if that isn't enough." ("soft", "narrow", "worried", "mid_soft", cheeks="blush") gen "During the day? But what about your classes?" ("base", xpos="far_left", ypos="head") her "*Hmm*? Oh well, missing one or two wouldn't hurt... Especially if the headmaster has an important \"assignment\" for me." ("base", "narrow", "base", "mid_soft", cheeks="blush") gen "I'll consider it... Now let's circle back to you, Katie and your binge of her minge." ("base", xpos="far_left", ypos="head") her "Professor... How dare you... I would never even think to shamelessly do something so heinous with a classmate and give you all the juicy details..." ("annoyed", "base", "base", "R") her "For less than forty house points." ("grin", "wink", "base", "mid", cheeks="blush") her "" ("base", "narrow", "base", "mid_soft", cheeks="blush") - gen "Maybe next time [hermione_name]. I'm a little... spent for tonight." ("base", xpos="far_left", ypos="head") + gen "Maybe next time [name_hermione_genie]. I'm a little... spent for tonight." ("base", xpos="far_left", ypos="head") her "We both know you could go for longer if you wanted to..." ("soft", "narrow", "base", "mid_soft", cheeks="blush") her "but you're right, we'll leave it for later." ("base", "happy", "base", "mid_soft", cheeks="blush") - her "See you tomorrow [genie_name]." ("smile", "wink", "base", "mid", cheeks="blush") + her "See you tomorrow [name_genie_hermione]." ("smile", "wink", "base", "mid", cheeks="blush") call her_walk(action="leave") diff --git a/game/scripts/minigames/mirror/events/suck_and_run.rpy b/game/scripts/minigames/mirror/events/suck_and_run.rpy index 18b29972..7fa011ae 100644 --- a/game/scripts/minigames/mirror/events/suck_and_run.rpy +++ b/game/scripts/minigames/mirror/events/suck_and_run.rpy @@ -166,8 +166,8 @@ label suck_and_run: gen "Just make sure they're not staying up all night, alright?" ("base", xpos="far_left", ypos="head") ton "*Aww*, You're no fun at all." ("annoyed", "narrow", "base", "mid") #pout gen "*glares*" ("base", xpos="far_left", ypos="head") - ton "*Sigh* Fiiiiiine... Goodnight [ton_genie_name]." ("annoyed", "base", "base", "mid") - gen "Goodnight [tonks_name]." ("base", xpos="far_left", ypos="head") + ton "*Sigh* Fiiiiiine... Goodnight [name_genie_tonks]." ("annoyed", "base", "base", "mid") + gen "Goodnight [name_tonks_genie]." ("base", xpos="far_left", ypos="head") show screen blkfade with d3 stop music fadeout 1.0 diff --git a/game/scripts/minigames/mirror/events/whose_points.rpy b/game/scripts/minigames/mirror/events/whose_points.rpy index 000ffb95..50cbf1a6 100644 --- a/game/scripts/minigames/mirror/events/whose_points.rpy +++ b/game/scripts/minigames/mirror/events/whose_points.rpy @@ -173,7 +173,7 @@ label whose_points: gen "Go ahead..." ("base", xpos="far_left", ypos="head") - ast "\"Things that you would not share with your classmates, but would share with... \"what do you call him again? ah yes, \"[lun_genie_name]\"." ("open", "base", "base", "down") + ast "\"Things that you would not share with your classmates, but would share with... \"what do you call him again? ah yes, \"[name_genie_luna]\"." ("open", "base", "base", "down") hide astoria_main with d3 diff --git a/game/scripts/utility/text_tags.rpy b/game/scripts/utility/text_tags.rpy index 2909b46b..e197b142 100644 --- a/game/scripts/utility/text_tags.rpy +++ b/game/scripts/utility/text_tags.rpy @@ -10,7 +10,7 @@ init python: return [(renpy.TEXT_TAG, "font=DejaVuSans.ttf")] + contents + [(renpy.TEXT_TAG, "/font")] def text_tag_name(tag, argument): - """Use the name provided by a variable, or a contextual name. Usage {name=genie_name|Dude}""" + """Use the name provided by a variable, or a contextual name. Usage {name=name_genie_hermione|Dude}""" name_var, context_name = argument.split("|", 1) name = getattr(renpy.store, name_var, None) #TODO Contextual name logic