@wayward/types 2.13.0-beta.dev.20230511.1 → 2.13.1-beta
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 +20 -20
- package/README.md +10 -10
- package/definitions/game/game/Game.d.ts +1 -1
- package/definitions/game/game/biome/coastal/mapGen/2.13.1.d.ts +12 -0
- package/definitions/game/game/doodad/Doodad.d.ts +1 -0
- package/definitions/game/game/entity/IHuman.d.ts +8 -6
- package/definitions/game/game/entity/action/ActionsRegistration.d.ts +18 -13
- package/definitions/game/game/entity/action/actions/Chop.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Dismount.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Drop.d.ts +20 -1
- package/definitions/game/game/entity/action/actions/Extinguish.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Gather.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Harvest.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Mine.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Rename.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Repair.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Rest.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Ride.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Sleep.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/ToggleVehicle.d.ts +1 -1
- package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +27 -10
- package/definitions/game/game/entity/action/usable/UsableAction.d.ts +3 -3
- package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
- package/definitions/game/game/entity/npc/NPC.d.ts +1 -1
- package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +1 -0
- package/definitions/game/game/entity/npc/npcs/Shipper.d.ts +1 -1
- package/definitions/game/game/entity/player/Player.d.ts +9 -2
- package/definitions/game/game/inspection/infoProviders/shared/SharedLightSourceInfo.d.ts +1 -1
- package/definitions/game/game/island/IIsland.d.ts +6 -1
- package/definitions/game/game/island/Island.d.ts +1 -2
- package/definitions/game/game/item/IItemManager.d.ts +1 -0
- package/definitions/game/game/item/ItemManager.d.ts +3 -2
- package/definitions/game/game/mapgen/IMapGen.d.ts +1 -0
- package/definitions/game/game/mapgen/version/2.13.1.d.ts +20 -0
- package/definitions/game/game/mapping/Background.d.ts +1 -1
- package/definitions/game/game/mapping/Obfuscation.d.ts +1 -1
- package/definitions/game/game/milestones/IMilestone.d.ts +2 -1
- package/definitions/game/game/milestones/MilestoneDefinition.d.ts +2 -0
- package/definitions/game/game/milestones/MilestoneManager.d.ts +1 -1
- package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +1 -1
- package/definitions/game/game/reference/ReferenceManager.d.ts +1 -1
- package/definitions/game/game/temperature/TemperatureManager.d.ts +1 -1
- package/definitions/game/language/dictionary/Message.d.ts +752 -744
- package/definitions/game/language/dictionary/UiTranslation.d.ts +794 -796
- package/definitions/game/multiplayer/IMultiplayer.d.ts +3 -1
- package/definitions/game/multiplayer/packets/server/UpdateUiDataPacket.d.ts +23 -0
- package/definitions/game/multiplayer/packets/server/UpdateUiInfoPacket.d.ts +30 -0
- package/definitions/game/renderer/IRenderer.d.ts +32 -39
- package/definitions/game/renderer/Renderer.d.ts +0 -1
- package/definitions/game/renderer/context/RendererContext.d.ts +1 -1
- package/definitions/game/renderer/fieldOfView/FieldOfView.d.ts +1 -1
- package/definitions/game/renderer/world/World.d.ts +17 -11
- package/definitions/game/renderer/world/WorldLayer.d.ts +23 -8
- package/definitions/game/save/serializer/ISerializer.d.ts +3 -2
- package/definitions/game/ui/component/Article.d.ts +14 -0
- package/definitions/game/ui/component/Text.d.ts +3 -2
- package/definitions/game/ui/old/functional/IFunctionalTooltip.d.ts +37 -0
- package/definitions/game/ui/old/screens/InGameScreen.d.ts +2 -0
- package/definitions/game/ui/screen/screens/GameScreen.d.ts +5 -1
- package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +3 -10
- package/definitions/game/ui/screen/screens/game/component/Item.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/component/PopupOverlay.d.ts +31 -0
- package/definitions/game/ui/screen/screens/game/component/QuadrantComponent.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/static/actions/ActionsDrawer.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/static/stats/IStatDisplayDescription.d.ts +26 -1
- package/definitions/game/ui/screen/screens/game/static/stats/Reputation.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/static/stats/StatDisplayDescriptions.d.ts +2 -25
- package/definitions/game/ui/screen/screens/game/static/stats/component/Stat.d.ts +5 -2
- package/definitions/game/utilities/Functions.d.ts +5 -0
- package/definitions/hosts/shared/globals.d.ts +1 -1
- package/definitions/launcher/ui/Article.d.ts +19 -0
- package/definitions/launcher/ui/Button.d.ts +36 -0
- package/definitions/launcher/ui/Component.d.ts +95 -0
- package/definitions/launcher/ui/InputButton.d.ts +23 -0
- package/definitions/launcher/ui/Section.d.ts +17 -0
- package/definitions/launcher/ui/main/FolderButton.d.ts +29 -0
- package/definitions/launcher/ui/main/FolderSelector.d.ts +48 -0
- package/definitions/launcher/ui/main/Mods.d.ts +20 -0
- package/definitions/launcher/ui/main/Resources.d.ts +23 -0
- package/definitions/test/core/applicationInteractions.d.ts +3 -3
- package/package.json +24 -24
- package/tsconfig.json +7 -7
- package/tsconfig.mod.base.json +44 -44
|
@@ -45,749 +45,757 @@ declare enum Message {
|
|
|
45
45
|
ActionDisassembleSalvaged = 33,
|
|
46
46
|
ActionDismantleSeparated = 34,
|
|
47
47
|
ActionDrinkInFrontNoDrink = 35,
|
|
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
|
-
|
|
48
|
+
ActionDropCannotUseBlocked = 36,
|
|
49
|
+
ActionDropCannotUseItemFilteredOut = 37,
|
|
50
|
+
ActionDropCannotUseItemProtected = 38,
|
|
51
|
+
ActionDropCannotUseItemProtectedDangerous = 39,
|
|
52
|
+
ActionDropCannotUseItemQualityIncorrect = 40,
|
|
53
|
+
ActionDropCannotUseNoItems = 41,
|
|
54
|
+
ActionEnhance = 42,
|
|
55
|
+
ActionEnhanceEnhanced = 43,
|
|
56
|
+
ActionEnhanceFailed = 44,
|
|
57
|
+
ActionEnhanceNotPossible = 45,
|
|
58
|
+
ActionEquipWillBreakOnDamage = 46,
|
|
59
|
+
ActionFishingNothingBiting = 47,
|
|
60
|
+
ActionFishingSlipped = 48,
|
|
61
|
+
ActionFishingTooShallow = 49,
|
|
62
|
+
ActionJumpCannotJump = 50,
|
|
63
|
+
ActionMeleeNothingToAttack = 51,
|
|
64
|
+
ActionMoveItemCannotUseMovingFromMultipleContainers = 52,
|
|
65
|
+
ActionMoveItemCannotUseMovingToSameContainer = 53,
|
|
66
|
+
ActionMoveItemCannotUseNoItems = 54,
|
|
67
|
+
ActionMoveItemCannotUseNoRoom = 55,
|
|
68
|
+
ActionMoveToSwimOffEdgeCannotCombatTides = 56,
|
|
69
|
+
ActionNavigateMoon = 57,
|
|
70
|
+
ActionNavigateNotOverworld = 58,
|
|
71
|
+
ActionNavigateSun = 59,
|
|
72
|
+
ActionNavigateUseSextant = 60,
|
|
73
|
+
ActionPetCreatureRefused = 61,
|
|
74
|
+
ActionPetNoTamedCreature = 62,
|
|
75
|
+
ActionPickUpAllItemsNoItems = 63,
|
|
76
|
+
ActionPickUpExcrementNoExcrement = 64,
|
|
77
|
+
ActionPickUpItemNoItem = 65,
|
|
78
|
+
ActionPickUpNoPickUp = 66,
|
|
79
|
+
ActionRefineNoDurability = 67,
|
|
80
|
+
ActionReleaseNoTamedCreature = 68,
|
|
81
|
+
ActionRenameIsland = 69,
|
|
82
|
+
ActionSailToCivilizationNotInsideBoat = 70,
|
|
83
|
+
ActionSailToIsland = 71,
|
|
84
|
+
ActionSailToIslandArrived = 72,
|
|
85
|
+
ActionSailToIslandCannotUseCannotReachEdge = 73,
|
|
86
|
+
ActionSailToIslandCannotUseCannotReachPort = 74,
|
|
87
|
+
ActionSailToIslandCannotUseGhost = 75,
|
|
88
|
+
ActionSailToIslandCannotUseInvalidDestination = 76,
|
|
89
|
+
ActionSailToIslandCannotUseNoDestination = 77,
|
|
90
|
+
ActionSailToIslandCannotUseNotEnoughStamina = 78,
|
|
91
|
+
ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 79,
|
|
92
|
+
ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 80,
|
|
93
|
+
ActionSailToIslandPlayerArriving = 81,
|
|
94
|
+
ActionSailToIslandPlayerDeparting = 82,
|
|
95
|
+
ActionSetCreatureAiAlreadyCommanded = 83,
|
|
96
|
+
ActionSetCreatureAiCannotCommand = 84,
|
|
97
|
+
ActionSetCreatureAiNotEnoughSkill = 85,
|
|
98
|
+
ActionSetCreatureAiNotEnoughTames = 86,
|
|
99
|
+
ActionShipToIslandNoDestination = 87,
|
|
100
|
+
ActionTameCreatureTamed = 88,
|
|
101
|
+
ActionTameNoCreature = 89,
|
|
102
|
+
ActionTestDepthNothingToTest = 90,
|
|
103
|
+
ActionTestDepthWell = 91,
|
|
104
|
+
ActionToggleContainerNoContainer = 92,
|
|
105
|
+
ActionToggleDoorNoDoor = 93,
|
|
106
|
+
ActionToggleHitchAlreadyHitched = 94,
|
|
107
|
+
ActionToggleHitchAlreadyUnhitched = 95,
|
|
108
|
+
ActionToggleHitchNoCreature = 96,
|
|
109
|
+
ActionToggleHitchNoHitch = 97,
|
|
110
|
+
ActionToggleTilledAlreadyPacked = 98,
|
|
111
|
+
ActionToggleTilledAlreadyTilled = 99,
|
|
112
|
+
ActionUncageCannotUncageHere = 100,
|
|
113
|
+
ActionUpgrade = 101,
|
|
114
|
+
ActionUpgradeFailed = 102,
|
|
115
|
+
ActionUpgradeNotMagical = 103,
|
|
116
|
+
ActionUpgradeNotPossible = 104,
|
|
117
|
+
ActionUpgradeUpgraded = 105,
|
|
118
|
+
ActionUseItemWeaponNeeded = 106,
|
|
119
|
+
AddedFuelToFire = 107,
|
|
120
|
+
AddedFuelToTorch = 108,
|
|
121
|
+
AllEquipmentUnEquipped = 109,
|
|
122
|
+
AlreadyDesalinatedWaterInStill = 110,
|
|
123
|
+
AlreadyFullyRefined = 111,
|
|
124
|
+
AlreadyFullyRepaired = 112,
|
|
125
|
+
AlreadyPreserved = 113,
|
|
126
|
+
Alter = 114,
|
|
127
|
+
AnotherIsland = 115,
|
|
128
|
+
AnUnknownItem = 116,
|
|
129
|
+
APileOfItems = 117,
|
|
130
|
+
AppearedNotEffectiveForGathering = 118,
|
|
131
|
+
ArmorAppeared = 119,
|
|
132
|
+
ArmorProtectedFromInjuryAgainst = 120,
|
|
133
|
+
AttemptToSoothBurnInWater = 121,
|
|
134
|
+
AttemptToSoothFrostbiteWithFire = 122,
|
|
135
|
+
AttemptToSoothFrostbiteWithFireTooHot = 123,
|
|
136
|
+
AttemptToTill = 124,
|
|
137
|
+
BadlyBurnedLostHealth = 125,
|
|
138
|
+
BarteringSkillsProvided = 126,
|
|
139
|
+
BeenPoisoned = 127,
|
|
140
|
+
BeginSleeping = 128,
|
|
141
|
+
BeginUsingVehicle = 129,
|
|
142
|
+
BleedingHasStopped = 130,
|
|
143
|
+
BleedingProfusely = 131,
|
|
144
|
+
BleedingToDeathLostHealth = 132,
|
|
145
|
+
BookBlank = 133,
|
|
146
|
+
BookContains = 134,
|
|
147
|
+
BookCrumbles = 135,
|
|
148
|
+
BookDiagrams = 136,
|
|
149
|
+
BookEmpty = 137,
|
|
150
|
+
BookNothing = 138,
|
|
151
|
+
BookOpen = 139,
|
|
152
|
+
BookScribbles = 140,
|
|
153
|
+
BothEffectiveIneffective = 141,
|
|
154
|
+
BrokeIntoPieces = 142,
|
|
155
|
+
BrokenOnImpact = 143,
|
|
156
|
+
BrokenWhileFiring = 144,
|
|
157
|
+
Build = 145,
|
|
158
|
+
Burned = 146,
|
|
159
|
+
CannotAddAnyMoreFuel = 147,
|
|
160
|
+
CannotBeCrafted = 148,
|
|
161
|
+
CannotBePerformedOverWater = 149,
|
|
162
|
+
CannotBePlacedHere = 150,
|
|
163
|
+
CannotBePreserved = 151,
|
|
164
|
+
CannotBeRefined = 152,
|
|
165
|
+
CannotBeRefinedReinforcementNeeded = 153,
|
|
166
|
+
CannotBeReinforced = 154,
|
|
167
|
+
CannotBeRepaired = 155,
|
|
168
|
+
CannotBuildHere = 156,
|
|
169
|
+
CannotDoThatHere = 157,
|
|
170
|
+
CannotEquipThatThere = 158,
|
|
171
|
+
CannotFishFor = 159,
|
|
172
|
+
CannotHere = 160,
|
|
173
|
+
CannotInWater = 161,
|
|
174
|
+
CannotLeave = 162,
|
|
175
|
+
CannotNoTreasure = 163,
|
|
176
|
+
CannotPickUpLockedContainer = 164,
|
|
177
|
+
CannotPickUpWhileLit = 165,
|
|
178
|
+
CannotPlaceContainerInItself = 166,
|
|
179
|
+
CannotPlaceHere = 167,
|
|
180
|
+
CannotPlaceThatFromHere = 168,
|
|
181
|
+
CannotPlaceThatHere = 169,
|
|
182
|
+
CannotPlaceThatOverWater = 170,
|
|
183
|
+
CannotPlantHereTilled = 171,
|
|
184
|
+
CannotRepairWhileLit = 172,
|
|
185
|
+
CannotRestHere = 173,
|
|
186
|
+
CannotShipNoItems = 174,
|
|
187
|
+
CannotShipNoPath = 175,
|
|
188
|
+
CannotSleepHere = 176,
|
|
189
|
+
CannotStartFireHere = 177,
|
|
190
|
+
CannotToTellTime = 178,
|
|
191
|
+
CannotUseCommand = 179,
|
|
192
|
+
CannotWhenProtected = 180,
|
|
193
|
+
CannotWhenProtectedDangerousAction = 181,
|
|
194
|
+
CannotWhenProtectedDurability = 182,
|
|
195
|
+
CarryingTooMuchWeight = 183,
|
|
196
|
+
CarvedUpCorpse = 184,
|
|
197
|
+
Carving = 185,
|
|
198
|
+
CastYourLine = 186,
|
|
199
|
+
CaughtFish = 187,
|
|
200
|
+
ChatBanCommand = 188,
|
|
201
|
+
ChatBannedCommand = 189,
|
|
202
|
+
ChatCommandsCommand = 190,
|
|
203
|
+
ChatCommandsCommandCommand = 191,
|
|
204
|
+
ChatPingCommand = 192,
|
|
205
|
+
ChatPlayerMessage = 193,
|
|
206
|
+
ChatPlayersCommand = 194,
|
|
207
|
+
ChatServerMessage = 195,
|
|
208
|
+
ChatUnbanCommand = 196,
|
|
209
|
+
ChatUnknownCommand = 197,
|
|
210
|
+
Chop = 198,
|
|
211
|
+
Chopping = 199,
|
|
212
|
+
ClearedBlood = 200,
|
|
213
|
+
Clockwise = 201,
|
|
214
|
+
CloseToBeingDestroyed = 202,
|
|
215
|
+
CommandAttack = 203,
|
|
216
|
+
CommandDefend = 204,
|
|
217
|
+
CommandFollowClose = 205,
|
|
218
|
+
CommandFollowFar = 206,
|
|
219
|
+
CommandStay = 207,
|
|
220
|
+
Container = 208,
|
|
221
|
+
CopiedMap = 209,
|
|
222
|
+
CorpseOf = 210,
|
|
223
|
+
CorpseOfNamed = 211,
|
|
224
|
+
Counterclockwise = 212,
|
|
225
|
+
Craft = 213,
|
|
226
|
+
Crafted = 214,
|
|
227
|
+
Crafts = 215,
|
|
228
|
+
CreatureAngered = 216,
|
|
229
|
+
CreatureAppears = 217,
|
|
230
|
+
CreatureAppeased = 218,
|
|
231
|
+
CreatureExcrement = 219,
|
|
232
|
+
CreatureHappinessHigh = 220,
|
|
233
|
+
CreatureHappinessLow = 221,
|
|
234
|
+
CreatureHappinessLowest = 222,
|
|
235
|
+
CreatureHappinessNormal = 223,
|
|
236
|
+
CreatureIdolAttractedCreature = 224,
|
|
237
|
+
CreatureRefusesToBeTamed = 225,
|
|
238
|
+
CreatureRefusesYou = 226,
|
|
239
|
+
CreatureUntamed = 227,
|
|
240
|
+
CuredYourPoison = 228,
|
|
241
|
+
Cut = 229,
|
|
242
|
+
CutHasHealed = 230,
|
|
243
|
+
CutLostHealth = 231,
|
|
244
|
+
CutWasBandaged = 232,
|
|
245
|
+
DamageAppeared = 233,
|
|
246
|
+
DamagedByPouring = 234,
|
|
247
|
+
DangerousMove = 235,
|
|
248
|
+
DangerousOpen = 236,
|
|
249
|
+
DayQuarter1 = 237,
|
|
250
|
+
DayQuarter2 = 238,
|
|
251
|
+
DayQuarter3 = 239,
|
|
252
|
+
DayQuarter4 = 240,
|
|
253
|
+
DealtNoDamageToYou = 241,
|
|
254
|
+
DeathBy = 242,
|
|
255
|
+
DeathByBleeding = 243,
|
|
256
|
+
DeathByBurning = 244,
|
|
257
|
+
DeathByChallengeWinner = 245,
|
|
258
|
+
DeathByConsumption = 246,
|
|
259
|
+
DeathByCut = 247,
|
|
260
|
+
DeathByDrowning = 248,
|
|
261
|
+
DeathByExhaustion = 249,
|
|
262
|
+
DeathByFistByPlayer = 250,
|
|
263
|
+
DeathByFrostbite = 251,
|
|
264
|
+
DeathByFrostbiteTemperatureShock = 252,
|
|
265
|
+
DeathByMalnutrition = 253,
|
|
266
|
+
DeathByPoison = 254,
|
|
267
|
+
DeathBySteppingOn = 255,
|
|
268
|
+
DeathByTrap = 256,
|
|
269
|
+
DeathByWeaponByPlayer = 257,
|
|
270
|
+
DestroyedFromUse = 258,
|
|
271
|
+
Dexterity = 259,
|
|
272
|
+
DidNotSeemToBeHurting = 260,
|
|
273
|
+
Dig = 261,
|
|
274
|
+
DigAway = 262,
|
|
275
|
+
Digging = 263,
|
|
276
|
+
Disassemble = 264,
|
|
277
|
+
Disassembling = 265,
|
|
278
|
+
DiscoveredCaveEntrance = 266,
|
|
279
|
+
DiscoveredInTheBottle = 267,
|
|
280
|
+
DiscoveredLavaPassage = 268,
|
|
281
|
+
Dismantle = 269,
|
|
282
|
+
Dismantling = 270,
|
|
283
|
+
DismantlingRequires = 271,
|
|
284
|
+
Dismounted = 272,
|
|
285
|
+
DisplacedPuddles = 273,
|
|
286
|
+
DoNotProduceAnyResources = 274,
|
|
287
|
+
DoodadCauseStatus = 275,
|
|
288
|
+
DoodadGroupTier = 276,
|
|
289
|
+
DrewSurroundings = 277,
|
|
290
|
+
Drop = 278,
|
|
291
|
+
DroppedIntoDepths = 279,
|
|
292
|
+
DroppedIntoFire = 280,
|
|
293
|
+
DroppedIntoTheVoid = 281,
|
|
294
|
+
DryadSprouted = 282,
|
|
295
|
+
DueToDehydration = 283,
|
|
296
|
+
DueToStarvation = 284,
|
|
297
|
+
DugTreasureOut = 285,
|
|
298
|
+
DumpContentsOfContainerInInventory = 286,
|
|
299
|
+
DyingOfDehydration = 287,
|
|
300
|
+
EarnedMilestone = 288,
|
|
301
|
+
Effective = 289,
|
|
302
|
+
Enchant = 290,
|
|
303
|
+
EquipmentPreventedStatusEffects = 291,
|
|
304
|
+
ErrorHasOccured = 292,
|
|
305
|
+
ExtinguishedFire = 293,
|
|
306
|
+
ExtinguishedLightSource = 294,
|
|
307
|
+
Exude = 295,
|
|
308
|
+
ExudeNotPossible = 296,
|
|
309
|
+
FailedToAbsorb = 297,
|
|
310
|
+
FailedToAddFuelToTorch = 298,
|
|
311
|
+
FailedToCatchFish = 299,
|
|
312
|
+
FailedToCauseDamage = 300,
|
|
313
|
+
FailedToCauseYouDamage = 301,
|
|
314
|
+
FailedToCopy = 302,
|
|
315
|
+
FailedToDraw = 303,
|
|
316
|
+
FailedToEnchant = 304,
|
|
317
|
+
FailedToExude = 305,
|
|
318
|
+
FailedToIgniteTorch = 306,
|
|
319
|
+
FailedToPickLock = 307,
|
|
320
|
+
FailedToPreserve = 308,
|
|
321
|
+
FailedToRefine = 309,
|
|
322
|
+
FailedToReinforce = 310,
|
|
323
|
+
FailedToRepair = 311,
|
|
324
|
+
FailedToStartFire = 312,
|
|
325
|
+
FailedToTame = 313,
|
|
326
|
+
FailedToTransmogrify = 314,
|
|
327
|
+
FarOffLands = 315,
|
|
328
|
+
FeltBurningPainLostHealth = 316,
|
|
329
|
+
FeltFrostbitePainLostHealth = 317,
|
|
330
|
+
FewMinutes = 318,
|
|
331
|
+
Filled = 319,
|
|
332
|
+
FilledFrom = 320,
|
|
333
|
+
FireAroundYouIsWarm = 321,
|
|
334
|
+
FiredIntoObstacle = 322,
|
|
335
|
+
FireOverflowed = 323,
|
|
336
|
+
FireOverflowedFireElemental = 324,
|
|
337
|
+
FireSource = 325,
|
|
338
|
+
FishingWithNoBait = 326,
|
|
339
|
+
Floating = 327,
|
|
340
|
+
FreshWater = 328,
|
|
341
|
+
FromTheStill = 329,
|
|
342
|
+
Fuel = 330,
|
|
343
|
+
FuelIsRequired = 331,
|
|
344
|
+
Gather = 332,
|
|
345
|
+
GatherDestroy = 333,
|
|
346
|
+
Gathering = 334,
|
|
347
|
+
GhostNoActions = 335,
|
|
348
|
+
GhostOf = 336,
|
|
349
|
+
GoatHasNoMilk = 337,
|
|
350
|
+
GrabAll = 338,
|
|
351
|
+
HackAway = 339,
|
|
352
|
+
HandProtectionPreventedInjury = 340,
|
|
353
|
+
HandsNotEffectiveFor = 341,
|
|
354
|
+
Harvest = 342,
|
|
355
|
+
Harvesting = 343,
|
|
356
|
+
HasBeenHurtByATrap = 344,
|
|
357
|
+
HasDecayed = 345,
|
|
358
|
+
HasHitYouForDamage = 346,
|
|
359
|
+
HasNoEffect = 347,
|
|
360
|
+
HasSetTrapOffNoDamage = 348,
|
|
361
|
+
HasSplit = 349,
|
|
362
|
+
Help = 350,
|
|
363
|
+
HelpGrow = 351,
|
|
364
|
+
Hitch = 352,
|
|
365
|
+
HitchAttempt = 353,
|
|
366
|
+
HitchCreature = 354,
|
|
367
|
+
HitchDisabled = 355,
|
|
368
|
+
HitchInUse = 356,
|
|
369
|
+
HitForDamage = 357,
|
|
370
|
+
HitYouForDamage = 358,
|
|
371
|
+
Hour = 359,
|
|
372
|
+
Hours = 360,
|
|
373
|
+
HurtHandsHittingWithoutWeapons = 361,
|
|
374
|
+
HurtHandsWithNoTool = 362,
|
|
375
|
+
Ignite = 363,
|
|
376
|
+
IgnitedTorch = 364,
|
|
377
|
+
Ineffective = 365,
|
|
378
|
+
InjuredFromTrap = 366,
|
|
379
|
+
InNeedOfRepair = 367,
|
|
380
|
+
InteractingWithHasInjuredYouForDamage = 368,
|
|
381
|
+
Inventory = 369,
|
|
382
|
+
IsInTheWayOfPickingUp = 370,
|
|
383
|
+
It = 371,
|
|
384
|
+
ItemFromWater = 372,
|
|
385
|
+
JoinedAServer = 373,
|
|
386
|
+
Jump = 374,
|
|
387
|
+
Killed = 375,
|
|
388
|
+
KnowledgeHasIncreased = 376,
|
|
389
|
+
LastPlaceYouLeftOff = 377,
|
|
390
|
+
LearnedHowToCreate = 378,
|
|
391
|
+
LikelyFailures = 379,
|
|
392
|
+
Limited = 380,
|
|
393
|
+
Lockpick = 381,
|
|
394
|
+
MapCompletedNotOfThisArea = 382,
|
|
395
|
+
MapDestroyed = 383,
|
|
396
|
+
MapNearlyDestroyed = 384,
|
|
397
|
+
MapNotOfThisArea = 385,
|
|
398
|
+
MaterialsDestroyed = 386,
|
|
399
|
+
MerchantAlreadyTradedItem = 387,
|
|
400
|
+
MessageOfTheDay = 388,
|
|
401
|
+
Metabolism = 389,
|
|
402
|
+
MetabolismSlowed = 390,
|
|
403
|
+
Milk = 391,
|
|
404
|
+
Mine = 392,
|
|
405
|
+
Mining = 393,
|
|
406
|
+
MissedWith = 394,
|
|
407
|
+
MissedYouWith = 395,
|
|
408
|
+
MovedItem = 396,
|
|
409
|
+
MovedItemFailed = 397,
|
|
410
|
+
MoveOverTrapButDoNotSetOff = 398,
|
|
411
|
+
MultiplayerGamePaused = 399,
|
|
412
|
+
MultiplayerGameResumed = 400,
|
|
413
|
+
MultiplayerPlayerConnected = 401,
|
|
414
|
+
MultiplayerPlayerDied = 402,
|
|
415
|
+
MultiplayerPlayerDisconnected = 403,
|
|
416
|
+
MultiplayerPlayerJoined = 404,
|
|
417
|
+
MustBeEquippedToIgnite = 405,
|
|
418
|
+
Mysteriously = 406,
|
|
419
|
+
NearlyBurnedEquipmentProtectedYou = 407,
|
|
420
|
+
NeedToStartTravelsOutside = 408,
|
|
421
|
+
NeedWaterForBoat = 409,
|
|
422
|
+
Negatively = 410,
|
|
423
|
+
NightQuarter1 = 411,
|
|
424
|
+
NightQuarter2 = 412,
|
|
425
|
+
NightQuarter3 = 413,
|
|
426
|
+
NightQuarter4 = 414,
|
|
427
|
+
No = 415,
|
|
428
|
+
NoAmmunitionForThatWeapon = 416,
|
|
429
|
+
NoFireToStokeWith = 417,
|
|
430
|
+
NoFishAtLocation = 418,
|
|
431
|
+
NoGroundWater = 419,
|
|
432
|
+
NoInkToDrawMap = 420,
|
|
433
|
+
NoKindlingOrFuelItemsToStartFire = 421,
|
|
434
|
+
NoKindlingToStartFire = 422,
|
|
435
|
+
NoLongerFeelPainOfBeingBurned = 423,
|
|
436
|
+
NoLongerFeelPainOfBeingFrostbitten = 424,
|
|
437
|
+
NoLongerHostile = 425,
|
|
438
|
+
NoMoreRoomInContainer = 426,
|
|
439
|
+
NoPaperToDrawMap = 427,
|
|
440
|
+
NoRequiredItemToFireWeapon = 428,
|
|
441
|
+
NoReturnWithoutCompletingChallenges = 429,
|
|
442
|
+
NoRoomForImprovement = 430,
|
|
443
|
+
NoRoomToDrop = 431,
|
|
444
|
+
NoRoomToSummon = 432,
|
|
445
|
+
NotEnoughPurifiedWaterYet = 433,
|
|
446
|
+
NotEnoughTreasureToReturn = 434,
|
|
447
|
+
NotFacingCreatureToOfferThisTo = 435,
|
|
448
|
+
NotFacingLockedObject = 436,
|
|
449
|
+
NotFacingOtherToHeal = 437,
|
|
450
|
+
NotFacingValidItem = 438,
|
|
451
|
+
NothingHereToButcher = 439,
|
|
452
|
+
NothingHereToFill = 440,
|
|
453
|
+
NothingHereToGrasp = 441,
|
|
454
|
+
NothingTo = 442,
|
|
455
|
+
NothingToGetFromThis = 443,
|
|
456
|
+
NothingToHarvestFromThisGather = 444,
|
|
457
|
+
NothingToSmother = 445,
|
|
458
|
+
NothingUsefulToHarvestYet = 446,
|
|
459
|
+
NoTinderToStartFire = 447,
|
|
460
|
+
NotSuitableToPlant = 448,
|
|
461
|
+
NoWaterInStill = 449,
|
|
462
|
+
NPCMerchantNewInventoryDialog1 = 450,
|
|
463
|
+
NPCMerchantNewInventoryDialog2 = 451,
|
|
464
|
+
NPCMerchantNewInventoryDialog3 = 452,
|
|
465
|
+
NPCMerchantNewInventoryDialog4 = 453,
|
|
466
|
+
NPCMerchantStartingDialog1 = 454,
|
|
467
|
+
NPCMerchantStartingDialog2 = 455,
|
|
468
|
+
NPCMerchantStartingDialog3 = 456,
|
|
469
|
+
NPCMerchantStartingDialog4 = 457,
|
|
470
|
+
NPCMerchantWelcomeCredit = 458,
|
|
471
|
+
NPCShipperShipToIsland = 459,
|
|
472
|
+
NPCShipperStartingDialog1 = 460,
|
|
473
|
+
NPCShipperStartingDialog2 = 461,
|
|
474
|
+
NPCShipperStartingDialog3 = 462,
|
|
475
|
+
NPCShipperStartingDialog4 = 463,
|
|
476
|
+
NPCWelcome = 464,
|
|
477
|
+
ObjectIsLocked = 465,
|
|
478
|
+
ObjectIsLockedAttemptToBreakIt = 466,
|
|
479
|
+
OfferAberrantFail = 467,
|
|
480
|
+
OfferAberrantFailButTamed = 468,
|
|
481
|
+
Open = 469,
|
|
482
|
+
OpenClose = 470,
|
|
483
|
+
OverEatingLostStamina = 471,
|
|
484
|
+
OverHydratingLostStamina = 472,
|
|
485
|
+
Pack = 473,
|
|
486
|
+
PaperTurnedToMush = 474,
|
|
487
|
+
ParryTheBlow = 475,
|
|
488
|
+
Pet = 476,
|
|
489
|
+
PetCreature = 477,
|
|
490
|
+
PickAway = 478,
|
|
491
|
+
PickUp = 479,
|
|
492
|
+
PickUpExcrement = 480,
|
|
493
|
+
PickUpTheItem = 481,
|
|
494
|
+
Place = 482,
|
|
495
|
+
PlacedOnGround = 483,
|
|
496
|
+
Plant = 484,
|
|
497
|
+
PlantedInGround = 485,
|
|
498
|
+
PlantGatheredPlant = 486,
|
|
499
|
+
PlantGatheringWillDestroy = 487,
|
|
500
|
+
PlantHasResourcesToGather = 488,
|
|
501
|
+
PlantHasResourcesToHarvest = 489,
|
|
502
|
+
PlantHighlyFertile = 490,
|
|
503
|
+
Planting = 491,
|
|
504
|
+
PlantIsBare = 492,
|
|
505
|
+
PlantIsFertile = 493,
|
|
506
|
+
PlantIsInStage = 494,
|
|
507
|
+
PlantIsNotFertile = 495,
|
|
508
|
+
PlantNotReadyToHarvest = 496,
|
|
509
|
+
PlantReadyToGather = 497,
|
|
510
|
+
PlantReadyToGatherNotMaximal = 498,
|
|
511
|
+
PlantReadyToHarvest = 499,
|
|
512
|
+
PlantReadyToHarvestNotMaximal = 500,
|
|
513
|
+
Player = 501,
|
|
514
|
+
PlayerHas = 502,
|
|
515
|
+
PlayerHasCompletedChallengeRequirement = 503,
|
|
516
|
+
PlayerHasWonChallenge = 504,
|
|
517
|
+
Poisoned = 505,
|
|
518
|
+
PoisonedLostHealth = 506,
|
|
519
|
+
PoisonWorkedItsCourse = 507,
|
|
520
|
+
Positively = 508,
|
|
521
|
+
PouredOut = 509,
|
|
522
|
+
PouredOutOnYourself = 510,
|
|
523
|
+
PouredWaterIntoStill = 511,
|
|
524
|
+
PourHarmedPlant = 512,
|
|
525
|
+
PourHealedPlant = 513,
|
|
526
|
+
PourHealedPlantFully = 514,
|
|
527
|
+
PourHealedPlantPartially = 515,
|
|
528
|
+
PourIncreasedFertility = 516,
|
|
529
|
+
Pouring = 517,
|
|
530
|
+
Prepare = 518,
|
|
531
|
+
Prepared = 519,
|
|
532
|
+
Preserve = 520,
|
|
533
|
+
PreservedFood = 521,
|
|
534
|
+
PurifiedWaterInStill = 522,
|
|
535
|
+
RandomEventsFire = 523,
|
|
536
|
+
ReduceLength = 524,
|
|
537
|
+
Refine = 525,
|
|
538
|
+
RefusedToBeTamed = 526,
|
|
539
|
+
Reinforce = 527,
|
|
540
|
+
Repair = 528,
|
|
541
|
+
ReputationDecreased = 529,
|
|
542
|
+
ReputationIncreased = 530,
|
|
543
|
+
ReputationUpdate = 531,
|
|
544
|
+
RequiredForDisassembly = 532,
|
|
545
|
+
RequiresFireToBeLit = 533,
|
|
546
|
+
RequiresYouFacingFireSource = 534,
|
|
547
|
+
RequiresYouToBeAround = 535,
|
|
548
|
+
Resistant = 536,
|
|
549
|
+
Rest = 537,
|
|
550
|
+
Rested = 538,
|
|
551
|
+
Resting = 539,
|
|
552
|
+
RestingOnGroundNotEffective = 540,
|
|
553
|
+
RestInterrupted = 541,
|
|
554
|
+
RestInterruptedDamage = 542,
|
|
555
|
+
RestInterruptedDying = 543,
|
|
556
|
+
RestInterruptedLoudNoise = 544,
|
|
557
|
+
RestInterruptedPain = 545,
|
|
558
|
+
RestInterruptedStirring = 546,
|
|
559
|
+
RestInterruptedWaterPoured = 547,
|
|
560
|
+
RestLongTime = 548,
|
|
561
|
+
RestModerateTime = 549,
|
|
562
|
+
RestOnBoat = 550,
|
|
563
|
+
RestShortTime = 551,
|
|
564
|
+
RestTime = 552,
|
|
565
|
+
ReturnedToCivilization = 553,
|
|
566
|
+
ReturningToCivilizationSetOffAgain = 554,
|
|
567
|
+
ReturnsToLife = 555,
|
|
568
|
+
Reverse = 556,
|
|
569
|
+
Sailing = 557,
|
|
570
|
+
ScrollMaster = 558,
|
|
571
|
+
ScrollProvidedNoUsefulInsight = 559,
|
|
572
|
+
Seawater = 560,
|
|
573
|
+
SeemsToHaveDrawnEnergy = 561,
|
|
574
|
+
SetTrapOffButNoDamage = 562,
|
|
575
|
+
SetUp = 563,
|
|
576
|
+
ShadowInTheWater = 564,
|
|
577
|
+
Skill = 565,
|
|
578
|
+
SkillHasRaised = 566,
|
|
579
|
+
Skills = 567,
|
|
580
|
+
Sleep = 568,
|
|
581
|
+
Sleeping = 569,
|
|
582
|
+
SleepOnBoat = 570,
|
|
583
|
+
Slept = 571,
|
|
584
|
+
SlitherSuckerConstricts = 572,
|
|
585
|
+
SlitherSuckerJumpedOnHead = 573,
|
|
586
|
+
SomethingInTheWayOf = 574,
|
|
587
|
+
SomethingInTheWayOfButcherFirst = 575,
|
|
588
|
+
SomethingInTheWayOfFire = 576,
|
|
589
|
+
SomethingInTheWayOfFishing = 577,
|
|
590
|
+
SomethingInTheWayOfPerforming = 578,
|
|
591
|
+
SomethingInTheWayOfPlacing = 579,
|
|
592
|
+
SomethingInTheWayOfReleasing = 580,
|
|
593
|
+
SomethingInTheWayOfSummoning = 581,
|
|
594
|
+
SomethingInWayOfClosingDoor = 582,
|
|
595
|
+
SoothedTheirBurnInjuries = 583,
|
|
596
|
+
SoothedYourBurnInjuries = 584,
|
|
597
|
+
Sort = 585,
|
|
598
|
+
SortedByBestCraftingRequirements = 586,
|
|
599
|
+
SortedByCategory = 587,
|
|
600
|
+
SortedByCraftableOnly = 588,
|
|
601
|
+
SortedByDecay = 589,
|
|
602
|
+
SortedByDurability = 590,
|
|
603
|
+
SortedByGroup = 591,
|
|
604
|
+
SortedByMagical = 592,
|
|
605
|
+
SortedByName = 593,
|
|
606
|
+
SortedByQuality = 594,
|
|
607
|
+
SortedByRecent = 595,
|
|
608
|
+
SortedBySkill = 596,
|
|
609
|
+
SortedByUnlockedTime = 597,
|
|
610
|
+
SortedByWeight = 598,
|
|
611
|
+
SortedByWorth = 599,
|
|
612
|
+
StaminaIsFull = 600,
|
|
613
|
+
StartedFire = 601,
|
|
614
|
+
StartTravelInWater = 602,
|
|
615
|
+
StarvingToDeath = 603,
|
|
616
|
+
StatAmount = 604,
|
|
617
|
+
StatGained = 605,
|
|
618
|
+
StatIncreasing = 606,
|
|
619
|
+
StatLost = 607,
|
|
620
|
+
StatQuenched = 608,
|
|
621
|
+
StatRegained = 609,
|
|
622
|
+
StatSated = 610,
|
|
623
|
+
SteppingOn = 611,
|
|
624
|
+
StillHasNoWaterToPurify = 612,
|
|
625
|
+
StirredUpClawWorm = 613,
|
|
626
|
+
StirredUpCreature = 614,
|
|
627
|
+
StoppedYourBleeding = 615,
|
|
628
|
+
StopUsingVehicle = 616,
|
|
629
|
+
Strength = 617,
|
|
630
|
+
SummonedGuardiansByDiggingTreasure = 618,
|
|
631
|
+
SummonedGuardiansByLockpicking = 619,
|
|
632
|
+
SummonVoidDwellerItem = 620,
|
|
633
|
+
SummonVoidDwellerRinging = 621,
|
|
634
|
+
SummonVoidDwellerShiver = 622,
|
|
635
|
+
SunNotBrightEnoughToStartFire = 623,
|
|
636
|
+
SwampWater = 624,
|
|
637
|
+
Swimming = 625,
|
|
638
|
+
TakenFromGroundBecomeTamed = 626,
|
|
639
|
+
TeleportBlocked = 627,
|
|
640
|
+
Teleported = 628,
|
|
641
|
+
ThanksBuying = 629,
|
|
642
|
+
ThanksSelling = 630,
|
|
643
|
+
TheirFist = 631,
|
|
644
|
+
ThePlant = 632,
|
|
645
|
+
ThereIsNoContainerOnTheStill = 633,
|
|
646
|
+
ThereIsNoSunToStartFire = 634,
|
|
647
|
+
ThisCannotBeMilked = 635,
|
|
648
|
+
Throw = 636,
|
|
649
|
+
ThrownIntoDepths = 637,
|
|
650
|
+
ThrownIntoObstacle = 638,
|
|
651
|
+
ThrownIntoVoid = 639,
|
|
652
|
+
Tier = 640,
|
|
653
|
+
TierGroup = 641,
|
|
654
|
+
Till = 642,
|
|
655
|
+
Tilling = 643,
|
|
656
|
+
TimeIs = 644,
|
|
657
|
+
TimeIsDawn = 645,
|
|
658
|
+
TimeIsDaytime = 646,
|
|
659
|
+
TimeIsDusk = 647,
|
|
660
|
+
TimeIsNighttime = 648,
|
|
661
|
+
TimeIsSunrise = 649,
|
|
662
|
+
TimeIsSunset = 650,
|
|
663
|
+
ToFight = 651,
|
|
664
|
+
TooDamaged = 652,
|
|
665
|
+
TooExhaustedToJump = 653,
|
|
666
|
+
Touching = 654,
|
|
667
|
+
TradingWith = 655,
|
|
668
|
+
TrampledFire = 656,
|
|
669
|
+
TrampledIntoGround = 657,
|
|
670
|
+
TrampleIntoGround = 658,
|
|
671
|
+
Trampling = 659,
|
|
672
|
+
TransmogrificationNotPossible = 660,
|
|
673
|
+
Transmogrified = 661,
|
|
674
|
+
Transmogrify = 662,
|
|
675
|
+
TrapMissed = 663,
|
|
676
|
+
TrapStoppedYou = 664,
|
|
677
|
+
Traveling = 665,
|
|
678
|
+
TreasureIsBlocked = 666,
|
|
679
|
+
UiActionCannotUseRequiresCreature = 667,
|
|
680
|
+
UiActionCannotUseRequiresDoodad = 668,
|
|
681
|
+
UiActionCannotUseRequiresItem = 669,
|
|
682
|
+
Unhitch = 670,
|
|
683
|
+
UnhitchCreature = 671,
|
|
684
|
+
Unknown = 672,
|
|
685
|
+
Unlimited = 673,
|
|
686
|
+
UnlockedChest = 674,
|
|
687
|
+
UnpurifiedFreshWater = 675,
|
|
688
|
+
UnpurifiedWaterInStill = 676,
|
|
689
|
+
Use = 677,
|
|
690
|
+
UsingBareHands = 678,
|
|
691
|
+
VehicleDefense = 679,
|
|
692
|
+
Vulnerable = 680,
|
|
693
|
+
Water = 681,
|
|
694
|
+
WaterGathering = 682,
|
|
695
|
+
WaterPutOutFire = 683,
|
|
696
|
+
WellIsDry = 684,
|
|
697
|
+
WellIsFull = 685,
|
|
698
|
+
WildGoatRefusedToBeMilked = 686,
|
|
699
|
+
WillNotTrade = 687,
|
|
700
|
+
WorkingYourselfIntoExhaustion = 688,
|
|
701
|
+
WorkingYourselfIntoExhaustionAndDrowning = 689,
|
|
702
|
+
You = 690,
|
|
703
|
+
YouAbsorb = 691,
|
|
704
|
+
YouApplied = 692,
|
|
705
|
+
YouAreAlready = 693,
|
|
706
|
+
YouAte = 694,
|
|
707
|
+
YouBeginResting = 695,
|
|
708
|
+
YouCannotDoThatYet = 696,
|
|
709
|
+
YouCanNowCombatTheTides = 697,
|
|
710
|
+
YouCrafted = 698,
|
|
711
|
+
YouDoNotFindTreasureYet = 699,
|
|
712
|
+
YouDrank = 700,
|
|
713
|
+
YouDropTheTorch = 701,
|
|
714
|
+
YouEnchant = 702,
|
|
715
|
+
YouEquip = 703,
|
|
716
|
+
YouExude = 704,
|
|
717
|
+
YouExudeSome = 705,
|
|
718
|
+
YouExudeSomeReasonConflicting = 706,
|
|
719
|
+
YouExudeSomeReasonMax = 707,
|
|
720
|
+
YouExudeSomeReasonProperties = 708,
|
|
721
|
+
YouFailedTo = 709,
|
|
722
|
+
YouFailedToExtinguishedFireFully = 710,
|
|
723
|
+
YouFailedToHeal = 711,
|
|
724
|
+
YouFailedToHealOther = 712,
|
|
725
|
+
YouFire = 713,
|
|
726
|
+
YouGathered = 714,
|
|
727
|
+
YouGatheredAndDropped = 715,
|
|
728
|
+
YouHarvested = 716,
|
|
729
|
+
YouHarvestedAndDropped = 717,
|
|
730
|
+
YouHave = 718,
|
|
731
|
+
YouHaveAlreadyLearned = 719,
|
|
732
|
+
YouHaveBeenCut = 720,
|
|
733
|
+
YouHaveCaged = 721,
|
|
734
|
+
YouHaveCommanded = 722,
|
|
735
|
+
YouHaveDied = 723,
|
|
736
|
+
YouHaveHealedOther = 724,
|
|
737
|
+
YouHaveKilled = 725,
|
|
738
|
+
YouHaveReleased = 726,
|
|
739
|
+
YouHaveSummoned = 727,
|
|
740
|
+
YouHaveTamed = 728,
|
|
741
|
+
YouHaveUncaged = 729,
|
|
742
|
+
YouNeedMoreCredit = 730,
|
|
743
|
+
YouNoticeBarren = 731,
|
|
744
|
+
YouNoticeBecomeEnraged = 732,
|
|
745
|
+
YouNoticeDying = 733,
|
|
746
|
+
YouNoticeFertilityDecreasing = 734,
|
|
747
|
+
YouNoticeFertilityIncreasing = 735,
|
|
748
|
+
YouNoticeGrowing = 736,
|
|
749
|
+
YouNoticeLavaCooling = 737,
|
|
750
|
+
YouNoticeLavaHardening = 738,
|
|
751
|
+
YouNoticePerish = 739,
|
|
752
|
+
YouNoticePlantDamage = 740,
|
|
753
|
+
YouNoticePlantRegenerated = 741,
|
|
754
|
+
YouNoticeRegrowing = 742,
|
|
755
|
+
YouNoticeStumbleInjureItself = 743,
|
|
756
|
+
YouNoticeTakeFromGround = 744,
|
|
757
|
+
YouNoticeWoundsClosing = 745,
|
|
758
|
+
YouNoticeZombieHorde = 746,
|
|
759
|
+
YouOfferedToCreature = 747,
|
|
760
|
+
YouOfferedToCreatureRejects = 748,
|
|
761
|
+
YouOpen = 749,
|
|
762
|
+
YouPacked = 750,
|
|
763
|
+
YouPickedUp = 751,
|
|
764
|
+
YouRefine = 752,
|
|
765
|
+
YouReinforce = 753,
|
|
766
|
+
YouRepair = 754,
|
|
767
|
+
YouReturnFromCivilizationWith = 755,
|
|
768
|
+
YourFist = 756,
|
|
769
|
+
YourHands = 757,
|
|
770
|
+
YourInventory = 758,
|
|
771
|
+
YourIsland = 759,
|
|
772
|
+
YourRubbingNoEffect = 760,
|
|
773
|
+
YouRub = 761,
|
|
774
|
+
YouSee = 762,
|
|
775
|
+
YouSeeALivingMushroomSpore = 763,
|
|
776
|
+
YouSeeASkeletonCollapse = 764,
|
|
777
|
+
YouSeeASlimeCombine = 765,
|
|
778
|
+
YouSeeAZombieBleeding = 766,
|
|
779
|
+
YouSeeCoolDown = 767,
|
|
780
|
+
YouSeeDrop = 768,
|
|
781
|
+
YouSeeEngulfFire = 769,
|
|
782
|
+
YouSeeFireSpread = 770,
|
|
783
|
+
YouSeeHelpingPlant = 771,
|
|
784
|
+
YouSeeLay = 772,
|
|
785
|
+
YouSeeLayingTrap = 773,
|
|
786
|
+
YouSeeSpewLava = 774,
|
|
787
|
+
YouSeeSpitAcid = 775,
|
|
788
|
+
YouSeeSpringForth = 776,
|
|
789
|
+
YouSeeSummon = 777,
|
|
790
|
+
YouSeeSwampFlood = 778,
|
|
791
|
+
YouSeeTrampling = 779,
|
|
792
|
+
YouSetTheTrapOff = 780,
|
|
793
|
+
YouStokeTheCreature = 781,
|
|
794
|
+
YouSwapMainHandAndOffHand = 782,
|
|
795
|
+
YouThrew = 783,
|
|
796
|
+
YouTilled = 784,
|
|
797
|
+
YouUnequip = 785,
|
|
798
|
+
YouUsed = 786,
|
|
799
|
+
YouWhileTraveling = 787
|
|
792
800
|
}
|
|
793
801
|
export default Message;
|