mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
Library - Amanda Full Intro
Library - Amanda Full Intro
This commit is contained in:
parent
0363370671
commit
b392759c4a
7 changed files with 38 additions and 11 deletions
Actors
C012_AfterClass/Library
BIN
Actors/Amanda/Clothed_NoBondage_NoGag_BackStudy.png
Normal file
BIN
Actors/Amanda/Clothed_NoBondage_NoGag_BackStudy.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 132 KiB |
BIN
Actors/Player/Clothed_NoBondage_NoGag_BackStudy.png
Normal file
BIN
Actors/Player/Clothed_NoBondage_NoGag_BackStudy.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 110 KiB |
BIN
C012_AfterClass/Library/Desk.jpg
Normal file
BIN
C012_AfterClass/Library/Desk.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 123 KiB |
|
@ -18,6 +18,7 @@ Stage,LoveReq,SubReq,VarReq,IntroText,Image
|
|||
205,0,0,,,Chair.jpg
|
||||
210,0,0,,,Chair.jpg
|
||||
220,0,0,,,Chair.jpg
|
||||
230,0,0,,,Chair.jpg
|
||||
300,0,0,,,Desk.jpg
|
||||
310,0,0,,,Desk.jpg
|
||||
311,0,0,,,Desk.jpg
|
||||
|
|
|
|
@ -18,9 +18,27 @@ var C012_AfterClass_Library_DinnerAvail = true;
|
|||
function C012_AfterClass_Library_WhoIsInLibrary() {
|
||||
|
||||
// Sets who's at the library at what time
|
||||
C012_AfterClass_Library_PlayerDormAvail = true;
|
||||
C012_AfterClass_Library_AmandaDormAvail = true;
|
||||
C012_AfterClass_Library_DinnerAvail = true;
|
||||
C012_AfterClass_Library_AmandaAvail = ((CurrentTime >= 18 * 60 * 60 * 1000) && (CurrentTime <= 21 * 60 * 60 * 1000) && !GameLogQuery(CurrentChapter, "Amanda", "EnterDormFromLibrary"));
|
||||
C012_AfterClass_Library_EmptyLibrary = (!C012_AfterClass_Library_AmandaAvail);
|
||||
C012_AfterClass_Library_PoemAvail = (!GameLogQuery(CurrentChapter, "Amanda", "StartPoem") && (C012_AfterClass_Library_StudyTimeWithAmanda + C012_AfterClass_Library_StudyTimeHelpAmanda + C012_AfterClass_Library_StudyTimeHelpedByAmanda >= 3));
|
||||
|
||||
// Closing time when the player is alone
|
||||
if ((CurrentTime >= 21 * 60 * 60 * 1000) && (CurrentActor == "")) {
|
||||
OverridenIntroText = GetText("LibraryClosingAlone");
|
||||
C012_AfterClass_Library_CurrentStage = 10;
|
||||
}
|
||||
|
||||
// Closing time when the player is with Amanda
|
||||
if ((CurrentTime >= 21 * 60 * 60 * 1000) && (CurrentActor == "Amanda")) {
|
||||
if (ActorGetValue(ActorSubmission) >= 10) ActorSetPose("Shy");
|
||||
else ActorSetPose("");
|
||||
OverridenIntroText = GetText("LibraryClosingAmanda");
|
||||
C012_AfterClass_Library_CurrentStage = 230;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Chapter 12 After Class - Library Load
|
||||
|
@ -50,8 +68,8 @@ function C012_AfterClass_Library_Run() {
|
|||
BuildInteraction(C012_AfterClass_Library_CurrentStage);
|
||||
if (CurrentActor != "") {
|
||||
if ((C012_AfterClass_Library_CurrentStage >= 300) && (C012_AfterClass_Library_CurrentStage <= 399)) {
|
||||
DrawActor("Player", 600, 120, 0.8);
|
||||
DrawActor(CurrentActor, 900, 120, 0.8);
|
||||
DrawActor("Player", 390, 100, 1.2);
|
||||
DrawActor(CurrentActor, 680, 100, 1.2);
|
||||
} else DrawActor(CurrentActor, 600, 0, 1);
|
||||
}
|
||||
}
|
||||
|
@ -184,8 +202,8 @@ function C012_AfterClass_Library_SetPose(NewPose) {
|
|||
|
||||
// Chapter 12 After Class - When the player leaves with Amanda
|
||||
function C012_AfterClass_Library_LeaveWithAmanda() {
|
||||
CurrentTime = CurrentTime + 290000;
|
||||
GameLogAdd("EnterDormFromLibrary");
|
||||
C012_AfterClass_Library_Leave();
|
||||
}
|
||||
|
||||
// Chapter 12 After Class - When the player searches, 1 random item can be found
|
||||
|
@ -250,7 +268,7 @@ function C012_AfterClass_Library_StudyWithAmanda() {
|
|||
C012_AfterClass_Library_StudyTimeWithAmanda++;
|
||||
CurrentTime = CurrentTime + 290000;
|
||||
if (C012_AfterClass_Library_StudyTimeWithAmanda % 6 == 5) ActorChangeAttitude(1, 0);
|
||||
C012_AfterClass_Library_PoemAvail = (!GameLogQuery(CurrentChapter, "Amanda", "StartPoem") && (C012_AfterClass_Library_StudyTimeWithAmanda >= 2))
|
||||
C012_AfterClass_Library_WhoIsInLibrary();
|
||||
}
|
||||
|
||||
// Chapter 12 After Class - When the player helps Amanda (raises Amanda submission slowly)
|
||||
|
@ -258,6 +276,7 @@ function C012_AfterClass_Library_HelpAmanda() {
|
|||
C012_AfterClass_Library_StudyTimeHelpAmanda++;
|
||||
CurrentTime = CurrentTime + 290000;
|
||||
if (C012_AfterClass_Library_StudyTimeHelpAmanda % 6 == 5) ActorChangeAttitude(0, 1);
|
||||
C012_AfterClass_Library_WhoIsInLibrary();
|
||||
}
|
||||
|
||||
// Chapter 12 After Class - When Amanda helps the player (lowers Amanda submission slowly)
|
||||
|
@ -265,6 +284,7 @@ function C012_AfterClass_Library_HelpPlayer() {
|
|||
C012_AfterClass_Library_StudyTimeHelpedByAmanda++;
|
||||
CurrentTime = CurrentTime + 290000;
|
||||
if (C012_AfterClass_Library_StudyTimeHelpedByAmanda % 6 == 5) ActorChangeAttitude(0, -1);
|
||||
C012_AfterClass_Library_WhoIsInLibrary();
|
||||
}
|
||||
|
||||
// Chapter 12 After Class - When the player starts the poem, it won't be available again
|
||||
|
|
|
@ -67,27 +67,31 @@ Stage,LoveReq,SubReq,VarReq,Interaction,Result,NextStage,LoveMod,SubMod,Function
|
|||
205,0,0,,You're already|so far ahead?,I guess I could put down on the books.|What would you like to do instead?,210,0,0,
|
||||
205,0,0,,Future classes?|Get a life girl.,I do have a life! I'll prove it.|What would you like to do?,210,0,0,
|
||||
210,0,0,,Never mind Amanda.|Let's study together.,(You and Amanda start|to study together.),300,0,0,StartStudy()
|
||||
210,0,0,PlayerDormAvail,Come to my dorm.|We'll have fun.,"No, we don't know each other well enough.",210,0,0,TestPlayerDorm()
|
||||
210,0,0,PlayerDormAvail,Come to my dorm.|We'll have fun.,"No, it wouldn't be proper.",210,0,0,TestPlayerDorm()
|
||||
210,0,0,AmandaDormAvail,We can go|to your place.,"My place... But what if Sar...|No, let's not go to my place.",210,0,0,TestAmandaDorm()
|
||||
210,0,0,DinnerAvail,Let's go get dinner.,"Thanks, but I've already eaten.|You can't study on an empty stomach.",210,0,0,TestDinner()
|
||||
210,0,0,,Forget it.,Very well.,200,0,0,
|
||||
220,0,0,,Time to go then!|(Bring her to your dorm.),,220,0,0,LeaveWithAmanda()
|
||||
230,0,0,PlayerDormAvail,Come to my dorm.|We'll have fun.,"No, it wouldn't be proper.",230,0,0,TestPlayerDorm()
|
||||
230,0,0,AmandaDormAvail,We can go|to your place.,"My place... But what if Sar...|No, let's not go to my place.",230,0,0,TestAmandaDorm()
|
||||
230,0,0,DinnerAvail,Let's go get dinner.,"Thanks, but I've already eaten.|You can't study on an empty stomach.",230,0,0,TestDinner()
|
||||
230,0,0,,See you soon.|(Back to your dorm.),,230,0,0,Leave()
|
||||
300,0,0,,(Study with Amanda.),(You study with her and you both help|each other. She seems to appreciate.),300,0,0,StudyWithAmanda()
|
||||
300,0,0,,Do you need help?,"Yes, I would appreciate some help.|(You help her to study and give her tips.)",300,0,0,HelpAmanda()
|
||||
300,0,0,,Can you help me?,"Of course, I will gladly help you.|(She helps you to study and learn.)",300,0,0,HelpPlayer()
|
||||
300,0,0,,Should we do|something else?,What would you like to do?,210,0,0,StopStudy()
|
||||
300,0,0,PoemAvail,I found a poem. Would|you like to hear it?,"A poem? (She nods.)|Yes, I would love that.",310,0,0,StartPoem()
|
||||
300,0,0,,I need to go.|(Leave the library.),,300,0,0,Leave()
|
||||
310,0,0,,"She walks in beauty, like the night","(She repeats every words silently.)|She walks in beauty, like the night",311,0,0,
|
||||
310,0,0,,"She walks in beauty,|like the night","(She repeats every words silently.)|She walks in beauty, like the night",311,0,0,
|
||||
310,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
311,0,0,,Of cloudless climes and starry skies;,(She repeats every words silently.)|Of cloudless climes and starry skies;,312,0,0,
|
||||
311,0,0,,Of cloudless climes|and starry skies;,(She repeats every words silently.)|Of cloudless climes and starry skies;,312,0,0,
|
||||
311,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
312,0,0,,And all that’s best of dark and bright,(She repeats every words silently.)|And all that’s best of dark and bright,313,0,0,
|
||||
312,0,0,,And all that's best of|dark and bright,(She repeats every words silently.)|And all that's best of dark and bright,313,0,0,
|
||||
312,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
313,0,0,,Meet in her aspect and her eyes;,(She repeats every words silently.)|Meet in her aspect and her eyes;,314,0,0,
|
||||
313,0,0,,Meet in her aspect|and her eyes;,(She repeats every words silently.)|Meet in her aspect and her eyes;,314,0,0,
|
||||
313,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
314,0,0,,Thus mellowed to that tender light,(She repeats every words silently.)|Thus mellowed to that tender light,315,0,0,
|
||||
314,0,0,,Thus mellowed to|that tender light,(She repeats every words silently.)|Thus mellowed to that tender light,315,0,0,
|
||||
314,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
315,0,0,,Which heaven to gaudy day denies.,(She repeats every words silently.)|Which heaven to gaudy day denies.,316,0,0,
|
||||
315,0,0,,Which heaven to|gaudy day denies.,(She repeats every words silently.)|Which heaven to gaudy day denies.,316,0,0,
|
||||
315,0,0,,Forget it.|It's stupid.,"Oh! (She seems very disappointed.)|You're right, nobody likes poetry anymore.",300,-1,0,
|
||||
316,0,0,,Did you like it?,"I loved it! (She checks around.)|Oops, it was loud, let's study.",300,2,0,FinishPoem()
|
||||
|
|
|
|
@ -3,3 +3,5 @@ FindItem,You search in the library and|find an interesting item.
|
|||
GoDormLove,"Yes, it's a good idea.|I'm sure we'll have fun."
|
||||
GoDormDomme,"Of course Miss, I will follow you."
|
||||
GoDormPoem,After such a wonderful poem.|I cannot refuse COMMON_PLAYERNAME.
|
||||
LibraryClosingAlone,The library is closing.|You need to leave.
|
||||
LibraryClosingAmanda,The library is closing.|We have to leave now.
|
||||
|
|
|
Loading…
Add table
Reference in a new issue