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.
Files changed (114) hide show
  1. package/package.json +1 -1
  2. package/template-react-vite-muijoy-ink/.vscode/extensions.json +2 -1
  3. package/template-react-vite-muijoy-ink/.vscode/settings.json +6 -1
  4. package/template-react-vite-muijoy-ink/_gitignore +1 -0
  5. package/template-react-vite-muijoy-ink/ink/second_part.ink +571 -0
  6. package/template-react-vite-muijoy-ink/ink/start.ink +214 -0
  7. package/template-react-vite-muijoy-ink/package-lock.json +230 -4
  8. package/template-react-vite-muijoy-ink/package.json +3 -1
  9. package/template-react-vite-muijoy-ink/src/App.tsx +25 -25
  10. package/template-react-vite-muijoy-ink/src/assets/index.ts +2 -4
  11. package/template-react-vite-muijoy-ink/src/assets/ink-manifest.gen.json +4 -1
  12. package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +38 -0
  13. package/template-react-vite-muijoy-ink/src/content/ink/text-replaces.ts +19 -0
  14. package/template-react-vite-muijoy-ink/src/lib/hooks/ink-hooks.tsx +12 -0
  15. package/template-react-vite-muijoy-ink/src/lib/i18n.ts +22 -1
  16. package/template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts +2 -0
  17. package/template-react-vite-muijoy-ink/src/routes/__root.tsx +4 -0
  18. package/template-react-vite-muijoy-ink/vite.config.ts +6 -0
  19. package/template-react-vite-muijoy-ink-tauri/.assetpack.ts +9 -0
  20. package/template-react-vite-muijoy-ink-tauri/.vscode/extensions.json +5 -1
  21. package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +11 -0
  22. package/template-react-vite-muijoy-ink-tauri/.vscode/settings.json +6 -1
  23. package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +47 -0
  24. package/template-react-vite-muijoy-ink-tauri/README.md +3 -3
  25. package/template-react-vite-muijoy-ink-tauri/_github/workflows/desktop.yml +188 -0
  26. package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +270 -0
  27. package/template-react-vite-muijoy-ink-tauri/_gitignore +11 -0
  28. package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +571 -0
  29. package/template-react-vite-muijoy-ink-tauri/ink/start.ink +214 -0
  30. package/template-react-vite-muijoy-ink-tauri/package-lock.json +480 -4
  31. package/template-react-vite-muijoy-ink-tauri/package.json +13 -2
  32. package/template-react-vite-muijoy-ink-tauri/src/App.tsx +25 -25
  33. package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +2 -4
  34. package/template-react-vite-muijoy-ink-tauri/src/assets/ink-manifest.gen.json +4 -1
  35. package/template-react-vite-muijoy-ink-tauri/src/components/menus/main-menu.tsx +16 -1
  36. package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
  37. package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/system-controls.tsx +11 -1
  38. package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +55 -0
  39. package/template-react-vite-muijoy-ink-tauri/src/content/ink/text-replaces.ts +19 -0
  40. package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/ink-hooks.tsx +12 -0
  41. package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/quit-hooks.ts +24 -0
  42. package/template-react-vite-muijoy-ink-tauri/src/lib/i18n.ts +22 -1
  43. package/template-react-vite-muijoy-ink-tauri/src/lib/query/settings-query.ts +7 -1
  44. package/template-react-vite-muijoy-ink-tauri/src/lib/steam.ts +143 -0
  45. package/template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts +2 -0
  46. package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +4 -0
  47. package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +50 -0
  48. package/template-react-vite-muijoy-ink-tauri/src-tauri/build.rs +46 -0
  49. package/template-react-vite-muijoy-ink-tauri/src-tauri/capabilities/default.json +21 -0
  50. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128.png +0 -0
  51. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128@2x.png +0 -0
  52. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/32x32.png +0 -0
  53. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
  54. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
  55. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
  56. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
  57. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
  58. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
  59. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
  60. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
  61. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
  62. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/StoreLogo.png +0 -0
  63. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.icns +0 -0
  64. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.ico +0 -0
  65. package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.png +0 -0
  66. package/template-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +64 -0
  67. package/template-react-vite-muijoy-ink-tauri/src-tauri/src/main.rs +6 -0
  68. package/template-react-vite-muijoy-ink-tauri/src-tauri/src/steam.rs +238 -0
  69. package/template-react-vite-muijoy-ink-tauri/src-tauri/tauri.conf.json +50 -0
  70. package/template-react-vite-muijoy-ink-tauri/vite.config.ts +30 -0
  71. package/template-react-vite-muijoy-tauri/.assetpack.ts +9 -0
  72. package/template-react-vite-muijoy-tauri/.vscode/extensions.json +4 -1
  73. package/template-react-vite-muijoy-tauri/.vscode/launch.json +11 -0
  74. package/template-react-vite-muijoy-tauri/.vscode/tasks.json +47 -0
  75. package/template-react-vite-muijoy-tauri/README.md +3 -3
  76. package/template-react-vite-muijoy-tauri/_github/workflows/desktop.yml +188 -0
  77. package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +270 -0
  78. package/template-react-vite-muijoy-tauri/_gitignore +10 -0
  79. package/template-react-vite-muijoy-tauri/package-lock.json +250 -0
  80. package/template-react-vite-muijoy-tauri/package.json +10 -1
  81. package/template-react-vite-muijoy-tauri/src/components/menus/main-menu.tsx +16 -1
  82. package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
  83. package/template-react-vite-muijoy-tauri/src/components/menus/settings/system-controls.tsx +11 -1
  84. package/template-react-vite-muijoy-tauri/src/lib/hooks/quit-hooks.ts +24 -0
  85. package/template-react-vite-muijoy-tauri/src/lib/query/settings-query.ts +7 -1
  86. package/template-react-vite-muijoy-tauri/src/lib/steam.ts +143 -0
  87. package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +50 -0
  88. package/template-react-vite-muijoy-tauri/src-tauri/build.rs +46 -0
  89. package/template-react-vite-muijoy-tauri/src-tauri/capabilities/default.json +21 -0
  90. package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128.png +0 -0
  91. package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128@2x.png +0 -0
  92. package/template-react-vite-muijoy-tauri/src-tauri/icons/32x32.png +0 -0
  93. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
  94. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
  95. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
  96. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
  97. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
  98. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
  99. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
  100. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
  101. package/template-react-vite-muijoy-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
  102. package/template-react-vite-muijoy-tauri/src-tauri/icons/StoreLogo.png +0 -0
  103. package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.icns +0 -0
  104. package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.ico +0 -0
  105. package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.png +0 -0
  106. package/template-react-vite-muijoy-tauri/src-tauri/src/lib.rs +64 -0
  107. package/template-react-vite-muijoy-tauri/src-tauri/src/main.rs +6 -0
  108. package/template-react-vite-muijoy-tauri/src-tauri/src/steam.rs +238 -0
  109. package/template-react-vite-muijoy-tauri/src-tauri/tauri.conf.json +50 -0
  110. package/template-react-vite-muijoy-tauri/vite.config.ts +24 -0
  111. package/template-react-vite-muijoy-ink/src/content/labels/second.label.ts +0 -1207
  112. package/template-react-vite-muijoy-ink/src/content/labels/start.label.ts +0 -566
  113. package/template-react-vite-muijoy-ink-tauri/src/content/labels/second.label.ts +0 -1207
  114. package/template-react-vite-muijoy-ink-tauri/src/content/labels/start.label.ts +0 -566
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-pixi-vn",
3
3
  "description": "Create a new Pixi’VN project",
4
- "version": "2.0.12",
4
+ "version": "2.0.13",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0",
7
7
  "author": "DRincs-Productions",
@@ -3,6 +3,7 @@
3
3
  "ms-vscode.vscode-typescript-next",
4
4
  "anseki.vscode-color",
5
5
  "pflannery.vscode-versionlens",
6
- "biomejs.biome"
6
+ "biomejs.biome",
7
+ "drincs-productions.pixi-vn-ink-vscode"
7
8
  ]
8
9
  }
@@ -55,5 +55,10 @@
55
55
  // does fetch when he does Pull
56
56
  "git.fetchOnPull": true,
57
57
  // move file
58
- "js/ts.updateImportsOnFileMove.enabled": "always"
58
+ "js/ts.updateImportsOnFileMove.enabled": "always",
59
+ // ink
60
+ "ink.mainFile": "start.ink",
61
+ "ink.rootFolder": "ink",
62
+ "ink.markup": "Markdown",
63
+ "ink.engine": "pixi-vn"
59
64
  }
@@ -13,6 +13,7 @@ dist-ssr
13
13
  *.local
14
14
  .assetpack
15
15
  public/assets
16
+ public/ink-json
16
17
 
17
18
  # Editor directories and files
18
19
  .idea
@@ -0,0 +1,571 @@
1
+ -> second_part
2
+ === second_part ===
3
+
4
+ # show text bg "(A few minutes later...)" style \{ fontFamily: "Arial", dropShadow: \{ alpha: 0.8, angle: 2.1, blur: 4, color: "0x111111", distance: 10, \}, fill: "\#ffffff", stroke: \{ color: "\#004620", width: 12, join: "round" \}, fontSize: 60, fontWeight: "lighter" \} with fade
5
+ # edit text bg align 0.5
6
+ # pause
7
+
8
+ # resume all sounds
9
+ # show image bg bg02-dorm align 0 with fade
10
+ # play sound sfx_whoosh delay 0.4
11
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00] xAlign 0.5 yAlign 1 with movein direction right ease circInOut type spring delay 0.3
12
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00] xAlign 0.2 yAlign 1 with movein direction right ease anticipate delay 0.3
13
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00] xAlign 0.8 yAlign 1 with movein direction left ease easeInOut delay 0.3
14
+ She enters my room before I'VE even had a chance to.
15
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
16
+ <> \\n\\n...I could've just come back and gotten the platter later...
17
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
18
+ She sets it on a desk. I throw my two paper bags down beside the empty bed.
19
+
20
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
21
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
22
+ steph: They got you a new mattress, right?
23
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous01]
24
+ <>That last guy was a druggie, did [james] tell you that?
25
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
26
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-smile01]
27
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
28
+ sly: *We're* the reason he got expelled!
29
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
30
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset01]
31
+ steph: [sly]! If word gets out about that...
32
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-grin00]
33
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-nervous01]
34
+ <>well, actually, it wouldn't matter, *he's* the one who shot himself up.
35
+
36
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
37
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
38
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
39
+ I'm fumbling for a new subject.
40
+
41
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
42
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
43
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
44
+ mc: So, you're all family?
45
+
46
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
47
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
48
+ I realize too late
49
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
50
+ <>this topic is no better:
51
+
52
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
53
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
54
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
55
+ sly: Adopted family.
56
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
57
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
58
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
59
+ steph: [sly] and I were best friends growing up and [james] here needed a mama, so [sly] adopted him!
60
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
61
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
62
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
63
+ james: We're not actually related.
64
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
65
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
66
+ mc: ...
67
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
68
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
69
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
70
+ james: Yeah, I like to say that this last semester I was in *foster care*
71
+ <> and [sly] picked me up somewhere in there.
72
+ # show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-smile00]
73
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
74
+ sly: [james] is just a baby. A freshman like you!
75
+ # show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-annoy01]
76
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
77
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
78
+ james: And *you're* just a sophomore!
79
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-wow01]
80
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-wow01]
81
+ sly: I went to medical school for two years before coming here, I think that counts as *at least* 6 years!
82
+
83
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
84
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
85
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-upset00]
86
+ I'm dizzy, and my blood's rushing.
87
+
88
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
89
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
90
+ mc: Um... why did you switch degrees?
91
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
92
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
93
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-nervous00]
94
+ sly: My mom was all in the medical field,
95
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
96
+ <>and since I'm great with kids- I had 6-
97
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-neutral01]
98
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-upset01]
99
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
100
+ james: They were actually her siblings.
101
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
102
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset01]
103
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
104
+ sly: Yeah, whatever.
105
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
106
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
107
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
108
+ <>I tried it because I thought I'd love it,
109
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset01]
110
+ <>but I HATED it!
111
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
112
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
113
+ <>When we started getting into anatomy, I realized how *gross* the whole thing is. I changed diapers,
114
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-annoy00]
115
+ <>but that's a little different from changing *livers*, know what I mean?
116
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-annoy00]
117
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
118
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
119
+ mc: ...
120
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
121
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-smile01]
122
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
123
+ sly: So I'm trying out architecture now.
124
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
125
+ <>What are you going for, [mc]?
126
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
127
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
128
+ mc: ...uh... ...just getting my Gen Eds out of the way right now...
129
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
130
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
131
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
132
+ sly: Why not do that at a community college?
133
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
134
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile01]
135
+ steph: Did you get a full ride or something?
136
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
137
+ mc: ...yeah...
138
+
139
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
140
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
141
+ I knew this wouldn't go anywhere good.
142
+
143
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
144
+ sly: Are you going to go visit your parents on the weekend?
145
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
146
+ mc: ... .... ..
147
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
148
+ <>.... ..... ..... ... ... ..
149
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
150
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
151
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
152
+ james: It's no worry if you don't,
153
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
154
+ <>mine drive me crazy so I stay here.
155
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
156
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
157
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile01]
158
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
159
+ sly: You've gotta live close by, right? Nobody comes to this college from afar, sorry, we're just not that hot of a scene.
160
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
161
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
162
+ mc: ... ... .. . . ..
163
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
164
+ <>.. . ......... ... . ... .. .... ... .. . .
165
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
166
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
167
+ <>. ...... . . . . .. .. .. .... .
168
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
169
+ <>...
170
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
171
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
172
+ sly: 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.
173
+ # show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-annoy01]
174
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
175
+ james: At least, now that *Sven's*
176
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset00]
177
+ <>gone.
178
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-annoy00]
179
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
180
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset01]
181
+ steph: [james]! You don't have to refer to him by name!!
182
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral01]
183
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
184
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset00]
185
+ james: Why? [mc]'ll never meet him.
186
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
187
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-nervous01]
188
+ steph: Say, [mc], where's the rest of your luggage?
189
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
190
+ mc: ...
191
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
192
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
193
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
194
+ james: Is that all your luggage?
195
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-neutral01]
196
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
197
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset00]
198
+ <>Man, that sucks.
199
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
200
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-nervous00]
201
+ mc: ...
202
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
203
+ mc: So... um... what are you going for, [steph_fullname]?
204
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous01]
205
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
206
+ steph: Oh,
207
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
208
+ <>me?
209
+
210
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
211
+ I shouldn't have asked her. I shouldn't have directed a question at her. She reminds me too much...
212
+
213
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
214
+ steph: I'm going for childhood education!
215
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
216
+ <>Actually just have 1 more class; it wasn't available previous semester, so now I've got to take it this one!
217
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-smile00]
218
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile01]
219
+ steph: 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"*.
220
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
221
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
222
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile01]
223
+ steph: I think I've had plenty of it already, though.
224
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
225
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-smile01]
226
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
227
+ sly: Hey, *I* wouldn't let you go anyway.
228
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
229
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
230
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-nervous01]
231
+ steph: ...we'd see each other still.
232
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
233
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-upset00]
234
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
235
+ james: I'm going for computer science.
236
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
237
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
238
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-nervous00]
239
+ mc: Oh, cool! You like computers?
240
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
241
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-serious00]
242
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-upset00]
243
+ james: Yeah, I used to use MS Paint all the time. Now I want to step up my game.
244
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern01]
245
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-upset00]
246
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
247
+ james: I also installed Windows once. I just think computer skills are important.
248
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
249
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile01]
250
+ sly: [steph] 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.
251
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
252
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
253
+ james: Haha, [sly] thinks I made a rash decision, but I think computers are what I wanna do with my life.
254
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
255
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
256
+ steph: [james], you gotta figure out what you want to *do* in computers. You're not seeing the trees for the forest.
257
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral01]
258
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
259
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
260
+ james: ...I think you said that wrong.
261
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
262
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
263
+ steph: 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!
264
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
265
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
266
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
267
+ james: I'll be fine!
268
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-neutral00]
269
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
270
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
271
+ steph: Death.
272
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
273
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-neutral01]
274
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
275
+ james: ...hey [mc], are you okay?
276
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-neutral00]
277
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
278
+ mc: So, what snacks did you bring?
279
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-neutral00]
280
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
281
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
282
+ steph: Oh!
283
+
284
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
285
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
286
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
287
+ She opens the tray. Inside are cookies, brownies, candies, a pie, cake pieces...
288
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
289
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
290
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
291
+ <>[james] quickly grabs a few.
292
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
293
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
294
+ <>[sly] takes some too.
295
+
296
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
297
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
298
+ mc: How do you bake all this?!
299
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
300
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
301
+ steph: Baking helps me relax. It's really no work for me, and it's a good way to unwind!
302
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
303
+ mc: ...I had to do all the cooking as a kid.
304
+
305
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
306
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
307
+ ...did I just let that slip?
308
+
309
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
310
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
311
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
312
+ steph: Awesome!
313
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
314
+ <>Maybe we can swap recipes sometime!
315
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
316
+ mc: I can do... I don't need... I mean...
317
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
318
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
319
+ james: "You can do?" Is that what the kids are saying today?
320
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
321
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile01]
322
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
323
+ sly: [james], you *are* a kid!
324
+ # show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-smile01]
325
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
326
+ james: [sly], I am so out of the loop!
327
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
328
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
329
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
330
+ sly: Well, then, [mc], we'll have to try out your cooking someday!
331
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
332
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
333
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
334
+ steph: Oh!
335
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-smile01]
336
+ <>If you want...
337
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
338
+ <>you can even come over today!
339
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
340
+ <>You'll be surprised what you can make in a dorm with some know-how and tricks!
341
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-smile01]
342
+ <>*Did you know you can make cake in a microwave?!?!*
343
+
344
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
345
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
346
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
347
+ They can see I'm stressing out. I push it all down.
348
+
349
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
350
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
351
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
352
+ sly: ...It's fine to be scared.
353
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
354
+ mc: ?!
355
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
356
+ sly: 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.
357
+
358
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
359
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
360
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-nervous00]
361
+ ...they have no idea. But I'm glad.
362
+
363
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
364
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile01]
365
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
366
+ sly: ...that's right.
367
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
368
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
369
+ james: ...who told you you're a scary guy, [mc]?
370
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
371
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
372
+ <>You don't seem scary at all.
373
+ mc: My mom.
374
+
375
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
376
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious01]
377
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
378
+ I just said that.
379
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
380
+ <>Why?
381
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
382
+ Crap. Crap crap crap. Why am I crying?
383
+
384
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous01]
385
+ steph: Are you okay?
386
+
387
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
388
+ [sly] comes over and sits down beside me. She locks eyes with me.
389
+
390
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern00]
391
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious01]
392
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
393
+ sly: ...why are you scary?
394
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
395
+ mc: ...
396
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-annoy00]
397
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious01]
398
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
399
+ sly: Is that why your parents sent you here?
400
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-annoy01]
401
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
402
+ james: [sly]!
403
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-neutral00]
404
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
405
+ mc: ...
406
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern00]
407
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous01]
408
+ steph: ...I can't imagine being told by your own *mother* you're scary.
409
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
410
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
411
+ mc: ...
412
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-concern00]
413
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-nervous01]
414
+ steph: ...but if you really *were*, I suspect you wouldn't be here.
415
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-smile01]
416
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-upset00]
417
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
418
+ james: ...Right?
419
+
420
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
421
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
422
+ ...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.
423
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
424
+ By telling them the truth.
425
+
426
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
427
+ mc: ...I'm the reason...
428
+ mc: ...
429
+
430
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
431
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
432
+ If I tell them the truth, they'll leave me alone.
433
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
434
+ ...and I won't risk hurting any of *them* too.
435
+
436
+ mc: ...Mom committed suicide because of me...
437
+
438
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-concern00]
439
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
440
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
441
+ ...
442
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
443
+ ...why don't they leave?
444
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern00]
445
+ That's right, [sly]'s looking out for [james].
446
+ 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.
447
+
448
+ mc: ...she was...
449
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
450
+ mc: ...
451
+
452
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern00]
453
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
454
+ They just look at me sadly.
455
+
456
+ mc: ...addicted to heroin and I couldn't tell *anyone*.
457
+ mc: ...told me she'd gut me like a pig if I did.
458
+ mc: I recommended to her...
459
+ mc: ...
460
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
461
+ mc: ...I recommend to her "why don't you end this?" I told her I *hated* her.
462
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
463
+ <>*And* what she did to my little sister...
464
+
465
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-concern00]
466
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-upset00]
467
+ Crap, now I look like the villain again. But I *am*. Aren't I?
468
+
469
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
470
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
471
+ mc: ...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.
472
+ # show imagecontainer james [m01-body m01-eyes-concern m01-mouth-concern00]
473
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
474
+ mc: The police were coming though, because... because I called them. Because mean people were coming to hurt Mom.
475
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
476
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
477
+ mc: She couldn't have that. I'd just royally
478
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
479
+ <>$%*@!& up, and
480
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
481
+ <>she threatened to *kill* me, but... she couldn't bring herself to do it.
482
+ mc: She had a few days' supply of heroin. She...
483
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-concern00]
484
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
485
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
486
+ <>she took it all at once.
487
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
488
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious01]
489
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
490
+ mc: 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.
491
+ # show imagecontainer james [m01-body m01-eyes-wow m01-mouth-cry00]
492
+ mc: Those were the last words I heard from her.
493
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
494
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
495
+ mc: My sister and I were taken to be put into foster care. We were told we would be together,
496
+ <>but we were put into separate homes.
497
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
498
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
499
+ mc: ...nobody wanted to adopt me; I was 15 at the time my mom killed herself. Teens don't get adopted.
500
+ mc: And when the first potential couple came in and heard about my story, they blamed
501
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
502
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-nervous00]
503
+ <>me for everything-
504
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious01]
505
+ # show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
506
+ <>called me a "demon spawn"- and left
507
+ # show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
508
+ <>in a huff.
509
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
510
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-upset00]
511
+ mc: ...I never got another chance.
512
+ mc: 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?
513
+ mc: I'm amazed that I got a room at all; just two weeks ago they said there was *nothing*.
514
+
515
+ mc: ...so there. Have I finally scared you away?
516
+ # show imagecontainer james [m01-body m01-eyes-cry m01-mouth-cry00]
517
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft00]
518
+ # show imagecontainer steph [fm02-body fm02-eyes-bawl fm02-mouth-cry01]
519
+ mc: I don't want to look at any of them.
520
+ mc: A hand gently rubs my back.
521
+ sly: You don't really want us to leave, do you?
522
+ mc: ?!?!
523
+ sly: ...
524
+ sly: ...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.
525
+ sly: It wasn't your fault.
526
+ I burst out crying.
527
+ mc: ...I look like such an idiot.
528
+ sly: 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.
529
+ I can't stop.
530
+ steph: You did the best you knew how.
531
+ I feel a tissue press against my hands. I suddenly realize that snot is dripping through my fingers. Gross.
532
+
533
+ # show imagecontainer james [m01-body m01-eyes-cry m01-mouth-smile01]
534
+ james: I cried for like a week when I first came. These two are champs, don't worry about it.
535
+ # show imagecontainer james [m01-body m01-eyes-cry m01-mouth-smile00]
536
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft01]
537
+ # show imagecontainer steph [fm02-body fm02-eyes-bawl fm02-mouth-cry01]
538
+ sly: So, be honest with us right now.
539
+ # show imagecontainer james [m01-body m01-eyes-cry m01-mouth-neutral00]
540
+ <>*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.
541
+ # show imagecontainer steph [fm02-body fm02-eyes-bawl fm02-mouth-nervous01]
542
+ sly: Will you be honest with your feelings and with us?
543
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft00]
544
+ mc: ...yes.
545
+ # show imagecontainer james [m01-body m01-eyes-cry m01-mouth-smile00]
546
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft01]
547
+ # show imagecontainer steph [fm02-body fm02-eyes-bawl fm02-mouth-nervous00]
548
+ sly: Are you willing to try being a friend and having friends?
549
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft00]
550
+ # show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
551
+ mc: ...
552
+ # show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-soft01]
553
+ # show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
554
+ sly: Because I'm willing to give you a shot.
555
+ # show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
556
+ # show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-soft00]
557
+ # show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
558
+ mc: ...absolutely.
559
+
560
+ # show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-soft00]
561
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
562
+ I feel lighter. A wave of something I'm not sure I've ever felt washes over me.
563
+ It's peace; it's rest; it's something different.
564
+ Like, even though it'll be hard, maybe I could actually be open here.
565
+ I think this is the beginning of what people call...
566
+ # show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
567
+ # show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
568
+ # show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
569
+ ...freedom...
570
+
571
+ -> DONE