mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
Sleep Bound and Gagged Punishment
Sleep Bound and Gagged Punishment
This commit is contained in:
parent
29d6e4b2d5
commit
d0460b278b
12 changed files with 44 additions and 20 deletions
|
@ -30,6 +30,8 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
|
|||
200,0,0,,I... I... I admit I kind of enjoy it.|(She blushes red and looks down.),Dorm.jpg
|
||||
200,0,0,Common_ActorIsLover,You know me too well my love.|(She blushes red and looks down.),Dorm.jpg
|
||||
210,0,0,,,Dorm.jpg
|
||||
220,0,0,,,Dorm.jpg
|
||||
230,0,0,,,Dorm.jpg
|
||||
300,0,0,,"Our college has strict rules, you will need|someone to help you learn and enforce them.",Dorm.jpg
|
||||
450,0,0,,(Amanda tickles you for fun and laughs.)|Alright my subbie. It's time to have fun.,Dorm.jpg
|
||||
450,0,0,Common_ActorIsLover,(Amanda tickles you for fun and laughs.)|Alright my subbie. It's time to have fun.,Dorm.jpg
|
||||
|
|
|
|
@ -54,10 +54,17 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
|
|||
193,0,0,,You're not|in my league.,(She grumbles.) Fine. I get it.|(She runs away from the room.),194,-1,1,AmandaLeave()
|
||||
193,0,0,,It was a mistake|from the start,"Maybe you're right, fuck that!|(She runs away from the room.)",194,0,0,AmandaLeave()
|
||||
193,0,0,,You'll find someone|perfect for you.,I thought I already did. Fuck that.|(She runs away from the room.),194,1,0,AmandaLeave()
|
||||
200,0,0,,You like losing control.|It turns you on girl.,,210,0,1,
|
||||
200,0,0,,You're all wet|when tied up.,,210,0,0,
|
||||
200,0,0,,Bondage is a strong|sexual fantasy of yours?,,210,0,0,
|
||||
210,0,0,,TO DO,TO DO = DOMME,210,0,0,
|
||||
200,0,0,,You like losing control.|It turns you on girl.,"I... Errr... Yes Miss. I admit it.|I cannot explain why, but I love bondage.",210,0,1,
|
||||
200,0,0,,You're all wet|when tied up.,"I would not say it like that, but yes.|I cannot explain why, but I love bondage.",210,-1,0,
|
||||
200,0,0,,Bondage is a strong|sexual fantasy of yours?,"(She blushes and looks down.) I admit it.|I cannot explain why, but I love bondage.",210,1,0,
|
||||
200,0,0,,Being restrained is a|fantasy that we share.,"Really? You also like to be restrained?|I cannot explain why, but I love bondage.",210,0,-1,
|
||||
210,0,0,,I can explain why.|You're a submissive.,A submissive? Me? Really?|Like these girls that have owners?,220,0,0,
|
||||
210,0,0,,It's pretty simple.|You have slave blood.,I have Slave blood? Me? Really?|Like these girls that have owners?,220,0,0,
|
||||
210,0,0,,It's a very common|fantasy among subs.,Among subs? I am a submissive?|Like these girls that have owners?,220,0,0,
|
||||
220,0,0,,"Yes, you need someone|to fulfill your fantasies.",A special someone to restrain me...|Would you be that person Miss?,230,1,-1,
|
||||
220,0,0,,"Yes, an owner would help|you with these urges.",An owner to help me with urges...|Would you be that person Miss?,230,0,0,
|
||||
220,0,0,,"Yes, only a Mistress|can train you slut.",(She gulps.) A Mistress to train me...|Would you be that person Miss?,230,-1,1,
|
||||
230,0,0,,TO DO,TO DO - DOMME,230,0,0,
|
||||
300,0,0,,TO DO,TO DO - SUBMIT,310,0,0,
|
||||
450,0,0,,Fun Mistress?,,0,0,0,RandomAmandaDommeEvent()
|
||||
450,0,0,,What's going on?,,0,0,0,RandomAmandaDommeEvent()
|
||||
|
|
|
|
@ -14,17 +14,32 @@ function C012_AfterClass_Outro_Load() {
|
|||
// Chapter 12 - After Class Outro Run
|
||||
function C012_AfterClass_Outro_Run() {
|
||||
|
||||
// Special outro if the player got the "Sleep bound and gagged" punishment
|
||||
if (C012_AfterClass_Outro_Type == "SleepBoundAndGagged") {
|
||||
|
||||
DrawImage("SleepBoundAndGagged" + TextPhase.toString(), 0, 0);
|
||||
C012_AfterClass_Outro_Type
|
||||
// Prepares the background image
|
||||
Common_PlayerRestrained = true;
|
||||
var ImageName = "C012_AfterClass/Outro/SleepBoundAndGagged";
|
||||
if (Common_PlayerChaste) ImageName = ImageName + "Belt";
|
||||
if ((TextPhase == 0) || (TextPhase == 1)) ImageName = ImageName + "1.jpg";
|
||||
if (TextPhase == 2) ImageName = ImageName + "2.jpg";
|
||||
if (TextPhase == 3) ImageName = ImageName + "3.jpg";
|
||||
if ((TextPhase == 4) || (TextPhase == 5)) ImageName = ImageName + "4.jpg";
|
||||
DrawImage(ImageName, 0, 0);
|
||||
|
||||
// Shows the text
|
||||
DrawText(GetText("SleepBoundAndGagged1"), x, 100, "White");
|
||||
if (TextPhase >= 1) DrawText(GetText("SleepBoundAndGagged2"), x, 200, "White");
|
||||
if (TextPhase >= 2) DrawText(GetText("SleepBoundAndGagged3"), x, 300, "White");
|
||||
if (TextPhase >= 3) DrawText(GetText("SleepBoundAndGagged4"), x, 400, "White");
|
||||
if (TextPhase >= 4) DrawText(GetText("SleepBoundAndGagged5"), x, 500, "White");
|
||||
// Shows the text in the bottom
|
||||
if (TextPhase == 0) DrawText(GetText("SleepBoundAndGagged1"), 599, 549, "White");
|
||||
if (TextPhase == 0) DrawText(GetText("SleepBoundAndGagged1"), 600, 550, "Black");
|
||||
if (TextPhase == 1) DrawText(GetText("SleepBoundAndGagged2"), 599, 549, "White");
|
||||
if (TextPhase == 1) DrawText(GetText("SleepBoundAndGagged2"), 600, 550, "Black");
|
||||
if (TextPhase == 2) DrawText(GetText("SleepBoundAndGagged3"), 599, 549, "White");
|
||||
if (TextPhase == 2) DrawText(GetText("SleepBoundAndGagged3"), 600, 550, "Black");
|
||||
if (TextPhase == 3) DrawText(GetText("SleepBoundAndGagged4"), 599, 549, "White");
|
||||
if (TextPhase == 3) DrawText(GetText("SleepBoundAndGagged4"), 600, 550, "Black");
|
||||
if (TextPhase == 4) DrawText(GetText("SleepBoundAndGagged5"), 599, 549, "White");
|
||||
if (TextPhase == 4) DrawText(GetText("SleepBoundAndGagged5"), 600, 550, "Black");
|
||||
if (TextPhase == 5) DrawText(GetText("SleepBoundAndGagged6"), 599, 549, "White");
|
||||
if (TextPhase == 5) DrawText(GetText("SleepBoundAndGagged6"), 600, 550, "Black");
|
||||
|
||||
} else {
|
||||
|
||||
|
@ -45,7 +60,7 @@ function C012_AfterClass_Outro_Run() {
|
|||
if (TextPhase >= 2) DrawText(GetText("Outro3"), x, 300, "White");
|
||||
if (TextPhase >= 3) DrawText(GetText("Outro4"), x, 400, "White");
|
||||
if (TextPhase >= 4) DrawText(GetText("Outro5"), x, 500, "White");
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -55,10 +70,9 @@ function C012_AfterClass_Outro_Click() {
|
|||
|
||||
// Jump to the next animation
|
||||
TextPhase++;
|
||||
if ((TextPhase >= 5) && (C012_AfterClass_Outro_Type == "SleepBoundAndGagged")) {
|
||||
if ((TextPhase >= 6) && (C012_AfterClass_Outro_Type == "SleepBoundAndGagged")) {
|
||||
C012_AfterClass_Outro_Type = "Bondage";
|
||||
TextPhase = 1;
|
||||
TextPhase = 0;
|
||||
}
|
||||
//if (TextPhase >= 3) SaveMenu("C012_AfterClass", "Intro");
|
||||
|
||||
}
|
BIN
C012_AfterClass/Outro/SleepBoundAndGagged1.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGagged1.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 110 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGagged2.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGagged2.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 106 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGagged3.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGagged3.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 110 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGagged4.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGagged4.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 109 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt1.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt1.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 112 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt2.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt2.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 108 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt3.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt3.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 112 KiB |
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt4.jpg
Normal file
BIN
C012_AfterClass/Outro/SleepBoundAndGaggedBelt4.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 110 KiB |
|
@ -12,7 +12,8 @@ CreditTypeSupport,Support
|
|||
CreditTypePatrons,Sponsors
|
||||
CreditTypeFans,And a big thank you to the fans!
|
||||
SleepBoundAndGagged1,"It's midnight, your Mistress wants you to sleep naked."
|
||||
SleepBoundAndGagged2,You get on your bed while she produces many ropes.
|
||||
SleepBoundAndGagged3,"She hogties you carefully, making sure you can't move."
|
||||
SleepBoundAndGagged4,She gags you really tight and shows you a blindfold.
|
||||
SleepBoundAndGagged5,"She whispers: ""good night"" and put it over your eyes."
|
||||
SleepBoundAndGagged2,You get on your bed while she gets a leather armbinder.
|
||||
SleepBoundAndGagged3,"She straps it carefully, making sure you won't escape."
|
||||
SleepBoundAndGagged4,She straps a panel gag on you with a plastic penis inside.
|
||||
SleepBoundAndGagged5,She gets a thick blindfold and put it so you can barely see.
|
||||
SleepBoundAndGagged6,"She whispers: ""good night"" and slide it to leave you blind."
|
||||
|
|
|
Loading…
Add table
Reference in a new issue