@sharpee/chord 3.1.0 → 3.3.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/analyzer.d.ts +11 -3
- package/analyzer.d.ts.map +1 -1
- package/analyzer.js +1202 -33
- package/analyzer.js.map +1 -1
- package/ast.d.ts +415 -9
- package/ast.d.ts.map +1 -1
- package/catalog.d.ts +57 -1
- package/catalog.d.ts.map +1 -1
- package/catalog.js +91 -3
- package/catalog.js.map +1 -1
- package/diagnostics.d.ts +1 -1
- package/diagnostics.d.ts.map +1 -1
- package/index.d.ts +31 -13
- package/index.d.ts.map +1 -1
- package/index.js +110 -30
- package/index.js.map +1 -1
- package/ir.d.ts +290 -7
- package/ir.d.ts.map +1 -1
- package/lexer.d.ts +11 -3
- package/lexer.d.ts.map +1 -1
- package/lexer.js +36 -8
- package/lexer.js.map +1 -1
- package/manifests/combat.d.ts +16 -0
- package/manifests/combat.d.ts.map +1 -0
- package/manifests/combat.js +38 -0
- package/manifests/combat.js.map +1 -0
- package/manifests/index.d.ts +21 -0
- package/manifests/index.d.ts.map +1 -0
- package/manifests/index.js +46 -0
- package/manifests/index.js.map +1 -0
- package/manifests/npc.d.ts +19 -0
- package/manifests/npc.d.ts.map +1 -0
- package/manifests/npc.js +38 -0
- package/manifests/npc.js.map +1 -0
- package/manifests/state-machines.d.ts +17 -0
- package/manifests/state-machines.d.ts.map +1 -0
- package/manifests/state-machines.js +8 -0
- package/manifests/state-machines.js.map +1 -0
- package/manifests/types.d.ts +41 -0
- package/manifests/types.d.ts.map +1 -0
- package/manifests/types.js +18 -0
- package/manifests/types.js.map +1 -0
- package/message-alias-catalog.d.ts +22 -0
- package/message-alias-catalog.d.ts.map +1 -0
- package/message-alias-catalog.js +830 -0
- package/message-alias-catalog.js.map +1 -0
- package/package.json +1 -1
- package/parser.d.ts +2 -2
- package/parser.d.ts.map +1 -1
- package/parser.js +1507 -174
- package/parser.js.map +1 -1
- package/phrasebooks.d.ts +28 -0
- package/phrasebooks.d.ts.map +1 -0
- package/phrasebooks.js +6 -0
- package/phrasebooks.js.map +1 -0
- package/sharpee-chord-3.0.0.tgz +0 -0
|
@@ -0,0 +1,830 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* message-alias-catalog.ts — ADR-255 Interface Contract 3 (names side).
|
|
4
|
+
*
|
|
5
|
+
* Purpose: the closed set of curated kebab aliases an author may name in
|
|
6
|
+
* `override message <alias>` — one alias per standard-action message id in
|
|
7
|
+
* `@sharpee/lang-en-us`. The analyzer checks `override message` against this
|
|
8
|
+
* set (`analysis.unknown-message-alias`). Names only — no dotted platform ids —
|
|
9
|
+
* so the compiler stays platform-free; the alias -> `if.action.*` mapping lives
|
|
10
|
+
* in `@sharpee/story-loader` (`message-alias-map.ts`), pinned equal to this set
|
|
11
|
+
* and to the live message ids by that package's completeness test (ADR-255 D5).
|
|
12
|
+
*
|
|
13
|
+
* Public interface: MESSAGE_OVERRIDE_ALIASES.
|
|
14
|
+
* Owner context: @sharpee/chord (language frontend; browser-safe).
|
|
15
|
+
*
|
|
16
|
+
* Generated from the built `lang-en-us` action modules via
|
|
17
|
+
* `alias = kebab(action) + "-" + kebab(message-key)` (ADR-255 D2). Hand-curation
|
|
18
|
+
* of a cryptic alias is allowed (the D5 test pins ids, not spellings); regenerate
|
|
19
|
+
* the baseline by re-applying the rule to the current `lang-en-us` messages.
|
|
20
|
+
* 748 aliases across 56 actions, 0 collisions.
|
|
21
|
+
*/
|
|
22
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
|
+
exports.MESSAGE_OVERRIDE_ALIASES = void 0;
|
|
24
|
+
exports.MESSAGE_OVERRIDE_ALIASES = new Set([
|
|
25
|
+
// if.action.about
|
|
26
|
+
'about-about-compact',
|
|
27
|
+
'about-about-footer',
|
|
28
|
+
'about-about-header',
|
|
29
|
+
'about-acknowledgments',
|
|
30
|
+
'about-contact',
|
|
31
|
+
'about-copyright',
|
|
32
|
+
'about-credits-header',
|
|
33
|
+
'about-credits-list',
|
|
34
|
+
'about-dedication',
|
|
35
|
+
'about-description',
|
|
36
|
+
'about-engine-info',
|
|
37
|
+
'about-enjoy-game',
|
|
38
|
+
'about-game-info',
|
|
39
|
+
'about-game-info-simple',
|
|
40
|
+
'about-license',
|
|
41
|
+
'about-play-stats',
|
|
42
|
+
'about-session-info',
|
|
43
|
+
'about-special-thanks',
|
|
44
|
+
'about-success',
|
|
45
|
+
'about-technical-info',
|
|
46
|
+
'about-website',
|
|
47
|
+
// if.action.again
|
|
48
|
+
'again-nothing-to-repeat',
|
|
49
|
+
// if.action.answering
|
|
50
|
+
'answering-accepted',
|
|
51
|
+
'answering-answered',
|
|
52
|
+
'answering-answered-no',
|
|
53
|
+
'answering-answered-yes',
|
|
54
|
+
'answering-confused-by-answer',
|
|
55
|
+
'answering-gave-answer',
|
|
56
|
+
'answering-invalid-response',
|
|
57
|
+
'answering-needs-yes-or-no',
|
|
58
|
+
'answering-no-one-asked',
|
|
59
|
+
'answering-no-question',
|
|
60
|
+
'answering-noted',
|
|
61
|
+
'answering-rejected',
|
|
62
|
+
'answering-too-late',
|
|
63
|
+
'answering-unclear-answer',
|
|
64
|
+
// if.action.asking
|
|
65
|
+
'asking-already-told',
|
|
66
|
+
'asking-confused',
|
|
67
|
+
'asking-earned-trust',
|
|
68
|
+
'asking-explains',
|
|
69
|
+
'asking-must-do-first',
|
|
70
|
+
'asking-no-idea',
|
|
71
|
+
'asking-no-target',
|
|
72
|
+
'asking-no-topic',
|
|
73
|
+
'asking-not-actor',
|
|
74
|
+
'asking-not-visible',
|
|
75
|
+
'asking-not-yet',
|
|
76
|
+
'asking-remembers',
|
|
77
|
+
'asking-responds',
|
|
78
|
+
'asking-shrugs',
|
|
79
|
+
'asking-too-far',
|
|
80
|
+
'asking-unknown-topic',
|
|
81
|
+
// if.action.attacking
|
|
82
|
+
'attacking-already-dead',
|
|
83
|
+
'attacking-attack-ineffective',
|
|
84
|
+
'attacking-attack-invulnerable',
|
|
85
|
+
'attacking-attack-requires-weapon',
|
|
86
|
+
'attacking-attack-wrong-weapon-type',
|
|
87
|
+
'attacking-attacked',
|
|
88
|
+
'attacking-attacked-with',
|
|
89
|
+
'attacking-broke',
|
|
90
|
+
'attacking-combat-already-dead',
|
|
91
|
+
'attacking-combat-attack-hit',
|
|
92
|
+
'attacking-combat-attack-hit-heavy',
|
|
93
|
+
'attacking-combat-attack-hit-light',
|
|
94
|
+
'attacking-combat-attack-killed',
|
|
95
|
+
'attacking-combat-attack-knocked-out',
|
|
96
|
+
'attacking-combat-attack-missed',
|
|
97
|
+
'attacking-combat-cannot-attack',
|
|
98
|
+
'attacking-combat-defend-blocked',
|
|
99
|
+
'attacking-combat-defend-dodged',
|
|
100
|
+
'attacking-combat-defend-parried',
|
|
101
|
+
'attacking-combat-ended',
|
|
102
|
+
'attacking-combat-health-badly-wounded',
|
|
103
|
+
'attacking-combat-health-dead',
|
|
104
|
+
'attacking-combat-health-healthy',
|
|
105
|
+
'attacking-combat-health-near-death',
|
|
106
|
+
'attacking-combat-health-unconscious',
|
|
107
|
+
'attacking-combat-health-wounded',
|
|
108
|
+
'attacking-combat-need-weapon',
|
|
109
|
+
'attacking-combat-no-target',
|
|
110
|
+
'attacking-combat-not-hostile',
|
|
111
|
+
'attacking-combat-player-died',
|
|
112
|
+
'attacking-combat-player-resurrected',
|
|
113
|
+
'attacking-combat-special-blessed-weapon',
|
|
114
|
+
'attacking-combat-special-sword-glows',
|
|
115
|
+
'attacking-combat-special-sword-stops-glowing',
|
|
116
|
+
'attacking-combat-started',
|
|
117
|
+
'attacking-combat-target-unconscious',
|
|
118
|
+
'attacking-debris-created',
|
|
119
|
+
'attacking-defends',
|
|
120
|
+
'attacking-destroyed',
|
|
121
|
+
'attacking-dodges',
|
|
122
|
+
'attacking-flees',
|
|
123
|
+
'attacking-hit-blindly',
|
|
124
|
+
'attacking-hit-target',
|
|
125
|
+
'attacking-hit-with',
|
|
126
|
+
'attacking-indestructible',
|
|
127
|
+
'attacking-items-spilled',
|
|
128
|
+
'attacking-kicked',
|
|
129
|
+
'attacking-killed-blindly',
|
|
130
|
+
'attacking-killed-target',
|
|
131
|
+
'attacking-need-weapon-to-damage',
|
|
132
|
+
'attacking-no-fighting',
|
|
133
|
+
'attacking-no-target',
|
|
134
|
+
'attacking-not-holding-weapon',
|
|
135
|
+
'attacking-not-reachable',
|
|
136
|
+
'attacking-not-visible',
|
|
137
|
+
'attacking-passage-revealed',
|
|
138
|
+
'attacking-peaceful-solution',
|
|
139
|
+
'attacking-punched',
|
|
140
|
+
'attacking-retaliates',
|
|
141
|
+
'attacking-self',
|
|
142
|
+
'attacking-shattered',
|
|
143
|
+
'attacking-smashed',
|
|
144
|
+
'attacking-struck',
|
|
145
|
+
'attacking-struck-with',
|
|
146
|
+
'attacking-target-broke',
|
|
147
|
+
'attacking-target-damaged',
|
|
148
|
+
'attacking-target-destroyed',
|
|
149
|
+
'attacking-target-shattered',
|
|
150
|
+
'attacking-unarmed-attack',
|
|
151
|
+
'attacking-unnecessary-violence',
|
|
152
|
+
'attacking-violence-not-the-answer',
|
|
153
|
+
'attacking-wrong-weapon-type',
|
|
154
|
+
// if.action.climbing
|
|
155
|
+
'climbing-already-there',
|
|
156
|
+
'climbing-cant-go-that-way',
|
|
157
|
+
'climbing-climb-nowhere',
|
|
158
|
+
'climbing-climbed-down',
|
|
159
|
+
'climbing-climbed-onto',
|
|
160
|
+
'climbing-climbed-up',
|
|
161
|
+
'climbing-need-equipment',
|
|
162
|
+
'climbing-no-target',
|
|
163
|
+
'climbing-not-climbable',
|
|
164
|
+
'climbing-nothing-to-climb',
|
|
165
|
+
'climbing-too-dangerous',
|
|
166
|
+
'climbing-too-high',
|
|
167
|
+
'climbing-too-slippery',
|
|
168
|
+
// if.action.closing
|
|
169
|
+
'closing-already-closed',
|
|
170
|
+
'closing-cant-reach',
|
|
171
|
+
'closing-closed',
|
|
172
|
+
'closing-no-target',
|
|
173
|
+
'closing-not-closable',
|
|
174
|
+
'closing-prevents-closing',
|
|
175
|
+
// if.action.cutting
|
|
176
|
+
'cutting-cant-cut',
|
|
177
|
+
'cutting-cut',
|
|
178
|
+
'cutting-no-target',
|
|
179
|
+
'cutting-no-tool',
|
|
180
|
+
'cutting-not-cuttable',
|
|
181
|
+
'cutting-tool-not-held',
|
|
182
|
+
'cutting-wrong-tool',
|
|
183
|
+
// if.action.digging
|
|
184
|
+
'digging-cant-dig',
|
|
185
|
+
'digging-dug',
|
|
186
|
+
'digging-no-target',
|
|
187
|
+
'digging-no-tool',
|
|
188
|
+
'digging-not-diggable',
|
|
189
|
+
'digging-tool-not-held',
|
|
190
|
+
'digging-wrong-tool',
|
|
191
|
+
// if.action.drinking
|
|
192
|
+
'drinking-already-consumed',
|
|
193
|
+
'drinking-bitter',
|
|
194
|
+
'drinking-container-closed',
|
|
195
|
+
'drinking-drunk',
|
|
196
|
+
'drinking-drunk-all',
|
|
197
|
+
'drinking-drunk-from',
|
|
198
|
+
'drinking-drunk-some',
|
|
199
|
+
'drinking-empty-now',
|
|
200
|
+
'drinking-from-container',
|
|
201
|
+
'drinking-gulped',
|
|
202
|
+
'drinking-healing',
|
|
203
|
+
'drinking-magical-effects',
|
|
204
|
+
'drinking-no-item',
|
|
205
|
+
'drinking-not-drinkable',
|
|
206
|
+
'drinking-not-reachable',
|
|
207
|
+
'drinking-not-visible',
|
|
208
|
+
'drinking-quaffed',
|
|
209
|
+
'drinking-refreshing',
|
|
210
|
+
'drinking-satisfying',
|
|
211
|
+
'drinking-sipped',
|
|
212
|
+
'drinking-some-remains',
|
|
213
|
+
'drinking-still-thirsty',
|
|
214
|
+
'drinking-strong',
|
|
215
|
+
'drinking-sweet',
|
|
216
|
+
'drinking-thirst-quenched',
|
|
217
|
+
// if.action.dropping
|
|
218
|
+
'dropping-dropped',
|
|
219
|
+
'dropping-dropped-in',
|
|
220
|
+
'dropping-dropped-multi',
|
|
221
|
+
'dropping-dropped-on',
|
|
222
|
+
'dropping-no-target',
|
|
223
|
+
'dropping-not-held',
|
|
224
|
+
'dropping-nothing-to-drop',
|
|
225
|
+
'dropping-still-worn',
|
|
226
|
+
// if.action.eating
|
|
227
|
+
'eating-already-consumed',
|
|
228
|
+
'eating-awful',
|
|
229
|
+
'eating-bland',
|
|
230
|
+
'eating-delicious',
|
|
231
|
+
'eating-devoured',
|
|
232
|
+
'eating-eaten',
|
|
233
|
+
'eating-eaten-all',
|
|
234
|
+
'eating-eaten-portion',
|
|
235
|
+
'eating-eaten-some',
|
|
236
|
+
'eating-filling',
|
|
237
|
+
'eating-is-drink',
|
|
238
|
+
'eating-munched',
|
|
239
|
+
'eating-nibbled',
|
|
240
|
+
'eating-no-item',
|
|
241
|
+
'eating-not-edible',
|
|
242
|
+
'eating-not-reachable',
|
|
243
|
+
'eating-not-visible',
|
|
244
|
+
'eating-poisonous',
|
|
245
|
+
'eating-satisfying',
|
|
246
|
+
'eating-still-hungry',
|
|
247
|
+
'eating-tasted',
|
|
248
|
+
'eating-tasty',
|
|
249
|
+
// if.action.entering
|
|
250
|
+
'entering-already-inside',
|
|
251
|
+
'entering-cant-enter',
|
|
252
|
+
'entering-container-closed',
|
|
253
|
+
'entering-entered',
|
|
254
|
+
'entering-entered-on',
|
|
255
|
+
'entering-no-target',
|
|
256
|
+
'entering-not-enterable',
|
|
257
|
+
'entering-not-here',
|
|
258
|
+
'entering-occupied',
|
|
259
|
+
'entering-too-full',
|
|
260
|
+
'entering-too-small',
|
|
261
|
+
// if.action.examining
|
|
262
|
+
'examining-brief-description',
|
|
263
|
+
'examining-cant-see',
|
|
264
|
+
'examining-container-closed',
|
|
265
|
+
'examining-container-contents',
|
|
266
|
+
'examining-container-empty',
|
|
267
|
+
'examining-container-open',
|
|
268
|
+
'examining-default-description',
|
|
269
|
+
'examining-default-description-self',
|
|
270
|
+
'examining-description',
|
|
271
|
+
'examining-examined',
|
|
272
|
+
'examining-examined-container',
|
|
273
|
+
'examining-examined-door',
|
|
274
|
+
'examining-examined-readable',
|
|
275
|
+
'examining-examined-self',
|
|
276
|
+
'examining-examined-supporter',
|
|
277
|
+
'examining-examined-switchable',
|
|
278
|
+
'examining-examined-wall',
|
|
279
|
+
'examining-examined-wearable',
|
|
280
|
+
'examining-no-description',
|
|
281
|
+
'examining-no-target',
|
|
282
|
+
'examining-not-visible',
|
|
283
|
+
'examining-nothing-special',
|
|
284
|
+
'examining-surface-contents',
|
|
285
|
+
'examining-worn-by-other',
|
|
286
|
+
'examining-worn-by-you',
|
|
287
|
+
// if.action.exiting
|
|
288
|
+
'exiting-already-outside',
|
|
289
|
+
'exiting-cant-exit',
|
|
290
|
+
'exiting-container-closed',
|
|
291
|
+
'exiting-exit-blocked',
|
|
292
|
+
'exiting-exited',
|
|
293
|
+
'exiting-exited-from',
|
|
294
|
+
'exiting-must-stand-first',
|
|
295
|
+
'exiting-not-in-that',
|
|
296
|
+
'exiting-not-on-that',
|
|
297
|
+
'exiting-nowhere-to-go',
|
|
298
|
+
// if.action.giving
|
|
299
|
+
'giving-accepts',
|
|
300
|
+
'giving-given',
|
|
301
|
+
'giving-gratefully-accepts',
|
|
302
|
+
'giving-inventory-full',
|
|
303
|
+
'giving-no-item',
|
|
304
|
+
'giving-no-recipient',
|
|
305
|
+
'giving-not-actor',
|
|
306
|
+
'giving-not-holding',
|
|
307
|
+
'giving-not-interested',
|
|
308
|
+
'giving-recipient-not-reachable',
|
|
309
|
+
'giving-recipient-not-visible',
|
|
310
|
+
'giving-refuses',
|
|
311
|
+
'giving-reluctantly-accepts',
|
|
312
|
+
'giving-self',
|
|
313
|
+
'giving-too-heavy',
|
|
314
|
+
// if.action.going
|
|
315
|
+
'going-already-there',
|
|
316
|
+
'going-arrived',
|
|
317
|
+
'going-cant-go',
|
|
318
|
+
'going-cant-go-through',
|
|
319
|
+
'going-contents-list',
|
|
320
|
+
'going-destination-not-found',
|
|
321
|
+
'going-door-closed',
|
|
322
|
+
'going-door-locked',
|
|
323
|
+
'going-moved',
|
|
324
|
+
'going-movement-blocked',
|
|
325
|
+
'going-need-light',
|
|
326
|
+
'going-no-direction',
|
|
327
|
+
'going-no-exit',
|
|
328
|
+
'going-no-exit-that-way',
|
|
329
|
+
'going-no-exits',
|
|
330
|
+
'going-not-in-room',
|
|
331
|
+
'going-nowhere-to-go',
|
|
332
|
+
'going-room-description',
|
|
333
|
+
'going-too-dark',
|
|
334
|
+
'going-went',
|
|
335
|
+
// if.action.help
|
|
336
|
+
'help-first-time',
|
|
337
|
+
'help-general',
|
|
338
|
+
'help-help-footer',
|
|
339
|
+
'help-help-movement',
|
|
340
|
+
'help-help-objects',
|
|
341
|
+
'help-help-special',
|
|
342
|
+
'help-hints-available',
|
|
343
|
+
'help-hints-disabled',
|
|
344
|
+
'help-stuck-help',
|
|
345
|
+
'help-topic',
|
|
346
|
+
'help-unknown-topic',
|
|
347
|
+
// if.action.hiding
|
|
348
|
+
'hiding-already-hidden',
|
|
349
|
+
'hiding-behind',
|
|
350
|
+
'hiding-cant-hide-there-behind',
|
|
351
|
+
'hiding-cant-hide-there-inside',
|
|
352
|
+
'hiding-cant-hide-there-on',
|
|
353
|
+
'hiding-cant-hide-there-under',
|
|
354
|
+
'hiding-inside',
|
|
355
|
+
'hiding-nothing-to-hide',
|
|
356
|
+
'hiding-on',
|
|
357
|
+
'hiding-under',
|
|
358
|
+
// if.action.inserting
|
|
359
|
+
'inserting-already-there',
|
|
360
|
+
'inserting-container-closed',
|
|
361
|
+
'inserting-inserted',
|
|
362
|
+
'inserting-no-destination',
|
|
363
|
+
'inserting-no-target',
|
|
364
|
+
'inserting-not-container',
|
|
365
|
+
'inserting-not-held',
|
|
366
|
+
'inserting-not-insertable',
|
|
367
|
+
'inserting-wont-fit',
|
|
368
|
+
// if.action.inventory
|
|
369
|
+
'inventory-burden-heavy',
|
|
370
|
+
'inventory-burden-light',
|
|
371
|
+
'inventory-burden-overloaded',
|
|
372
|
+
'inventory-carrying',
|
|
373
|
+
'inventory-carrying-and-wearing',
|
|
374
|
+
'inventory-carrying-count',
|
|
375
|
+
'inventory-empty',
|
|
376
|
+
'inventory-hands-empty',
|
|
377
|
+
'inventory-holding-list',
|
|
378
|
+
'inventory-inventory-empty',
|
|
379
|
+
'inventory-inventory-header',
|
|
380
|
+
'inventory-item-list',
|
|
381
|
+
'inventory-nothing-at-all',
|
|
382
|
+
'inventory-pockets-empty',
|
|
383
|
+
'inventory-wearing',
|
|
384
|
+
'inventory-wearing-count',
|
|
385
|
+
'inventory-worn-list',
|
|
386
|
+
// if.action.listening
|
|
387
|
+
'listening-active-devices',
|
|
388
|
+
'listening-ambient-sounds',
|
|
389
|
+
'listening-container-sounds',
|
|
390
|
+
'listening-device-off',
|
|
391
|
+
'listening-device-running',
|
|
392
|
+
'listening-liquid-sounds',
|
|
393
|
+
'listening-listened-environment',
|
|
394
|
+
'listening-listened-to',
|
|
395
|
+
'listening-no-sound',
|
|
396
|
+
'listening-not-visible',
|
|
397
|
+
'listening-silence',
|
|
398
|
+
// if.action.locking
|
|
399
|
+
'locking-already-locked',
|
|
400
|
+
'locking-cant-reach',
|
|
401
|
+
'locking-key-not-held',
|
|
402
|
+
'locking-locked',
|
|
403
|
+
'locking-locked-with',
|
|
404
|
+
'locking-no-key',
|
|
405
|
+
'locking-no-target',
|
|
406
|
+
'locking-not-closed',
|
|
407
|
+
'locking-not-lockable',
|
|
408
|
+
'locking-wrong-key',
|
|
409
|
+
// if.action.looking
|
|
410
|
+
'looking-container-contents',
|
|
411
|
+
'looking-contents-list',
|
|
412
|
+
'looking-exits',
|
|
413
|
+
'looking-nothing-special',
|
|
414
|
+
'looking-room-dark',
|
|
415
|
+
'looking-room-description',
|
|
416
|
+
'looking-surface-contents',
|
|
417
|
+
'looking-you-see',
|
|
418
|
+
// if.action.lowering
|
|
419
|
+
'lowering-already-down',
|
|
420
|
+
'lowering-cant-lower-that',
|
|
421
|
+
'lowering-lowered',
|
|
422
|
+
'lowering-no-target',
|
|
423
|
+
// if.action.opening
|
|
424
|
+
'opening-already-open',
|
|
425
|
+
'opening-cant-reach',
|
|
426
|
+
'opening-its-empty',
|
|
427
|
+
'opening-locked',
|
|
428
|
+
'opening-no-target',
|
|
429
|
+
'opening-no-tool',
|
|
430
|
+
'opening-not-openable',
|
|
431
|
+
'opening-opened',
|
|
432
|
+
'opening-revealing',
|
|
433
|
+
'opening-tool-not-held',
|
|
434
|
+
'opening-wrong-tool',
|
|
435
|
+
// if.action.pulling
|
|
436
|
+
'pulling-already-pulled',
|
|
437
|
+
'pulling-cant-pull-that',
|
|
438
|
+
'pulling-no-target',
|
|
439
|
+
'pulling-not-reachable',
|
|
440
|
+
'pulling-not-visible',
|
|
441
|
+
'pulling-nothing-happens',
|
|
442
|
+
'pulling-pulled',
|
|
443
|
+
'pulling-worn',
|
|
444
|
+
// if.action.pushing
|
|
445
|
+
'pushing-button-clicks',
|
|
446
|
+
'pushing-button-pushed',
|
|
447
|
+
'pushing-fixed-in-place',
|
|
448
|
+
'pushing-no-target',
|
|
449
|
+
'pushing-not-reachable',
|
|
450
|
+
'pushing-not-visible',
|
|
451
|
+
'pushing-pushed-direction',
|
|
452
|
+
'pushing-pushed-nudged',
|
|
453
|
+
'pushing-pushed-with-effort',
|
|
454
|
+
'pushing-pushing-does-nothing',
|
|
455
|
+
'pushing-reveals-passage',
|
|
456
|
+
'pushing-switch-toggled',
|
|
457
|
+
'pushing-too-heavy',
|
|
458
|
+
'pushing-wearing-it',
|
|
459
|
+
'pushing-wont-budge',
|
|
460
|
+
// if.action.putting
|
|
461
|
+
'putting-already-there',
|
|
462
|
+
'putting-cant-put-in-itself',
|
|
463
|
+
'putting-cant-put-on-itself',
|
|
464
|
+
'putting-container-closed',
|
|
465
|
+
'putting-no-destination',
|
|
466
|
+
'putting-no-room',
|
|
467
|
+
'putting-no-space',
|
|
468
|
+
'putting-no-target',
|
|
469
|
+
'putting-not-container',
|
|
470
|
+
'putting-not-held',
|
|
471
|
+
'putting-not-surface',
|
|
472
|
+
'putting-put-in',
|
|
473
|
+
'putting-put-on',
|
|
474
|
+
// if.action.quitting
|
|
475
|
+
'quitting-achievements-earned',
|
|
476
|
+
'quitting-final-score',
|
|
477
|
+
'quitting-final-stats',
|
|
478
|
+
'quitting-quit-and-saved',
|
|
479
|
+
'quitting-quit-cancelled',
|
|
480
|
+
'quitting-quit-confirm-query',
|
|
481
|
+
'quitting-quit-confirmed',
|
|
482
|
+
'quitting-quit-save-query',
|
|
483
|
+
'quitting-quit-unsaved-query',
|
|
484
|
+
// if.action.raising
|
|
485
|
+
'raising-already-up',
|
|
486
|
+
'raising-cant-raise-that',
|
|
487
|
+
'raising-no-target',
|
|
488
|
+
'raising-raised',
|
|
489
|
+
// if.action.reading
|
|
490
|
+
'reading-cannot-read-now',
|
|
491
|
+
'reading-not-readable',
|
|
492
|
+
'reading-read-book',
|
|
493
|
+
'reading-read-book-page',
|
|
494
|
+
'reading-read-inscription',
|
|
495
|
+
'reading-read-sign',
|
|
496
|
+
'reading-read-text',
|
|
497
|
+
'reading-what-to-read',
|
|
498
|
+
// if.action.removing
|
|
499
|
+
'removing-already-have',
|
|
500
|
+
'removing-cant-reach',
|
|
501
|
+
'removing-container-closed',
|
|
502
|
+
'removing-no-source',
|
|
503
|
+
'removing-no-target',
|
|
504
|
+
'removing-not-in-container',
|
|
505
|
+
'removing-not-on-surface',
|
|
506
|
+
'removing-removed-from',
|
|
507
|
+
'removing-removed-from-surface',
|
|
508
|
+
// if.action.restarting
|
|
509
|
+
'restarting-game-restarting',
|
|
510
|
+
'restarting-new-game',
|
|
511
|
+
'restarting-restart-confirm',
|
|
512
|
+
'restarting-restart-requested',
|
|
513
|
+
'restarting-restart-unsaved',
|
|
514
|
+
'restarting-starting-over',
|
|
515
|
+
// if.action.restoring
|
|
516
|
+
'restoring-available-saves',
|
|
517
|
+
'restoring-choose-save',
|
|
518
|
+
'restoring-confirm-restore',
|
|
519
|
+
'restoring-corrupt-save',
|
|
520
|
+
'restoring-game-loaded',
|
|
521
|
+
'restoring-game-restored',
|
|
522
|
+
'restoring-import-save',
|
|
523
|
+
'restoring-incompatible-save',
|
|
524
|
+
'restoring-no-saves',
|
|
525
|
+
'restoring-no-saves-available',
|
|
526
|
+
'restoring-quick-restore',
|
|
527
|
+
'restoring-restore-details',
|
|
528
|
+
'restoring-restore-failed',
|
|
529
|
+
'restoring-restore-not-allowed',
|
|
530
|
+
'restoring-restore-successful',
|
|
531
|
+
'restoring-resuming-game',
|
|
532
|
+
'restoring-save-imported',
|
|
533
|
+
'restoring-save-not-found',
|
|
534
|
+
'restoring-unsaved-progress',
|
|
535
|
+
'restoring-welcome-back',
|
|
536
|
+
// if.action.revealing
|
|
537
|
+
'revealing-not-hidden',
|
|
538
|
+
'revealing-revealed',
|
|
539
|
+
// if.action.saving
|
|
540
|
+
'saving-auto-save',
|
|
541
|
+
'saving-confirm-overwrite',
|
|
542
|
+
'saving-game-saved',
|
|
543
|
+
'saving-game-saved-as',
|
|
544
|
+
'saving-invalid-save-name',
|
|
545
|
+
'saving-no-save-slots',
|
|
546
|
+
'saving-overwrite-save',
|
|
547
|
+
'saving-quick-save',
|
|
548
|
+
'saving-save-details',
|
|
549
|
+
'saving-save-exported',
|
|
550
|
+
'saving-save-failed',
|
|
551
|
+
'saving-save-in-progress',
|
|
552
|
+
'saving-save-not-allowed',
|
|
553
|
+
'saving-save-reminder',
|
|
554
|
+
'saving-save-slot',
|
|
555
|
+
'saving-save-successful',
|
|
556
|
+
'saving-saved-locally',
|
|
557
|
+
'saving-saved-to-cloud',
|
|
558
|
+
// if.action.scoring
|
|
559
|
+
'scoring-early-game',
|
|
560
|
+
'scoring-game-complete',
|
|
561
|
+
'scoring-late-game',
|
|
562
|
+
'scoring-mid-game',
|
|
563
|
+
'scoring-no-achievements',
|
|
564
|
+
'scoring-no-scoring',
|
|
565
|
+
'scoring-perfect-score',
|
|
566
|
+
'scoring-rank-amateur',
|
|
567
|
+
'scoring-rank-expert',
|
|
568
|
+
'scoring-rank-master',
|
|
569
|
+
'scoring-rank-novice',
|
|
570
|
+
'scoring-rank-proficient',
|
|
571
|
+
'scoring-score-display',
|
|
572
|
+
'scoring-score-simple',
|
|
573
|
+
'scoring-score-with-rank',
|
|
574
|
+
'scoring-scoring-not-enabled',
|
|
575
|
+
'scoring-with-achievements',
|
|
576
|
+
// if.action.searching
|
|
577
|
+
'searching-container-closed',
|
|
578
|
+
'searching-container-contents',
|
|
579
|
+
'searching-empty-container',
|
|
580
|
+
'searching-found-concealed-here',
|
|
581
|
+
'searching-found-concealed-in-container',
|
|
582
|
+
'searching-found-concealed-on-supporter',
|
|
583
|
+
'searching-found-items',
|
|
584
|
+
'searching-not-reachable',
|
|
585
|
+
'searching-not-visible',
|
|
586
|
+
'searching-nothing-special',
|
|
587
|
+
'searching-searched-location',
|
|
588
|
+
'searching-searched-object',
|
|
589
|
+
'searching-supporter-contents',
|
|
590
|
+
// if.action.showing
|
|
591
|
+
'showing-no-item',
|
|
592
|
+
'showing-no-viewer',
|
|
593
|
+
'showing-not-actor',
|
|
594
|
+
'showing-not-carrying',
|
|
595
|
+
'showing-self',
|
|
596
|
+
'showing-shown',
|
|
597
|
+
'showing-viewer-examines',
|
|
598
|
+
'showing-viewer-impressed',
|
|
599
|
+
'showing-viewer-nods',
|
|
600
|
+
'showing-viewer-not-visible',
|
|
601
|
+
'showing-viewer-recognizes',
|
|
602
|
+
'showing-viewer-too-far',
|
|
603
|
+
'showing-viewer-unimpressed',
|
|
604
|
+
'showing-wearing-shown',
|
|
605
|
+
// if.action.sleeping
|
|
606
|
+
'sleeping-already-well-rested',
|
|
607
|
+
'sleeping-brief-nap',
|
|
608
|
+
'sleeping-cant-sleep-here',
|
|
609
|
+
'sleeping-deep-sleep',
|
|
610
|
+
'sleeping-disturbed-sleep',
|
|
611
|
+
'sleeping-dozed-off',
|
|
612
|
+
'sleeping-fell-asleep',
|
|
613
|
+
'sleeping-nightmares',
|
|
614
|
+
'sleeping-peaceful-sleep',
|
|
615
|
+
'sleeping-slept',
|
|
616
|
+
'sleeping-slept-fitfully',
|
|
617
|
+
'sleeping-too-dangerous-to-sleep',
|
|
618
|
+
'sleeping-woke-refreshed',
|
|
619
|
+
// if.action.smelling
|
|
620
|
+
'smelling-burning-scent',
|
|
621
|
+
'smelling-container-food-scent',
|
|
622
|
+
'smelling-drink-scent',
|
|
623
|
+
'smelling-food-nearby',
|
|
624
|
+
'smelling-food-scent',
|
|
625
|
+
'smelling-fresh-scent',
|
|
626
|
+
'smelling-musty-scent',
|
|
627
|
+
'smelling-no-particular-scent',
|
|
628
|
+
'smelling-no-scent',
|
|
629
|
+
'smelling-not-visible',
|
|
630
|
+
'smelling-room-scents',
|
|
631
|
+
'smelling-smelled',
|
|
632
|
+
'smelling-smelled-environment',
|
|
633
|
+
'smelling-smoke-detected',
|
|
634
|
+
'smelling-too-far',
|
|
635
|
+
// if.action.switching_off
|
|
636
|
+
'switching-off-already-off',
|
|
637
|
+
'switching-off-device-stops',
|
|
638
|
+
'switching-off-door-closes',
|
|
639
|
+
'switching-off-light-off',
|
|
640
|
+
'switching-off-light-off-still-lit',
|
|
641
|
+
'switching-off-no-target',
|
|
642
|
+
'switching-off-not-reachable',
|
|
643
|
+
'switching-off-not-switchable',
|
|
644
|
+
'switching-off-not-visible',
|
|
645
|
+
'switching-off-silence-falls',
|
|
646
|
+
'switching-off-switched-off',
|
|
647
|
+
'switching-off-was-temporary',
|
|
648
|
+
'switching-off-with-sound',
|
|
649
|
+
// if.action.switching_on
|
|
650
|
+
'switching-on-already-on',
|
|
651
|
+
'switching-on-device-humming',
|
|
652
|
+
'switching-on-door-opens',
|
|
653
|
+
'switching-on-illuminates-darkness',
|
|
654
|
+
'switching-on-light-on',
|
|
655
|
+
'switching-on-no-power',
|
|
656
|
+
'switching-on-no-target',
|
|
657
|
+
'switching-on-not-reachable',
|
|
658
|
+
'switching-on-not-switchable',
|
|
659
|
+
'switching-on-not-visible',
|
|
660
|
+
'switching-on-switched-on',
|
|
661
|
+
'switching-on-temporary-activation',
|
|
662
|
+
'switching-on-with-sound',
|
|
663
|
+
// if.action.taking
|
|
664
|
+
'taking-already-have',
|
|
665
|
+
'taking-cannot-take',
|
|
666
|
+
'taking-cant-take-room',
|
|
667
|
+
'taking-cant-take-self',
|
|
668
|
+
'taking-container-full',
|
|
669
|
+
'taking-fixed-in-place',
|
|
670
|
+
'taking-no-target',
|
|
671
|
+
'taking-nothing-to-take',
|
|
672
|
+
'taking-taken',
|
|
673
|
+
'taking-taken-from',
|
|
674
|
+
'taking-taken-multi',
|
|
675
|
+
'taking-too-heavy',
|
|
676
|
+
// if.action.taking_off
|
|
677
|
+
'taking-off-cant-remove',
|
|
678
|
+
'taking-off-no-target',
|
|
679
|
+
'taking-off-not-wearing',
|
|
680
|
+
'taking-off-prevents-removal',
|
|
681
|
+
'taking-off-removed',
|
|
682
|
+
// if.action.talking
|
|
683
|
+
'talking-acknowledges',
|
|
684
|
+
'talking-casual-greeting',
|
|
685
|
+
'talking-first-meeting',
|
|
686
|
+
'talking-formal-greeting',
|
|
687
|
+
'talking-friendly-greeting',
|
|
688
|
+
'talking-greets-again',
|
|
689
|
+
'talking-greets-back',
|
|
690
|
+
'talking-has-topics',
|
|
691
|
+
'talking-no-response',
|
|
692
|
+
'talking-no-target',
|
|
693
|
+
'talking-not-actor',
|
|
694
|
+
'talking-not-available',
|
|
695
|
+
'talking-not-visible',
|
|
696
|
+
'talking-nothing-to-say',
|
|
697
|
+
'talking-remembers-you',
|
|
698
|
+
'talking-self',
|
|
699
|
+
'talking-talked',
|
|
700
|
+
'talking-too-far',
|
|
701
|
+
// if.action.telling
|
|
702
|
+
'telling-already-knew',
|
|
703
|
+
'telling-bored',
|
|
704
|
+
'telling-dismissive',
|
|
705
|
+
'telling-grateful',
|
|
706
|
+
'telling-ignores',
|
|
707
|
+
'telling-informed',
|
|
708
|
+
'telling-interested',
|
|
709
|
+
'telling-no-target',
|
|
710
|
+
'telling-no-topic',
|
|
711
|
+
'telling-not-actor',
|
|
712
|
+
'telling-not-interested',
|
|
713
|
+
'telling-not-visible',
|
|
714
|
+
'telling-told',
|
|
715
|
+
'telling-too-far',
|
|
716
|
+
'telling-very-interested',
|
|
717
|
+
// if.action.throwing
|
|
718
|
+
'throwing-bounces-off',
|
|
719
|
+
'throwing-breaks-against',
|
|
720
|
+
'throwing-breaks-on-impact',
|
|
721
|
+
'throwing-fragile-breaks',
|
|
722
|
+
'throwing-hits-target',
|
|
723
|
+
'throwing-lands-in',
|
|
724
|
+
'throwing-lands-on',
|
|
725
|
+
'throwing-misses-target',
|
|
726
|
+
'throwing-no-exit',
|
|
727
|
+
'throwing-no-item',
|
|
728
|
+
'throwing-not-holding',
|
|
729
|
+
'throwing-sails-through',
|
|
730
|
+
'throwing-self',
|
|
731
|
+
'throwing-target-angry',
|
|
732
|
+
'throwing-target-catches',
|
|
733
|
+
'throwing-target-ducks',
|
|
734
|
+
'throwing-target-not-here',
|
|
735
|
+
'throwing-target-not-visible',
|
|
736
|
+
'throwing-thrown',
|
|
737
|
+
'throwing-thrown-at',
|
|
738
|
+
'throwing-thrown-direction',
|
|
739
|
+
'throwing-thrown-down',
|
|
740
|
+
'throwing-thrown-gently',
|
|
741
|
+
'throwing-too-heavy',
|
|
742
|
+
// if.action.touching
|
|
743
|
+
'touching-device-vibrating',
|
|
744
|
+
'touching-feels-hard',
|
|
745
|
+
'touching-feels-hot',
|
|
746
|
+
'touching-feels-normal',
|
|
747
|
+
'touching-feels-smooth',
|
|
748
|
+
'touching-feels-soft',
|
|
749
|
+
'touching-feels-warm',
|
|
750
|
+
'touching-feels-wet',
|
|
751
|
+
'touching-immovable-object',
|
|
752
|
+
'touching-liquid-container',
|
|
753
|
+
'touching-no-target',
|
|
754
|
+
'touching-not-reachable',
|
|
755
|
+
'touching-not-visible',
|
|
756
|
+
'touching-patted',
|
|
757
|
+
'touching-poked',
|
|
758
|
+
'touching-prodded',
|
|
759
|
+
'touching-stroked',
|
|
760
|
+
'touching-touched',
|
|
761
|
+
'touching-touched-gently',
|
|
762
|
+
// if.action.turning
|
|
763
|
+
'turning-cant-turn-that',
|
|
764
|
+
'turning-crank-turned',
|
|
765
|
+
'turning-dial-adjusted',
|
|
766
|
+
'turning-dial-set',
|
|
767
|
+
'turning-dial-turned',
|
|
768
|
+
'turning-flow-changes',
|
|
769
|
+
'turning-key-needs-lock',
|
|
770
|
+
'turning-key-turned',
|
|
771
|
+
'turning-knob-clicks',
|
|
772
|
+
'turning-knob-toggled',
|
|
773
|
+
'turning-knob-turned',
|
|
774
|
+
'turning-mechanism-activated',
|
|
775
|
+
'turning-mechanism-grinds',
|
|
776
|
+
'turning-no-target',
|
|
777
|
+
'turning-not-reachable',
|
|
778
|
+
'turning-not-visible',
|
|
779
|
+
'turning-nothing-happens',
|
|
780
|
+
'turning-requires-more-turns',
|
|
781
|
+
'turning-rotated',
|
|
782
|
+
'turning-spun',
|
|
783
|
+
'turning-turned',
|
|
784
|
+
'turning-valve-closed',
|
|
785
|
+
'turning-valve-opened',
|
|
786
|
+
'turning-wearing-it',
|
|
787
|
+
'turning-wheel-turned',
|
|
788
|
+
// if.action.undoing
|
|
789
|
+
'undoing-nothing-to-undo',
|
|
790
|
+
'undoing-undo-failed',
|
|
791
|
+
'undoing-undo-success',
|
|
792
|
+
'undoing-undo-to-turn',
|
|
793
|
+
// if.action.unlocking
|
|
794
|
+
'unlocking-already-unlocked',
|
|
795
|
+
'unlocking-cant-reach',
|
|
796
|
+
'unlocking-key-not-held',
|
|
797
|
+
'unlocking-no-key',
|
|
798
|
+
'unlocking-no-target',
|
|
799
|
+
'unlocking-not-lockable',
|
|
800
|
+
'unlocking-still-locked',
|
|
801
|
+
'unlocking-unlocked',
|
|
802
|
+
'unlocking-unlocked-with',
|
|
803
|
+
'unlocking-wrong-key',
|
|
804
|
+
// if.action.version
|
|
805
|
+
'version-version-compact',
|
|
806
|
+
'version-version-full',
|
|
807
|
+
'version-version-no-date',
|
|
808
|
+
// if.action.waiting
|
|
809
|
+
'waiting-grows-restless',
|
|
810
|
+
'waiting-nothing-happens',
|
|
811
|
+
'waiting-patience-rewarded',
|
|
812
|
+
'waiting-something-approaches',
|
|
813
|
+
'waiting-time-passes',
|
|
814
|
+
'waiting-time-runs-out',
|
|
815
|
+
'waiting-waited',
|
|
816
|
+
'waiting-waited-anxiously',
|
|
817
|
+
'waiting-waited-briefly',
|
|
818
|
+
'waiting-waited-for-event',
|
|
819
|
+
'waiting-waited-in-vehicle',
|
|
820
|
+
'waiting-waited-patiently',
|
|
821
|
+
// if.action.wearing
|
|
822
|
+
'wearing-already-wearing',
|
|
823
|
+
'wearing-cant-wear-that',
|
|
824
|
+
'wearing-hands-full',
|
|
825
|
+
'wearing-no-target',
|
|
826
|
+
'wearing-not-held',
|
|
827
|
+
'wearing-not-wearable',
|
|
828
|
+
'wearing-worn',
|
|
829
|
+
]);
|
|
830
|
+
//# sourceMappingURL=message-alias-catalog.js.map
|