Skip to content

Commit d439519

Browse files
feat(story): show lord in hallway
1 parent 874daa2 commit d439519

File tree

3 files changed

+29
-9
lines changed

3 files changed

+29
-9
lines changed

game/story/day1/day1_meet_lord.rpy

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ label day1_meet_lord:
88

99
show screen lord_book
1010

11-
show lord smile
12-
with dissolve
11+
show lord smile with dissolve
1312

1413
lord "Ah, you must be the new heir."
1514
lord "Please come in."

game/story/day2/day2.rpy

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ label day2:
55
$ night = True
66
scene bg hallway night with dissolve
77

8-
show lord worry at center
9-
with dissolve
8+
show lord worry with dissolve
109

1110
lord "[player_name]!{w=0.3} Are you okay?"
1211
lord "You look spooked."

game/story/inside/hallway.rpy

+27-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,38 @@
1-
label hallway:
1+
label hallway(with_dissolve=True):
22

3-
if night:
4-
scene bg hallway night with dissolve
3+
if with_dissolve:
4+
if night:
5+
scene bg hallway night with dissolve
6+
else:
7+
scene bg hallway day with dissolve
58
else:
6-
scene bg hallway day with dissolve
9+
if night:
10+
scene bg hallway night
11+
else:
12+
scene bg hallway day
13+
14+
if with_dissolve:
15+
show lord with dissolve
16+
else:
17+
show lord
718

819
menu:
920
"What do you want to do?"
1021

22+
"Talk to the Lord":
23+
jump hallway_lord
24+
1125
"Look around":
1226
player "The skies are clear today."
13-
jump hallway
27+
call hallway(False)
1428

1529
"Go elsewhere":
1630
jump explore_inside_day
31+
32+
label hallway_lord:
33+
34+
menu:
35+
lord "How may I help you?"
36+
37+
"Nevermind":
38+
call hallway(False)

0 commit comments

Comments
 (0)