@wayward/types 2.13.2-beta.dev.20230531.1 → 2.13.2-beta.dev.20230601.1
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/IGame.d.ts +12 -11
- package/definitions/game/game/doodad/Doodad.d.ts +5 -4
- package/definitions/game/game/doodad/IDoodad.d.ts +12 -2
- package/definitions/game/game/item/IItem.d.ts +8 -3
- package/definitions/game/game/magic/MagicalPropertyType.d.ts +1 -0
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -2
- package/definitions/game/language/dictionary/Message.d.ts +511 -509
- package/definitions/game/ui/UiExperiments.d.ts +2 -1
- package/package.json +1 -1
|
@@ -221,17 +221,18 @@ export declare enum TileUpdateType {
|
|
|
221
221
|
DoodadOrientation = 14,
|
|
222
222
|
DoodadOverHidden = 15,
|
|
223
223
|
DoodadRemove = 16,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
224
|
+
DoodadAddWater = 17,
|
|
225
|
+
Item = 18,
|
|
226
|
+
ItemDrop = 19,
|
|
227
|
+
ItemMovement = 20,
|
|
228
|
+
Mod = 21,
|
|
229
|
+
NPC = 22,
|
|
230
|
+
NPCSpawn = 23,
|
|
231
|
+
Player = 24,
|
|
232
|
+
Terrain = 25,
|
|
233
|
+
TileEvent = 26,
|
|
234
|
+
TileEventManager = 27,
|
|
235
|
+
Tilled = 28
|
|
235
236
|
}
|
|
236
237
|
export declare enum PauseSource {
|
|
237
238
|
/**
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://github.com/WaywardGame/types/wiki
|
|
10
10
|
*/
|
|
11
11
|
import type { IEventEmitter } from "event/EventEmitter";
|
|
12
|
-
import type { DisplayableDoodadType, DoodadTag, DoodadTypeExtra, DoorOrientation, IDoodadDescription, IDoodadOptions, IHasBuilder } from "game/doodad/IDoodad";
|
|
12
|
+
import type { DisplayableDoodadType, DoodadTag, DoodadTypeExtra, DoorOrientation, IDoodadDescription, IDoodadOptions, IHasBuilder, IHasWater } from "game/doodad/IDoodad";
|
|
13
13
|
import { DoodadType, DoodadTypeGroup, GrowingStage } from "game/doodad/IDoodad";
|
|
14
14
|
import { ActionType } from "game/entity/action/IAction";
|
|
15
15
|
import type Creature from "game/entity/creature/Creature";
|
|
@@ -93,6 +93,7 @@ export default class Doodad extends Entity<IDoodadDescription, DoodadType, Dooda
|
|
|
93
93
|
disassembly?: Item[];
|
|
94
94
|
gatherReady?: number;
|
|
95
95
|
growth?: GrowingStage;
|
|
96
|
+
hasWater?: IHasWater;
|
|
96
97
|
hitchedCreature?: number;
|
|
97
98
|
itemOrders?: number[];
|
|
98
99
|
magic?: MagicalPropertyManager;
|
|
@@ -125,13 +126,13 @@ export default class Doodad extends Entity<IDoodadDescription, DoodadType, Dooda
|
|
|
125
126
|
toString(): string;
|
|
126
127
|
getRegistrarId(): number;
|
|
127
128
|
/**
|
|
128
|
-
* @param article Whether to include an article for the name of the doodad. Uses the article rules on the language
|
|
129
|
+
* @param article Whether to include an article for the name of the doodad. Uses the article rules on the language.`.
|
|
129
130
|
* @param count The number of this doodad that you're getting the name of. Defaults to `1`.
|
|
130
131
|
*
|
|
131
132
|
* Examples:
|
|
132
133
|
* - `doodad.getName()` // "a stone furnace"
|
|
133
|
-
* - `doodad.getName(
|
|
134
|
-
* - `doodad.getName(
|
|
134
|
+
* - `doodad.getName(Article.None)` // "stone furnace"
|
|
135
|
+
* - `doodad.getName(Article.None, 3)` // "stone furnaces"
|
|
135
136
|
*/
|
|
136
137
|
getName(article?: Article, count?: number): import("../../language/impl/TranslationImpl").default;
|
|
137
138
|
protected getDescription(): IDoodadDescription | undefined;
|
|
@@ -34,6 +34,7 @@ import type { IRGB } from "utilities/Color";
|
|
|
34
34
|
export interface IDoodadOptions extends IObjectOptions {
|
|
35
35
|
force?: boolean;
|
|
36
36
|
gatherReady?: number;
|
|
37
|
+
hasWater?: IHasWater;
|
|
37
38
|
stillContainer?: Item;
|
|
38
39
|
growth?: GrowingStage;
|
|
39
40
|
spread?: number;
|
|
@@ -402,7 +403,11 @@ export declare enum DoodadType {
|
|
|
402
403
|
ClayLighthouse = 158,
|
|
403
404
|
LitClayLighthouse = 159,
|
|
404
405
|
BasaltLighthouse = 160,
|
|
405
|
-
LitBasaltLighthouse = 161
|
|
406
|
+
LitBasaltLighthouse = 161,
|
|
407
|
+
GraniteDripstone = 162,
|
|
408
|
+
SandstoneDripstone = 163,
|
|
409
|
+
BasaltDripstone = 164,
|
|
410
|
+
ClayDripstone = 165
|
|
406
411
|
}
|
|
407
412
|
export declare enum DoodadTypeExtra {
|
|
408
413
|
None = 999,
|
|
@@ -440,7 +445,8 @@ export declare enum DoodadTypeGroup {
|
|
|
440
445
|
Scarecrow = 415,
|
|
441
446
|
Lighthouse = 416,
|
|
442
447
|
LitLighthouse = 417,
|
|
443
|
-
|
|
448
|
+
Dripstone = 418,
|
|
449
|
+
Last = 419
|
|
444
450
|
}
|
|
445
451
|
export declare enum DoorOrientation {
|
|
446
452
|
Default = 0,
|
|
@@ -458,4 +464,8 @@ export declare enum GrowingStage {
|
|
|
458
464
|
export interface IHasBuilder {
|
|
459
465
|
getBuilder(): Human | undefined;
|
|
460
466
|
}
|
|
467
|
+
export interface IHasWater {
|
|
468
|
+
top?: boolean;
|
|
469
|
+
bottom?: boolean;
|
|
470
|
+
}
|
|
461
471
|
export {};
|
|
@@ -1449,7 +1449,11 @@ export declare enum ItemType {
|
|
|
1449
1449
|
AberrantClayGolemFigure = 750,
|
|
1450
1450
|
AberrantGraniteGolemFigure = 751,
|
|
1451
1451
|
AberrantSandstoneGolemFigure = 752,
|
|
1452
|
-
AberrantBasaltGolemFigure = 753
|
|
1452
|
+
AberrantBasaltGolemFigure = 753,
|
|
1453
|
+
GraniteDripstone = 754,
|
|
1454
|
+
SandstoneDripstone = 755,
|
|
1455
|
+
BasaltDripstone = 756,
|
|
1456
|
+
ClayDripstone = 757
|
|
1453
1457
|
}
|
|
1454
1458
|
export declare enum ItemTypeExtra {
|
|
1455
1459
|
None = 999,
|
|
@@ -1610,7 +1614,8 @@ export declare enum ItemTypeGroup {
|
|
|
1610
1614
|
Gem = 931,
|
|
1611
1615
|
Golem = 932,
|
|
1612
1616
|
CreatureResource = 933,
|
|
1613
|
-
|
|
1614
|
-
|
|
1617
|
+
Dripstone = 934,
|
|
1618
|
+
All = 935,
|
|
1619
|
+
Last = 936
|
|
1615
1620
|
}
|
|
1616
1621
|
export {};
|
|
@@ -32,7 +32,7 @@ export declare const promptGameConfirmationDestroyOnGather: import("game/meta/pr
|
|
|
32
32
|
export declare const promptGameConfirmationDroppingContainer: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
33
33
|
export declare const promptGameConfirmationRestWithEquippedFireSource: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[actionVerb: Text, objectName: Text, actionNoun: Text]>;
|
|
34
34
|
export declare const promptGameContainerNotFull: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
35
|
-
export declare const promptGameDesalinationNoNeed: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
35
|
+
export declare const promptGameDesalinationNoNeed: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[dripstoneOrStile: Text]>;
|
|
36
36
|
export declare const promptGameExtinguishWaterStill: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
37
37
|
export declare const promptGameItemMayBeDestroyedInCraft: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[breakingItemsList: Text]>;
|
|
38
38
|
export declare const promptGameItemMayCauseBurns: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
@@ -40,7 +40,7 @@ export declare const promptGameItemsMayBeDestroyedOnUse: import("game/meta/promp
|
|
|
40
40
|
export declare const promptGameLoadFailure: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
41
41
|
export declare const promptGameNoHealingRequired: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
42
42
|
export declare const promptGameNoSaveOnDeath: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
43
|
-
export declare const promptGamePickUpStillWithWater: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
43
|
+
export declare const promptGamePickUpStillWithWater: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[dripstoneOrStile: Text]>;
|
|
44
44
|
export declare const promptGameReleaseCreature: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[creatureName: Text]>;
|
|
45
45
|
export declare const promptGameUncage: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[creatureName: Text]>;
|
|
46
46
|
export declare const promptGameRenameGeneric: import("game/meta/prompt/IPrompt").IPromptInputDescription<[placeholder?: string | TranslationImpl | undefined, name?: string | ISerializedTranslation | undefined]>;
|
|
@@ -287,514 +287,516 @@ declare enum Message {
|
|
|
287
287
|
DoodadCauseStatus = 275,
|
|
288
288
|
DoodadGroupTier = 276,
|
|
289
289
|
DrewSurroundings = 277,
|
|
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
|
-
|
|
290
|
+
Dripstone = 278,
|
|
291
|
+
Drop = 279,
|
|
292
|
+
DroppedIntoDepths = 280,
|
|
293
|
+
DroppedIntoFire = 281,
|
|
294
|
+
DroppedIntoTheVoid = 282,
|
|
295
|
+
DryadSprouted = 283,
|
|
296
|
+
DueToDehydration = 284,
|
|
297
|
+
DueToStarvation = 285,
|
|
298
|
+
DugTreasureOut = 286,
|
|
299
|
+
DumpContentsOfContainerInInventory = 287,
|
|
300
|
+
DyingOfDehydration = 288,
|
|
301
|
+
EarnedMilestone = 289,
|
|
302
|
+
Effective = 290,
|
|
303
|
+
Enchant = 291,
|
|
304
|
+
EquipmentPreventedStatusEffects = 292,
|
|
305
|
+
ErrorHasOccured = 293,
|
|
306
|
+
ExtinguishedFire = 294,
|
|
307
|
+
ExtinguishedLightSource = 295,
|
|
308
|
+
Exude = 296,
|
|
309
|
+
ExudeNotPossible = 297,
|
|
310
|
+
FailedToAbsorb = 298,
|
|
311
|
+
FailedToAddFuelToTorch = 299,
|
|
312
|
+
FailedToCatchFish = 300,
|
|
313
|
+
FailedToCauseDamage = 301,
|
|
314
|
+
FailedToCauseYouDamage = 302,
|
|
315
|
+
FailedToCopy = 303,
|
|
316
|
+
FailedToDraw = 304,
|
|
317
|
+
FailedToEnchant = 305,
|
|
318
|
+
FailedToExude = 306,
|
|
319
|
+
FailedToIgniteTorch = 307,
|
|
320
|
+
FailedToPickLock = 308,
|
|
321
|
+
FailedToPreserve = 309,
|
|
322
|
+
FailedToRefine = 310,
|
|
323
|
+
FailedToReinforce = 311,
|
|
324
|
+
FailedToRepair = 312,
|
|
325
|
+
FailedToStartFire = 313,
|
|
326
|
+
FailedToTame = 314,
|
|
327
|
+
FailedToTransmogrify = 315,
|
|
328
|
+
FarOffLands = 316,
|
|
329
|
+
FeltBurningPainLostHealth = 317,
|
|
330
|
+
FeltFrostbitePainLostHealth = 318,
|
|
331
|
+
FewMinutes = 319,
|
|
332
|
+
Filled = 320,
|
|
333
|
+
FilledFrom = 321,
|
|
334
|
+
FireAroundYouIsWarm = 322,
|
|
335
|
+
FiredIntoObstacle = 323,
|
|
336
|
+
FireOverflowed = 324,
|
|
337
|
+
FireOverflowedFireElemental = 325,
|
|
338
|
+
FireSource = 326,
|
|
339
|
+
FishingWithNoBait = 327,
|
|
340
|
+
Floating = 328,
|
|
341
|
+
FreshWater = 329,
|
|
342
|
+
FromTheStill = 330,
|
|
343
|
+
Fuel = 331,
|
|
344
|
+
FuelIsRequired = 332,
|
|
345
|
+
Gather = 333,
|
|
346
|
+
GatherDestroy = 334,
|
|
347
|
+
Gathering = 335,
|
|
348
|
+
GhostNoActions = 336,
|
|
349
|
+
GhostOf = 337,
|
|
350
|
+
GoatHasNoMilk = 338,
|
|
351
|
+
GrabAll = 339,
|
|
352
|
+
HackAway = 340,
|
|
353
|
+
HandProtectionPreventedInjury = 341,
|
|
354
|
+
HandsNotEffectiveFor = 342,
|
|
355
|
+
Harvest = 343,
|
|
356
|
+
Harvesting = 344,
|
|
357
|
+
HasBeenHurtByATrap = 345,
|
|
358
|
+
HasDecayed = 346,
|
|
359
|
+
HasHitYouForDamage = 347,
|
|
360
|
+
HasNoEffect = 348,
|
|
361
|
+
HasSetTrapOffNoDamage = 349,
|
|
362
|
+
HasSplit = 350,
|
|
363
|
+
Help = 351,
|
|
364
|
+
HelpGrow = 352,
|
|
365
|
+
Hitch = 353,
|
|
366
|
+
HitchAttempt = 354,
|
|
367
|
+
HitchCreature = 355,
|
|
368
|
+
HitchDisabled = 356,
|
|
369
|
+
HitchInUse = 357,
|
|
370
|
+
HitForDamage = 358,
|
|
371
|
+
HitYouForDamage = 359,
|
|
372
|
+
Hour = 360,
|
|
373
|
+
Hours = 361,
|
|
374
|
+
HurtHandsHittingWithoutWeapons = 362,
|
|
375
|
+
HurtHandsWithNoTool = 363,
|
|
376
|
+
Ignite = 364,
|
|
377
|
+
IgnitedTorch = 365,
|
|
378
|
+
Ineffective = 366,
|
|
379
|
+
InjuredFromTrap = 367,
|
|
380
|
+
InNeedOfRepair = 368,
|
|
381
|
+
InteractingWithHasInjuredYouForDamage = 369,
|
|
382
|
+
Inventory = 370,
|
|
383
|
+
IsInTheWayOfPickingUp = 371,
|
|
384
|
+
It = 372,
|
|
385
|
+
ItemFromWater = 373,
|
|
386
|
+
JoinedAServer = 374,
|
|
387
|
+
Jump = 375,
|
|
388
|
+
Killed = 376,
|
|
389
|
+
KnowledgeHasIncreased = 377,
|
|
390
|
+
LastPlaceYouLeftOff = 378,
|
|
391
|
+
LearnedHowToCreate = 379,
|
|
392
|
+
LikelyFailures = 380,
|
|
393
|
+
Limited = 381,
|
|
394
|
+
Lockpick = 382,
|
|
395
|
+
MapCompletedNotOfThisArea = 383,
|
|
396
|
+
MapDestroyed = 384,
|
|
397
|
+
MapNearlyDestroyed = 385,
|
|
398
|
+
MapNotOfThisArea = 386,
|
|
399
|
+
MaterialsDestroyed = 387,
|
|
400
|
+
MerchantAlreadyTradedItem = 388,
|
|
401
|
+
MessageOfTheDay = 389,
|
|
402
|
+
Metabolism = 390,
|
|
403
|
+
MetabolismSlowed = 391,
|
|
404
|
+
Milk = 392,
|
|
405
|
+
Mine = 393,
|
|
406
|
+
Mining = 394,
|
|
407
|
+
MissedWith = 395,
|
|
408
|
+
MissedYouWith = 396,
|
|
409
|
+
MovedItem = 397,
|
|
410
|
+
MovedItemFailed = 398,
|
|
411
|
+
MoveOverTrapButDoNotSetOff = 399,
|
|
412
|
+
MultiplayerGamePaused = 400,
|
|
413
|
+
MultiplayerGameResumed = 401,
|
|
414
|
+
MultiplayerPlayerConnected = 402,
|
|
415
|
+
MultiplayerPlayerDied = 403,
|
|
416
|
+
MultiplayerPlayerDisconnected = 404,
|
|
417
|
+
MultiplayerPlayerJoined = 405,
|
|
418
|
+
MustBeEquippedToIgnite = 406,
|
|
419
|
+
Mysteriously = 407,
|
|
420
|
+
NearlyBurnedEquipmentProtectedYou = 408,
|
|
421
|
+
NeedToStartTravelsOutside = 409,
|
|
422
|
+
NeedWaterForBoat = 410,
|
|
423
|
+
Negatively = 411,
|
|
424
|
+
NightQuarter1 = 412,
|
|
425
|
+
NightQuarter2 = 413,
|
|
426
|
+
NightQuarter3 = 414,
|
|
427
|
+
NightQuarter4 = 415,
|
|
428
|
+
No = 416,
|
|
429
|
+
NoAmmunitionForThatWeapon = 417,
|
|
430
|
+
NoFireToStokeWith = 418,
|
|
431
|
+
NoFishAtLocation = 419,
|
|
432
|
+
NoGroundWater = 420,
|
|
433
|
+
NoInkToDrawMap = 421,
|
|
434
|
+
NoKindlingOrFuelItemsToStartFire = 422,
|
|
435
|
+
NoKindlingToStartFire = 423,
|
|
436
|
+
NoLongerFeelPainOfBeingBurned = 424,
|
|
437
|
+
NoLongerFeelPainOfBeingFrostbitten = 425,
|
|
438
|
+
NoLongerHostile = 426,
|
|
439
|
+
NoMoreRoomInContainer = 427,
|
|
440
|
+
NoPaperToDrawMap = 428,
|
|
441
|
+
NoRequiredItemToFireWeapon = 429,
|
|
442
|
+
NoReturnWithoutCompletingChallenges = 430,
|
|
443
|
+
NoRoomForImprovement = 431,
|
|
444
|
+
NoRoomToDrop = 432,
|
|
445
|
+
NoRoomToSummon = 433,
|
|
446
|
+
NotEnoughPurifiedWaterYet = 434,
|
|
447
|
+
NotEnoughTreasureToReturn = 435,
|
|
448
|
+
NotFacingCreatureToOfferThisTo = 436,
|
|
449
|
+
NotFacingLockedObject = 437,
|
|
450
|
+
NotFacingOtherToHeal = 438,
|
|
451
|
+
NotFacingValidItem = 439,
|
|
452
|
+
NothingHereToButcher = 440,
|
|
453
|
+
NothingHereToFill = 441,
|
|
454
|
+
NothingHereToGrasp = 442,
|
|
455
|
+
NothingTo = 443,
|
|
456
|
+
NothingToGetFromThis = 444,
|
|
457
|
+
NothingToHarvestFromThisGather = 445,
|
|
458
|
+
NothingToSmother = 446,
|
|
459
|
+
NothingUsefulToHarvestYet = 447,
|
|
460
|
+
NoTinderToStartFire = 448,
|
|
461
|
+
NotSuitableToPlant = 449,
|
|
462
|
+
NoWaterInStill = 450,
|
|
463
|
+
NPCMerchantNewInventoryDialog1 = 451,
|
|
464
|
+
NPCMerchantNewInventoryDialog2 = 452,
|
|
465
|
+
NPCMerchantNewInventoryDialog3 = 453,
|
|
466
|
+
NPCMerchantNewInventoryDialog4 = 454,
|
|
467
|
+
NPCMerchantStartingDialog1 = 455,
|
|
468
|
+
NPCMerchantStartingDialog2 = 456,
|
|
469
|
+
NPCMerchantStartingDialog3 = 457,
|
|
470
|
+
NPCMerchantStartingDialog4 = 458,
|
|
471
|
+
NPCMerchantWelcomeCredit = 459,
|
|
472
|
+
NPCShipperShipToIsland = 460,
|
|
473
|
+
NPCShipperStartingDialog1 = 461,
|
|
474
|
+
NPCShipperStartingDialog2 = 462,
|
|
475
|
+
NPCShipperStartingDialog3 = 463,
|
|
476
|
+
NPCShipperStartingDialog4 = 464,
|
|
477
|
+
NPCWelcome = 465,
|
|
478
|
+
ObjectIsLocked = 466,
|
|
479
|
+
ObjectIsLockedAttemptToBreakIt = 467,
|
|
480
|
+
OfferAberrantFail = 468,
|
|
481
|
+
OfferAberrantFailButTamed = 469,
|
|
482
|
+
Open = 470,
|
|
483
|
+
OpenClose = 471,
|
|
484
|
+
OverEatingLostStamina = 472,
|
|
485
|
+
OverHydratingLostStamina = 473,
|
|
486
|
+
Pack = 474,
|
|
487
|
+
PaperTurnedToMush = 475,
|
|
488
|
+
ParryTheBlow = 476,
|
|
489
|
+
Pet = 477,
|
|
490
|
+
PetCreature = 478,
|
|
491
|
+
PickAway = 479,
|
|
492
|
+
PickUp = 480,
|
|
493
|
+
PickUpExcrement = 481,
|
|
494
|
+
PickUpTheItem = 482,
|
|
495
|
+
Place = 483,
|
|
496
|
+
PlacedOnGround = 484,
|
|
497
|
+
Plant = 485,
|
|
498
|
+
PlantedInGround = 486,
|
|
499
|
+
PlantGatheredPlant = 487,
|
|
500
|
+
PlantGatheringWillDestroy = 488,
|
|
501
|
+
PlantHasResourcesToGather = 489,
|
|
502
|
+
PlantHasResourcesToHarvest = 490,
|
|
503
|
+
PlantHighlyFertile = 491,
|
|
504
|
+
Planting = 492,
|
|
505
|
+
PlantIsBare = 493,
|
|
506
|
+
PlantIsFertile = 494,
|
|
507
|
+
PlantIsInStage = 495,
|
|
508
|
+
PlantIsNotFertile = 496,
|
|
509
|
+
PlantNotReadyToHarvest = 497,
|
|
510
|
+
PlantReadyToGather = 498,
|
|
511
|
+
PlantReadyToGatherNotMaximal = 499,
|
|
512
|
+
PlantReadyToHarvest = 500,
|
|
513
|
+
PlantReadyToHarvestNotMaximal = 501,
|
|
514
|
+
Player = 502,
|
|
515
|
+
PlayerHas = 503,
|
|
516
|
+
PlayerHasCompletedChallengeRequirement = 504,
|
|
517
|
+
PlayerHasWonChallenge = 505,
|
|
518
|
+
Poisoned = 506,
|
|
519
|
+
PoisonedLostHealth = 507,
|
|
520
|
+
PoisonWorkedItsCourse = 508,
|
|
521
|
+
Positively = 509,
|
|
522
|
+
PouredOut = 510,
|
|
523
|
+
PouredOutOnYourself = 511,
|
|
524
|
+
PouredWaterIntoStill = 512,
|
|
525
|
+
PourHarmedPlant = 513,
|
|
526
|
+
PourHealedPlant = 514,
|
|
527
|
+
PourHealedPlantFully = 515,
|
|
528
|
+
PourHealedPlantPartially = 516,
|
|
529
|
+
PourIncreasedFertility = 517,
|
|
530
|
+
Pouring = 518,
|
|
531
|
+
Prepare = 519,
|
|
532
|
+
Prepared = 520,
|
|
533
|
+
Preserve = 521,
|
|
534
|
+
PreservedFood = 522,
|
|
535
|
+
PurifiedWaterInStill = 523,
|
|
536
|
+
RandomEventsFire = 524,
|
|
537
|
+
ReduceLength = 525,
|
|
538
|
+
Refine = 526,
|
|
539
|
+
RefusedToBeTamed = 527,
|
|
540
|
+
Reinforce = 528,
|
|
541
|
+
Repair = 529,
|
|
542
|
+
ReputationDecreased = 530,
|
|
543
|
+
ReputationIncreased = 531,
|
|
544
|
+
ReputationUpdate = 532,
|
|
545
|
+
RequiredForDisassembly = 533,
|
|
546
|
+
RequiresFireToBeLit = 534,
|
|
547
|
+
RequiresYouFacingFireSource = 535,
|
|
548
|
+
RequiresYouToBeAround = 536,
|
|
549
|
+
Resistant = 537,
|
|
550
|
+
Rest = 538,
|
|
551
|
+
Rested = 539,
|
|
552
|
+
Resting = 540,
|
|
553
|
+
RestingOnGroundNotEffective = 541,
|
|
554
|
+
RestInterrupted = 542,
|
|
555
|
+
RestInterruptedDamage = 543,
|
|
556
|
+
RestInterruptedDying = 544,
|
|
557
|
+
RestInterruptedLoudNoise = 545,
|
|
558
|
+
RestInterruptedPain = 546,
|
|
559
|
+
RestInterruptedStirring = 547,
|
|
560
|
+
RestInterruptedWaterPoured = 548,
|
|
561
|
+
RestLongTime = 549,
|
|
562
|
+
RestModerateTime = 550,
|
|
563
|
+
RestOnBoat = 551,
|
|
564
|
+
RestShortTime = 552,
|
|
565
|
+
RestTime = 553,
|
|
566
|
+
ReturnedToCivilization = 554,
|
|
567
|
+
ReturningToCivilizationSetOffAgain = 555,
|
|
568
|
+
ReturnsToLife = 556,
|
|
569
|
+
Reverse = 557,
|
|
570
|
+
Sailing = 558,
|
|
571
|
+
ScrollMaster = 559,
|
|
572
|
+
ScrollProvidedNoUsefulInsight = 560,
|
|
573
|
+
Seawater = 561,
|
|
574
|
+
SeemsToHaveDrawnEnergy = 562,
|
|
575
|
+
SetTrapOffButNoDamage = 563,
|
|
576
|
+
SetUp = 564,
|
|
577
|
+
ShadowInTheWater = 565,
|
|
578
|
+
Skill = 566,
|
|
579
|
+
SkillHasRaised = 567,
|
|
580
|
+
Skills = 568,
|
|
581
|
+
Sleep = 569,
|
|
582
|
+
Sleeping = 570,
|
|
583
|
+
SleepOnBoat = 571,
|
|
584
|
+
Slept = 572,
|
|
585
|
+
SlitherSuckerConstricts = 573,
|
|
586
|
+
SlitherSuckerJumpedOnHead = 574,
|
|
587
|
+
SomethingInTheWayOf = 575,
|
|
588
|
+
SomethingInTheWayOfButcherFirst = 576,
|
|
589
|
+
SomethingInTheWayOfFire = 577,
|
|
590
|
+
SomethingInTheWayOfFishing = 578,
|
|
591
|
+
SomethingInTheWayOfPerforming = 579,
|
|
592
|
+
SomethingInTheWayOfPlacing = 580,
|
|
593
|
+
SomethingInTheWayOfReleasing = 581,
|
|
594
|
+
SomethingInTheWayOfSummoning = 582,
|
|
595
|
+
SomethingInWayOfClosingDoor = 583,
|
|
596
|
+
SoothedTheirBurnInjuries = 584,
|
|
597
|
+
SoothedYourBurnInjuries = 585,
|
|
598
|
+
Sort = 586,
|
|
599
|
+
SortedByBestCraftingRequirements = 587,
|
|
600
|
+
SortedByCategory = 588,
|
|
601
|
+
SortedByCraftableOnly = 589,
|
|
602
|
+
SortedByDecay = 590,
|
|
603
|
+
SortedByDurability = 591,
|
|
604
|
+
SortedByGroup = 592,
|
|
605
|
+
SortedByMagical = 593,
|
|
606
|
+
SortedByName = 594,
|
|
607
|
+
SortedByQuality = 595,
|
|
608
|
+
SortedByRecent = 596,
|
|
609
|
+
SortedBySkill = 597,
|
|
610
|
+
SortedByUnlockedTime = 598,
|
|
611
|
+
SortedByWeight = 599,
|
|
612
|
+
SortedByWorth = 600,
|
|
613
|
+
StaminaIsFull = 601,
|
|
614
|
+
StartedFire = 602,
|
|
615
|
+
StartTravelInWater = 603,
|
|
616
|
+
StarvingToDeath = 604,
|
|
617
|
+
StatAmount = 605,
|
|
618
|
+
StatGained = 606,
|
|
619
|
+
StatIncreasing = 607,
|
|
620
|
+
StatLost = 608,
|
|
621
|
+
StatQuenched = 609,
|
|
622
|
+
StatRegained = 610,
|
|
623
|
+
StatSated = 611,
|
|
624
|
+
SteppingOn = 612,
|
|
625
|
+
Still = 613,
|
|
626
|
+
StillHasNoWaterToPurify = 614,
|
|
627
|
+
StirredUpClawWorm = 615,
|
|
628
|
+
StirredUpCreature = 616,
|
|
629
|
+
StoppedYourBleeding = 617,
|
|
630
|
+
StopUsingVehicle = 618,
|
|
631
|
+
Strength = 619,
|
|
632
|
+
SummonedGuardiansByDiggingTreasure = 620,
|
|
633
|
+
SummonedGuardiansByLockpicking = 621,
|
|
634
|
+
SummonVoidDwellerItem = 622,
|
|
635
|
+
SummonVoidDwellerRinging = 623,
|
|
636
|
+
SummonVoidDwellerShiver = 624,
|
|
637
|
+
SunNotBrightEnoughToStartFire = 625,
|
|
638
|
+
SwampWater = 626,
|
|
639
|
+
Swimming = 627,
|
|
640
|
+
TakenFromGroundBecomeTamed = 628,
|
|
641
|
+
TeleportBlocked = 629,
|
|
642
|
+
Teleported = 630,
|
|
643
|
+
ThanksBuying = 631,
|
|
644
|
+
ThanksSelling = 632,
|
|
645
|
+
TheirFist = 633,
|
|
646
|
+
ThePlant = 634,
|
|
647
|
+
ThereIsNoContainerOnTheStill = 635,
|
|
648
|
+
ThereIsNoSunToStartFire = 636,
|
|
649
|
+
ThisCannotBeMilked = 637,
|
|
650
|
+
Throw = 638,
|
|
651
|
+
ThrownIntoDepths = 639,
|
|
652
|
+
ThrownIntoObstacle = 640,
|
|
653
|
+
ThrownIntoVoid = 641,
|
|
654
|
+
Tier = 642,
|
|
655
|
+
TierGroup = 643,
|
|
656
|
+
Till = 644,
|
|
657
|
+
Tilling = 645,
|
|
658
|
+
TimeIs = 646,
|
|
659
|
+
TimeIsDawn = 647,
|
|
660
|
+
TimeIsDaytime = 648,
|
|
661
|
+
TimeIsDusk = 649,
|
|
662
|
+
TimeIsNighttime = 650,
|
|
663
|
+
TimeIsSunrise = 651,
|
|
664
|
+
TimeIsSunset = 652,
|
|
665
|
+
ToFight = 653,
|
|
666
|
+
TooDamaged = 654,
|
|
667
|
+
TooExhaustedToJump = 655,
|
|
668
|
+
Touching = 656,
|
|
669
|
+
TrampledFire = 657,
|
|
670
|
+
TrampledIntoGround = 658,
|
|
671
|
+
TrampleIntoGround = 659,
|
|
672
|
+
Trampling = 660,
|
|
673
|
+
TransmogrificationNotPossible = 661,
|
|
674
|
+
Transmogrified = 662,
|
|
675
|
+
Transmogrify = 663,
|
|
676
|
+
TrapMissed = 664,
|
|
677
|
+
TrapStoppedYou = 665,
|
|
678
|
+
Traveling = 666,
|
|
679
|
+
TreasureIsBlocked = 667,
|
|
680
|
+
UiActionCannotUseRequiresCreature = 668,
|
|
681
|
+
UiActionCannotUseRequiresDoodad = 669,
|
|
682
|
+
UiActionCannotUseRequiresItem = 670,
|
|
683
|
+
Unhitch = 671,
|
|
684
|
+
UnhitchCreature = 672,
|
|
685
|
+
Unknown = 673,
|
|
686
|
+
Unlimited = 674,
|
|
687
|
+
UnlockedChest = 675,
|
|
688
|
+
UnpurifiedFreshWater = 676,
|
|
689
|
+
UnpurifiedWaterInStill = 677,
|
|
690
|
+
Use = 678,
|
|
691
|
+
UsingBareHands = 679,
|
|
692
|
+
VehicleDefense = 680,
|
|
693
|
+
Vulnerable = 681,
|
|
694
|
+
Water = 682,
|
|
695
|
+
WaterGathering = 683,
|
|
696
|
+
WaterPutOutFire = 684,
|
|
697
|
+
WellIsDry = 685,
|
|
698
|
+
WellIsFull = 686,
|
|
699
|
+
WildGoatRefusedToBeMilked = 687,
|
|
700
|
+
WillNotTrade = 688,
|
|
701
|
+
WorkingYourselfIntoExhaustion = 689,
|
|
702
|
+
WorkingYourselfIntoExhaustionAndDrowning = 690,
|
|
703
|
+
You = 691,
|
|
704
|
+
YouAbsorb = 692,
|
|
705
|
+
YouApplied = 693,
|
|
706
|
+
YouAreAlready = 694,
|
|
707
|
+
YouAte = 695,
|
|
708
|
+
YouBeginResting = 696,
|
|
709
|
+
YouCannotDoThatYet = 697,
|
|
710
|
+
YouCanNowCombatTheTides = 698,
|
|
711
|
+
YouCrafted = 699,
|
|
712
|
+
YouDoNotFindTreasureYet = 700,
|
|
713
|
+
YouDrank = 701,
|
|
714
|
+
YouDropTheTorch = 702,
|
|
715
|
+
YouEnchant = 703,
|
|
716
|
+
YouEquip = 704,
|
|
717
|
+
YouExude = 705,
|
|
718
|
+
YouExudeSome = 706,
|
|
719
|
+
YouExudeSomeReasonConflicting = 707,
|
|
720
|
+
YouExudeSomeReasonMax = 708,
|
|
721
|
+
YouExudeSomeReasonProperties = 709,
|
|
722
|
+
YouFailedTo = 710,
|
|
723
|
+
YouFailedToExtinguishedFireFully = 711,
|
|
724
|
+
YouFailedToHeal = 712,
|
|
725
|
+
YouFailedToHealOther = 713,
|
|
726
|
+
YouFire = 714,
|
|
727
|
+
YouGathered = 715,
|
|
728
|
+
YouGatheredAndDropped = 716,
|
|
729
|
+
YouHarvested = 717,
|
|
730
|
+
YouHarvestedAndDropped = 718,
|
|
731
|
+
YouHave = 719,
|
|
732
|
+
YouHaveAlreadyLearned = 720,
|
|
733
|
+
YouHaveBeenCut = 721,
|
|
734
|
+
YouHaveCaged = 722,
|
|
735
|
+
YouHaveCommanded = 723,
|
|
736
|
+
YouHaveDied = 724,
|
|
737
|
+
YouHaveHealedOther = 725,
|
|
738
|
+
YouHaveKilled = 726,
|
|
739
|
+
YouHaveReleased = 727,
|
|
740
|
+
YouHaveSummoned = 728,
|
|
741
|
+
YouHaveTamed = 729,
|
|
742
|
+
YouHaveUncaged = 730,
|
|
743
|
+
YouNeedMoreCredit = 731,
|
|
744
|
+
YouNoticeBarren = 732,
|
|
745
|
+
YouNoticeBecomeEnraged = 733,
|
|
746
|
+
YouNoticeDying = 734,
|
|
747
|
+
YouNoticeFertilityDecreasing = 735,
|
|
748
|
+
YouNoticeFertilityIncreasing = 736,
|
|
749
|
+
YouNoticeGrowing = 737,
|
|
750
|
+
YouNoticeLavaCooling = 738,
|
|
751
|
+
YouNoticeLavaHardening = 739,
|
|
752
|
+
YouNoticePerish = 740,
|
|
753
|
+
YouNoticePlantDamage = 741,
|
|
754
|
+
YouNoticePlantRegenerated = 742,
|
|
755
|
+
YouNoticeRegrowing = 743,
|
|
756
|
+
YouNoticeStumbleInjureItself = 744,
|
|
757
|
+
YouNoticeTakeFromGround = 745,
|
|
758
|
+
YouNoticeWoundsClosing = 746,
|
|
759
|
+
YouNoticeZombieHorde = 747,
|
|
760
|
+
YouOfferedToCreature = 748,
|
|
761
|
+
YouOfferedToCreatureRejects = 749,
|
|
762
|
+
YouOpen = 750,
|
|
763
|
+
YouPacked = 751,
|
|
764
|
+
YouPickedUp = 752,
|
|
765
|
+
YouRefine = 753,
|
|
766
|
+
YouReinforce = 754,
|
|
767
|
+
YouRepair = 755,
|
|
768
|
+
YouReturnFromCivilizationWith = 756,
|
|
769
|
+
YourFist = 757,
|
|
770
|
+
YourHands = 758,
|
|
771
|
+
YourInventory = 759,
|
|
772
|
+
YourIsland = 760,
|
|
773
|
+
YourRubbingNoEffect = 761,
|
|
774
|
+
YouRub = 762,
|
|
775
|
+
YouSee = 763,
|
|
776
|
+
YouSeeALivingMushroomSpore = 764,
|
|
777
|
+
YouSeeASkeletonCollapse = 765,
|
|
778
|
+
YouSeeASlimeCombine = 766,
|
|
779
|
+
YouSeeAZombieBleeding = 767,
|
|
780
|
+
YouSeeCoolDown = 768,
|
|
781
|
+
YouSeeDrop = 769,
|
|
782
|
+
YouSeeEngulfFire = 770,
|
|
783
|
+
YouSeeFireSpread = 771,
|
|
784
|
+
YouSeeHelpingPlant = 772,
|
|
785
|
+
YouSeeLay = 773,
|
|
786
|
+
YouSeeLayingTrap = 774,
|
|
787
|
+
YouSeeSpewLava = 775,
|
|
788
|
+
YouSeeSpitAcid = 776,
|
|
789
|
+
YouSeeSpringForth = 777,
|
|
790
|
+
YouSeeSummon = 778,
|
|
791
|
+
YouSeeSwampFlood = 779,
|
|
792
|
+
YouSeeTrampling = 780,
|
|
793
|
+
YouSetTheTrapOff = 781,
|
|
794
|
+
YouStokeTheCreature = 782,
|
|
795
|
+
YouSwapMainHandAndOffHand = 783,
|
|
796
|
+
YouThrew = 784,
|
|
797
|
+
YouTilled = 785,
|
|
798
|
+
YouUnequip = 786,
|
|
799
|
+
YouUsed = 787,
|
|
800
|
+
YouWhileTraveling = 788
|
|
799
801
|
}
|
|
800
802
|
export default Message;
|
package/package.json
CHANGED