generated from remarkablegames/renpy-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added night 3 kitchen and day 2 lord
- Loading branch information
1 parent
bd9f596
commit f9da2c4
Showing
6 changed files
with
121 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
label night1_kitchen_ghost: | ||
|
||
"You’re surprised to hear noise coming from the kitchen" | ||
player "Is someone else in here? Hello?" | ||
kitchen_ghost "Excuse me, sir. Are you making dinner?" | ||
"You’re a little startled at first. You think the dark is playing tricks on you. You take a moment to get a closer look at what’s in front of you." | ||
"And then you run. Is this just a nightmare? Maybe, but no time to look back." | ||
"You return to the safety of your well lit room, deciding you’re not so hungry after all." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,4 +76,4 @@ label night2_kitchen_final: | |
else: | ||
kitchen_ghost "Yay" | ||
|
||
jump pond | ||
jump kitchen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
label night3_kitchen_ghost: | ||
|
||
scene bg kitchen night with dissolve | ||
|
||
show ghost smile with dissolve | ||
|
||
|
||
if kitchen_empathy < 0: | ||
kitchen_ghost "Oh. It is you again. Come back to be a brute?" | ||
jump kitchen_blunt_35 | ||
else: | ||
kitchen_ghost "Hello. I have been thinking about when last we spoke." | ||
jump kitchen_empathy_35 | ||
|
||
label kitchen_empathy_35: | ||
|
||
menu: | ||
"Maybe I was a little too direct, but I’ve never had to deal with anything like this before. I don’t know what I'm doing.": | ||
$ empathy_score -= 1 | ||
jump kitchen_blunt_4 | ||
"I can’t imagine it was an easy time. Are you okay?": | ||
$ empathy_score += 1 | ||
jump kitchen_empathy_4 | ||
label kitchen_blunt_35: | ||
|
||
menu: | ||
"I am sorry if I was too direct, but I’ve never had to deal with something like this before. I don’t have a guide.": | ||
$ empathy_score -= 1 | ||
jump kitchen_blunt_4 | ||
"I appologize for being too blunt. Are you okay?": | ||
$ empathy_score += 1 | ||
jump kitchen_empathy_4 | ||
|
||
|
||
|
||
label kitchen_blunt_4: | ||
|
||
kitchen_ghost "Yes, well, I am sure you at least understand basic etiquette. It is far from polite to just throw such a revelation at someone." | ||
jump kitchen_neutral_2 | ||
|
||
label kitchen_empathy_4: | ||
|
||
kitchen_ghost "No, I am not. Memories of my later years have come back to roost. I see now why I am so reticent." | ||
jump kitchen_neutral_2 | ||
|
||
label kitchen_neutral_2: | ||
|
||
player "What exactly have you come to learn?" | ||
|
||
kitchen_ghost "I recall my illness. The staff feared it was contagious. So few stayed. I suppose I succumbed to it." | ||
|
||
menu: | ||
"I’m glad you’ve come around. Now we need to get you with the others.": | ||
$ empathy_score -= 1 | ||
jump kitchen_blunt_5 | ||
"I’m so sorry you had such a terrible experience. I’ll have to reunite you with the others for you to move on. When you’re ready of course": | ||
$ empathy_score += 1 | ||
jump kitchen_empathy_5 | ||
|
||
label kitchen_blunt_5: | ||
|
||
kitchen_ghost "I feel the fever even now. I recognize this for what it is. This hunger is not something I can fix. This is no existence. I cannot accept this. I am done with you for now. You will let me come to terms with this at my own speed." | ||
jump end_night3 | ||
|
||
label kitchen_empathy_5: | ||
|
||
kitchen_ghost "I feel the fever even now. I recognize this for what it is. This hunger is not something I can fix. This is no existence. I cannot accept this. I cannot face them. Not yet. I fear the trauma I may recall. I need time. Please, let me have time." | ||
jump end_night_3 | ||
|
||
label end_night_3: | ||
player "I understand." | ||
|
||
|
||
jump kitchen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
label night3_pond_ghost: | ||
|
||
scene bg pond night with dissolve | ||
|
||
show ghost smile with dissolve | ||
|
||
|
||
jump pond |