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
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
-> start
|
|
2
|
+
INCLUDE second_part.ink
|
|
3
|
+
|
|
4
|
+
=== start ===
|
|
5
|
+
# lazyload bundle m01 fm01 fm02
|
|
6
|
+
|
|
7
|
+
# show image bg bg01-hallway
|
|
8
|
+
# play sound sfx_whoosh delay 0.1
|
|
9
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral01] xAlign 0.5 yAlign 1 with movein direction right ease circInOut type spring
|
|
10
|
+
james: You're my roommate's replacement, huh?
|
|
11
|
+
# play sound sfx_whoosh channel bgm loop true
|
|
12
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
|
|
13
|
+
james: Don't worry, you don't have much to live up to. Just don't use heroin like the last guy, and you'll be fine!
|
|
14
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
|
|
15
|
+
mc: ...
|
|
16
|
+
|
|
17
|
+
He thrusts out his hand.
|
|
18
|
+
# request input type string default Peter
|
|
19
|
+
What is your name?
|
|
20
|
+
# rename mc { _input_value_ }
|
|
21
|
+
|
|
22
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
|
|
23
|
+
james: [james]!
|
|
24
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
25
|
+
mc: ...[mc].
|
|
26
|
+
|
|
27
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
|
|
28
|
+
I take his hand and shake.
|
|
29
|
+
|
|
30
|
+
# show imagecontainer james [m01-body m01-eyes-wow m01-mouth-wow01]
|
|
31
|
+
james: Ooh, [mc]! Nice, firm handshake!
|
|
32
|
+
# show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-annoy01]
|
|
33
|
+
<>The last guy always gave me the dead fish.
|
|
34
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
|
|
35
|
+
<>I already think we're gonna get along fine.
|
|
36
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
|
|
37
|
+
james: Come on in and...
|
|
38
|
+
# show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-smile01]
|
|
39
|
+
james: ...
|
|
40
|
+
# show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-annoy01]
|
|
41
|
+
james: I know you're both watching, come on out already!
|
|
42
|
+
|
|
43
|
+
# play sound sfx_whoosh delay 0.1
|
|
44
|
+
# show imagecontainer james [m01-body m01-eyes-annoy m01-mouth-annoy00]
|
|
45
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-soft01] xAlign 0.2 yAlign 1 with movein direction right ease anticipate
|
|
46
|
+
# show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00] xAlign 0.8 yAlign 1 with movein direction left ease easeInOut
|
|
47
|
+
sly: I just wanted to see what the new guy was like.
|
|
48
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile01]
|
|
49
|
+
<><span className="inline-block motion-translate-y-loop-25">Hey</span>, you, [mc]- be nice to our little brother,
|
|
50
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-grin00]
|
|
51
|
+
<>or you'll have to deal with *us*.
|
|
52
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-neutral00]
|
|
53
|
+
# show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
|
|
54
|
+
# show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
|
|
55
|
+
mc: ...
|
|
56
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
|
|
57
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
|
|
58
|
+
james: [mc], this is [sly].
|
|
59
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile00]
|
|
60
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
|
|
61
|
+
<>Yes, that is her real name.
|
|
62
|
+
|
|
63
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile00]
|
|
64
|
+
I put out my hand.
|
|
65
|
+
|
|
66
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
67
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset01]
|
|
68
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
|
|
69
|
+
sly: I'm not shakin' your hand until I decide you're an all-right dude.
|
|
70
|
+
# show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-serious01]
|
|
71
|
+
# show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-nervous00]
|
|
72
|
+
<>Sorry, policy.
|
|
73
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
74
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-smile00]
|
|
75
|
+
mc: Fair enough, I'm a pretty scary guy, or so I've been told.
|
|
76
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
|
|
77
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious01]
|
|
78
|
+
# show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
|
|
79
|
+
james: The redhead behind her is [steph_fullname].
|
|
80
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
81
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
|
|
82
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
|
|
83
|
+
steph: Hey! Everyone calls me [steph]. I'll shake your hand.
|
|
84
|
+
|
|
85
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
|
|
86
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
|
|
87
|
+
# show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
|
|
88
|
+
She puts out her hand, and I take it.
|
|
89
|
+
|
|
90
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
|
|
91
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
|
|
92
|
+
mc: Thanks, good to meet you, [steph_fullname].
|
|
93
|
+
# show imagecontainer james [m01-body m01-eyes-wow m01-mouth-smile00]
|
|
94
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
|
|
95
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
|
|
96
|
+
steph: WOW, that is, like, the most perfect handshake I've ever had! Firm, but also gentle.
|
|
97
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
|
|
98
|
+
<>[sly], you *gotta* shake his hand!
|
|
99
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
100
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious01]
|
|
101
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
|
|
102
|
+
sly: It's just a handshake...
|
|
103
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
|
|
104
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
|
|
105
|
+
# show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
|
|
106
|
+
steph: <span className="inline-block animate-wave">Then just give it to him!</span>
|
|
107
|
+
# show imagecontainer james [m01-body m01-eyes-concern m01-mouth-smile01]
|
|
108
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
|
|
109
|
+
# show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset00]
|
|
110
|
+
james: Don't worry, [mc], she's just giving you the run-down. She's kinda like a father
|
|
111
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
|
|
112
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-wow01]
|
|
113
|
+
<>...
|
|
114
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
|
|
115
|
+
<>I mean a mother... to us.
|
|
116
|
+
|
|
117
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
|
|
118
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
|
|
119
|
+
[sly] thrusts her hand out to shake mine.
|
|
120
|
+
|
|
121
|
+
# show imagecontainer james [m01-body m01-eyes-wow m01-mouth-wow01]
|
|
122
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset01]
|
|
123
|
+
# show imagecontainer steph [fm02-body fm02-eyes-nervous fm02-mouth-smile00]
|
|
124
|
+
sly: Like a father?!?!
|
|
125
|
+
|
|
126
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-grin00]
|
|
127
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
|
|
128
|
+
I'm afraid to take her hand when she's mad, but I do.
|
|
129
|
+
|
|
130
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
131
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-wow01]
|
|
132
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
|
|
133
|
+
sly: Wow, that was a good handshake...
|
|
134
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
|
|
135
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-smile01]
|
|
136
|
+
# show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
|
|
137
|
+
james: Well, I mean, you are *kinda* acting like a father.
|
|
138
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile01]
|
|
139
|
+
# show imagecontainer sly [fm01-body fm01-eyes-soft fm01-mouth-serious00]
|
|
140
|
+
<>Like, I can totally see it: I'm the daughter, and you as my father,
|
|
141
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-nervous00]
|
|
142
|
+
<>you want to make sure I'm going out with the right guy...
|
|
143
|
+
# show imagecontainer james [m01-body m01-eyes-concern m01-mouth-smile01]
|
|
144
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-serious00]
|
|
145
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset00]
|
|
146
|
+
<>or something...
|
|
147
|
+
# show imagecontainer james [m01-body m01-eyes-concern m01-mouth-grin00]
|
|
148
|
+
mc: ...
|
|
149
|
+
# show imagecontainer sly [fm01-body fm01-eyes-upset fm01-mouth-upset00]
|
|
150
|
+
sly: ...
|
|
151
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
152
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-wow01]
|
|
153
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
|
|
154
|
+
steph: ...BWAHAHA!!!!!
|
|
155
|
+
# show imagecontainer sly [fm01-body fm01-eyes-wow fm01-mouth-serious00]
|
|
156
|
+
<>JAMES!!!! WHAAAAT?????? YOU'RE SO AWKWARD!!!!
|
|
157
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
|
|
158
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
|
|
159
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
|
|
160
|
+
mc: O-*kay*, I'm gonna go get settled in-
|
|
161
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
|
|
162
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
|
|
163
|
+
steph: Wait!
|
|
164
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile01]
|
|
165
|
+
<>I've got a gift for you!
|
|
166
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
|
|
167
|
+
mc: ...?
|
|
168
|
+
# show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-smile01]
|
|
169
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-upset00]
|
|
170
|
+
sly: It's food.
|
|
171
|
+
# show imagecontainer james [m01-body m01-eyes-concern m01-mouth-grin00]
|
|
172
|
+
# show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-grin00]
|
|
173
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
|
|
174
|
+
steph: [sly]!
|
|
175
|
+
# show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
|
|
176
|
+
<>SPOILERS!!!!
|
|
177
|
+
|
|
178
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
179
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-smile00]
|
|
180
|
+
# show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-nervous00]
|
|
181
|
+
# play sound sfx_whoosh delay 0.1
|
|
182
|
+
# remove image steph with moveout direction left ease easeInOut
|
|
183
|
+
[steph_fullname] goes through the opposite door,
|
|
184
|
+
# play sound sfx_whoosh delay 0.1
|
|
185
|
+
<- animation_01
|
|
186
|
+
<>and returns with a HUGE tinfoil-covered platter.
|
|
187
|
+
|
|
188
|
+
# show imagecontainer james [m01-body m01-eyes-concern m01-mouth-smile01]
|
|
189
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
|
|
190
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
|
|
191
|
+
james: Looks like you baked way too much again.
|
|
192
|
+
# show imagecontainer james [m01-body m01-eyes-grin m01-mouth-grin00]
|
|
193
|
+
# show imagecontainer sly [fm01-body fm01-eyes-grin fm01-mouth-serious00]
|
|
194
|
+
# show imagecontainer steph [fm02-body fm02-eyes-upset fm02-mouth-upset01]
|
|
195
|
+
steph: He doesn't have to know that!!!
|
|
196
|
+
# show imagecontainer james [m01-body m01-eyes-smile m01-mouth-smile00]
|
|
197
|
+
# show imagecontainer sly [fm01-body fm01-eyes-smile fm01-mouth-serious00]
|
|
198
|
+
# show imagecontainer steph [fm02-body fm02-eyes-joy fm02-mouth-smile00]
|
|
199
|
+
mc: ...thanks... um...
|
|
200
|
+
# show imagecontainer steph [fm02-body fm02-eyes-wow fm02-mouth-wow01]
|
|
201
|
+
steph: Oh! You gotta take in your luggage!
|
|
202
|
+
|
|
203
|
+
# pause all sounds
|
|
204
|
+
# show imagecontainer steph [fm02-body fm02-eyes-smile fm02-mouth-smile00]
|
|
205
|
+
# play sound sfx_whoosh delay 0.1
|
|
206
|
+
# remove image james with moveout direction right ease circInOut type spring duration 0.5 delay 0.05
|
|
207
|
+
# remove image sly with moveout direction right ease anticipate duration 0.5
|
|
208
|
+
# remove image steph with moveout direction left ease easeInOut duration 0.5 delay 0.1
|
|
209
|
+
|
|
210
|
+
You want continue to the next part?<># continue
|
|
211
|
+
* Yes, I want to continue
|
|
212
|
+
-> second_part
|
|
213
|
+
* No, I want to stop here
|
|
214
|
+
-> END
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui/react": "^1.5.0",
|
|
13
13
|
"@drincs/pixi-vn": "^1.8.13",
|
|
14
|
+
"@drincs/pixi-vn-ink": "^1.0.5",
|
|
14
15
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
15
16
|
"@tailwindcss/vite": "^4.3.0",
|
|
16
17
|
"@tanstack/hotkeys": "^0.8.0",
|
|
@@ -52,7 +53,8 @@
|
|
|
52
53
|
"tailwind-merge": "^3.6.0",
|
|
53
54
|
"tailwindcss": "^4.3.0",
|
|
54
55
|
"tw-animate-css": "^1.4.0",
|
|
55
|
-
"vaul": "^1.1.2"
|
|
56
|
+
"vaul": "^1.1.2",
|
|
57
|
+
"zod": "^4.4.3"
|
|
56
58
|
},
|
|
57
59
|
"devDependencies": {
|
|
58
60
|
"@assetpack/core": "^1.7.0",
|
|
@@ -2140,6 +2142,43 @@
|
|
|
2140
2142
|
}
|
|
2141
2143
|
}
|
|
2142
2144
|
},
|
|
2145
|
+
"node_modules/@drincs/pixi-vn-ink": {
|
|
2146
|
+
"version": "1.0.5",
|
|
2147
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-ink/-/pixi-vn-ink-1.0.5.tgz",
|
|
2148
|
+
"integrity": "sha512-oYp4xkp2MQJHebyDfnD90U3dtSZ/9ARwMehg1OvMwR7MRbpske9NNM6OJ9ijA68j/1TPJP/LUuDPpdNmDQwcRQ==",
|
|
2149
|
+
"license": "LGPL-2.1",
|
|
2150
|
+
"workspaces": [
|
|
2151
|
+
"playground"
|
|
2152
|
+
],
|
|
2153
|
+
"dependencies": {
|
|
2154
|
+
"@drincs/pixi-vn-json": "^1.13.9"
|
|
2155
|
+
},
|
|
2156
|
+
"funding": {
|
|
2157
|
+
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2158
|
+
},
|
|
2159
|
+
"peerDependencies": {
|
|
2160
|
+
"@drincs/pixi-vn": ">=1.8.0",
|
|
2161
|
+
"zod": ">=4.4.0"
|
|
2162
|
+
},
|
|
2163
|
+
"peerDependenciesMeta": {
|
|
2164
|
+
"vite": {
|
|
2165
|
+
"optional": true
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
"node_modules/@drincs/pixi-vn-json": {
|
|
2170
|
+
"version": "1.13.9",
|
|
2171
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-json/-/pixi-vn-json-1.13.9.tgz",
|
|
2172
|
+
"integrity": "sha512-l3pXcQBEfR/5ZBKI5Foo5hoRXGP6J73iU+84r2fB4lMIc/+oT6vuU/qws0vtf/pTJ4JR/fAU2eN1yHlY0HgpEQ==",
|
|
2173
|
+
"license": "LGPL-2.1",
|
|
2174
|
+
"funding": {
|
|
2175
|
+
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2176
|
+
},
|
|
2177
|
+
"peerDependencies": {
|
|
2178
|
+
"@drincs/pixi-vn": ">=1.8.0",
|
|
2179
|
+
"zod": ">=4.4.0"
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2143
2182
|
"node_modules/@drincs/pixi-vn-spine": {
|
|
2144
2183
|
"version": "0.2.1",
|
|
2145
2184
|
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-spine/-/pixi-vn-spine-0.2.1.tgz",
|
|
@@ -3231,6 +3270,16 @@
|
|
|
3231
3270
|
"node": ">=18"
|
|
3232
3271
|
}
|
|
3233
3272
|
},
|
|
3273
|
+
"node_modules/@jimp/plugin-blit/node_modules/zod": {
|
|
3274
|
+
"version": "3.25.76",
|
|
3275
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3276
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3277
|
+
"dev": true,
|
|
3278
|
+
"license": "MIT",
|
|
3279
|
+
"funding": {
|
|
3280
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3234
3283
|
"node_modules/@jimp/plugin-blur": {
|
|
3235
3284
|
"version": "1.6.1",
|
|
3236
3285
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-1.6.1.tgz",
|
|
@@ -3259,6 +3308,16 @@
|
|
|
3259
3308
|
"node": ">=18"
|
|
3260
3309
|
}
|
|
3261
3310
|
},
|
|
3311
|
+
"node_modules/@jimp/plugin-circle/node_modules/zod": {
|
|
3312
|
+
"version": "3.25.76",
|
|
3313
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3314
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3315
|
+
"dev": true,
|
|
3316
|
+
"license": "MIT",
|
|
3317
|
+
"funding": {
|
|
3318
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3319
|
+
}
|
|
3320
|
+
},
|
|
3262
3321
|
"node_modules/@jimp/plugin-color": {
|
|
3263
3322
|
"version": "1.6.1",
|
|
3264
3323
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-1.6.1.tgz",
|
|
@@ -3276,6 +3335,16 @@
|
|
|
3276
3335
|
"node": ">=18"
|
|
3277
3336
|
}
|
|
3278
3337
|
},
|
|
3338
|
+
"node_modules/@jimp/plugin-color/node_modules/zod": {
|
|
3339
|
+
"version": "3.25.76",
|
|
3340
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3341
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3342
|
+
"dev": true,
|
|
3343
|
+
"license": "MIT",
|
|
3344
|
+
"funding": {
|
|
3345
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3346
|
+
}
|
|
3347
|
+
},
|
|
3279
3348
|
"node_modules/@jimp/plugin-contain": {
|
|
3280
3349
|
"version": "1.6.1",
|
|
3281
3350
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-1.6.1.tgz",
|
|
@@ -3294,6 +3363,16 @@
|
|
|
3294
3363
|
"node": ">=18"
|
|
3295
3364
|
}
|
|
3296
3365
|
},
|
|
3366
|
+
"node_modules/@jimp/plugin-contain/node_modules/zod": {
|
|
3367
|
+
"version": "3.25.76",
|
|
3368
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3369
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3370
|
+
"dev": true,
|
|
3371
|
+
"license": "MIT",
|
|
3372
|
+
"funding": {
|
|
3373
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3297
3376
|
"node_modules/@jimp/plugin-cover": {
|
|
3298
3377
|
"version": "1.6.1",
|
|
3299
3378
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-1.6.1.tgz",
|
|
@@ -3311,6 +3390,16 @@
|
|
|
3311
3390
|
"node": ">=18"
|
|
3312
3391
|
}
|
|
3313
3392
|
},
|
|
3393
|
+
"node_modules/@jimp/plugin-cover/node_modules/zod": {
|
|
3394
|
+
"version": "3.25.76",
|
|
3395
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3396
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3397
|
+
"dev": true,
|
|
3398
|
+
"license": "MIT",
|
|
3399
|
+
"funding": {
|
|
3400
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3401
|
+
}
|
|
3402
|
+
},
|
|
3314
3403
|
"node_modules/@jimp/plugin-crop": {
|
|
3315
3404
|
"version": "1.6.1",
|
|
3316
3405
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-1.6.1.tgz",
|
|
@@ -3327,6 +3416,16 @@
|
|
|
3327
3416
|
"node": ">=18"
|
|
3328
3417
|
}
|
|
3329
3418
|
},
|
|
3419
|
+
"node_modules/@jimp/plugin-crop/node_modules/zod": {
|
|
3420
|
+
"version": "3.25.76",
|
|
3421
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3422
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3423
|
+
"dev": true,
|
|
3424
|
+
"license": "MIT",
|
|
3425
|
+
"funding": {
|
|
3426
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3427
|
+
}
|
|
3428
|
+
},
|
|
3330
3429
|
"node_modules/@jimp/plugin-displace": {
|
|
3331
3430
|
"version": "1.6.1",
|
|
3332
3431
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-1.6.1.tgz",
|
|
@@ -3342,6 +3441,16 @@
|
|
|
3342
3441
|
"node": ">=18"
|
|
3343
3442
|
}
|
|
3344
3443
|
},
|
|
3444
|
+
"node_modules/@jimp/plugin-displace/node_modules/zod": {
|
|
3445
|
+
"version": "3.25.76",
|
|
3446
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3447
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3448
|
+
"dev": true,
|
|
3449
|
+
"license": "MIT",
|
|
3450
|
+
"funding": {
|
|
3451
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3452
|
+
}
|
|
3453
|
+
},
|
|
3345
3454
|
"node_modules/@jimp/plugin-dither": {
|
|
3346
3455
|
"version": "1.6.1",
|
|
3347
3456
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-1.6.1.tgz",
|
|
@@ -3370,6 +3479,16 @@
|
|
|
3370
3479
|
"node": ">=18"
|
|
3371
3480
|
}
|
|
3372
3481
|
},
|
|
3482
|
+
"node_modules/@jimp/plugin-fisheye/node_modules/zod": {
|
|
3483
|
+
"version": "3.25.76",
|
|
3484
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3485
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3486
|
+
"dev": true,
|
|
3487
|
+
"license": "MIT",
|
|
3488
|
+
"funding": {
|
|
3489
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3490
|
+
}
|
|
3491
|
+
},
|
|
3373
3492
|
"node_modules/@jimp/plugin-flip": {
|
|
3374
3493
|
"version": "1.6.1",
|
|
3375
3494
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-1.6.1.tgz",
|
|
@@ -3384,6 +3503,16 @@
|
|
|
3384
3503
|
"node": ">=18"
|
|
3385
3504
|
}
|
|
3386
3505
|
},
|
|
3506
|
+
"node_modules/@jimp/plugin-flip/node_modules/zod": {
|
|
3507
|
+
"version": "3.25.76",
|
|
3508
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3509
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3510
|
+
"dev": true,
|
|
3511
|
+
"license": "MIT",
|
|
3512
|
+
"funding": {
|
|
3513
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3514
|
+
}
|
|
3515
|
+
},
|
|
3387
3516
|
"node_modules/@jimp/plugin-hash": {
|
|
3388
3517
|
"version": "1.6.1",
|
|
3389
3518
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-hash/-/plugin-hash-1.6.1.tgz",
|
|
@@ -3420,6 +3549,16 @@
|
|
|
3420
3549
|
"node": ">=18"
|
|
3421
3550
|
}
|
|
3422
3551
|
},
|
|
3552
|
+
"node_modules/@jimp/plugin-mask/node_modules/zod": {
|
|
3553
|
+
"version": "3.25.76",
|
|
3554
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3555
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3556
|
+
"dev": true,
|
|
3557
|
+
"license": "MIT",
|
|
3558
|
+
"funding": {
|
|
3559
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3560
|
+
}
|
|
3561
|
+
},
|
|
3423
3562
|
"node_modules/@jimp/plugin-print": {
|
|
3424
3563
|
"version": "1.6.1",
|
|
3425
3564
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-1.6.1.tgz",
|
|
@@ -3442,6 +3581,16 @@
|
|
|
3442
3581
|
"node": ">=18"
|
|
3443
3582
|
}
|
|
3444
3583
|
},
|
|
3584
|
+
"node_modules/@jimp/plugin-print/node_modules/zod": {
|
|
3585
|
+
"version": "3.25.76",
|
|
3586
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3587
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3588
|
+
"dev": true,
|
|
3589
|
+
"license": "MIT",
|
|
3590
|
+
"funding": {
|
|
3591
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3592
|
+
}
|
|
3593
|
+
},
|
|
3445
3594
|
"node_modules/@jimp/plugin-quantize": {
|
|
3446
3595
|
"version": "1.6.1",
|
|
3447
3596
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-quantize/-/plugin-quantize-1.6.1.tgz",
|
|
@@ -3456,6 +3605,16 @@
|
|
|
3456
3605
|
"node": ">=18"
|
|
3457
3606
|
}
|
|
3458
3607
|
},
|
|
3608
|
+
"node_modules/@jimp/plugin-quantize/node_modules/zod": {
|
|
3609
|
+
"version": "3.25.76",
|
|
3610
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3611
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3612
|
+
"dev": true,
|
|
3613
|
+
"license": "MIT",
|
|
3614
|
+
"funding": {
|
|
3615
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3459
3618
|
"node_modules/@jimp/plugin-resize": {
|
|
3460
3619
|
"version": "1.6.1",
|
|
3461
3620
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-1.6.1.tgz",
|
|
@@ -3471,6 +3630,16 @@
|
|
|
3471
3630
|
"node": ">=18"
|
|
3472
3631
|
}
|
|
3473
3632
|
},
|
|
3633
|
+
"node_modules/@jimp/plugin-resize/node_modules/zod": {
|
|
3634
|
+
"version": "3.25.76",
|
|
3635
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3636
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3637
|
+
"dev": true,
|
|
3638
|
+
"license": "MIT",
|
|
3639
|
+
"funding": {
|
|
3640
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3641
|
+
}
|
|
3642
|
+
},
|
|
3474
3643
|
"node_modules/@jimp/plugin-rotate": {
|
|
3475
3644
|
"version": "1.6.1",
|
|
3476
3645
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-1.6.1.tgz",
|
|
@@ -3489,6 +3658,16 @@
|
|
|
3489
3658
|
"node": ">=18"
|
|
3490
3659
|
}
|
|
3491
3660
|
},
|
|
3661
|
+
"node_modules/@jimp/plugin-rotate/node_modules/zod": {
|
|
3662
|
+
"version": "3.25.76",
|
|
3663
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3664
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3665
|
+
"dev": true,
|
|
3666
|
+
"license": "MIT",
|
|
3667
|
+
"funding": {
|
|
3668
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3669
|
+
}
|
|
3670
|
+
},
|
|
3492
3671
|
"node_modules/@jimp/plugin-threshold": {
|
|
3493
3672
|
"version": "1.6.1",
|
|
3494
3673
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-1.6.1.tgz",
|
|
@@ -3507,6 +3686,16 @@
|
|
|
3507
3686
|
"node": ">=18"
|
|
3508
3687
|
}
|
|
3509
3688
|
},
|
|
3689
|
+
"node_modules/@jimp/plugin-threshold/node_modules/zod": {
|
|
3690
|
+
"version": "3.25.76",
|
|
3691
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3692
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3693
|
+
"dev": true,
|
|
3694
|
+
"license": "MIT",
|
|
3695
|
+
"funding": {
|
|
3696
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3697
|
+
}
|
|
3698
|
+
},
|
|
3510
3699
|
"node_modules/@jimp/types": {
|
|
3511
3700
|
"version": "1.6.1",
|
|
3512
3701
|
"resolved": "https://registry.npmjs.org/@jimp/types/-/types-1.6.1.tgz",
|
|
@@ -3520,6 +3709,16 @@
|
|
|
3520
3709
|
"node": ">=18"
|
|
3521
3710
|
}
|
|
3522
3711
|
},
|
|
3712
|
+
"node_modules/@jimp/types/node_modules/zod": {
|
|
3713
|
+
"version": "3.25.76",
|
|
3714
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3715
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3716
|
+
"dev": true,
|
|
3717
|
+
"license": "MIT",
|
|
3718
|
+
"funding": {
|
|
3719
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3523
3722
|
"node_modules/@jimp/utils": {
|
|
3524
3723
|
"version": "1.6.1",
|
|
3525
3724
|
"resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-1.6.1.tgz",
|
|
@@ -6494,6 +6693,15 @@
|
|
|
6494
6693
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6495
6694
|
}
|
|
6496
6695
|
},
|
|
6696
|
+
"node_modules/@tanstack/router-generator/node_modules/zod": {
|
|
6697
|
+
"version": "3.25.76",
|
|
6698
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6699
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6700
|
+
"license": "MIT",
|
|
6701
|
+
"funding": {
|
|
6702
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6703
|
+
}
|
|
6704
|
+
},
|
|
6497
6705
|
"node_modules/@tanstack/router-plugin": {
|
|
6498
6706
|
"version": "1.167.35",
|
|
6499
6707
|
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.167.35.tgz",
|
|
@@ -6594,6 +6802,15 @@
|
|
|
6594
6802
|
"node": ">=8.10.0"
|
|
6595
6803
|
}
|
|
6596
6804
|
},
|
|
6805
|
+
"node_modules/@tanstack/router-plugin/node_modules/zod": {
|
|
6806
|
+
"version": "3.25.76",
|
|
6807
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6808
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6809
|
+
"license": "MIT",
|
|
6810
|
+
"funding": {
|
|
6811
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6812
|
+
}
|
|
6813
|
+
},
|
|
6597
6814
|
"node_modules/@tanstack/router-utils": {
|
|
6598
6815
|
"version": "1.161.8",
|
|
6599
6816
|
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.161.8.tgz",
|
|
@@ -15653,6 +15870,15 @@
|
|
|
15653
15870
|
"node": ">=4"
|
|
15654
15871
|
}
|
|
15655
15872
|
},
|
|
15873
|
+
"node_modules/shadcn/node_modules/zod": {
|
|
15874
|
+
"version": "3.25.76",
|
|
15875
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
15876
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
15877
|
+
"license": "MIT",
|
|
15878
|
+
"funding": {
|
|
15879
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
15880
|
+
}
|
|
15881
|
+
},
|
|
15656
15882
|
"node_modules/shade-generator": {
|
|
15657
15883
|
"version": "1.2.7",
|
|
15658
15884
|
"resolved": "https://registry.npmjs.org/shade-generator/-/shade-generator-1.2.7.tgz",
|
|
@@ -18277,9 +18503,9 @@
|
|
|
18277
18503
|
}
|
|
18278
18504
|
},
|
|
18279
18505
|
"node_modules/zod": {
|
|
18280
|
-
"version": "
|
|
18281
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-
|
|
18282
|
-
"integrity": "sha512-
|
|
18506
|
+
"version": "4.4.3",
|
|
18507
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
18508
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
18283
18509
|
"license": "MIT",
|
|
18284
18510
|
"funding": {
|
|
18285
18511
|
"url": "https://github.com/sponsors/colinhacks"
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@base-ui/react": "^1.5.0",
|
|
22
22
|
"@drincs/pixi-vn": "^1.8.13",
|
|
23
|
+
"@drincs/pixi-vn-ink": "^1.0.5",
|
|
23
24
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
24
25
|
"@tailwindcss/vite": "^4.3.0",
|
|
25
26
|
"@tanstack/hotkeys": "^0.8.0",
|
|
@@ -61,7 +62,8 @@
|
|
|
61
62
|
"tailwind-merge": "^3.6.0",
|
|
62
63
|
"tailwindcss": "^4.3.0",
|
|
63
64
|
"tw-animate-css": "^1.4.0",
|
|
64
|
-
"vaul": "^1.1.2"
|
|
65
|
+
"vaul": "^1.1.2",
|
|
66
|
+
"zod": "^4.4.3"
|
|
65
67
|
},
|
|
66
68
|
"devDependencies": {
|
|
67
69
|
"@assetpack/core": "^1.7.0",
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { routeTree } from "@/routeTree.gen";
|
|
2
|
-
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
3
|
-
import { createRouter, RouterProvider } from "@tanstack/react-router";
|
|
4
|
-
|
|
5
|
-
const queryClient = new QueryClient();
|
|
6
|
-
const router = createRouter({
|
|
7
|
-
routeTree,
|
|
8
|
-
defaultPreload: "intent",
|
|
9
|
-
scrollRestoration: true,
|
|
10
|
-
context: { queryClient },
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
declare module "@tanstack/react-router" {
|
|
14
|
-
interface Register {
|
|
15
|
-
router: typeof router;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export default function App() {
|
|
20
|
-
return (
|
|
21
|
-
<QueryClientProvider client={queryClient}>
|
|
22
|
-
<RouterProvider router={router} />
|
|
23
|
-
</QueryClientProvider>
|
|
24
|
-
);
|
|
25
|
-
}
|
|
1
|
+
import { routeTree } from "@/routeTree.gen";
|
|
2
|
+
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
3
|
+
import { createRouter, RouterProvider } from "@tanstack/react-router";
|
|
4
|
+
|
|
5
|
+
const queryClient = new QueryClient();
|
|
6
|
+
const router = createRouter({
|
|
7
|
+
routeTree,
|
|
8
|
+
defaultPreload: "intent",
|
|
9
|
+
scrollRestoration: true,
|
|
10
|
+
context: { queryClient },
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
declare module "@tanstack/react-router" {
|
|
14
|
+
interface Register {
|
|
15
|
+
router: typeof router;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default function App() {
|
|
20
|
+
return (
|
|
21
|
+
<QueryClientProvider client={queryClient}>
|
|
22
|
+
<RouterProvider router={router} />
|
|
23
|
+
</QueryClientProvider>
|
|
24
|
+
);
|
|
25
|
+
}
|