create-pixi-vn 2.0.12 → 2.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template-react-vite-muijoy-ink/.vscode/extensions.json +2 -1
- package/template-react-vite-muijoy-ink/.vscode/settings.json +6 -1
- package/template-react-vite-muijoy-ink/_gitignore +1 -0
- package/template-react-vite-muijoy-ink/ink/second_part.ink +571 -0
- package/template-react-vite-muijoy-ink/ink/start.ink +214 -0
- package/template-react-vite-muijoy-ink/package-lock.json +230 -4
- package/template-react-vite-muijoy-ink/package.json +3 -1
- package/template-react-vite-muijoy-ink/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink/src/assets/index.ts +2 -4
- package/template-react-vite-muijoy-ink/src/assets/ink-manifest.gen.json +4 -1
- package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +38 -0
- package/template-react-vite-muijoy-ink/src/content/ink/text-replaces.ts +19 -0
- package/template-react-vite-muijoy-ink/src/lib/hooks/ink-hooks.tsx +12 -0
- package/template-react-vite-muijoy-ink/src/lib/i18n.ts +22 -1
- package/template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts +2 -0
- package/template-react-vite-muijoy-ink/src/routes/__root.tsx +4 -0
- package/template-react-vite-muijoy-ink/vite.config.ts +6 -0
- package/template-react-vite-muijoy-ink-tauri/.assetpack.ts +9 -0
- package/template-react-vite-muijoy-ink-tauri/.vscode/extensions.json +5 -1
- package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +11 -0
- package/template-react-vite-muijoy-ink-tauri/.vscode/settings.json +6 -1
- package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +47 -0
- package/template-react-vite-muijoy-ink-tauri/README.md +3 -3
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/desktop.yml +188 -0
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +270 -0
- package/template-react-vite-muijoy-ink-tauri/_gitignore +11 -0
- package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +571 -0
- package/template-react-vite-muijoy-ink-tauri/ink/start.ink +214 -0
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +480 -4
- package/template-react-vite-muijoy-ink-tauri/package.json +13 -2
- package/template-react-vite-muijoy-ink-tauri/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +2 -4
- package/template-react-vite-muijoy-ink-tauri/src/assets/ink-manifest.gen.json +4 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/main-menu.tsx +16 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/system-controls.tsx +11 -1
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +55 -0
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/text-replaces.ts +19 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/ink-hooks.tsx +12 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/quit-hooks.ts +24 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/i18n.ts +22 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/settings-query.ts +7 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/steam.ts +143 -0
- package/template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +4 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +50 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/build.rs +46 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/capabilities/default.json +21 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +64 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/main.rs +6 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/steam.rs +238 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/tauri.conf.json +50 -0
- package/template-react-vite-muijoy-ink-tauri/vite.config.ts +30 -0
- package/template-react-vite-muijoy-tauri/.assetpack.ts +9 -0
- package/template-react-vite-muijoy-tauri/.vscode/extensions.json +4 -1
- package/template-react-vite-muijoy-tauri/.vscode/launch.json +11 -0
- package/template-react-vite-muijoy-tauri/.vscode/tasks.json +47 -0
- package/template-react-vite-muijoy-tauri/README.md +3 -3
- package/template-react-vite-muijoy-tauri/_github/workflows/desktop.yml +188 -0
- package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +270 -0
- package/template-react-vite-muijoy-tauri/_gitignore +10 -0
- package/template-react-vite-muijoy-tauri/package-lock.json +250 -0
- package/template-react-vite-muijoy-tauri/package.json +10 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/main-menu.tsx +16 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/system-controls.tsx +11 -1
- package/template-react-vite-muijoy-tauri/src/lib/hooks/quit-hooks.ts +24 -0
- package/template-react-vite-muijoy-tauri/src/lib/query/settings-query.ts +7 -1
- package/template-react-vite-muijoy-tauri/src/lib/steam.ts +143 -0
- package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +50 -0
- package/template-react-vite-muijoy-tauri/src-tauri/build.rs +46 -0
- package/template-react-vite-muijoy-tauri/src-tauri/capabilities/default.json +21 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/lib.rs +64 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/main.rs +6 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/steam.rs +238 -0
- package/template-react-vite-muijoy-tauri/src-tauri/tauri.conf.json +50 -0
- package/template-react-vite-muijoy-tauri/vite.config.ts +24 -0
- package/template-react-vite-muijoy-ink/src/content/labels/second.label.ts +0 -1207
- package/template-react-vite-muijoy-ink/src/content/labels/start.label.ts +0 -566
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/second.label.ts +0 -1207
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/start.label.ts +0 -566
|
@@ -1,1207 +0,0 @@
|
|
|
1
|
-
import { james, mc, sly, steph, steph_fullname } from "@/content/characters";
|
|
2
|
-
import {
|
|
3
|
-
moveIn,
|
|
4
|
-
narration,
|
|
5
|
-
newLabel,
|
|
6
|
-
showImageContainer,
|
|
7
|
-
showWithFade,
|
|
8
|
-
sound,
|
|
9
|
-
Text,
|
|
10
|
-
TextStyle,
|
|
11
|
-
} from "@drincs/pixi-vn";
|
|
12
|
-
|
|
13
|
-
export const secondPart = newLabel("second_part", [
|
|
14
|
-
async ({ t }) => {
|
|
15
|
-
narration.dialogue = undefined;
|
|
16
|
-
const skewStyle = new TextStyle({
|
|
17
|
-
fontFamily: "Arial",
|
|
18
|
-
dropShadow: {
|
|
19
|
-
alpha: 0.8,
|
|
20
|
-
angle: 2.1,
|
|
21
|
-
blur: 4,
|
|
22
|
-
color: "0x111111",
|
|
23
|
-
distance: 10,
|
|
24
|
-
},
|
|
25
|
-
fill: "#ffffff",
|
|
26
|
-
stroke: { color: "#004620", width: 12, join: "round" },
|
|
27
|
-
fontSize: 60,
|
|
28
|
-
fontWeight: "lighter",
|
|
29
|
-
});
|
|
30
|
-
const text = new Text({
|
|
31
|
-
text: t(`(A few minutes later...)`),
|
|
32
|
-
style: skewStyle,
|
|
33
|
-
});
|
|
34
|
-
await showWithFade("bg", text);
|
|
35
|
-
text.align = 0.5;
|
|
36
|
-
},
|
|
37
|
-
async () => {
|
|
38
|
-
sound.resumeAll();
|
|
39
|
-
await showWithFade("bg", "bg02-dorm");
|
|
40
|
-
await sound.play("sfx_whoosh", { delay: 0.4 });
|
|
41
|
-
await moveIn(
|
|
42
|
-
"james",
|
|
43
|
-
{
|
|
44
|
-
value: ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"],
|
|
45
|
-
options: { xAlign: 0.5, yAlign: 1 },
|
|
46
|
-
},
|
|
47
|
-
{ direction: "right", ease: "circInOut", type: "spring", delay: 0.3 },
|
|
48
|
-
);
|
|
49
|
-
await moveIn(
|
|
50
|
-
"sly",
|
|
51
|
-
{
|
|
52
|
-
value: ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"],
|
|
53
|
-
options: { xAlign: 0.2, yAlign: 1 },
|
|
54
|
-
},
|
|
55
|
-
{ direction: "right", ease: "anticipate", delay: 0.3 },
|
|
56
|
-
);
|
|
57
|
-
await moveIn(
|
|
58
|
-
"steph",
|
|
59
|
-
{
|
|
60
|
-
value: ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"],
|
|
61
|
-
options: { xAlign: 0.8, yAlign: 1 },
|
|
62
|
-
},
|
|
63
|
-
{ direction: "left", ease: "easeInOut", delay: 0.3 },
|
|
64
|
-
);
|
|
65
|
-
narration.dialogue = `She enters my room before I'VE even had a chance to.`;
|
|
66
|
-
},
|
|
67
|
-
async () => {
|
|
68
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
69
|
-
narration.dialogGlue = true;
|
|
70
|
-
narration.dialogue = `\n\n...I could've just come back and gotten the platter later...`;
|
|
71
|
-
},
|
|
72
|
-
async () => {
|
|
73
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
74
|
-
narration.dialogue = `She sets it on a desk. I throw my two paper bags down beside the empty bed.`;
|
|
75
|
-
},
|
|
76
|
-
async () => {
|
|
77
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
78
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
79
|
-
narration.dialogue = { character: steph, text: `They got you a new mattress, right?` };
|
|
80
|
-
},
|
|
81
|
-
async () => {
|
|
82
|
-
await showImageContainer("steph", [
|
|
83
|
-
"fm02-body",
|
|
84
|
-
"fm02-eyes-nervous",
|
|
85
|
-
"fm02-mouth-nervous01",
|
|
86
|
-
]);
|
|
87
|
-
narration.dialogGlue = true;
|
|
88
|
-
narration.dialogue = `That last guy was a druggie, did ${james.name} tell you that?`;
|
|
89
|
-
},
|
|
90
|
-
async () => {
|
|
91
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
92
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-smile01"]);
|
|
93
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
94
|
-
narration.dialogue = { character: sly, text: `*We're* the reason he got expelled!` };
|
|
95
|
-
},
|
|
96
|
-
async () => {
|
|
97
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-grin00"]);
|
|
98
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-upset01"]);
|
|
99
|
-
narration.dialogue = {
|
|
100
|
-
character: steph,
|
|
101
|
-
text: `${sly.name}! If word gets out about that...`,
|
|
102
|
-
};
|
|
103
|
-
},
|
|
104
|
-
async () => {
|
|
105
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-grin00"]);
|
|
106
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-nervous01"]);
|
|
107
|
-
narration.dialogGlue = true;
|
|
108
|
-
narration.dialogue = `well, actually, it wouldn't matter, *he's* the one who shot himself up.`;
|
|
109
|
-
},
|
|
110
|
-
async () => {
|
|
111
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
112
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
113
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
114
|
-
narration.dialogue = `I'm fumbling for a new subject.`;
|
|
115
|
-
},
|
|
116
|
-
async () => {
|
|
117
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
118
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
119
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
120
|
-
narration.dialogue = { character: mc, text: `So, you're all family?` };
|
|
121
|
-
},
|
|
122
|
-
async () => {
|
|
123
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
124
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
125
|
-
narration.dialogue = `I realize too late`;
|
|
126
|
-
},
|
|
127
|
-
async () => {
|
|
128
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
129
|
-
narration.dialogGlue = true;
|
|
130
|
-
narration.dialogue = `this topic is no better:`;
|
|
131
|
-
},
|
|
132
|
-
async () => {
|
|
133
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
134
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
135
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
136
|
-
narration.dialogue = { character: sly, text: `Adopted family.` };
|
|
137
|
-
},
|
|
138
|
-
async () => {
|
|
139
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
140
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
141
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
142
|
-
narration.dialogue = {
|
|
143
|
-
character: steph,
|
|
144
|
-
text: `${sly.name} and I were best friends growing up and ${james.name} here needed a mama, so ${sly.name} adopted him!`,
|
|
145
|
-
};
|
|
146
|
-
},
|
|
147
|
-
async () => {
|
|
148
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile01"]);
|
|
149
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
150
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
151
|
-
narration.dialogue = { character: james, text: `We're not actually related.` };
|
|
152
|
-
},
|
|
153
|
-
async () => {
|
|
154
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
155
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-upset00"]);
|
|
156
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
157
|
-
},
|
|
158
|
-
async () => {
|
|
159
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
160
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
161
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
162
|
-
narration.dialogue = {
|
|
163
|
-
character: james,
|
|
164
|
-
text: `Yeah, I like to say that this last semester I was in *foster care*`,
|
|
165
|
-
};
|
|
166
|
-
},
|
|
167
|
-
async () => {
|
|
168
|
-
narration.dialogGlue = true;
|
|
169
|
-
narration.dialogue = `and ${sly.name} picked me up somewhere in there.`;
|
|
170
|
-
},
|
|
171
|
-
async () => {
|
|
172
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-annoy", "m01-mouth-smile00"]);
|
|
173
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
174
|
-
narration.dialogue = {
|
|
175
|
-
character: sly,
|
|
176
|
-
text: `${james.name} is just a baby. A freshman like you!`,
|
|
177
|
-
};
|
|
178
|
-
},
|
|
179
|
-
async () => {
|
|
180
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-annoy", "m01-mouth-annoy01"]);
|
|
181
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-upset00"]);
|
|
182
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
183
|
-
narration.dialogue = { character: james, text: `And *you're* just a sophomore!` };
|
|
184
|
-
},
|
|
185
|
-
async () => {
|
|
186
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-wow01"]);
|
|
187
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-wow01"]);
|
|
188
|
-
narration.dialogue = {
|
|
189
|
-
character: sly,
|
|
190
|
-
text: `I went to medical school for two years before coming here, I think that counts as *at least* 6 years!`,
|
|
191
|
-
};
|
|
192
|
-
},
|
|
193
|
-
async () => {
|
|
194
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
195
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-upset00"]);
|
|
196
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-upset00"]);
|
|
197
|
-
narration.dialogue = `I'm dizzy, and my blood's rushing.`;
|
|
198
|
-
},
|
|
199
|
-
async () => {
|
|
200
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
201
|
-
await showImageContainer("steph", [
|
|
202
|
-
"fm02-body",
|
|
203
|
-
"fm02-eyes-nervous",
|
|
204
|
-
"fm02-mouth-nervous00",
|
|
205
|
-
]);
|
|
206
|
-
narration.dialogue = { character: mc, text: `Um... why did you switch degrees?` };
|
|
207
|
-
},
|
|
208
|
-
async () => {
|
|
209
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
210
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
211
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-nervous00"]);
|
|
212
|
-
narration.dialogue = { character: sly, text: `My mom was all in the medical field,` };
|
|
213
|
-
},
|
|
214
|
-
async () => {
|
|
215
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
216
|
-
narration.dialogGlue = true;
|
|
217
|
-
narration.dialogue = `and since I'm great with kids- I had 6-`;
|
|
218
|
-
},
|
|
219
|
-
async () => {
|
|
220
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-neutral01"]);
|
|
221
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-upset01"]);
|
|
222
|
-
await showImageContainer("steph", [
|
|
223
|
-
"fm02-body",
|
|
224
|
-
"fm02-eyes-nervous",
|
|
225
|
-
"fm02-mouth-nervous00",
|
|
226
|
-
]);
|
|
227
|
-
narration.dialogue = { character: james, text: `They were actually her siblings.` };
|
|
228
|
-
},
|
|
229
|
-
async () => {
|
|
230
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
231
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-upset01"]);
|
|
232
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
233
|
-
narration.dialogue = { character: sly, text: `Yeah, whatever.` };
|
|
234
|
-
},
|
|
235
|
-
async () => {
|
|
236
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
237
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
238
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
239
|
-
narration.dialogGlue = true;
|
|
240
|
-
narration.dialogue = `I tried it because I thought I'd love it,`;
|
|
241
|
-
},
|
|
242
|
-
async () => {
|
|
243
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-upset01"]);
|
|
244
|
-
narration.dialogGlue = true;
|
|
245
|
-
narration.dialogue = `but I HATED it!`;
|
|
246
|
-
},
|
|
247
|
-
async () => {
|
|
248
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
249
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
250
|
-
narration.dialogGlue = true;
|
|
251
|
-
narration.dialogue = `When we started getting into anatomy, I realized how *gross* the whole thing is. I changed diapers,`;
|
|
252
|
-
},
|
|
253
|
-
async () => {
|
|
254
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-annoy00"]);
|
|
255
|
-
narration.dialogGlue = true;
|
|
256
|
-
narration.dialogue = `but that's a little different from changing *livers*, know what I mean?`;
|
|
257
|
-
},
|
|
258
|
-
async () => {
|
|
259
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-annoy00"]);
|
|
260
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
261
|
-
await showImageContainer("steph", [
|
|
262
|
-
"fm02-body",
|
|
263
|
-
"fm02-eyes-nervous",
|
|
264
|
-
"fm02-mouth-nervous00",
|
|
265
|
-
]);
|
|
266
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
267
|
-
},
|
|
268
|
-
async () => {
|
|
269
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
270
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-smile01"]);
|
|
271
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
272
|
-
narration.dialogue = { character: sly, text: `So I'm trying out architecture now.` };
|
|
273
|
-
},
|
|
274
|
-
async () => {
|
|
275
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
276
|
-
narration.dialogGlue = true;
|
|
277
|
-
narration.dialogue = `What are you going for, ${mc.name}?`;
|
|
278
|
-
},
|
|
279
|
-
async () => {
|
|
280
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
281
|
-
await showImageContainer("steph", [
|
|
282
|
-
"fm02-body",
|
|
283
|
-
"fm02-eyes-nervous",
|
|
284
|
-
"fm02-mouth-nervous00",
|
|
285
|
-
]);
|
|
286
|
-
narration.dialogue = {
|
|
287
|
-
character: mc,
|
|
288
|
-
text: `...uh... ...just getting my Gen Eds out of the way right now...`,
|
|
289
|
-
};
|
|
290
|
-
},
|
|
291
|
-
async () => {
|
|
292
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
293
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
294
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
295
|
-
narration.dialogue = { character: sly, text: `Why not do that at a community college?` };
|
|
296
|
-
},
|
|
297
|
-
async () => {
|
|
298
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
299
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile01"]);
|
|
300
|
-
narration.dialogue = { character: steph, text: `Did you get a full ride or something?` };
|
|
301
|
-
},
|
|
302
|
-
async () => {
|
|
303
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
304
|
-
narration.dialogue = { character: mc, text: `...yeah...` };
|
|
305
|
-
},
|
|
306
|
-
async () => {
|
|
307
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
308
|
-
await showImageContainer("steph", [
|
|
309
|
-
"fm02-body",
|
|
310
|
-
"fm02-eyes-nervous",
|
|
311
|
-
"fm02-mouth-nervous00",
|
|
312
|
-
]);
|
|
313
|
-
narration.dialogue = `I knew this wouldn't go anywhere good.`;
|
|
314
|
-
},
|
|
315
|
-
async () => {
|
|
316
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
317
|
-
narration.dialogue = {
|
|
318
|
-
character: sly,
|
|
319
|
-
text: `Are you going to go visit your parents on the weekend?`,
|
|
320
|
-
};
|
|
321
|
-
},
|
|
322
|
-
async () => {
|
|
323
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
324
|
-
narration.dialogue = { character: mc, text: `... .... ..` };
|
|
325
|
-
},
|
|
326
|
-
async () => {
|
|
327
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
328
|
-
narration.dialogGlue = true;
|
|
329
|
-
narration.dialogue = `.... ..... ..... ... ... ..`;
|
|
330
|
-
},
|
|
331
|
-
async () => {
|
|
332
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
333
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
334
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
335
|
-
narration.dialogue = { character: james, text: `It's no worry if you don't,` };
|
|
336
|
-
},
|
|
337
|
-
async () => {
|
|
338
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
339
|
-
narration.dialogGlue = true;
|
|
340
|
-
narration.dialogue = `mine drive me crazy so I stay here.`;
|
|
341
|
-
},
|
|
342
|
-
async () => {
|
|
343
|
-
// let slyImage = await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"])
|
|
344
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
345
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-smile01"]);
|
|
346
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
347
|
-
narration.dialogue = {
|
|
348
|
-
character: sly,
|
|
349
|
-
text: `You've gotta live close by, right? Nobody comes to this college from afar, sorry, we're just not that hot of a scene.`,
|
|
350
|
-
};
|
|
351
|
-
},
|
|
352
|
-
async () => {
|
|
353
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
354
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
355
|
-
narration.dialogue = { character: mc, text: `... ... .. . . ..` };
|
|
356
|
-
},
|
|
357
|
-
async () => {
|
|
358
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
359
|
-
narration.dialogGlue = true;
|
|
360
|
-
narration.dialogue = `.. . ......... ... . ... .. .... ... .. . .`;
|
|
361
|
-
},
|
|
362
|
-
async () => {
|
|
363
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
364
|
-
await showImageContainer("steph", [
|
|
365
|
-
"fm02-body",
|
|
366
|
-
"fm02-eyes-nervous",
|
|
367
|
-
"fm02-mouth-nervous00",
|
|
368
|
-
]);
|
|
369
|
-
narration.dialogGlue = true;
|
|
370
|
-
narration.dialogue = `. ...... . . . . .. .. .. .... .`;
|
|
371
|
-
},
|
|
372
|
-
async () => {
|
|
373
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
374
|
-
narration.dialogGlue = true;
|
|
375
|
-
narration.dialogue = `...`;
|
|
376
|
-
},
|
|
377
|
-
async () => {
|
|
378
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
379
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
380
|
-
narration.dialogue = {
|
|
381
|
-
character: sly,
|
|
382
|
-
text: `Or maybe they'll come to visit you? My siblings will do that sometimes. It's quite a sight to have all 6 of them running around here, but everyone's pretty chill about it and I trust pretty much everyone here.`,
|
|
383
|
-
};
|
|
384
|
-
},
|
|
385
|
-
async () => {
|
|
386
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-annoy", "m01-mouth-annoy01"]);
|
|
387
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
388
|
-
narration.dialogue = { character: james, text: `At least, now that *Sven's*` };
|
|
389
|
-
},
|
|
390
|
-
async () => {
|
|
391
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-upset00"]);
|
|
392
|
-
narration.dialogGlue = true;
|
|
393
|
-
narration.dialogue = `gone.`;
|
|
394
|
-
},
|
|
395
|
-
async () => {
|
|
396
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-annoy00"]);
|
|
397
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
398
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-upset01"]);
|
|
399
|
-
narration.dialogue = {
|
|
400
|
-
character: steph,
|
|
401
|
-
text: `${james.name}! You don't have to refer to him by name!!`,
|
|
402
|
-
};
|
|
403
|
-
},
|
|
404
|
-
async () => {
|
|
405
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral01"]);
|
|
406
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
407
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-upset00"]);
|
|
408
|
-
narration.dialogue = { character: james, text: `Why? ${mc.name}'ll never meet him.` };
|
|
409
|
-
},
|
|
410
|
-
async () => {
|
|
411
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
412
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-nervous01"]);
|
|
413
|
-
narration.dialogue = {
|
|
414
|
-
character: steph,
|
|
415
|
-
text: `Say, ${mc.name}, where's the rest of your luggage?`,
|
|
416
|
-
};
|
|
417
|
-
},
|
|
418
|
-
async () => {
|
|
419
|
-
await showImageContainer("steph", [
|
|
420
|
-
"fm02-body",
|
|
421
|
-
"fm02-eyes-nervous",
|
|
422
|
-
"fm02-mouth-nervous00",
|
|
423
|
-
]);
|
|
424
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
425
|
-
},
|
|
426
|
-
async () => {
|
|
427
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile01"]);
|
|
428
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
429
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
430
|
-
narration.dialogue = { character: james, text: `Is that all your luggage?` };
|
|
431
|
-
},
|
|
432
|
-
async () => {
|
|
433
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-neutral01"]);
|
|
434
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
435
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-upset00"]);
|
|
436
|
-
narration.dialogGlue = true;
|
|
437
|
-
narration.dialogue = `Man, that sucks.`;
|
|
438
|
-
},
|
|
439
|
-
async () => {
|
|
440
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
441
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-nervous00"]);
|
|
442
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
443
|
-
},
|
|
444
|
-
async () => {
|
|
445
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
446
|
-
narration.dialogue = {
|
|
447
|
-
character: mc,
|
|
448
|
-
text: `So... um... what are you going for, ${steph_fullname}?`,
|
|
449
|
-
};
|
|
450
|
-
},
|
|
451
|
-
async () => {
|
|
452
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous01"]);
|
|
453
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
454
|
-
narration.dialogue = { character: steph, text: `Oh,` };
|
|
455
|
-
},
|
|
456
|
-
async () => {
|
|
457
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
458
|
-
narration.dialogGlue = true;
|
|
459
|
-
narration.dialogue = `me?`;
|
|
460
|
-
},
|
|
461
|
-
async () => {
|
|
462
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
463
|
-
narration.dialogue = `I shouldn't have asked her. I shouldn't have directed a question at her. She reminds me too much...`;
|
|
464
|
-
},
|
|
465
|
-
async () => {
|
|
466
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
467
|
-
narration.dialogue = { character: steph, text: `I'm going for childhood education!` };
|
|
468
|
-
},
|
|
469
|
-
async () => {
|
|
470
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
471
|
-
narration.dialogGlue = true;
|
|
472
|
-
narration.dialogue = `Actually just have 1 more class; it wasn't available previous semester, so now I've got to take it this one!`;
|
|
473
|
-
},
|
|
474
|
-
async () => {
|
|
475
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-smile00"]);
|
|
476
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile01"]);
|
|
477
|
-
narration.dialogue = {
|
|
478
|
-
character: steph,
|
|
479
|
-
text: `I'm honestly surprised my parents are bothering to pay for me to stay in the dorms right now, but both of them want me to get the *"college experience"*.`,
|
|
480
|
-
};
|
|
481
|
-
},
|
|
482
|
-
async () => {
|
|
483
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
484
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
485
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile01"]);
|
|
486
|
-
narration.dialogue = {
|
|
487
|
-
character: steph,
|
|
488
|
-
text: `I think I've had plenty of it already, though.`,
|
|
489
|
-
};
|
|
490
|
-
},
|
|
491
|
-
async () => {
|
|
492
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
493
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-smile01"]);
|
|
494
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
495
|
-
narration.dialogue = { character: sly, text: `Hey, *I* wouldn't let you go anyway.` };
|
|
496
|
-
},
|
|
497
|
-
async () => {
|
|
498
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
499
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-grin00"]);
|
|
500
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-nervous01"]);
|
|
501
|
-
narration.dialogue = { character: steph, text: `...we'd see each other still.` };
|
|
502
|
-
},
|
|
503
|
-
async () => {
|
|
504
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
505
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-upset00"]);
|
|
506
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
507
|
-
narration.dialogue = { character: james, text: `I'm going for computer science.` };
|
|
508
|
-
},
|
|
509
|
-
async () => {
|
|
510
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
511
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
512
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-nervous00"]);
|
|
513
|
-
narration.dialogue = { character: mc, text: `Oh, cool! You like computers?` };
|
|
514
|
-
},
|
|
515
|
-
async () => {
|
|
516
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile01"]);
|
|
517
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-serious00"]);
|
|
518
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-upset00"]);
|
|
519
|
-
narration.dialogue = {
|
|
520
|
-
character: james,
|
|
521
|
-
text: `Yeah, I used to use MS Paint all the time. Now I want to step up my game.`,
|
|
522
|
-
};
|
|
523
|
-
},
|
|
524
|
-
async () => {
|
|
525
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern01"]);
|
|
526
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-upset00"]);
|
|
527
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"]);
|
|
528
|
-
narration.dialogue = {
|
|
529
|
-
character: james,
|
|
530
|
-
text: `I also installed Windows once. I just think computer skills are important.`,
|
|
531
|
-
};
|
|
532
|
-
},
|
|
533
|
-
async () => {
|
|
534
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
535
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-smile01"]);
|
|
536
|
-
narration.dialogue = {
|
|
537
|
-
character: sly,
|
|
538
|
-
text: `${steph.name} and I are placing bets whether or not he'll switch degrees once he gets into the *real* classes. \n\nHe's still just taking Gen Eds, so we won't know for at least another semester.`,
|
|
539
|
-
};
|
|
540
|
-
},
|
|
541
|
-
async () => {
|
|
542
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
543
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
544
|
-
narration.dialogue = {
|
|
545
|
-
character: james,
|
|
546
|
-
text: `Haha, ${sly.name} thinks I made a rash decision, but I think computers are what I wanna do with my life.`,
|
|
547
|
-
};
|
|
548
|
-
},
|
|
549
|
-
async () => {
|
|
550
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
551
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset01"]);
|
|
552
|
-
narration.dialogue = {
|
|
553
|
-
character: steph,
|
|
554
|
-
text: `${james.name}, you gotta figure out what you want to *do* in computers. You're not seeing the trees for the forest.`,
|
|
555
|
-
};
|
|
556
|
-
},
|
|
557
|
-
async () => {
|
|
558
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral01"]);
|
|
559
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
560
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"]);
|
|
561
|
-
narration.dialogue = { character: james, text: `...I think you said that wrong.` };
|
|
562
|
-
},
|
|
563
|
-
async () => {
|
|
564
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
565
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset01"]);
|
|
566
|
-
narration.dialogue = {
|
|
567
|
-
character: steph,
|
|
568
|
-
text: `No, you're always looking at these big ideas and ignoring the actual *reality* of things! Computer Science isn't just an easy degree either. I'm worried these classes are going to kill you!`,
|
|
569
|
-
};
|
|
570
|
-
},
|
|
571
|
-
async () => {
|
|
572
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
573
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
574
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"]);
|
|
575
|
-
narration.dialogue = { character: james, text: `I'll be fine!` };
|
|
576
|
-
},
|
|
577
|
-
async () => {
|
|
578
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-neutral00"]);
|
|
579
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
580
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset01"]);
|
|
581
|
-
narration.dialogue = { character: steph, text: `Death.` };
|
|
582
|
-
},
|
|
583
|
-
async () => {
|
|
584
|
-
// let stephImage = await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"])
|
|
585
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-neutral01"]);
|
|
586
|
-
await showImageContainer("steph", [
|
|
587
|
-
"fm02-body",
|
|
588
|
-
"fm02-eyes-nervous",
|
|
589
|
-
"fm02-mouth-nervous00",
|
|
590
|
-
]);
|
|
591
|
-
narration.dialogue = { character: james, text: `...hey ${mc.name}, are you okay?` };
|
|
592
|
-
},
|
|
593
|
-
async () => {
|
|
594
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-neutral00"]);
|
|
595
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
596
|
-
narration.dialogue = { character: mc, text: `So, what snacks did you bring?` };
|
|
597
|
-
},
|
|
598
|
-
async () => {
|
|
599
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-neutral00"]);
|
|
600
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
601
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
602
|
-
narration.dialogue = { character: steph, text: `Oh!` };
|
|
603
|
-
},
|
|
604
|
-
async () => {
|
|
605
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-grin00"]);
|
|
606
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
607
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
608
|
-
narration.dialogue = `She opens the tray. Inside are cookies, brownies, candies, a pie, cake pieces...`;
|
|
609
|
-
},
|
|
610
|
-
async () => {
|
|
611
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
612
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
613
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
614
|
-
narration.dialogGlue = true;
|
|
615
|
-
narration.dialogue = `${james.name} quickly grabs a few.`;
|
|
616
|
-
},
|
|
617
|
-
async () => {
|
|
618
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile00"]);
|
|
619
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
620
|
-
narration.dialogGlue = true;
|
|
621
|
-
narration.dialogue = `${sly.name} takes some too.`;
|
|
622
|
-
},
|
|
623
|
-
async () => {
|
|
624
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
625
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
626
|
-
narration.dialogue = { character: mc, text: `How do you bake all this?!` };
|
|
627
|
-
},
|
|
628
|
-
async () => {
|
|
629
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
630
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
631
|
-
narration.dialogue = {
|
|
632
|
-
character: steph,
|
|
633
|
-
text: `Baking helps me relax. It's really no work for me, and it's a good way to unwind!`,
|
|
634
|
-
};
|
|
635
|
-
},
|
|
636
|
-
async () => {
|
|
637
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
638
|
-
narration.dialogue = { character: mc, text: `...I had to do all the cooking as a kid.` };
|
|
639
|
-
},
|
|
640
|
-
async () => {
|
|
641
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile00"]);
|
|
642
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
643
|
-
narration.dialogue = `...did I just let that slip?`;
|
|
644
|
-
},
|
|
645
|
-
async () => {
|
|
646
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
647
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
648
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
649
|
-
narration.dialogue = { character: steph, text: `Awesome!` };
|
|
650
|
-
},
|
|
651
|
-
async () => {
|
|
652
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
653
|
-
narration.dialogGlue = true;
|
|
654
|
-
narration.dialogue = `Maybe we can swap recipes sometime!`;
|
|
655
|
-
},
|
|
656
|
-
async () => {
|
|
657
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
658
|
-
narration.dialogue = { character: mc, text: `I can do... I don't need... I mean...` };
|
|
659
|
-
},
|
|
660
|
-
async () => {
|
|
661
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile01"]);
|
|
662
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
663
|
-
narration.dialogue = {
|
|
664
|
-
character: james,
|
|
665
|
-
text: `"You can do?" Is that what the kids are saying today?`,
|
|
666
|
-
};
|
|
667
|
-
},
|
|
668
|
-
async () => {
|
|
669
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
670
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-smile01"]);
|
|
671
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
672
|
-
narration.dialogue = { character: sly, text: `${james.name}, you *are* a kid!` };
|
|
673
|
-
},
|
|
674
|
-
async () => {
|
|
675
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-annoy", "m01-mouth-smile01"]);
|
|
676
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-grin00"]);
|
|
677
|
-
narration.dialogue = { character: james, text: `${sly.name}, I am so out of the loop!` };
|
|
678
|
-
},
|
|
679
|
-
async () => {
|
|
680
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
681
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
682
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
683
|
-
narration.dialogue = {
|
|
684
|
-
character: sly,
|
|
685
|
-
text: `Well, then, ${mc.name}, we'll have to try out your cooking someday!`,
|
|
686
|
-
};
|
|
687
|
-
},
|
|
688
|
-
async () => {
|
|
689
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
690
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
691
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
692
|
-
narration.dialogue = { character: steph, text: `Oh!` };
|
|
693
|
-
},
|
|
694
|
-
async () => {
|
|
695
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-smile01"]);
|
|
696
|
-
narration.dialogGlue = true;
|
|
697
|
-
narration.dialogue = `If you want...`;
|
|
698
|
-
},
|
|
699
|
-
async () => {
|
|
700
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
701
|
-
narration.dialogGlue = true;
|
|
702
|
-
narration.dialogue = `you can even come over today!`;
|
|
703
|
-
},
|
|
704
|
-
async () => {
|
|
705
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
706
|
-
narration.dialogGlue = true;
|
|
707
|
-
narration.dialogue = `You'll be surprised what you can make in a dorm with some know-how and tricks!`;
|
|
708
|
-
},
|
|
709
|
-
async () => {
|
|
710
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-smile01"]);
|
|
711
|
-
narration.dialogGlue = true;
|
|
712
|
-
narration.dialogue = `*Did you know you can make cake in a microwave?!?!*`;
|
|
713
|
-
},
|
|
714
|
-
async () => {
|
|
715
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile00"]);
|
|
716
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
717
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
718
|
-
narration.dialogue = `They can see I'm stressing out. I push it all down.`;
|
|
719
|
-
},
|
|
720
|
-
async () => {
|
|
721
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
722
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
723
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
724
|
-
narration.dialogue = { character: sly, text: `...It's fine to be scared.` };
|
|
725
|
-
},
|
|
726
|
-
async () => {
|
|
727
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
728
|
-
narration.dialogue = { character: mc, text: `?!` };
|
|
729
|
-
},
|
|
730
|
-
async () => {
|
|
731
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious01"]);
|
|
732
|
-
narration.dialogue = {
|
|
733
|
-
character: sly,
|
|
734
|
-
text: `I know you're an adult now, but it's okay to be scared. You don't have to feel ashamed of feeling. It's okay to feel.`,
|
|
735
|
-
};
|
|
736
|
-
},
|
|
737
|
-
async () => {
|
|
738
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile00"]);
|
|
739
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
740
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-nervous00"]);
|
|
741
|
-
narration.dialogue = `...they have no idea. But I'm glad.`;
|
|
742
|
-
},
|
|
743
|
-
async () => {
|
|
744
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-grin00"]);
|
|
745
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile01"]);
|
|
746
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
747
|
-
narration.dialogue = { character: sly, text: `...that's right.` };
|
|
748
|
-
},
|
|
749
|
-
async () => {
|
|
750
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile01"]);
|
|
751
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-smile00"]);
|
|
752
|
-
narration.dialogue = {
|
|
753
|
-
character: james,
|
|
754
|
-
text: `...who told you you're a scary guy, ${mc.name}?`,
|
|
755
|
-
};
|
|
756
|
-
},
|
|
757
|
-
async () => {
|
|
758
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
759
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
760
|
-
narration.dialogGlue = true;
|
|
761
|
-
narration.dialogue = `You don't seem scary at all.`;
|
|
762
|
-
},
|
|
763
|
-
() => {
|
|
764
|
-
narration.dialogue = { character: mc, text: `My mom.` };
|
|
765
|
-
},
|
|
766
|
-
async () => {
|
|
767
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
768
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious01"]);
|
|
769
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
770
|
-
narration.dialogue = `I just said that.`;
|
|
771
|
-
},
|
|
772
|
-
async () => {
|
|
773
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious00"]);
|
|
774
|
-
narration.dialogGlue = true;
|
|
775
|
-
narration.dialogue = `Why?`;
|
|
776
|
-
},
|
|
777
|
-
async () => {
|
|
778
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
779
|
-
narration.dialogue = `Crap. Crap crap crap. Why am I crying?`;
|
|
780
|
-
},
|
|
781
|
-
async () => {
|
|
782
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous01"]);
|
|
783
|
-
narration.dialogue = { character: steph, text: `Are you okay?` };
|
|
784
|
-
},
|
|
785
|
-
async () => {
|
|
786
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
787
|
-
narration.dialogue = `${sly.name} comes over and sits down beside me. She locks eyes with me.`;
|
|
788
|
-
},
|
|
789
|
-
async () => {
|
|
790
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern00"]);
|
|
791
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious01"]);
|
|
792
|
-
await showImageContainer("steph", [
|
|
793
|
-
"fm02-body",
|
|
794
|
-
"fm02-eyes-nervous",
|
|
795
|
-
"fm02-mouth-nervous00",
|
|
796
|
-
]);
|
|
797
|
-
narration.dialogue = { character: sly, text: `...why are you scary?` };
|
|
798
|
-
},
|
|
799
|
-
async () => {
|
|
800
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
801
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
802
|
-
},
|
|
803
|
-
async () => {
|
|
804
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-annoy00"]);
|
|
805
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious01"]);
|
|
806
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
807
|
-
narration.dialogue = { character: sly, text: `Is that why your parents sent you here?` };
|
|
808
|
-
},
|
|
809
|
-
async () => {
|
|
810
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-annoy01"]);
|
|
811
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
812
|
-
narration.dialogue = { character: james, text: `${sly.name}!` };
|
|
813
|
-
},
|
|
814
|
-
async () => {
|
|
815
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-neutral00"]);
|
|
816
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
817
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
818
|
-
},
|
|
819
|
-
async () => {
|
|
820
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern00"]);
|
|
821
|
-
await showImageContainer("steph", [
|
|
822
|
-
"fm02-body",
|
|
823
|
-
"fm02-eyes-nervous",
|
|
824
|
-
"fm02-mouth-nervous01",
|
|
825
|
-
]);
|
|
826
|
-
narration.dialogue = {
|
|
827
|
-
character: steph,
|
|
828
|
-
text: `...I can't imagine being told by your own *mother* you're scary.`,
|
|
829
|
-
};
|
|
830
|
-
},
|
|
831
|
-
async () => {
|
|
832
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
833
|
-
await showImageContainer("steph", [
|
|
834
|
-
"fm02-body",
|
|
835
|
-
"fm02-eyes-nervous",
|
|
836
|
-
"fm02-mouth-nervous00",
|
|
837
|
-
]);
|
|
838
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
839
|
-
},
|
|
840
|
-
async () => {
|
|
841
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-concern00"]);
|
|
842
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-nervous01"]);
|
|
843
|
-
narration.dialogue = {
|
|
844
|
-
character: steph,
|
|
845
|
-
text: `...but if you really *were*, I suspect you wouldn't be here.`,
|
|
846
|
-
};
|
|
847
|
-
},
|
|
848
|
-
async () => {
|
|
849
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-smile01"]);
|
|
850
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-upset00"]);
|
|
851
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-smile00"]);
|
|
852
|
-
narration.dialogue = { character: james, text: `...Right?` };
|
|
853
|
-
},
|
|
854
|
-
async () => {
|
|
855
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
856
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
857
|
-
narration.dialogue = `...I want to run. But I don't know this place; there's nowhere *to* run. And I can't lose this room... So the best I can do is make *them* run.`;
|
|
858
|
-
},
|
|
859
|
-
async () => {
|
|
860
|
-
await showImageContainer("steph", [
|
|
861
|
-
"fm02-body",
|
|
862
|
-
"fm02-eyes-nervous",
|
|
863
|
-
"fm02-mouth-nervous00",
|
|
864
|
-
]);
|
|
865
|
-
narration.dialogue = `By telling them the truth.`;
|
|
866
|
-
},
|
|
867
|
-
async () => {
|
|
868
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
869
|
-
narration.dialogue = { character: mc, text: `...I'm the reason...` };
|
|
870
|
-
},
|
|
871
|
-
() => {
|
|
872
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
873
|
-
},
|
|
874
|
-
async () => {
|
|
875
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-neutral00"]);
|
|
876
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
877
|
-
narration.dialogue = `If I tell them the truth, they'll leave me alone.`;
|
|
878
|
-
},
|
|
879
|
-
async () => {
|
|
880
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
881
|
-
narration.dialogue = `...and I won't risk hurting any of *them* too.`;
|
|
882
|
-
},
|
|
883
|
-
() => {
|
|
884
|
-
narration.dialogue = { character: mc, text: `...Mom committed suicide because of me...` };
|
|
885
|
-
},
|
|
886
|
-
async () => {
|
|
887
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-concern00"]);
|
|
888
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
889
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
890
|
-
narration.dialogue = `...`;
|
|
891
|
-
},
|
|
892
|
-
async () => {
|
|
893
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
894
|
-
narration.dialogue = `...why don't they leave?`;
|
|
895
|
-
},
|
|
896
|
-
async () => {
|
|
897
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern00"]);
|
|
898
|
-
narration.dialogue = `That's right, ${sly.name}'s looking out for ${james.name}.`;
|
|
899
|
-
},
|
|
900
|
-
() => {
|
|
901
|
-
narration.dialogue = `If I don't share *everything* now, she's going to get me framed for something and I won't have a place to live anymore.`;
|
|
902
|
-
},
|
|
903
|
-
() => {
|
|
904
|
-
narration.dialogue = { character: mc, text: `...she was...` };
|
|
905
|
-
},
|
|
906
|
-
async () => {
|
|
907
|
-
await showImageContainer("steph", [
|
|
908
|
-
"fm02-body",
|
|
909
|
-
"fm02-eyes-nervous",
|
|
910
|
-
"fm02-mouth-nervous00",
|
|
911
|
-
]);
|
|
912
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
913
|
-
},
|
|
914
|
-
async () => {
|
|
915
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern00"]);
|
|
916
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
917
|
-
narration.dialogue = `They just look at me sadly.`;
|
|
918
|
-
},
|
|
919
|
-
() => {
|
|
920
|
-
narration.dialogue = {
|
|
921
|
-
character: mc,
|
|
922
|
-
text: `...addicted to heroin and I couldn't tell *anyone*.`,
|
|
923
|
-
};
|
|
924
|
-
},
|
|
925
|
-
() => {
|
|
926
|
-
narration.dialogue = {
|
|
927
|
-
character: mc,
|
|
928
|
-
text: `...told me she'd gut me like a pig if I did.`,
|
|
929
|
-
};
|
|
930
|
-
},
|
|
931
|
-
() => {
|
|
932
|
-
narration.dialogue = { character: mc, text: `I recommended to her...` };
|
|
933
|
-
},
|
|
934
|
-
() => {
|
|
935
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
936
|
-
},
|
|
937
|
-
async () => {
|
|
938
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
939
|
-
narration.dialogue = {
|
|
940
|
-
character: mc,
|
|
941
|
-
text: `...I recommend to her "why don't you end this?" I told her I *hated* her.`,
|
|
942
|
-
};
|
|
943
|
-
},
|
|
944
|
-
async () => {
|
|
945
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
946
|
-
narration.dialogGlue = true;
|
|
947
|
-
narration.dialogue = `*And* what she did to my little sister...`;
|
|
948
|
-
},
|
|
949
|
-
async () => {
|
|
950
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-concern00"]);
|
|
951
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-upset00"]);
|
|
952
|
-
narration.dialogue = `Crap, now I look like the villain again. But I *am*. Aren't I?`;
|
|
953
|
-
},
|
|
954
|
-
async () => {
|
|
955
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
956
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"]);
|
|
957
|
-
narration.dialogue = {
|
|
958
|
-
character: mc,
|
|
959
|
-
text: `...she sold all of my sister's dolls, toys, school supplies, for dirt cheap just to try to get another fix. She started stealing; she got in with the wrong crowd. She wanted out.`,
|
|
960
|
-
};
|
|
961
|
-
},
|
|
962
|
-
async () => {
|
|
963
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-concern", "m01-mouth-concern00"]);
|
|
964
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
965
|
-
narration.dialogue = {
|
|
966
|
-
character: mc,
|
|
967
|
-
text: `The police were coming though, because... because I called them. Because mean people were coming to hurt Mom.`,
|
|
968
|
-
};
|
|
969
|
-
},
|
|
970
|
-
async () => {
|
|
971
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-serious00"]);
|
|
972
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
973
|
-
narration.dialogue = { character: mc, text: `She couldn't have that. I'd just royally` };
|
|
974
|
-
},
|
|
975
|
-
async () => {
|
|
976
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
977
|
-
narration.dialogGlue = true;
|
|
978
|
-
narration.dialogue = `$%*@!& up, and`;
|
|
979
|
-
},
|
|
980
|
-
async () => {
|
|
981
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
982
|
-
narration.dialogGlue = true;
|
|
983
|
-
narration.dialogue = `she threatened to *kill* me, but... she couldn't bring herself to do it.`;
|
|
984
|
-
},
|
|
985
|
-
() => {
|
|
986
|
-
narration.dialogue = {
|
|
987
|
-
character: mc,
|
|
988
|
-
text: `She had a few days' supply of heroin. She...`,
|
|
989
|
-
};
|
|
990
|
-
},
|
|
991
|
-
async () => {
|
|
992
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-concern00"]);
|
|
993
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious00"]);
|
|
994
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
995
|
-
narration.dialogGlue = true;
|
|
996
|
-
narration.dialogue = `she took it all at once.`;
|
|
997
|
-
},
|
|
998
|
-
async () => {
|
|
999
|
-
// let stephImage = await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"])
|
|
1000
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious01"]);
|
|
1001
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-wow01"]);
|
|
1002
|
-
narration.dialogue = {
|
|
1003
|
-
character: mc,
|
|
1004
|
-
text: `Locked herself in her room. Screamed at me, "You hate me anyway!" and wouldn't stop screaming it, even though I begged her to come out.`,
|
|
1005
|
-
};
|
|
1006
|
-
},
|
|
1007
|
-
async () => {
|
|
1008
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-wow", "m01-mouth-cry00"]);
|
|
1009
|
-
narration.dialogue = { character: mc, text: `Those were the last words I heard from her.` };
|
|
1010
|
-
},
|
|
1011
|
-
async () => {
|
|
1012
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious00"]);
|
|
1013
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
1014
|
-
narration.dialogue = {
|
|
1015
|
-
character: mc,
|
|
1016
|
-
text: `My sister and I were taken to be put into foster care. We were told we would be together,`,
|
|
1017
|
-
};
|
|
1018
|
-
},
|
|
1019
|
-
async () => {
|
|
1020
|
-
narration.dialogGlue = true;
|
|
1021
|
-
narration.dialogue = `but we were put into separate homes.`;
|
|
1022
|
-
},
|
|
1023
|
-
async () => {
|
|
1024
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
1025
|
-
await showImageContainer("steph", [
|
|
1026
|
-
"fm02-body",
|
|
1027
|
-
"fm02-eyes-nervous",
|
|
1028
|
-
"fm02-mouth-nervous00",
|
|
1029
|
-
]);
|
|
1030
|
-
narration.dialogue = {
|
|
1031
|
-
character: mc,
|
|
1032
|
-
text: `...nobody wanted to adopt me; I was 15 at the time my mom killed herself. Teens don't get adopted.`,
|
|
1033
|
-
};
|
|
1034
|
-
},
|
|
1035
|
-
() => {
|
|
1036
|
-
narration.dialogue = {
|
|
1037
|
-
character: mc,
|
|
1038
|
-
text: `And when the first potential couple came in and heard about my story, they blamed`,
|
|
1039
|
-
};
|
|
1040
|
-
},
|
|
1041
|
-
async () => {
|
|
1042
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious00"]);
|
|
1043
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-nervous00"]);
|
|
1044
|
-
narration.dialogGlue = true;
|
|
1045
|
-
narration.dialogue = `me for everything-`;
|
|
1046
|
-
},
|
|
1047
|
-
async () => {
|
|
1048
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious01"]);
|
|
1049
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-upset", "fm02-mouth-upset00"]);
|
|
1050
|
-
narration.dialogGlue = true;
|
|
1051
|
-
narration.dialogue = `called me a "demon spawn"- and left`;
|
|
1052
|
-
},
|
|
1053
|
-
async () => {
|
|
1054
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-wow", "fm01-mouth-serious00"]);
|
|
1055
|
-
narration.dialogGlue = true;
|
|
1056
|
-
narration.dialogue = `in a huff.`;
|
|
1057
|
-
},
|
|
1058
|
-
async () => {
|
|
1059
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-serious00"]);
|
|
1060
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-nervous", "fm02-mouth-upset00"]);
|
|
1061
|
-
narration.dialogue = { character: mc, text: `...I never got another chance.` };
|
|
1062
|
-
},
|
|
1063
|
-
() => {
|
|
1064
|
-
narration.dialogue = {
|
|
1065
|
-
character: mc,
|
|
1066
|
-
text: `I only have a place to live here now because I was a good student. But who knows about next semester, or next year? Or once I graduate?`,
|
|
1067
|
-
};
|
|
1068
|
-
},
|
|
1069
|
-
() => {
|
|
1070
|
-
narration.dialogue = {
|
|
1071
|
-
character: mc,
|
|
1072
|
-
text: `I'm amazed that I got a room at all; just two weeks ago they said there was *nothing*.`,
|
|
1073
|
-
};
|
|
1074
|
-
},
|
|
1075
|
-
() => {
|
|
1076
|
-
narration.dialogue = {
|
|
1077
|
-
character: mc,
|
|
1078
|
-
text: `...so there. Have I finally scared you away?`,
|
|
1079
|
-
};
|
|
1080
|
-
},
|
|
1081
|
-
async () => {
|
|
1082
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-cry", "m01-mouth-cry00"]);
|
|
1083
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft00"]);
|
|
1084
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-bawl", "fm02-mouth-cry01"]);
|
|
1085
|
-
narration.dialogue = { character: mc, text: `I don't want to look at any of them.` };
|
|
1086
|
-
},
|
|
1087
|
-
() => {
|
|
1088
|
-
narration.dialogue = { character: mc, text: `A hand gently rubs my back.` };
|
|
1089
|
-
},
|
|
1090
|
-
() => {
|
|
1091
|
-
narration.dialogue = { character: sly, text: `You don't really want us to leave, do you?` };
|
|
1092
|
-
},
|
|
1093
|
-
() => {
|
|
1094
|
-
narration.dialogue = { character: mc, text: `?!?!` };
|
|
1095
|
-
},
|
|
1096
|
-
() => {
|
|
1097
|
-
narration.dialogue = { character: sly, text: `...` };
|
|
1098
|
-
},
|
|
1099
|
-
() => {
|
|
1100
|
-
narration.dialogue = {
|
|
1101
|
-
character: sly,
|
|
1102
|
-
text: `...because if you're willing to be honest about whether you want to be here with us or alone elsewhere, *we're* willing to help you either way.`,
|
|
1103
|
-
};
|
|
1104
|
-
},
|
|
1105
|
-
() => {
|
|
1106
|
-
narration.dialogue = { character: sly, text: `It wasn't your fault.` };
|
|
1107
|
-
},
|
|
1108
|
-
() => {
|
|
1109
|
-
narration.dialogue = `I burst out crying.`;
|
|
1110
|
-
},
|
|
1111
|
-
() => {
|
|
1112
|
-
narration.dialogue = { character: mc, text: `...I look like such an idiot.` };
|
|
1113
|
-
},
|
|
1114
|
-
() => {
|
|
1115
|
-
narration.dialogue = {
|
|
1116
|
-
character: sly,
|
|
1117
|
-
text: `No you don't. And you probably saved your *and* your little sister's lives. If the people coming for your mom had gotten to your house, who *knows* what they would have done to you both.`,
|
|
1118
|
-
};
|
|
1119
|
-
},
|
|
1120
|
-
() => {
|
|
1121
|
-
narration.dialogue = `I can't stop.`;
|
|
1122
|
-
},
|
|
1123
|
-
() => {
|
|
1124
|
-
narration.dialogue = { character: steph, text: `You did the best you knew how.` };
|
|
1125
|
-
},
|
|
1126
|
-
() => {
|
|
1127
|
-
narration.dialogue = `I feel a tissue press against my hands. I suddenly realize that snot is dripping through my fingers. Gross.`;
|
|
1128
|
-
},
|
|
1129
|
-
async () => {
|
|
1130
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-cry", "m01-mouth-smile01"]);
|
|
1131
|
-
narration.dialogue = {
|
|
1132
|
-
character: james,
|
|
1133
|
-
text: `I cried for like a week when I first came. These two are champs, don't worry about it.`,
|
|
1134
|
-
};
|
|
1135
|
-
},
|
|
1136
|
-
async () => {
|
|
1137
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-cry", "m01-mouth-smile00"]);
|
|
1138
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft01"]);
|
|
1139
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-bawl", "fm02-mouth-cry01"]);
|
|
1140
|
-
narration.dialogue = { character: sly, text: `So, be honest with us right now.` };
|
|
1141
|
-
},
|
|
1142
|
-
async () => {
|
|
1143
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-cry", "m01-mouth-neutral00"]);
|
|
1144
|
-
narration.dialogGlue = true;
|
|
1145
|
-
narration.dialogue = `*Do you* want to stick around us for a while? Or, do you truly want to be left alone? Because we're all willing to deal with this "very dangerous" person.`;
|
|
1146
|
-
},
|
|
1147
|
-
async () => {
|
|
1148
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-bawl", "fm02-mouth-nervous01"]);
|
|
1149
|
-
narration.dialogue = {
|
|
1150
|
-
character: sly,
|
|
1151
|
-
text: `Will you be honest with your feelings and with us?`,
|
|
1152
|
-
};
|
|
1153
|
-
},
|
|
1154
|
-
async () => {
|
|
1155
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft00"]);
|
|
1156
|
-
narration.dialogue = { character: mc, text: `...yes.` };
|
|
1157
|
-
},
|
|
1158
|
-
async () => {
|
|
1159
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-cry", "m01-mouth-smile00"]);
|
|
1160
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft01"]);
|
|
1161
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-bawl", "fm02-mouth-nervous00"]);
|
|
1162
|
-
narration.dialogue = {
|
|
1163
|
-
character: sly,
|
|
1164
|
-
text: `Are you willing to try being a friend and having friends?`,
|
|
1165
|
-
};
|
|
1166
|
-
},
|
|
1167
|
-
async () => {
|
|
1168
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft00"]);
|
|
1169
|
-
await showImageContainer("steph", [
|
|
1170
|
-
"fm02-body",
|
|
1171
|
-
"fm02-eyes-nervous",
|
|
1172
|
-
"fm02-mouth-nervous00",
|
|
1173
|
-
]);
|
|
1174
|
-
narration.dialogue = { character: mc, text: `...` };
|
|
1175
|
-
},
|
|
1176
|
-
async () => {
|
|
1177
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-upset", "fm01-mouth-soft01"]);
|
|
1178
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-wow", "fm02-mouth-nervous00"]);
|
|
1179
|
-
narration.dialogue = { character: sly, text: `Because I'm willing to give you a shot.` };
|
|
1180
|
-
},
|
|
1181
|
-
async () => {
|
|
1182
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-grin", "m01-mouth-smile00"]);
|
|
1183
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-smile", "fm01-mouth-soft00"]);
|
|
1184
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-smile", "fm02-mouth-smile00"]);
|
|
1185
|
-
narration.dialogue = { character: mc, text: `...absolutely.` };
|
|
1186
|
-
},
|
|
1187
|
-
async () => {
|
|
1188
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-soft", "fm01-mouth-soft00"]);
|
|
1189
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile00"]);
|
|
1190
|
-
narration.dialogue = `I feel lighter. A wave of something I'm not sure I've ever felt washes over me.`;
|
|
1191
|
-
},
|
|
1192
|
-
() => {
|
|
1193
|
-
narration.dialogue = `It's peace; it's rest; it's something different.`;
|
|
1194
|
-
},
|
|
1195
|
-
() => {
|
|
1196
|
-
narration.dialogue = `Like, even though it'll be hard, maybe I could actually be open here.`;
|
|
1197
|
-
},
|
|
1198
|
-
() => {
|
|
1199
|
-
narration.dialogue = `I think this is the beginning of what people call...`;
|
|
1200
|
-
},
|
|
1201
|
-
async () => {
|
|
1202
|
-
await showImageContainer("james", ["m01-body", "m01-eyes-smile", "m01-mouth-smile00"]);
|
|
1203
|
-
await showImageContainer("sly", ["fm01-body", "fm01-eyes-grin", "fm01-mouth-grin00"]);
|
|
1204
|
-
await showImageContainer("steph", ["fm02-body", "fm02-eyes-joy", "fm02-mouth-smile01"]);
|
|
1205
|
-
narration.dialogue = `...freedom...`;
|
|
1206
|
-
},
|
|
1207
|
-
]);
|