@wayward/types 2.11.0-beta.dev.20211202.1 → 2.11.0-beta.dev.20211205.2
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/definitions/game/game/entity/Human.d.ts +1 -0
- package/definitions/game/game/inspection/InfoProvider.d.ts +2 -0
- package/definitions/game/game/inspection/inspections/ItemInspection.d.ts +1 -1
- package/definitions/game/game/item/IItem.d.ts +4 -0
- package/definitions/game/game/item/Item.d.ts +12 -2
- package/definitions/game/game/item/ItemManager.d.ts +4 -4
- package/definitions/game/game/item/ItemRecipeRequirementChecker.d.ts +4 -4
- package/definitions/game/game/item/ItemReferenceManager.d.ts +0 -1
- package/definitions/game/game/mapping/DrawnMap.d.ts +2 -1
- package/definitions/game/game/reference/ReferenceManager.d.ts +2 -2
- package/definitions/game/language/dictionary/Message.d.ts +885 -884
- package/definitions/game/renderer/Renderer.d.ts +1 -1
- package/definitions/game/save/serializer/Serializer.d.ts +1 -0
- package/definitions/game/ui/input/InputManager.d.ts +7 -0
- package/definitions/game/ui/old/screens/InGameScreen.d.ts +1 -1
- package/definitions/game/ui/screen/Screen.d.ts +3 -2
- package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/component/CanvasDialog.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/component/InspectionsList.d.ts +4 -0
- package/definitions/game/ui/screen/screens/game/static/Messages.d.ts +1 -0
- package/definitions/game/ui/screen/screens/menu/MenuManager.d.ts +11 -1
- package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -1
- package/definitions/game/utilities/Log.d.ts +11 -10
- package/definitions/game/utilities/Timer.d.ts +25 -0
- package/definitions/game/utilities/memory/ILifetime.d.ts +20 -0
- package/definitions/game/utilities/memory/IMemoryLeakDetector.d.ts +1 -6
- package/definitions/game/utilities/memory/MemoryLeakDetector.d.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.mod.base.json +2 -1
|
@@ -10,889 +10,890 @@
|
|
|
10
10
|
*/
|
|
11
11
|
declare enum Message {
|
|
12
12
|
None = 0,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
13
|
+
MultipleQuickslots = 1,
|
|
14
|
+
Aberrant = 2,
|
|
15
|
+
AboutHours = 3,
|
|
16
|
+
ActionAlterAltered = 4,
|
|
17
|
+
ActionAlterFailed = 5,
|
|
18
|
+
ActionAlterNotPossible = 6,
|
|
19
|
+
ActionAttachContainerAlreadyHasContainer = 7,
|
|
20
|
+
ActionAttachContainerAttachedContainer = 8,
|
|
21
|
+
ActionAttachContainerAttachingContainer = 9,
|
|
22
|
+
ActionAttachContainerCannotAttach = 10,
|
|
23
|
+
ActionAttachContainerNothingToAttachContainerTo = 11,
|
|
24
|
+
ActionAttackNoAttackTarget = 12,
|
|
25
|
+
ActionAttackNoHandsSelected = 13,
|
|
26
|
+
ActionButcherReleasesLava = 14,
|
|
27
|
+
ActionCastAreaOverfished = 15,
|
|
28
|
+
ActionConsumeItemTypeStats = 16,
|
|
29
|
+
ActionCraft = 17,
|
|
30
|
+
ActionCraftEfficacy = 18,
|
|
31
|
+
ActionCraftEfficacyHigh = 19,
|
|
32
|
+
ActionCraftEfficacyHighest = 20,
|
|
33
|
+
ActionCraftEfficacyLow = 21,
|
|
34
|
+
ActionCraftEfficacyLowest = 22,
|
|
35
|
+
ActionCraftEfficacyMed = 23,
|
|
36
|
+
ActionCraftEfficacyPercent = 24,
|
|
37
|
+
ActionCraftYouLackTheRequirements = 25,
|
|
38
|
+
ActionDetachContainerDetachContainer = 26,
|
|
39
|
+
ActionDetachContainerNoDetach = 27,
|
|
40
|
+
ActionDisassembleNoItemsSalvaged = 28,
|
|
41
|
+
ActionDisassembleSalvaged = 29,
|
|
42
|
+
ActionDismantleSeparated = 30,
|
|
43
|
+
ActionDrinkInFrontNoDrink = 31,
|
|
44
|
+
ActionEnhance = 32,
|
|
45
|
+
ActionEnhanceEnhanced = 33,
|
|
46
|
+
ActionEnhanceFailed = 34,
|
|
47
|
+
ActionEnhanceNotPossible = 35,
|
|
48
|
+
ActionFishingNothingBiting = 36,
|
|
49
|
+
ActionFishingSlipped = 37,
|
|
50
|
+
ActionFishingTooShallow = 38,
|
|
51
|
+
ActionJumpCannotJump = 39,
|
|
52
|
+
ActionMeleeHasToBeEquipped = 40,
|
|
53
|
+
ActionMeleeNothingToAttack = 41,
|
|
54
|
+
ActionMoveToSwimOffEdgeCannotCombatTides = 42,
|
|
55
|
+
ActionNavigateMoon = 43,
|
|
56
|
+
ActionNavigateNotOverworld = 44,
|
|
57
|
+
ActionNavigateSun = 45,
|
|
58
|
+
ActionNavigateUseSextant = 46,
|
|
59
|
+
ActionPetCreatureRefused = 47,
|
|
60
|
+
ActionPetNoTamedCreature = 48,
|
|
61
|
+
ActionPickupAllItemsNoItems = 49,
|
|
62
|
+
ActionPickupExcrementNoExcrement = 50,
|
|
63
|
+
ActionPickupItemNoItem = 51,
|
|
64
|
+
ActionPickupNoPickup = 52,
|
|
65
|
+
ActionRefineNoDurability = 53,
|
|
66
|
+
ActionReleaseNoTamedCreature = 54,
|
|
67
|
+
ActionRenameIsland = 55,
|
|
68
|
+
ActionRenameNothing = 56,
|
|
69
|
+
ActionSailToCivilizationNotInsideBoat = 57,
|
|
70
|
+
ActionSailToIsland = 58,
|
|
71
|
+
ActionSailToIslandArrived = 59,
|
|
72
|
+
ActionSailToIslandPlayerArriving = 60,
|
|
73
|
+
ActionSailToIslandPlayerDeparting = 61,
|
|
74
|
+
ActionTameCreatureTamed = 62,
|
|
75
|
+
ActionTameNoCreature = 63,
|
|
76
|
+
ActionTestDepthNothingToTest = 64,
|
|
77
|
+
ActionTestDepthWell = 65,
|
|
78
|
+
ActionToggleContainerNoContainer = 66,
|
|
79
|
+
ActionToggleDoorNoDoor = 67,
|
|
80
|
+
ActionToggleHitchNoCreature = 68,
|
|
81
|
+
ActionToggleHitchNoHitch = 69,
|
|
82
|
+
ActionUpgrade = 70,
|
|
83
|
+
ActionUpgradeFailed = 71,
|
|
84
|
+
ActionUpgradeNotMagical = 72,
|
|
85
|
+
ActionUpgradeNotPossible = 73,
|
|
86
|
+
ActionUpgradeUpgraded = 74,
|
|
87
|
+
ActionUseItemWeaponNeeded = 75,
|
|
88
|
+
ActionWith = 76,
|
|
89
|
+
AddedFuelToFire = 77,
|
|
90
|
+
AddedFuelToTorch = 78,
|
|
91
|
+
AddToQuickslot = 79,
|
|
92
|
+
AllEquipmentUnEquipped = 80,
|
|
93
|
+
AlreadyDesalinatedWaterInStill = 81,
|
|
94
|
+
AlreadyFullyRefined = 82,
|
|
95
|
+
AlreadyFullyRepaired = 83,
|
|
96
|
+
AlreadyPreserved = 84,
|
|
97
|
+
Alter = 85,
|
|
98
|
+
AnotherIsland = 86,
|
|
99
|
+
AnUnknownItem = 87,
|
|
100
|
+
AppearedNotEffectiveForGathering = 88,
|
|
101
|
+
AppearsToBeAberrant = 89,
|
|
102
|
+
ArmorAppeared = 90,
|
|
103
|
+
ArmorProtectedFromInjuryAgainst = 91,
|
|
104
|
+
Attack = 92,
|
|
105
|
+
AttemptedToDropAllIntoFire = 93,
|
|
106
|
+
AttemptedToPlaceAllOnGround = 94,
|
|
107
|
+
AttemptToSoothBurnInWater = 95,
|
|
108
|
+
AttemptToTill = 96,
|
|
109
|
+
AutoActionsNoItem = 97,
|
|
110
|
+
BadlyBurnedLostHealth = 98,
|
|
111
|
+
BarteringSkillsProvided = 99,
|
|
112
|
+
BasedOnItSeems = 100,
|
|
113
|
+
BeenPoisoned = 101,
|
|
114
|
+
BeginSleeping = 102,
|
|
115
|
+
BeginUsingBoat = 103,
|
|
116
|
+
BestForCrafting = 104,
|
|
117
|
+
BleedingHasStopped = 105,
|
|
118
|
+
BleedingProfusely = 106,
|
|
119
|
+
BleedingToDeathLostHealth = 107,
|
|
120
|
+
BookBlank = 108,
|
|
121
|
+
BookContains = 109,
|
|
122
|
+
BookCrumbles = 110,
|
|
123
|
+
BookDiagrams = 111,
|
|
124
|
+
BookEmpty = 112,
|
|
125
|
+
BookNothing = 113,
|
|
126
|
+
BookOpen = 114,
|
|
127
|
+
BookScribbles = 115,
|
|
128
|
+
BothEffectiveIneffective = 116,
|
|
129
|
+
BothHands = 117,
|
|
130
|
+
BrokeIntoPieces = 118,
|
|
131
|
+
BrokenOnImpact = 119,
|
|
132
|
+
BrokenWhileFiring = 120,
|
|
133
|
+
Build = 121,
|
|
134
|
+
Burned = 122,
|
|
135
|
+
CannotAddAnyMoreFuel = 123,
|
|
136
|
+
CannotBePerformedOverWater = 124,
|
|
137
|
+
CannotBePreserved = 125,
|
|
138
|
+
CannotBeRefined = 126,
|
|
139
|
+
CannotBeRefinedReinforcementNeeded = 127,
|
|
140
|
+
CannotBeReinforced = 128,
|
|
141
|
+
CannotBeRepaired = 129,
|
|
142
|
+
CannotBeTamed = 130,
|
|
143
|
+
CannotBeTamedInThisWay = 131,
|
|
144
|
+
CannotBuildHere = 132,
|
|
145
|
+
CannotDoThatHere = 133,
|
|
146
|
+
CannotDropHere = 134,
|
|
147
|
+
CannotEquipThatThere = 135,
|
|
148
|
+
CannotFishFor = 136,
|
|
149
|
+
CannotHere = 137,
|
|
150
|
+
CannotInWater = 138,
|
|
151
|
+
CannotLeave = 139,
|
|
152
|
+
CannotPickUpWhileLit = 140,
|
|
153
|
+
CannotPickUpWithItemsInside = 141,
|
|
154
|
+
CannotPlaceContainerInItself = 142,
|
|
155
|
+
CannotPlaceHere = 143,
|
|
156
|
+
CannotPlaceThatFromHere = 144,
|
|
157
|
+
CannotPlaceThatHere = 145,
|
|
158
|
+
CannotPlantHereTilled = 146,
|
|
159
|
+
CannotRepairWhileLit = 147,
|
|
160
|
+
CannotRestHere = 148,
|
|
161
|
+
CannotSeeHere = 149,
|
|
162
|
+
CannotSleepHere = 150,
|
|
163
|
+
CannotStartFireHere = 151,
|
|
164
|
+
CannotToTellTime = 152,
|
|
165
|
+
CannotUseCommand = 153,
|
|
166
|
+
CannotWhenProtected = 154,
|
|
167
|
+
CannotWhenProtectedDangerousAction = 155,
|
|
168
|
+
CarryingTooMuchWeight = 156,
|
|
169
|
+
CarvedUpCorpse = 157,
|
|
170
|
+
Carving = 158,
|
|
171
|
+
CastYourLine = 159,
|
|
172
|
+
Category = 160,
|
|
173
|
+
CaughtFish = 161,
|
|
174
|
+
ChatBanCommand = 162,
|
|
175
|
+
ChatBannedCommand = 163,
|
|
176
|
+
ChatCommandsCommand = 164,
|
|
177
|
+
ChatCommandsCommandCommand = 165,
|
|
178
|
+
ChatPingCommand = 166,
|
|
179
|
+
ChatPlayerMessage = 167,
|
|
180
|
+
ChatPlayersCommand = 168,
|
|
181
|
+
ChatServerMessage = 169,
|
|
182
|
+
ChatUnbanCommand = 170,
|
|
183
|
+
ChatUnknownCommand = 171,
|
|
184
|
+
Chop = 172,
|
|
185
|
+
Chopping = 173,
|
|
186
|
+
ClearedBlood = 174,
|
|
187
|
+
ClearMessages = 175,
|
|
188
|
+
Clockwise = 176,
|
|
189
|
+
CloseContainer = 177,
|
|
190
|
+
CloseDoor = 178,
|
|
191
|
+
CloseToBeingDestroyed = 179,
|
|
192
|
+
CollectObjectWithHands = 180,
|
|
193
|
+
Consumed = 181,
|
|
194
|
+
Container = 182,
|
|
195
|
+
ContextMenuActionHotkey = 183,
|
|
196
|
+
ContextMenuHelpActions = 184,
|
|
197
|
+
ContextMenuHelpAutoActions = 185,
|
|
198
|
+
ContextMenuHelpItems = 186,
|
|
199
|
+
CopiedMap = 187,
|
|
200
|
+
CopySelectedText = 188,
|
|
201
|
+
CopyX = 189,
|
|
202
|
+
CorpseOf = 190,
|
|
203
|
+
CorpseOfNamed = 191,
|
|
204
|
+
CouldNotDecipher = 192,
|
|
205
|
+
Counterclockwise = 193,
|
|
206
|
+
Craft = 194,
|
|
207
|
+
Crafted = 195,
|
|
208
|
+
Crafts = 196,
|
|
209
|
+
CreatureAngered = 197,
|
|
210
|
+
CreatureAppears = 198,
|
|
211
|
+
CreatureAppeased = 199,
|
|
212
|
+
CreatureExcrement = 200,
|
|
213
|
+
CreatureHappinessHigh = 201,
|
|
214
|
+
CreatureHappinessLow = 202,
|
|
215
|
+
CreatureHappinessLowest = 203,
|
|
216
|
+
CreatureHappinessNormal = 204,
|
|
217
|
+
CreatureIdolAttractedCreature = 205,
|
|
218
|
+
CreatureUntamed = 206,
|
|
219
|
+
CuredYourPoison = 207,
|
|
220
|
+
Cut = 208,
|
|
221
|
+
DamageAppeared = 209,
|
|
222
|
+
DamagedByPouring = 210,
|
|
223
|
+
DayQuarter1 = 211,
|
|
224
|
+
DayQuarter2 = 212,
|
|
225
|
+
DayQuarter3 = 213,
|
|
226
|
+
DayQuarter4 = 214,
|
|
227
|
+
DealtNoDamageToYou = 215,
|
|
228
|
+
DeathBy = 216,
|
|
229
|
+
DeathByBleeding = 217,
|
|
230
|
+
DeathByBurning = 218,
|
|
231
|
+
DeathByChallengeWinner = 219,
|
|
232
|
+
DeathByConsumption = 220,
|
|
233
|
+
DeathByDrowning = 221,
|
|
234
|
+
DeathByExhaustion = 222,
|
|
235
|
+
DeathByFistByPlayer = 223,
|
|
236
|
+
DeathByFrostbite = 224,
|
|
237
|
+
DeathByMalnutrition = 225,
|
|
238
|
+
DeathByPoison = 226,
|
|
239
|
+
DeathBySteppingOn = 227,
|
|
240
|
+
DeathByTrap = 228,
|
|
241
|
+
DeathByWeaponByPlayer = 229,
|
|
242
|
+
Decay = 230,
|
|
243
|
+
DestroyedFromUse = 231,
|
|
244
|
+
DetachContainer = 232,
|
|
245
|
+
Dexterity = 233,
|
|
246
|
+
DexterityIncreasing = 234,
|
|
247
|
+
DidNotSeemToBeHurting = 235,
|
|
248
|
+
Dig = 236,
|
|
249
|
+
DigAway = 237,
|
|
250
|
+
Digging = 238,
|
|
251
|
+
DigWithHands = 239,
|
|
252
|
+
Disabled = 240,
|
|
253
|
+
Disassemble = 241,
|
|
254
|
+
DisassembleAction = 242,
|
|
255
|
+
Disassembling = 243,
|
|
256
|
+
DiscoveredCaveEntrance = 244,
|
|
257
|
+
DiscoveredInTheBottle = 245,
|
|
258
|
+
DiscoveredLavaPassage = 246,
|
|
259
|
+
Dismantle = 247,
|
|
260
|
+
DismantleAction = 248,
|
|
261
|
+
DismantleLabel = 249,
|
|
262
|
+
Dismantling = 250,
|
|
263
|
+
DismantlingRequires = 251,
|
|
264
|
+
DisplacedPuddles = 252,
|
|
265
|
+
DoNotHaveTreasureMaps = 253,
|
|
266
|
+
DoNotProduceAnyResources = 254,
|
|
267
|
+
DoodadCauseStatus = 255,
|
|
268
|
+
DoodadGroupTier = 256,
|
|
269
|
+
DrewSurroundings = 257,
|
|
270
|
+
Drink = 258,
|
|
271
|
+
Drop = 259,
|
|
272
|
+
DropAll = 260,
|
|
273
|
+
DropAllOfSameQuality = 261,
|
|
274
|
+
DroppedIntoDepths = 262,
|
|
275
|
+
DroppedIntoFire = 263,
|
|
276
|
+
DroppedIntoTheVoid = 264,
|
|
277
|
+
DueToDehydration = 265,
|
|
278
|
+
DueToStarvation = 266,
|
|
279
|
+
DugTreasureOut = 267,
|
|
280
|
+
DumpContentsOfContainerInInventory = 268,
|
|
281
|
+
Durability = 269,
|
|
282
|
+
DyingOfDehydration = 270,
|
|
283
|
+
EarnedMilestone = 271,
|
|
284
|
+
East = 272,
|
|
285
|
+
EastNortheast = 273,
|
|
286
|
+
EastSoutheast = 274,
|
|
287
|
+
Effective = 275,
|
|
288
|
+
Enabled = 276,
|
|
289
|
+
Enchant = 277,
|
|
290
|
+
EquipmentPreventedStatusEffects = 278,
|
|
291
|
+
EquipTo = 279,
|
|
292
|
+
ErrorHasOccured = 280,
|
|
293
|
+
ExtinguishedFire = 281,
|
|
294
|
+
ExtinguishedLightSource = 282,
|
|
295
|
+
FailedToAddFuelToTorch = 283,
|
|
296
|
+
FailedToCatchFish = 284,
|
|
297
|
+
FailedToCauseDamage = 285,
|
|
298
|
+
FailedToCauseYouDamage = 286,
|
|
299
|
+
FailedToCopy = 287,
|
|
300
|
+
FailedToDraw = 288,
|
|
301
|
+
FailedToEnchant = 289,
|
|
302
|
+
FailedToIgniteTorch = 290,
|
|
303
|
+
FailedToPickLock = 291,
|
|
304
|
+
FailedToPlant = 292,
|
|
305
|
+
FailedToPreserve = 293,
|
|
306
|
+
FailedToRefine = 294,
|
|
307
|
+
FailedToReinforce = 295,
|
|
308
|
+
FailedToRepair = 296,
|
|
309
|
+
FailedToStartFire = 297,
|
|
310
|
+
FailedToTame = 298,
|
|
311
|
+
FailedToTransmogrify = 299,
|
|
312
|
+
FarOffLands = 300,
|
|
313
|
+
FeltBurningPainLostHealth = 301,
|
|
314
|
+
FeltFrostbitePainLostHealth = 302,
|
|
315
|
+
FewMinutes = 303,
|
|
316
|
+
Filled = 304,
|
|
317
|
+
FilledFrom = 305,
|
|
318
|
+
FireAroundYouIsWarm = 306,
|
|
319
|
+
FiredIntoObstacle = 307,
|
|
320
|
+
FireOverflowed = 308,
|
|
321
|
+
FireOverflowedFireElemental = 309,
|
|
322
|
+
FireSource = 310,
|
|
323
|
+
FishingWithNoBait = 311,
|
|
324
|
+
Floating = 312,
|
|
325
|
+
FreshWater = 313,
|
|
326
|
+
FromTheStill = 314,
|
|
327
|
+
Fuel = 315,
|
|
328
|
+
FuelIsRequired = 316,
|
|
329
|
+
FullyDecodedMap = 317,
|
|
330
|
+
GameHasBeenSavedIsTakingUpMB = 318,
|
|
331
|
+
Gather = 319,
|
|
332
|
+
GatherDestroy = 320,
|
|
333
|
+
Gathering = 321,
|
|
334
|
+
GatherWithHands = 322,
|
|
335
|
+
GhostNoActions = 323,
|
|
336
|
+
GhostOf = 324,
|
|
337
|
+
GoatHasNoMilk = 325,
|
|
338
|
+
GrabAll = 326,
|
|
339
|
+
Group = 327,
|
|
340
|
+
HackAway = 328,
|
|
341
|
+
HandProtectionPreventedInjury = 329,
|
|
342
|
+
HandsNotEffectiveForDigging = 330,
|
|
343
|
+
Harvest = 331,
|
|
344
|
+
Harvesting = 332,
|
|
345
|
+
HarvestWithHands = 333,
|
|
346
|
+
HasBeenHurtByATrap = 334,
|
|
347
|
+
HasDecayed = 335,
|
|
348
|
+
HasHitYouForDamage = 336,
|
|
349
|
+
HasNoEffect = 337,
|
|
350
|
+
HasSetTrapOffNoDamage = 338,
|
|
351
|
+
HasSplit = 339,
|
|
352
|
+
Help = 340,
|
|
353
|
+
HelpGrow = 341,
|
|
354
|
+
Here = 342,
|
|
355
|
+
Hints = 343,
|
|
356
|
+
HintsDisabled = 344,
|
|
357
|
+
HintsEnabled = 345,
|
|
358
|
+
Hitch = 346,
|
|
359
|
+
HitchAttempt = 347,
|
|
360
|
+
HitchCreature = 348,
|
|
361
|
+
HitchDisabled = 349,
|
|
362
|
+
HitchInUse = 350,
|
|
363
|
+
HitchUnhitch = 351,
|
|
364
|
+
HitForDamage = 352,
|
|
365
|
+
HitYouForDamage = 353,
|
|
366
|
+
Hour = 354,
|
|
367
|
+
Hours = 355,
|
|
368
|
+
HurtHandsHittingWithoutWeapons = 356,
|
|
369
|
+
HurtHandsWithNoTool = 357,
|
|
370
|
+
Ignite = 358,
|
|
371
|
+
IgnitedTorch = 359,
|
|
372
|
+
Ineffective = 360,
|
|
373
|
+
InjuredFromTrap = 361,
|
|
374
|
+
InNeedOfRepair = 362,
|
|
375
|
+
InspectItem = 363,
|
|
376
|
+
InteractingWithHasInjuredYouForDamage = 364,
|
|
377
|
+
Inventory = 365,
|
|
378
|
+
IsInTheWayOfPickingUp = 366,
|
|
379
|
+
It = 367,
|
|
380
|
+
ItAlsoReveals = 368,
|
|
381
|
+
ItAlsoSeems = 369,
|
|
382
|
+
ItContains = 370,
|
|
383
|
+
ItemFromWater = 371,
|
|
384
|
+
JoinedAServer = 372,
|
|
385
|
+
Jump = 373,
|
|
386
|
+
Killed = 374,
|
|
387
|
+
KnowledgeHasIncreased = 375,
|
|
388
|
+
LabelActionTier = 376,
|
|
389
|
+
LabelAdditionalRequirements = 377,
|
|
390
|
+
LabelAttackFromTactics = 378,
|
|
391
|
+
LabelBase = 379,
|
|
392
|
+
LabelCanIncrease = 380,
|
|
393
|
+
LabelCraftingReputation = 381,
|
|
394
|
+
LabelCraftingRequires = 382,
|
|
395
|
+
LabelCraftingSkillReputation = 383,
|
|
396
|
+
LabelDecay = 384,
|
|
397
|
+
LabelDefense = 385,
|
|
398
|
+
LabelDismantlingRequires = 386,
|
|
399
|
+
LabelDurability = 387,
|
|
400
|
+
LabelEquip = 388,
|
|
401
|
+
LabelGrouping = 389,
|
|
402
|
+
LabelHave = 390,
|
|
403
|
+
LabelLeftHandAttack = 391,
|
|
404
|
+
LabelLevel = 392,
|
|
405
|
+
LabelLightSourceWhenLit = 393,
|
|
406
|
+
LabelOnCure = 394,
|
|
407
|
+
LabelOnDrink = 395,
|
|
408
|
+
LabelOnEat = 396,
|
|
409
|
+
LabelOnEquip = 397,
|
|
410
|
+
LabelOnHeal = 398,
|
|
411
|
+
LabelOnOtherHeal = 399,
|
|
412
|
+
LabelPreservationRate = 400,
|
|
413
|
+
LabelProtected = 401,
|
|
414
|
+
LabelRange = 402,
|
|
415
|
+
LabelRanged = 403,
|
|
416
|
+
LabelRangedAttack = 404,
|
|
417
|
+
LabelRangedDamage = 405,
|
|
418
|
+
LabelReputationImpact = 406,
|
|
419
|
+
LabelResists = 407,
|
|
420
|
+
LabelRightHandAttack = 408,
|
|
421
|
+
LabelSkill = 409,
|
|
422
|
+
LabelStokeFireStrength = 410,
|
|
423
|
+
LabelThrowDamageType = 411,
|
|
424
|
+
LabelTrapDamage = 412,
|
|
425
|
+
LabelUse = 413,
|
|
426
|
+
LabelUses = 414,
|
|
427
|
+
LabelVulnerabilities = 415,
|
|
428
|
+
LabelWeight = 416,
|
|
429
|
+
LabelWeightCapacity = 417,
|
|
430
|
+
LabelWeightReduction = 418,
|
|
431
|
+
LabelWorth = 419,
|
|
432
|
+
LastPlaceYouLeftOff = 420,
|
|
433
|
+
LearnedHowToCreate = 421,
|
|
434
|
+
LeftHand = 422,
|
|
435
|
+
LikelyFailures = 423,
|
|
436
|
+
Limited = 424,
|
|
437
|
+
Magical = 425,
|
|
438
|
+
MagicalItemDamage = 426,
|
|
439
|
+
MapDestroyed = 427,
|
|
440
|
+
MapNearlyDestroyed = 428,
|
|
441
|
+
MapNotOfThisArea = 429,
|
|
442
|
+
MaterialsDestroyed = 430,
|
|
443
|
+
MerchantAlreadyTradedItem = 431,
|
|
444
|
+
MessageOfTheDay = 432,
|
|
445
|
+
Metabolism = 433,
|
|
446
|
+
MetabolismSlowed = 434,
|
|
447
|
+
Milk = 435,
|
|
448
|
+
Mine = 436,
|
|
449
|
+
Mining = 437,
|
|
450
|
+
MissedWith = 438,
|
|
451
|
+
MissedYouWith = 439,
|
|
452
|
+
MoveAllOfSameQualityToFacingContainer = 440,
|
|
453
|
+
MoveAllOfSameQualityToInventory = 441,
|
|
454
|
+
MoveAllOfSameQualityToLastOpenedContainer = 442,
|
|
455
|
+
MoveAllOfSameQualityToOpenedContainer = 443,
|
|
456
|
+
MoveAllToFacingContainer = 444,
|
|
457
|
+
MoveAllToInventory = 445,
|
|
458
|
+
MoveAllToLastOpenedContainer = 446,
|
|
459
|
+
MoveAllToOpenedContainer = 447,
|
|
460
|
+
MovedItem = 448,
|
|
461
|
+
MoveOverTrapButDoNotSetOff = 449,
|
|
462
|
+
MoveToFacingContainer = 450,
|
|
463
|
+
MoveToInventory = 451,
|
|
464
|
+
MoveToLastOpenedContainer = 452,
|
|
465
|
+
MoveToOpenedContainer = 453,
|
|
466
|
+
MultiplayerGamePaused = 454,
|
|
467
|
+
MultiplayerGameResumed = 455,
|
|
468
|
+
MultiplayerPlayerConnected = 456,
|
|
469
|
+
MultiplayerPlayerDied = 457,
|
|
470
|
+
MultiplayerPlayerDisconnected = 458,
|
|
471
|
+
MultiplayerPlayerJoined = 459,
|
|
472
|
+
MustBeEquippedToIgnite = 460,
|
|
473
|
+
Mysteriously = 461,
|
|
474
|
+
Name = 462,
|
|
475
|
+
NearlyBurnedEquipmentProtectedYou = 463,
|
|
476
|
+
NeedFreeHandToShoot = 464,
|
|
477
|
+
NeedToEquipToShoot = 465,
|
|
478
|
+
NeedToStartTravelsOutside = 466,
|
|
479
|
+
NeedWaterForBoat = 467,
|
|
480
|
+
Negatively = 468,
|
|
481
|
+
NightQuarter1 = 469,
|
|
482
|
+
NightQuarter2 = 470,
|
|
483
|
+
NightQuarter3 = 471,
|
|
484
|
+
NightQuarter4 = 472,
|
|
485
|
+
No = 473,
|
|
486
|
+
NoAmmunitionForThatWeapon = 474,
|
|
487
|
+
NoFireToStokeWith = 475,
|
|
488
|
+
NoFishAtLocation = 476,
|
|
489
|
+
NoGroundWater = 477,
|
|
490
|
+
NoInkToDrawMap = 478,
|
|
491
|
+
NoKindlingOrFuelItemsToStartFire = 479,
|
|
492
|
+
NoKindlingToStartFire = 480,
|
|
493
|
+
NoLongerFeelPainOfBeingBurned = 481,
|
|
494
|
+
NoLongerFeelPainOfBeingFrostbitten = 482,
|
|
495
|
+
NoLongerHostile = 483,
|
|
496
|
+
NoMoreRoomInContainer = 484,
|
|
497
|
+
NoPaperToDrawMap = 485,
|
|
498
|
+
NoRequiredItemToFireWeapon = 486,
|
|
499
|
+
NoReturnWithoutCompletingChallenges = 487,
|
|
500
|
+
NoRoomForImprovement = 488,
|
|
501
|
+
NoRoomToDrop = 489,
|
|
502
|
+
North = 490,
|
|
503
|
+
Northeast = 491,
|
|
504
|
+
NorthNortheast = 492,
|
|
505
|
+
NorthNorthwest = 493,
|
|
506
|
+
Northwest = 494,
|
|
507
|
+
NotAvailable = 495,
|
|
508
|
+
NotEnoughPurifiedWaterYet = 496,
|
|
509
|
+
NotEnoughTreasureToReturn = 497,
|
|
510
|
+
NotFacingCreatureToOfferThisTo = 498,
|
|
511
|
+
NotFacingLockedObject = 499,
|
|
512
|
+
NotFacingOtherToHeal = 500,
|
|
513
|
+
NotFacingValidItem = 501,
|
|
514
|
+
NothingHereToButcher = 502,
|
|
515
|
+
NothingHereToFill = 503,
|
|
516
|
+
NothingHereToGrasp = 504,
|
|
517
|
+
NothingToGetFromThis = 505,
|
|
518
|
+
NothingToHarvestFromThisGather = 506,
|
|
519
|
+
NothingToSmother = 507,
|
|
520
|
+
NothingUsefulToHarvestYet = 508,
|
|
521
|
+
NoTinderToStartFire = 509,
|
|
522
|
+
NotSuitableToPlant = 510,
|
|
523
|
+
NoWaterInStill = 511,
|
|
524
|
+
NPCStartingDialog1 = 512,
|
|
525
|
+
NPCStartingDialog2 = 513,
|
|
526
|
+
NPCStartingDialog3 = 514,
|
|
527
|
+
NPCStartingDialog4 = 515,
|
|
528
|
+
NPCWelcome = 516,
|
|
529
|
+
NPCWelcomeCredit = 517,
|
|
530
|
+
NumberEight = 518,
|
|
531
|
+
NumberFive = 519,
|
|
532
|
+
NumberFour = 520,
|
|
533
|
+
NumberNine = 521,
|
|
534
|
+
NumberOne = 522,
|
|
535
|
+
NumberSeven = 523,
|
|
536
|
+
NumberSix = 524,
|
|
537
|
+
NumberTen = 525,
|
|
538
|
+
NumberThree = 526,
|
|
539
|
+
NumberTwo = 527,
|
|
540
|
+
ObjectIsLocked = 528,
|
|
541
|
+
ObjectIsLockedAttemptToBreakIt = 529,
|
|
542
|
+
Offer = 530,
|
|
543
|
+
OfferAberrantFail = 531,
|
|
544
|
+
OfferAberrantFailButTamed = 532,
|
|
545
|
+
OpenCloseContainer = 533,
|
|
546
|
+
OpenCloseDoor = 534,
|
|
547
|
+
OpenDoor = 535,
|
|
548
|
+
OverEatingLostStamina = 536,
|
|
549
|
+
OverHydratingLostStamina = 537,
|
|
550
|
+
Pack = 538,
|
|
551
|
+
PaperTurnedToMush = 539,
|
|
552
|
+
ParryTheBlow = 540,
|
|
553
|
+
PartiallyDecodedMap = 541,
|
|
554
|
+
PenultimateAnd = 542,
|
|
555
|
+
Pet = 543,
|
|
556
|
+
PetCreature = 544,
|
|
557
|
+
PickAway = 545,
|
|
558
|
+
PickupAllItems = 546,
|
|
559
|
+
PickupExcrementWithHands = 547,
|
|
560
|
+
PickupItem = 548,
|
|
561
|
+
Place = 549,
|
|
562
|
+
PlacedOnGround = 550,
|
|
563
|
+
Plant = 551,
|
|
564
|
+
PlantCouldBeHarvested = 552,
|
|
565
|
+
PlantedInGround = 553,
|
|
566
|
+
PlantGatheringWillDestroy = 554,
|
|
567
|
+
PlantHasResourcesToGather = 555,
|
|
568
|
+
PlantHasResourcesToHarvest = 556,
|
|
569
|
+
PlantHighlyFertile = 557,
|
|
570
|
+
Planting = 558,
|
|
571
|
+
PlantIsBare = 559,
|
|
572
|
+
PlantIsFertile = 560,
|
|
573
|
+
PlantIsInStage = 561,
|
|
574
|
+
PlantIsNotFertile = 562,
|
|
575
|
+
PlantNotReadyToHarvest = 563,
|
|
576
|
+
PlantReadyToGather = 564,
|
|
577
|
+
PlantReadyToGatherNotMaximal = 565,
|
|
578
|
+
PlantReadyToHarvest = 566,
|
|
579
|
+
PlantReadyToHarvestNotMaximal = 567,
|
|
580
|
+
Player = 568,
|
|
581
|
+
PlayerHas = 569,
|
|
582
|
+
PlayerHasCompletedChallengeRequirement = 570,
|
|
583
|
+
PlayerHasWonChallenge = 571,
|
|
584
|
+
Poisoned = 572,
|
|
585
|
+
PoisonedLostHealth = 573,
|
|
586
|
+
PoisonWorkedItsCourse = 574,
|
|
587
|
+
Positively = 575,
|
|
588
|
+
PouredOut = 576,
|
|
589
|
+
PouredOutOnYourself = 577,
|
|
590
|
+
PouredWaterIntoStill = 578,
|
|
591
|
+
PourHarmedPlant = 579,
|
|
592
|
+
PourHealedPlant = 580,
|
|
593
|
+
PourHealedPlantFully = 581,
|
|
594
|
+
PourHealedPlantPartially = 582,
|
|
595
|
+
PourIncreasedFertility = 583,
|
|
596
|
+
Pouring = 584,
|
|
597
|
+
Prepare = 585,
|
|
598
|
+
Prepared = 586,
|
|
599
|
+
Preserve = 587,
|
|
600
|
+
PreservedFood = 588,
|
|
601
|
+
PurifiedWaterInStill = 589,
|
|
602
|
+
Quality = 590,
|
|
603
|
+
RandomEventsFire = 591,
|
|
604
|
+
Recent = 592,
|
|
605
|
+
ReduceLength = 593,
|
|
606
|
+
Refine = 594,
|
|
607
|
+
RefusedToBeTamed = 595,
|
|
608
|
+
Reinforce = 596,
|
|
609
|
+
Release = 597,
|
|
610
|
+
RemoveAction = 598,
|
|
611
|
+
RemoveFromQuickslot = 599,
|
|
612
|
+
Repair = 600,
|
|
613
|
+
ReputationDecreased = 601,
|
|
614
|
+
ReputationIncreased = 602,
|
|
615
|
+
ReputationUpdate = 603,
|
|
616
|
+
RequiredForDisassembleLabel = 604,
|
|
617
|
+
RequiredForDisassembly = 605,
|
|
618
|
+
RequiresFireToBeLit = 606,
|
|
619
|
+
RequiresYouFacingFireSource = 607,
|
|
620
|
+
RequiresYouToBeAround = 608,
|
|
621
|
+
Resistant = 609,
|
|
622
|
+
ResistOrVuln = 610,
|
|
623
|
+
ResistOrVulnAll = 611,
|
|
624
|
+
Rest = 612,
|
|
625
|
+
Rested = 613,
|
|
626
|
+
Resting = 614,
|
|
627
|
+
RestingOnGroundNotEffective = 615,
|
|
628
|
+
RestInterrupted = 616,
|
|
629
|
+
RestInterruptedDamage = 617,
|
|
630
|
+
RestInterruptedDying = 618,
|
|
631
|
+
RestInterruptedLoudNoise = 619,
|
|
632
|
+
RestInterruptedPain = 620,
|
|
633
|
+
RestInterruptedStirring = 621,
|
|
634
|
+
RestLongTime = 622,
|
|
635
|
+
RestModerateTime = 623,
|
|
636
|
+
RestOnGround = 624,
|
|
637
|
+
RestShortTime = 625,
|
|
638
|
+
RestTime = 626,
|
|
639
|
+
ReturnedToCivilization = 627,
|
|
640
|
+
ReturningToCivilizationSetOffAgain = 628,
|
|
641
|
+
ReturnsToLife = 629,
|
|
642
|
+
Reveals = 630,
|
|
643
|
+
RevealsEntityAppearsHurt = 631,
|
|
644
|
+
RevealsEntityAppearsUnharmed = 632,
|
|
645
|
+
RevealsEntityAppearsVeryHurt = 633,
|
|
646
|
+
RevealsEntityIsAtPercentHealth = 634,
|
|
647
|
+
RevealsEntityIsInjured = 635,
|
|
648
|
+
RevealsEntityIsMostlyUninjured = 636,
|
|
649
|
+
RevealsEntityIsOnTheVergeOfDeath = 637,
|
|
650
|
+
RevealsEntityIsSeverelyInjured = 638,
|
|
651
|
+
RevealsEntityIsUninjured = 639,
|
|
652
|
+
RevealsEntitySeemsInjured = 640,
|
|
653
|
+
RevealsEntitySeemsUninjured = 641,
|
|
654
|
+
RevealsNumberOfResistancesAndVulnerabilities = 642,
|
|
655
|
+
RevealsResistancesAndVulnerabilities = 643,
|
|
656
|
+
RevealsSomeResistancesAndVulnerabilities = 644,
|
|
657
|
+
Reverse = 645,
|
|
658
|
+
RightHand = 646,
|
|
659
|
+
Sailing = 647,
|
|
660
|
+
ScrollMaster = 648,
|
|
661
|
+
ScrollProvidedNoUsefulInsight = 649,
|
|
662
|
+
Seawater = 650,
|
|
663
|
+
SeemsToHaveDrawnEnergy = 651,
|
|
664
|
+
SetTrapOffButNoDamage = 652,
|
|
665
|
+
SetUp = 653,
|
|
666
|
+
ShadowInTheWater = 654,
|
|
667
|
+
Skill = 655,
|
|
668
|
+
SkillHasRaised = 656,
|
|
669
|
+
Skills = 657,
|
|
670
|
+
Sleep = 658,
|
|
671
|
+
Sleeping = 659,
|
|
672
|
+
Slept = 660,
|
|
673
|
+
SlitherSuckerConstricts = 661,
|
|
674
|
+
SlitherSuckerJumpedOnHead = 662,
|
|
675
|
+
SomethingInTheWayOf = 663,
|
|
676
|
+
SomethingInTheWayOfButcherFirst = 664,
|
|
677
|
+
SomethingInTheWayOfFire = 665,
|
|
678
|
+
SomethingInTheWayOfFishing = 666,
|
|
679
|
+
SomethingInTheWayOfPerforming = 667,
|
|
680
|
+
SomethingInTheWayOfPlacing = 668,
|
|
681
|
+
SomethingInTheWayOfPlanting = 669,
|
|
682
|
+
SomethingInWayOfClosingDoor = 670,
|
|
683
|
+
SoothedTheirBurnInjuries = 671,
|
|
684
|
+
SoothedYourBurnInjuries = 672,
|
|
685
|
+
Sort = 673,
|
|
686
|
+
SortedByBestCraftingConsumables = 674,
|
|
687
|
+
SortedByBestCraftingRequirements = 675,
|
|
688
|
+
SortedByCategory = 676,
|
|
689
|
+
SortedByDecay = 677,
|
|
690
|
+
SortedByDurability = 678,
|
|
691
|
+
SortedByGroup = 679,
|
|
692
|
+
SortedByMagical = 680,
|
|
693
|
+
SortedByName = 681,
|
|
694
|
+
SortedByQuality = 682,
|
|
695
|
+
SortedByRecent = 683,
|
|
696
|
+
SortedBySkill = 684,
|
|
697
|
+
SortedByUnlockedTime = 685,
|
|
698
|
+
SortedByWeight = 686,
|
|
699
|
+
SortedByWorth = 687,
|
|
700
|
+
South = 688,
|
|
701
|
+
Southeast = 689,
|
|
702
|
+
SouthSoutheast = 690,
|
|
703
|
+
SouthSouthwest = 691,
|
|
704
|
+
Southwest = 692,
|
|
705
|
+
StaminaIsFull = 693,
|
|
706
|
+
StartedFire = 694,
|
|
707
|
+
StartTravelInWater = 695,
|
|
708
|
+
StarvingToDeath = 696,
|
|
709
|
+
StatAmount = 697,
|
|
710
|
+
StatGained = 698,
|
|
711
|
+
StatLost = 699,
|
|
712
|
+
StatQuenched = 700,
|
|
713
|
+
StatRegained = 701,
|
|
714
|
+
StatSated = 702,
|
|
715
|
+
SteppingOn = 703,
|
|
716
|
+
StillHasNoWaterToPurify = 704,
|
|
717
|
+
StirredUpClawWorm = 705,
|
|
718
|
+
StirredUpCreature = 706,
|
|
719
|
+
StoppedYourBleeding = 707,
|
|
720
|
+
StopUsingBoat = 708,
|
|
721
|
+
Strength = 709,
|
|
722
|
+
StrengthIncreasing = 710,
|
|
723
|
+
SummonedGuardiansByDiggingTreasure = 711,
|
|
724
|
+
SummonedGuardiansByLockpicking = 712,
|
|
725
|
+
SummonVoidDwellerItem = 713,
|
|
726
|
+
SummonVoidDwellerRinging = 714,
|
|
727
|
+
SummonVoidDwellerShiver = 715,
|
|
728
|
+
SunNotBrightEnoughToStartFire = 716,
|
|
729
|
+
Swimming = 717,
|
|
730
|
+
TakenFromGroundBecomeTamed = 718,
|
|
731
|
+
Tame = 719,
|
|
732
|
+
TamedCreature = 720,
|
|
733
|
+
TeleportBlocked = 721,
|
|
734
|
+
Teleported = 722,
|
|
735
|
+
ThanksBuying = 723,
|
|
736
|
+
ThanksSelling = 724,
|
|
737
|
+
TheCreature = 725,
|
|
738
|
+
TheirFist = 726,
|
|
739
|
+
ThePlant = 727,
|
|
740
|
+
ThereIsNoContainerOnTheStill = 728,
|
|
741
|
+
ThereIsNoSunToStartFire = 729,
|
|
742
|
+
ThisCannotBeMilked = 730,
|
|
743
|
+
Throw = 731,
|
|
744
|
+
ThrownIntoDepths = 732,
|
|
745
|
+
ThrownIntoObstacle = 733,
|
|
746
|
+
ThrownIntoVoid = 734,
|
|
747
|
+
Tier = 735,
|
|
748
|
+
TierGroup = 736,
|
|
749
|
+
Till = 737,
|
|
750
|
+
Tilling = 738,
|
|
751
|
+
TimeIs = 739,
|
|
752
|
+
TimeIsDawn = 740,
|
|
753
|
+
TimeIsDaytime = 741,
|
|
754
|
+
TimeIsDusk = 742,
|
|
755
|
+
TimeIsNighttime = 743,
|
|
756
|
+
TimeIsSunrise = 744,
|
|
757
|
+
TimeIsSunset = 745,
|
|
758
|
+
ToDamageAChest = 746,
|
|
759
|
+
ToFight = 747,
|
|
760
|
+
TooDamaged = 748,
|
|
761
|
+
TooExhaustedToJump = 749,
|
|
762
|
+
Touching = 750,
|
|
763
|
+
TradeBarterCreditForItem = 751,
|
|
764
|
+
TradeItemForBarterCredit = 752,
|
|
765
|
+
TradingWith = 753,
|
|
766
|
+
TrampledFire = 754,
|
|
767
|
+
TrampledIntoGround = 755,
|
|
768
|
+
TrampleIntoGround = 756,
|
|
769
|
+
Trampling = 757,
|
|
770
|
+
TransmogrificationNotPossible = 758,
|
|
771
|
+
Transmogrified = 759,
|
|
772
|
+
Transmogrify = 760,
|
|
773
|
+
TrapMissed = 761,
|
|
774
|
+
TrapStoppedYou = 762,
|
|
775
|
+
Traveling = 763,
|
|
776
|
+
TreasureIsBlocked = 764,
|
|
777
|
+
UnEquip = 765,
|
|
778
|
+
UnEquipAll = 766,
|
|
779
|
+
Unhitch = 767,
|
|
780
|
+
UnhitchCreature = 768,
|
|
781
|
+
Unknown = 769,
|
|
782
|
+
UnknownItem = 770,
|
|
783
|
+
Unlimited = 771,
|
|
784
|
+
UnlockedChest = 772,
|
|
785
|
+
UnlockedTime = 773,
|
|
786
|
+
UnpurifiedFreshWater = 774,
|
|
787
|
+
UnpurifiedWaterInStill = 775,
|
|
788
|
+
UsingBareHands = 776,
|
|
789
|
+
Vulnerable = 777,
|
|
790
|
+
WaitUntilFireCooledToGetWater = 778,
|
|
791
|
+
Water = 779,
|
|
792
|
+
WaterGathering = 780,
|
|
793
|
+
WaterPutOutFire = 781,
|
|
794
|
+
Weight = 782,
|
|
795
|
+
WellIsDry = 783,
|
|
796
|
+
WellIsFull = 784,
|
|
797
|
+
West = 785,
|
|
798
|
+
WestNorthwest = 786,
|
|
799
|
+
WestSouthwest = 787,
|
|
800
|
+
WildGoatRefusedToBeMilked = 788,
|
|
801
|
+
WillNotTrade = 789,
|
|
802
|
+
WithYouSee = 790,
|
|
803
|
+
WorkingYourselfIntoExhaustion = 791,
|
|
804
|
+
WorkingYourselfIntoExhaustionAndDrowning = 792,
|
|
805
|
+
Worth = 793,
|
|
806
|
+
You = 794,
|
|
807
|
+
YouApplied = 795,
|
|
808
|
+
YouAte = 796,
|
|
809
|
+
YouBeginResting = 797,
|
|
810
|
+
YouCannotDoThatYet = 798,
|
|
811
|
+
YouCanNowCombatTheTides = 799,
|
|
812
|
+
YouCooledLava = 800,
|
|
813
|
+
YouCrafted = 801,
|
|
814
|
+
YouDied = 802,
|
|
815
|
+
YouDoNotFindTreasureYet = 803,
|
|
816
|
+
YouDrank = 804,
|
|
817
|
+
YouDropTheTorch = 805,
|
|
818
|
+
YouEnchant = 806,
|
|
819
|
+
YouEquip = 807,
|
|
820
|
+
YouFailedTo = 808,
|
|
821
|
+
YouFailedToExtinguishedFireFully = 809,
|
|
822
|
+
YouFailedToHeal = 810,
|
|
823
|
+
YouFailedToHealOther = 811,
|
|
824
|
+
YouFire = 812,
|
|
825
|
+
YouGathered = 813,
|
|
826
|
+
YouGatheredAndDropped = 814,
|
|
827
|
+
YouHarvested = 815,
|
|
828
|
+
YouHarvestedAndDropped = 816,
|
|
829
|
+
YouHave = 817,
|
|
830
|
+
YouHaveAlreadyLearned = 818,
|
|
831
|
+
YouHaveDied = 819,
|
|
832
|
+
YouHaveEnabledDisabled = 820,
|
|
833
|
+
YouHaveHealedOther = 821,
|
|
834
|
+
YouHaveKilled = 822,
|
|
835
|
+
YouHaveReleased = 823,
|
|
836
|
+
YouHaveTamed = 824,
|
|
837
|
+
YouNeedMoreCredit = 825,
|
|
838
|
+
YouNeedXToY = 826,
|
|
839
|
+
YouNoticeBarren = 827,
|
|
840
|
+
YouNoticeBecomeEnraged = 828,
|
|
841
|
+
YouNoticeDying = 829,
|
|
842
|
+
YouNoticeFertilityDecreasing = 830,
|
|
843
|
+
YouNoticeFertilityIncreasing = 831,
|
|
844
|
+
YouNoticeGrowing = 832,
|
|
845
|
+
YouNoticeLavaCooling = 833,
|
|
846
|
+
YouNoticeLavaHardening = 834,
|
|
847
|
+
YouNoticePerish = 835,
|
|
848
|
+
YouNoticePlantDamage = 836,
|
|
849
|
+
YouNoticePlantRegenerated = 837,
|
|
850
|
+
YouNoticeRegrowing = 838,
|
|
851
|
+
YouNoticeStumbleInjureItself = 839,
|
|
852
|
+
YouNoticeTakeFromGround = 840,
|
|
853
|
+
YouNoticeWoundsClosing = 841,
|
|
854
|
+
YouNoticeZombieHorde = 842,
|
|
855
|
+
YouOfferedToCreature = 843,
|
|
856
|
+
YouOpen = 844,
|
|
857
|
+
YouPacked = 845,
|
|
858
|
+
YouPickedUp = 846,
|
|
859
|
+
YouRefine = 847,
|
|
860
|
+
YouReinforce = 848,
|
|
861
|
+
YouRepair = 849,
|
|
862
|
+
YouReturnFromCivilizationWith = 850,
|
|
863
|
+
YourFist = 851,
|
|
864
|
+
YourHands = 852,
|
|
865
|
+
YourHighSkill = 853,
|
|
866
|
+
YourInventory = 854,
|
|
867
|
+
YourIsland = 855,
|
|
868
|
+
YourLowSkill = 856,
|
|
869
|
+
YourModerateSkill = 857,
|
|
870
|
+
YourRubbingNoEffect = 858,
|
|
871
|
+
YouRub = 859,
|
|
872
|
+
YouSee = 860,
|
|
873
|
+
YouSeeALivingMushroomSpore = 861,
|
|
874
|
+
YouSeeAnAberrant = 862,
|
|
875
|
+
YouSeeASkeletonCollapse = 863,
|
|
876
|
+
YouSeeASlimeCombine = 864,
|
|
877
|
+
YouSeeAZombieBleeding = 865,
|
|
878
|
+
YouSeeCoolDown = 866,
|
|
879
|
+
YouSeeDrop = 867,
|
|
880
|
+
YouSeeEngulfFire = 868,
|
|
881
|
+
YouSeeFireSpread = 869,
|
|
882
|
+
YouSeeHelpingPlant = 870,
|
|
883
|
+
YouSeeLay = 871,
|
|
884
|
+
YouSeeLayingTrap = 872,
|
|
885
|
+
YouSeeSpewLava = 873,
|
|
886
|
+
YouSeeSpitAcid = 874,
|
|
887
|
+
YouSeeSpringForth = 875,
|
|
888
|
+
YouSeeSummon = 876,
|
|
889
|
+
YouSeeSwampFlood = 877,
|
|
890
|
+
YouSeeTrampling = 878,
|
|
891
|
+
YouSetTheTrapOff = 879,
|
|
892
|
+
YouStokeTheFireElemental = 880,
|
|
893
|
+
YouThrew = 881,
|
|
894
|
+
YouTilled = 882,
|
|
895
|
+
YouUnequip = 883,
|
|
896
|
+
YouUsed = 884,
|
|
897
|
+
YouWhileTraveling = 885
|
|
897
898
|
}
|
|
898
899
|
export default Message;
|