@opfr/definitions 1.7.0 → 1.8.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/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +233 -92
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/locales/fr/story.json +118 -0
- package/dist/story/constants.d.ts +7 -0
- package/dist/story/constants.d.ts.map +1 -0
- package/dist/story/constants.js +12 -0
- package/dist/story/constants.js.map +1 -0
- package/dist/story/index.d.ts +5 -0
- package/dist/story/index.d.ts.map +1 -0
- package/dist/story/index.js +4 -0
- package/dist/story/index.js.map +1 -0
- package/dist/story/stories/chapter-1/chapter.d.ts +3 -0
- package/dist/story/stories/chapter-1/chapter.d.ts.map +1 -0
- package/dist/story/stories/chapter-1/chapter.js +7 -0
- package/dist/story/stories/chapter-1/chapter.js.map +1 -0
- package/dist/story/stories/chapter-1/scenes.d.ts +3 -0
- package/dist/story/stories/chapter-1/scenes.d.ts.map +1 -0
- package/dist/story/stories/chapter-1/scenes.js +17 -0
- package/dist/story/stories/chapter-1/scenes.js.map +1 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneOne.d.ts +3 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneOne.d.ts.map +1 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneOne.js +32 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneOne.js.map +1 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneTwo.d.ts +3 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneTwo.d.ts.map +1 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneTwo.js +50 -0
- package/dist/story/stories/chapter-1/steps/stepsSceneTwo.js.map +1 -0
- package/dist/story/stories/common.d.ts +3 -0
- package/dist/story/stories/common.d.ts.map +1 -0
- package/dist/story/stories/common.js +35 -0
- package/dist/story/stories/common.js.map +1 -0
- package/dist/story/types/actions.d.ts +19 -0
- package/dist/story/types/actions.d.ts.map +1 -0
- package/dist/story/types/actions.js +2 -0
- package/dist/story/types/actions.js.map +1 -0
- package/dist/story/types/chapters.d.ts +9 -0
- package/dist/story/types/chapters.d.ts.map +1 -0
- package/dist/story/types/chapters.js +2 -0
- package/dist/story/types/chapters.js.map +1 -0
- package/dist/story/types/common.d.ts +19 -0
- package/dist/story/types/common.d.ts.map +1 -0
- package/dist/story/types/common.js +2 -0
- package/dist/story/types/common.js.map +1 -0
- package/dist/story/types/index.d.ts +6 -0
- package/dist/story/types/index.d.ts.map +1 -0
- package/dist/story/types/index.js +2 -0
- package/dist/story/types/index.js.map +1 -0
- package/dist/story/types/scenes.d.ts +9 -0
- package/dist/story/types/scenes.d.ts.map +1 -0
- package/dist/story/types/scenes.js +2 -0
- package/dist/story/types/scenes.js.map +1 -0
- package/dist/story/types/steps/actionStep.d.ts +18 -0
- package/dist/story/types/steps/actionStep.d.ts.map +1 -0
- package/dist/story/types/steps/actionStep.js +2 -0
- package/dist/story/types/steps/actionStep.js.map +1 -0
- package/dist/story/types/steps/index.d.ts +8 -0
- package/dist/story/types/steps/index.d.ts.map +1 -0
- package/dist/story/types/steps/index.js +4 -0
- package/dist/story/types/steps/index.js.map +1 -0
- package/dist/story/types/steps/infoStep.d.ts +19 -0
- package/dist/story/types/steps/infoStep.d.ts.map +1 -0
- package/dist/story/types/steps/infoStep.js +2 -0
- package/dist/story/types/steps/infoStep.js.map +1 -0
- package/dist/story/types/steps/messageStep.d.ts +8 -0
- package/dist/story/types/steps/messageStep.d.ts.map +1 -0
- package/dist/story/types/steps/messageStep.js +2 -0
- package/dist/story/types/steps/messageStep.js.map +1 -0
- package/package.json +6 -10
- package/public/locales/fr/common.json +64 -0
- package/public/locales/fr/equipment.json +120 -0
- package/public/locales/fr/item.json +446 -0
- package/public/locales/fr/story.json +118 -0
- /package/{locales/common/fr.json → dist/locales/fr/common.json} +0 -0
- /package/{locales/equipments/fr.json → dist/locales/fr/equipment.json} +0 -0
- /package/{locales/items/fr.json → dist/locales/fr/item.json} +0 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chapter_two": {
|
|
3
|
+
"name": "Chapitre 2",
|
|
4
|
+
"steps": {
|
|
5
|
+
"scene_id": {
|
|
6
|
+
"title": "Random title",
|
|
7
|
+
"steps": {
|
|
8
|
+
"step_id": {
|
|
9
|
+
"text": "$t(speakers.narrator.text, { text: narrator_1 })\n\n$t(speakers.goro.text, { text: goro_1 })",
|
|
10
|
+
"narrator_1": "Narrator speak...",
|
|
11
|
+
"goro_1": "Goro speak..."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"speakers": {
|
|
18
|
+
"narrator": {
|
|
19
|
+
"prefix": "> ",
|
|
20
|
+
"text": "$t(speakers.narrator.prefix)*{{text}}*"
|
|
21
|
+
},
|
|
22
|
+
"system": {
|
|
23
|
+
"text": "*{{text}}*"
|
|
24
|
+
},
|
|
25
|
+
"goro": {
|
|
26
|
+
"prefix": "Goro 🎣",
|
|
27
|
+
"text": "**$t(speakers.goro.prefix)** : *\"{{text}}\"*"
|
|
28
|
+
},
|
|
29
|
+
"lena": {
|
|
30
|
+
"prefix": "Lena 🧃",
|
|
31
|
+
"text": "**$t(speakers.lena.prefix)** : *\"{{text}}\"*"
|
|
32
|
+
},
|
|
33
|
+
"walto": {
|
|
34
|
+
"prefix": "Walto ⚓",
|
|
35
|
+
"text": "**$t(speakers.walto.prefix)** : *\"{{text}}\"*"
|
|
36
|
+
},
|
|
37
|
+
"bruto": {
|
|
38
|
+
"prefix": "Bruto 🔨",
|
|
39
|
+
"text": "**$t(speakers.bruto.prefix)** : *\"{{text}}\"*"
|
|
40
|
+
},
|
|
41
|
+
"toto": {
|
|
42
|
+
"prefix": "Toto 📦",
|
|
43
|
+
"text": "**$t(speakers.toto.prefix)** : *\"{{text}}\"*"
|
|
44
|
+
},
|
|
45
|
+
"pip": {
|
|
46
|
+
"prefix": "Pip 🐦",
|
|
47
|
+
"text": "**$t(speakers.pip.prefix)** : *\"{{text}}\"*"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"departure": {
|
|
51
|
+
"name": "📖 Chapitre 1 — \"Un nouveau Départ\"",
|
|
52
|
+
"scenes": {
|
|
53
|
+
"awaken": {
|
|
54
|
+
"title": "🎬 Scène 1 — Le Réveil\n",
|
|
55
|
+
"steps": {
|
|
56
|
+
"awaken": {
|
|
57
|
+
"messages": {
|
|
58
|
+
"narrator_1": "Le soleil se lève sur le port de Kabo. L'odeur du sel mêlé à celle du poisson frais emplit l'air. Des mouettes se disputent les restes du marché matinal. C'est un matin comme les autres... sauf que vous êtes là.",
|
|
59
|
+
"system_2": "Bienvenue sur l'île de Kabo, nouvel arrivant. Tu te réveilles sur un banc du quai principal, la tête un peu lourde, les poches vides, et un vieux pêcheur qui te regarde d'un air suspicieux.",
|
|
60
|
+
"goro_3": "Heh. T'es enfin réveillé. Ça fait deux heures que tu ronflais là. T'as un nom, au moins ?"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"profile": {
|
|
64
|
+
"messages": {
|
|
65
|
+
"system": "C'est le moment de te présenter, fais ``/profil`` pour qu'il voit ton nom."
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"goroProfileResponse": {
|
|
69
|
+
"messages": {
|
|
70
|
+
"goro": "{{username}} c'est ça ? Bah... t'as pas l'air bien dangereux comme ça. Mais personne ne commence avec une prime sur la tête. Enfin, presque personne."
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"tensionPort": {
|
|
76
|
+
"title": "🎬 Scène 2 — Tension au Port",
|
|
77
|
+
"steps": {
|
|
78
|
+
"goroExplain": {
|
|
79
|
+
"messages": {
|
|
80
|
+
"goro": "L'île est pas très accueillante en ce moment. La semaine passée, des pirates ont attaqué le Nestor, un navire marchand qui faisait la route Orange Town–Village de Sirop. Deux marins blessés, la cargaison disparue. Les gens sont nerveux."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"answerToGoro": {
|
|
84
|
+
"messages": {
|
|
85
|
+
"goro": "T'as où aller, toi ?"
|
|
86
|
+
},
|
|
87
|
+
"actions": {
|
|
88
|
+
"answerA": {
|
|
89
|
+
"text": "Non, je découvre l'endroit."
|
|
90
|
+
},
|
|
91
|
+
"answerB": {
|
|
92
|
+
"text": "Je cherche du travail."
|
|
93
|
+
},
|
|
94
|
+
"answerC": {
|
|
95
|
+
"text": "Je passe juste par là."
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"goroResponseA": {
|
|
100
|
+
"messages": {
|
|
101
|
+
"goro": "Commence par regarder où tu mets les pieds."
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"goroResponseB": {
|
|
105
|
+
"messages": {
|
|
106
|
+
"goro": "Y'a toujours du boulot pour quelqu'un qui a pas peur de se salir les mains."
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"goroResponseC": {
|
|
110
|
+
"messages": {
|
|
111
|
+
"goro": "Tout le monde 'passe juste par là'. Personne ne repart jamais vraiment."
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|