@pop-party/create-game 1.0.0
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/LICENSE +21 -0
- package/README.md +30 -0
- package/bin/create-game.js +28 -0
- package/package.json +34 -0
- package/src/cli-arguments.js +47 -0
- package/src/generate-game.js +150 -0
- package/starter/ASSET-NOTICES.json +73 -0
- package/starter/content/art/manifest.json +13573 -0
- package/starter/content/audio/host-audios.json +3 -0
- package/starter/content/blobs/1c14e1db26cfb96105b2cbf60591a18329834078cc65e14373715d4ec06f07ef.svg +5 -0
- package/starter/content/blobs/2d1298fc8597b4b13dc74c8a4093ce7c8d6027ef955c4af31ed6a6d03034d527.svg +3 -0
- package/starter/content/blobs/4d1b3ad12d64d7f145e282dc44b2c510d8cc36c0a609fcef831fe9c59270bf35.svg +8 -0
- package/starter/content/blobs/7a3a06ea1280a916254e2af034762e798b11e45f5eb7a1f4e0ba1a3ad4b8af48.svg +3 -0
- package/starter/content/blobs/8785460bf8b2311bfd2a5c06e97f9faac0deafd584b8f3de428c38399e2df16d.svg +6 -0
- package/starter/content/blobs/8dbc40965debd1f9f516461ed2b6ca0dd95557f8a762dbeaf67459e4b343497a.svg +8 -0
- package/starter/content/blobs/a531c3ee6f5bfa5b478b6ecda5799f1031ceea367ca9d93585545b3de0ed34d7.svg +7 -0
- package/starter/content/blobs/d54e3eae53b88a705370aa028c3ea55297d549e3521aca6a41435f87e4a18167.svg +6 -0
- package/starter/content/constants.json +22 -0
- package/starter/content/content-bundle.json +96 -0
- package/starter/content/flow.json +1594 -0
- package/starter/content/game-data/runtime.json +39 -0
- package/starter/content/layouts/controller.json +737 -0
- package/starter/content/layouts/stage.json +195 -0
- package/starter/content/prompts/prompts.json +125 -0
- package/starter/content/semantic-roles.json +86 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"artGroups": [
|
|
4
|
+
{
|
|
5
|
+
"id": "player-avatar",
|
|
6
|
+
"name": "Player Avatar",
|
|
7
|
+
"description": "Composed from the shared avatar frame plus one dinosaur silhouette."
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "player-object",
|
|
11
|
+
"name": "Player Object",
|
|
12
|
+
"description": "Composed player display object with shared player overlay prefabs."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "presentation-click-prompt",
|
|
16
|
+
"name": "Presentation Click Prompt",
|
|
17
|
+
"description": "Standalone cursor art; it does not use the avatar frame."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "voting-card",
|
|
21
|
+
"name": "Voting Card",
|
|
22
|
+
"description": "Composed answer card art used by voting moments."
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"avatarShapes": [
|
|
26
|
+
"rex",
|
|
27
|
+
"stego",
|
|
28
|
+
"trike",
|
|
29
|
+
"raptor",
|
|
30
|
+
"bronto",
|
|
31
|
+
"ankylo"
|
|
32
|
+
],
|
|
33
|
+
"availableFlowTransitions": [
|
|
34
|
+
{
|
|
35
|
+
"id": "horizontalWipe",
|
|
36
|
+
"name": "Horizontal Wipe"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|