@wayward/types 2.14.0-beta.dev.20231228.1 → 2.14.0-beta.dev.20231229.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/entity/action/ActionExecutor.d.ts +2 -0
- package/definitions/game/game/entity/action/IAction.d.ts +4 -0
- package/definitions/game/game/inspection/infoProviders/doodad/WaterPurification.d.ts +1 -1
- package/definitions/game/game/inspection/inspections/RecipeInspection.d.ts +1 -0
- package/definitions/game/game/inspection/inspections/TileEventInspection.d.ts +1 -1
- package/definitions/game/language/dictionary/Message.d.ts +580 -579
- package/definitions/game/ui/component/Loading.d.ts +10 -0
- package/definitions/game/ui/screen/screens/game/util/item/SpriteEditor.d.ts +7 -0
- package/package.json +1 -1
|
@@ -130,6 +130,8 @@ export default class ActionExecutor<A extends ActionArguments, E extends Entity,
|
|
|
130
130
|
setItemsUsed(used?: boolean): this;
|
|
131
131
|
confirmItemsBroken(executor: E): Promise<boolean>;
|
|
132
132
|
private checkConfirmer;
|
|
133
|
+
private silent?;
|
|
134
|
+
setSilent(silent?: boolean): this;
|
|
133
135
|
private executeInternalOrMultiplayer;
|
|
134
136
|
private executeInternal;
|
|
135
137
|
private createActionPacket;
|
|
@@ -351,6 +351,10 @@ export interface IActionNotUsableHandlerApi<E extends Entity = Entity, CU extend
|
|
|
351
351
|
* Result of a non-usable canUse check.
|
|
352
352
|
*/
|
|
353
353
|
use: IActionNotUsable;
|
|
354
|
+
/**
|
|
355
|
+
* Disables sending a message to the executor for this action not being usable.
|
|
356
|
+
*/
|
|
357
|
+
setSilent(silent?: boolean): any;
|
|
354
358
|
}
|
|
355
359
|
export interface IActionConfirmerApi<E extends Entity = Entity, CU extends IActionUsable = IActionUsable> extends IActionApi<E, CU> {
|
|
356
360
|
/**
|
|
@@ -23,7 +23,7 @@ declare class TileEventInspection extends Inspection<TileEvent> {
|
|
|
23
23
|
static getFromTile(tile: Tile): TileEventInspection[];
|
|
24
24
|
static getFromTileFiltered(tile: Tile, minorEvents: boolean): TileEventInspection[];
|
|
25
25
|
static handles(type: InspectType, tileEvent: unknown): boolean;
|
|
26
|
-
constructor(tileEvent: TileEvent
|
|
26
|
+
constructor(tileEvent: TileEvent);
|
|
27
27
|
getId(): string;
|
|
28
28
|
get(context: InfoProviderContext): Array<Translation | InfoProvider>;
|
|
29
29
|
onRemove(_: any, event: TileEvent): void;
|
|
@@ -301,584 +301,585 @@ declare enum Message {
|
|
|
301
301
|
CutWasBandaged = 289,
|
|
302
302
|
DamageAppeared = 290,
|
|
303
303
|
DamagedByPouring = 291,
|
|
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
|
-
|
|
304
|
+
ActionPourNoEffect = 292,
|
|
305
|
+
DangerousMove = 293,
|
|
306
|
+
DangerousOpen = 294,
|
|
307
|
+
DayQuarter1 = 295,
|
|
308
|
+
DayQuarter2 = 296,
|
|
309
|
+
DayQuarter3 = 297,
|
|
310
|
+
DayQuarter4 = 298,
|
|
311
|
+
DealtNoDamageToYou = 299,
|
|
312
|
+
DeathBy = 300,
|
|
313
|
+
DeathByBleeding = 301,
|
|
314
|
+
DeathByBurning = 302,
|
|
315
|
+
DeathByChallengeWinner = 303,
|
|
316
|
+
DeathByConsumption = 304,
|
|
317
|
+
DeathByCut = 305,
|
|
318
|
+
DeathByDrowning = 306,
|
|
319
|
+
DeathByExhaustion = 307,
|
|
320
|
+
DeathByFistByPlayer = 308,
|
|
321
|
+
DeathByFrostbite = 309,
|
|
322
|
+
DeathByFrostbiteTemperatureShock = 310,
|
|
323
|
+
DeathByMalnutrition = 311,
|
|
324
|
+
DeathByPoison = 312,
|
|
325
|
+
DeathBySteppingOn = 313,
|
|
326
|
+
DeathByTrap = 314,
|
|
327
|
+
DeathByWeaponByPlayer = 315,
|
|
328
|
+
DedicatedTitleAlreadySelected = 316,
|
|
329
|
+
DedicatedTitleMilestoneNotAllowed = 317,
|
|
330
|
+
DeityIntroductionEvil = 318,
|
|
331
|
+
DeityIntroductionGood = 319,
|
|
332
|
+
DeityIntroductionNeutral = 320,
|
|
333
|
+
DeityIntroductionNoUnderstand = 321,
|
|
334
|
+
DestroyedFromUse = 322,
|
|
335
|
+
Dexterity = 323,
|
|
336
|
+
DidNotSeemToBeHurting = 324,
|
|
337
|
+
Dig = 325,
|
|
338
|
+
DigAway = 326,
|
|
339
|
+
Digging = 327,
|
|
340
|
+
Disassemble = 328,
|
|
341
|
+
Disassembling = 329,
|
|
342
|
+
DiscoveredCaveEntrance = 330,
|
|
343
|
+
DiscoveredInTheBottle = 331,
|
|
344
|
+
DiscoveredLavaPassage = 332,
|
|
345
|
+
Dismantle = 333,
|
|
346
|
+
Dismantling = 334,
|
|
347
|
+
DismantlingRequires = 335,
|
|
348
|
+
Dismounted = 336,
|
|
349
|
+
DisplacedPuddles = 337,
|
|
350
|
+
DoNotProduceAnyResources = 338,
|
|
351
|
+
DoodadCauseStatus = 339,
|
|
352
|
+
DoodadGroupTier = 340,
|
|
353
|
+
DrewSurroundings = 341,
|
|
354
|
+
Dripstone = 342,
|
|
355
|
+
Drop = 343,
|
|
356
|
+
DroppedIntoDepths = 344,
|
|
357
|
+
DroppedIntoFire = 345,
|
|
358
|
+
DroppedIntoTheVoid = 346,
|
|
359
|
+
DryadSprouted = 347,
|
|
360
|
+
DueToDehydration = 348,
|
|
361
|
+
DueToStarvation = 349,
|
|
362
|
+
DugTreasureOut = 350,
|
|
363
|
+
DugTreasureOutSurprise = 351,
|
|
364
|
+
DumpContentsOfContainerInInventory = 352,
|
|
365
|
+
DyingOfDehydration = 353,
|
|
366
|
+
EarnedMilestone = 354,
|
|
367
|
+
Effective = 355,
|
|
368
|
+
Enchant = 356,
|
|
369
|
+
EquipmentPreventedStatusEffects = 357,
|
|
370
|
+
ErrorHasOccured = 358,
|
|
371
|
+
ExtinguishedFire = 359,
|
|
372
|
+
ExtinguishedLightSource = 360,
|
|
373
|
+
Exude = 361,
|
|
374
|
+
ExudeNotPossible = 362,
|
|
375
|
+
FailedToAbsorb = 363,
|
|
376
|
+
FailedToAddFuelToTorch = 364,
|
|
377
|
+
FailedToCatchFish = 365,
|
|
378
|
+
FailedToCauseDamage = 366,
|
|
379
|
+
FailedToCauseYouDamage = 367,
|
|
380
|
+
FailedToCopy = 368,
|
|
381
|
+
FailedToDraw = 369,
|
|
382
|
+
FailedToEnchant = 370,
|
|
383
|
+
FailedToExude = 371,
|
|
384
|
+
FailedToIgniteTorch = 372,
|
|
385
|
+
FailedToPickLock = 373,
|
|
386
|
+
FailedToPreserve = 374,
|
|
387
|
+
FailedToRefine = 375,
|
|
388
|
+
FailedToReinforce = 376,
|
|
389
|
+
FailedToRepair = 377,
|
|
390
|
+
FailedToStartFire = 378,
|
|
391
|
+
FailedToTame = 379,
|
|
392
|
+
FailedToTransmogrify = 380,
|
|
393
|
+
FarOffLands = 381,
|
|
394
|
+
FeltBurningPainLostHealth = 382,
|
|
395
|
+
FeltFrostbitePainLostHealth = 383,
|
|
396
|
+
FewMinutes = 384,
|
|
397
|
+
Filled = 385,
|
|
398
|
+
FilledFrom = 386,
|
|
399
|
+
FireAroundYouIsWarm = 387,
|
|
400
|
+
FiredIntoObstacle = 388,
|
|
401
|
+
FireOverflowed = 389,
|
|
402
|
+
FireOverflowedFireElemental = 390,
|
|
403
|
+
FireSource = 391,
|
|
404
|
+
FishingWithNoBait = 392,
|
|
405
|
+
Floating = 393,
|
|
406
|
+
FreshWater = 394,
|
|
407
|
+
FromTheStill = 395,
|
|
408
|
+
Fuel = 396,
|
|
409
|
+
FuelIsRequired = 397,
|
|
410
|
+
Gather = 398,
|
|
411
|
+
GatherDestroy = 399,
|
|
412
|
+
Gathering = 400,
|
|
413
|
+
GhostNoActions = 401,
|
|
414
|
+
GhostOf = 402,
|
|
415
|
+
GoatHasNoMilk = 403,
|
|
416
|
+
GrabAll = 404,
|
|
417
|
+
HackAway = 405,
|
|
418
|
+
HandProtectionPreventedInjury = 406,
|
|
419
|
+
HandsNotEffectiveFor = 407,
|
|
420
|
+
Harvest = 408,
|
|
421
|
+
Harvesting = 409,
|
|
422
|
+
HasBeenHurtByATrap = 410,
|
|
423
|
+
HasDecayed = 411,
|
|
424
|
+
HasHitYouForDamage = 412,
|
|
425
|
+
HasNoEffect = 413,
|
|
426
|
+
HasSetTrapOffNoDamage = 414,
|
|
427
|
+
HasSplit = 415,
|
|
428
|
+
Help = 416,
|
|
429
|
+
HelpGrow = 417,
|
|
430
|
+
Hitch = 418,
|
|
431
|
+
HitchAttempt = 419,
|
|
432
|
+
HitchCreature = 420,
|
|
433
|
+
HitchDisabled = 421,
|
|
434
|
+
HitchInUse = 422,
|
|
435
|
+
HitForDamage = 423,
|
|
436
|
+
HitYouForDamage = 424,
|
|
437
|
+
Hour = 425,
|
|
438
|
+
Hours = 426,
|
|
439
|
+
HurtHandsHittingWithoutWeapons = 427,
|
|
440
|
+
HurtHandsWithNoTool = 428,
|
|
441
|
+
Ignite = 429,
|
|
442
|
+
IgnitedTorch = 430,
|
|
443
|
+
Ineffective = 431,
|
|
444
|
+
InjuredFromTrap = 432,
|
|
445
|
+
InNeedOfRepair = 433,
|
|
446
|
+
InteractingWithHasInjuredYouForDamage = 434,
|
|
447
|
+
InvalidContainer = 435,
|
|
448
|
+
Inventory = 436,
|
|
449
|
+
IsInTheWayOfPickingUp = 437,
|
|
450
|
+
It = 438,
|
|
451
|
+
ItemFromWater = 439,
|
|
452
|
+
JoinedAServer = 440,
|
|
453
|
+
Jump = 441,
|
|
454
|
+
Killed = 442,
|
|
455
|
+
KnowledgeHasIncreased = 443,
|
|
456
|
+
LastPlaceYouLeftOff = 444,
|
|
457
|
+
LearnedHowToCreate = 445,
|
|
458
|
+
LikelyFailures = 446,
|
|
459
|
+
Limited = 447,
|
|
460
|
+
Lockpick = 448,
|
|
461
|
+
MapCompletedNotOfThisArea = 449,
|
|
462
|
+
MapDestroyed = 450,
|
|
463
|
+
MapNearlyDestroyed = 451,
|
|
464
|
+
MapNotOfThisArea = 452,
|
|
465
|
+
MaterialsDestroyed = 453,
|
|
466
|
+
MessageOfTheDay = 454,
|
|
467
|
+
Metabolism = 455,
|
|
468
|
+
MetabolismSlowed = 456,
|
|
469
|
+
Milk = 457,
|
|
470
|
+
Mine = 458,
|
|
471
|
+
Mining = 459,
|
|
472
|
+
MissedWith = 460,
|
|
473
|
+
MissedYouWith = 461,
|
|
474
|
+
MovedItem = 462,
|
|
475
|
+
MovedItemFailed = 463,
|
|
476
|
+
MoveOverTrapButDoNotSetOff = 464,
|
|
477
|
+
MultiplayerGamePaused = 465,
|
|
478
|
+
MultiplayerGameResumed = 466,
|
|
479
|
+
MultiplayerPlayerConnected = 467,
|
|
480
|
+
MultiplayerPlayerDied = 468,
|
|
481
|
+
MultiplayerPlayerDisconnected = 469,
|
|
482
|
+
MultiplayerPlayerJoined = 470,
|
|
483
|
+
MustBeEquippedToIgnite = 471,
|
|
484
|
+
Mysteriously = 472,
|
|
485
|
+
NearlyBurnedEquipmentProtectedYou = 473,
|
|
486
|
+
NeedToStartTravelsOutside = 474,
|
|
487
|
+
NeedWaterForBoat = 475,
|
|
488
|
+
Negatively = 476,
|
|
489
|
+
NightQuarter1 = 477,
|
|
490
|
+
NightQuarter2 = 478,
|
|
491
|
+
NightQuarter3 = 479,
|
|
492
|
+
NightQuarter4 = 480,
|
|
493
|
+
No = 481,
|
|
494
|
+
NoAmmunitionForThatWeapon = 482,
|
|
495
|
+
NoFireToStokeWith = 483,
|
|
496
|
+
NoFishAtLocation = 484,
|
|
497
|
+
NoGroundWater = 485,
|
|
498
|
+
NoInkToDrawMap = 486,
|
|
499
|
+
NoKindlingOrFuelItemsToStartFire = 487,
|
|
500
|
+
NoKindlingToStartFire = 488,
|
|
501
|
+
NoLongerFeelPainOfBeingBurned = 489,
|
|
502
|
+
NoLongerFeelPainOfBeingFrostbitten = 490,
|
|
503
|
+
NoLongerHostile = 491,
|
|
504
|
+
NoMoreRoomInContainer = 492,
|
|
505
|
+
NoPaperToDrawMap = 493,
|
|
506
|
+
NoRequiredItemToFireWeapon = 494,
|
|
507
|
+
NoReturnWithoutCompletingChallenges = 495,
|
|
508
|
+
NoRoomForImprovement = 496,
|
|
509
|
+
NoRoomForVehicle = 497,
|
|
510
|
+
NoRoomToDrop = 498,
|
|
511
|
+
NoRoomToSummon = 499,
|
|
512
|
+
NotEnoughPurifiedWaterYet = 500,
|
|
513
|
+
NotEnoughTreasureToReturn = 501,
|
|
514
|
+
NotFacingCreatureToOfferThisTo = 502,
|
|
515
|
+
NotFacingLockedObject = 503,
|
|
516
|
+
NotFacingOtherToHeal = 504,
|
|
517
|
+
NotFacingValidItem = 505,
|
|
518
|
+
NothingHereToButcher = 506,
|
|
519
|
+
NothingHereToFill = 507,
|
|
520
|
+
NothingHereToGrasp = 508,
|
|
521
|
+
NothingTo = 509,
|
|
522
|
+
NothingToGetFromThis = 510,
|
|
523
|
+
NothingToHarvestFromThisGather = 511,
|
|
524
|
+
NothingToSmother = 512,
|
|
525
|
+
NothingUsefulToHarvestYet = 513,
|
|
526
|
+
NoTinderToStartFire = 514,
|
|
527
|
+
NotSuitableToPlant = 515,
|
|
528
|
+
NoWaterInStill = 516,
|
|
529
|
+
NPCMerchantNewInventoryDialogue1 = 517,
|
|
530
|
+
NPCMerchantNewInventoryDialogue2 = 518,
|
|
531
|
+
NPCMerchantNewInventoryDialogue3 = 519,
|
|
532
|
+
NPCMerchantNewInventoryDialogue4 = 520,
|
|
533
|
+
NPCMerchantStartingDialogue1 = 521,
|
|
534
|
+
NPCMerchantStartingDialogue2 = 522,
|
|
535
|
+
NPCMerchantStartingDialogue3 = 523,
|
|
536
|
+
NPCMerchantStartingDialogue4 = 524,
|
|
537
|
+
NPCMerchantWelcomeCredit = 525,
|
|
538
|
+
NPCShipperShipToIsland = 526,
|
|
539
|
+
NPCShipperStartingDialogue1 = 527,
|
|
540
|
+
NPCShipperStartingDialogue2 = 528,
|
|
541
|
+
NPCShipperStartingDialogue3 = 529,
|
|
542
|
+
NPCShipperStartingDialogue4 = 530,
|
|
543
|
+
NPCWelcome = 531,
|
|
544
|
+
ObjectIsLocked = 532,
|
|
545
|
+
ObjectIsLockedAttemptToBreakIt = 533,
|
|
546
|
+
OfferAberrantFail = 534,
|
|
547
|
+
OfferAberrantFailButTamed = 535,
|
|
548
|
+
Open = 536,
|
|
549
|
+
OpenClose = 537,
|
|
550
|
+
OverEatingLostStamina = 538,
|
|
551
|
+
OverHydratingLostStamina = 539,
|
|
552
|
+
Pack = 540,
|
|
553
|
+
PaperTurnedToMush = 541,
|
|
554
|
+
ParryTheBlow = 542,
|
|
555
|
+
Pet = 543,
|
|
556
|
+
PetCreature = 544,
|
|
557
|
+
PickAway = 545,
|
|
558
|
+
PickUp = 546,
|
|
559
|
+
PickUpExcrement = 547,
|
|
560
|
+
PickUpTheItem = 548,
|
|
561
|
+
Place = 549,
|
|
562
|
+
PlacedItem = 550,
|
|
563
|
+
PlacedItemFailed = 551,
|
|
564
|
+
PlacedOnGround = 552,
|
|
565
|
+
Plant = 553,
|
|
566
|
+
PlantedInGround = 554,
|
|
567
|
+
PlantGatheredPlant = 555,
|
|
568
|
+
PlantGatheringWillDestroy = 556,
|
|
569
|
+
PlantHasResourcesToGather = 557,
|
|
570
|
+
PlantHasResourcesToHarvest = 558,
|
|
571
|
+
PlantHighlyFertile = 559,
|
|
572
|
+
Planting = 560,
|
|
573
|
+
PlantIsBare = 561,
|
|
574
|
+
PlantIsFertile = 562,
|
|
575
|
+
PlantIsInStage = 563,
|
|
576
|
+
PlantIsNotFertile = 564,
|
|
577
|
+
PlantNotReadyToHarvest = 565,
|
|
578
|
+
PlantReadyToGather = 566,
|
|
579
|
+
PlantReadyToGatherNotMaximal = 567,
|
|
580
|
+
PlantReadyToHarvest = 568,
|
|
581
|
+
PlantReadyToHarvestNotMaximal = 569,
|
|
582
|
+
Player = 570,
|
|
583
|
+
PlayerHas = 571,
|
|
584
|
+
PlayerHasCompletedChallengeRequirement = 572,
|
|
585
|
+
PlayerHasWonChallenge = 573,
|
|
586
|
+
Poisoned = 574,
|
|
587
|
+
PoisonedLostHealth = 575,
|
|
588
|
+
PoisonWorkedItsCourse = 576,
|
|
589
|
+
Positively = 577,
|
|
590
|
+
PouredOut = 578,
|
|
591
|
+
PouredOutOnYourself = 579,
|
|
592
|
+
PouredWaterIntoStill = 580,
|
|
593
|
+
PourHarmedPlant = 581,
|
|
594
|
+
PourHealedPlant = 582,
|
|
595
|
+
PourHealedPlantFully = 583,
|
|
596
|
+
PourHealedPlantPartially = 584,
|
|
597
|
+
PourIncreasedFertility = 585,
|
|
598
|
+
Pouring = 586,
|
|
599
|
+
PourOverWatering = 587,
|
|
600
|
+
Prepare = 588,
|
|
601
|
+
Prepared = 589,
|
|
602
|
+
Preserve = 590,
|
|
603
|
+
PreservedFood = 591,
|
|
604
|
+
PurifiedWaterInStill = 592,
|
|
605
|
+
RandomEventsFire = 593,
|
|
606
|
+
ReduceLength = 594,
|
|
607
|
+
Refine = 595,
|
|
608
|
+
RefusedToBeTamed = 596,
|
|
609
|
+
Reinforce = 597,
|
|
610
|
+
Repair = 598,
|
|
611
|
+
RequiredForDisassembly = 599,
|
|
612
|
+
RequiresFireToBeLit = 600,
|
|
613
|
+
RequiresYouFacingFireSource = 601,
|
|
614
|
+
RequiresYouToBeAround = 602,
|
|
615
|
+
Resistant = 603,
|
|
616
|
+
Rest = 604,
|
|
617
|
+
Rested = 605,
|
|
618
|
+
Resting = 606,
|
|
619
|
+
RestingOnGroundNotEffective = 607,
|
|
620
|
+
RestInterrupted = 608,
|
|
621
|
+
RestInterruptedDamage = 609,
|
|
622
|
+
RestInterruptedDying = 610,
|
|
623
|
+
RestInterruptedLoudNoise = 611,
|
|
624
|
+
RestInterruptedPain = 612,
|
|
625
|
+
RestInterruptedStirring = 613,
|
|
626
|
+
RestInterruptedWaterPoured = 614,
|
|
627
|
+
RestLongTime = 615,
|
|
628
|
+
RestModerateTime = 616,
|
|
629
|
+
RestOnBoat = 617,
|
|
630
|
+
RestShortTime = 618,
|
|
631
|
+
RestTime = 619,
|
|
632
|
+
ReturnedToCivilization = 620,
|
|
633
|
+
ReturningToCivilizationSetOffAgain = 621,
|
|
634
|
+
ReturnsToLife = 622,
|
|
635
|
+
Reverse = 623,
|
|
636
|
+
Sailing = 624,
|
|
637
|
+
ScrollMaster = 625,
|
|
638
|
+
ScrollProvidedNoUsefulInsight = 626,
|
|
639
|
+
Seawater = 627,
|
|
640
|
+
SeemsToHaveDrawnEnergy = 628,
|
|
641
|
+
SetTrapOffButNoDamage = 629,
|
|
642
|
+
SetUp = 630,
|
|
643
|
+
ShadowInTheWater = 631,
|
|
644
|
+
Skill = 632,
|
|
645
|
+
SkillHasRaised = 633,
|
|
646
|
+
Skills = 634,
|
|
647
|
+
Sleep = 635,
|
|
648
|
+
Sleeping = 636,
|
|
649
|
+
SleepOnBoat = 637,
|
|
650
|
+
Slept = 638,
|
|
651
|
+
SlitherSuckerConstricts = 639,
|
|
652
|
+
SlitherSuckerFailedToRemove = 640,
|
|
653
|
+
SlitherSuckerFailedToRemoveOuch = 641,
|
|
654
|
+
SlitherSuckerJumpedOnHead = 642,
|
|
655
|
+
SolarStill = 643,
|
|
656
|
+
SomethingInTheWayOf = 644,
|
|
657
|
+
SomethingInTheWayOfButcherFirst = 645,
|
|
658
|
+
SomethingInTheWayOfFire = 646,
|
|
659
|
+
SomethingInTheWayOfFishing = 647,
|
|
660
|
+
SomethingInTheWayOfPerforming = 648,
|
|
661
|
+
SomethingInTheWayOfPlacing = 649,
|
|
662
|
+
SomethingInTheWayOfReleasing = 650,
|
|
663
|
+
SomethingInTheWayOfSummoning = 651,
|
|
664
|
+
SomethingInWayOfClosingDoor = 652,
|
|
665
|
+
SoothedTheirBurnInjuries = 653,
|
|
666
|
+
SoothedYourBurnInjuries = 654,
|
|
667
|
+
Sort = 655,
|
|
668
|
+
SortedByBestCraftingRequirements = 656,
|
|
669
|
+
SortedByCategory = 657,
|
|
670
|
+
SortedByCraftableOnly = 658,
|
|
671
|
+
SortedByDecay = 659,
|
|
672
|
+
SortedByDurability = 660,
|
|
673
|
+
SortedByGroup = 661,
|
|
674
|
+
SortedByMagical = 662,
|
|
675
|
+
SortedByName = 663,
|
|
676
|
+
SortedByQuality = 664,
|
|
677
|
+
SortedByRecent = 665,
|
|
678
|
+
SortedBySkill = 666,
|
|
679
|
+
SortedByUnlockedTime = 667,
|
|
680
|
+
SortedByWeight = 668,
|
|
681
|
+
SortedByWorth = 669,
|
|
682
|
+
StaminaIsFull = 670,
|
|
683
|
+
StartedFire = 671,
|
|
684
|
+
StartTravelInWater = 672,
|
|
685
|
+
StarvingToDeath = 673,
|
|
686
|
+
StatAmount = 674,
|
|
687
|
+
StatGained = 675,
|
|
688
|
+
StatIncreasing = 676,
|
|
689
|
+
StatLost = 677,
|
|
690
|
+
StatQuenched = 678,
|
|
691
|
+
StatRegained = 679,
|
|
692
|
+
StatSated = 680,
|
|
693
|
+
SteppingOn = 681,
|
|
694
|
+
Still = 682,
|
|
695
|
+
StillHasNoWaterToPurify = 683,
|
|
696
|
+
StirredUpClawWorm = 684,
|
|
697
|
+
StirredUpCreature = 685,
|
|
698
|
+
StoppedYourBleeding = 686,
|
|
699
|
+
StopUsingVehicle = 687,
|
|
700
|
+
Strength = 688,
|
|
701
|
+
SummonedGuardiansByDiggingTreasure = 689,
|
|
702
|
+
SummonedGuardiansByLockpicking = 690,
|
|
703
|
+
SummonVoidDwellerItem = 691,
|
|
704
|
+
SummonVoidDwellerRinging = 692,
|
|
705
|
+
SummonVoidDwellerShiver = 693,
|
|
706
|
+
SunNotBrightEnoughToStartFire = 694,
|
|
707
|
+
SwampWater = 695,
|
|
708
|
+
Swimming = 696,
|
|
709
|
+
TakenFromGroundBecomeTamed = 697,
|
|
710
|
+
TeleportBlocked = 698,
|
|
711
|
+
Teleported = 699,
|
|
712
|
+
ThanksBuying = 700,
|
|
713
|
+
ThanksSelling = 701,
|
|
714
|
+
TheirFist = 702,
|
|
715
|
+
TheirInventory = 703,
|
|
716
|
+
ThePlant = 704,
|
|
717
|
+
ThereIsNoContainerOnTheStill = 705,
|
|
718
|
+
ThereIsNoSunToStartFire = 706,
|
|
719
|
+
ThisCannotBeMilked = 707,
|
|
720
|
+
Throw = 708,
|
|
721
|
+
ThrownIntoDepths = 709,
|
|
722
|
+
ThrownIntoObstacle = 710,
|
|
723
|
+
ThrownIntoVoid = 711,
|
|
724
|
+
Tier = 712,
|
|
725
|
+
TierGroup = 713,
|
|
726
|
+
Till = 714,
|
|
727
|
+
Tilling = 715,
|
|
728
|
+
TimeIs = 716,
|
|
729
|
+
TimeIsDawn = 717,
|
|
730
|
+
TimeIsDaytime = 718,
|
|
731
|
+
TimeIsDusk = 719,
|
|
732
|
+
TimeIsNighttime = 720,
|
|
733
|
+
TimeIsSunrise = 721,
|
|
734
|
+
TimeIsSunset = 722,
|
|
735
|
+
ToFight = 723,
|
|
736
|
+
TooDamaged = 724,
|
|
737
|
+
TooExhaustedToJump = 725,
|
|
738
|
+
Touching = 726,
|
|
739
|
+
TrampledFire = 727,
|
|
740
|
+
TrampledFireFail = 728,
|
|
741
|
+
TrampledFirePartial = 729,
|
|
742
|
+
TrampledIntoGround = 730,
|
|
743
|
+
TrampleIntoGround = 731,
|
|
744
|
+
Trampling = 732,
|
|
745
|
+
TransmogrificationNotPossible = 733,
|
|
746
|
+
Transmogrified = 734,
|
|
747
|
+
Transmogrify = 735,
|
|
748
|
+
TrapMissed = 736,
|
|
749
|
+
TrapStoppedYou = 737,
|
|
750
|
+
Traveling = 738,
|
|
751
|
+
Treasure = 739,
|
|
752
|
+
TreasureIsBlocked = 740,
|
|
753
|
+
UiActionCannotUseInaccessibleItem = 741,
|
|
754
|
+
UiActionCannotUseRequiresCreature = 742,
|
|
755
|
+
UiActionCannotUseRequiresDoodad = 743,
|
|
756
|
+
UiActionCannotUseRequiresItem = 744,
|
|
757
|
+
UiActionCannotUseRequiresNPC = 745,
|
|
758
|
+
UiActionCannotUseRequiresVehicle = 746,
|
|
759
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 747,
|
|
760
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 748,
|
|
761
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 749,
|
|
762
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 750,
|
|
763
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 751,
|
|
764
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 752,
|
|
765
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 753,
|
|
766
|
+
Unhitch = 754,
|
|
767
|
+
UnhitchCreature = 755,
|
|
768
|
+
Unknown = 756,
|
|
769
|
+
Unlimited = 757,
|
|
770
|
+
UnlockedChest = 758,
|
|
771
|
+
UnpurifiedFreshWater = 759,
|
|
772
|
+
UnpurifiedWaterInStill = 760,
|
|
773
|
+
Use = 761,
|
|
774
|
+
UsingBareHands = 762,
|
|
775
|
+
VehicleDefense = 763,
|
|
776
|
+
Vulnerable = 764,
|
|
777
|
+
Water = 765,
|
|
778
|
+
WaterGathering = 766,
|
|
779
|
+
WaterPutOutFire = 767,
|
|
780
|
+
WellIsDry = 768,
|
|
781
|
+
WellIsFull = 769,
|
|
782
|
+
WildGoatRefusedToBeMilked = 770,
|
|
783
|
+
WillNotTrade = 771,
|
|
784
|
+
WorkingYourselfIntoExhaustion = 772,
|
|
785
|
+
WorkingYourselfIntoExhaustionAndDrowning = 773,
|
|
786
|
+
WorldContainer = 774,
|
|
787
|
+
You = 775,
|
|
788
|
+
YouAbsorb = 776,
|
|
789
|
+
YouApplied = 777,
|
|
790
|
+
YouAreAlready = 778,
|
|
791
|
+
YouAte = 779,
|
|
792
|
+
YouBeginResting = 780,
|
|
793
|
+
YouCannotDoThatYet = 781,
|
|
794
|
+
YouCanNowCombatTheTides = 782,
|
|
795
|
+
YouCrafted = 783,
|
|
796
|
+
YouDoNotFindTreasureYet = 784,
|
|
797
|
+
YouDrank = 785,
|
|
798
|
+
YouDropTheTorch = 786,
|
|
799
|
+
YouEnchant = 787,
|
|
800
|
+
YouEquip = 788,
|
|
801
|
+
YouExude = 789,
|
|
802
|
+
YouExudeSome = 790,
|
|
803
|
+
YouExudeSomeReasonConflicting = 791,
|
|
804
|
+
YouExudeSomeReasonMax = 792,
|
|
805
|
+
YouExudeSomeReasonProperties = 793,
|
|
806
|
+
YouFailedTo = 794,
|
|
807
|
+
YouFailedToExtinguishedFireFully = 795,
|
|
808
|
+
YouFailedToHeal = 796,
|
|
809
|
+
YouFailedToHealOther = 797,
|
|
810
|
+
YouFire = 798,
|
|
811
|
+
YouGathered = 799,
|
|
812
|
+
YouGatheredAndDropped = 800,
|
|
813
|
+
YouHarvested = 801,
|
|
814
|
+
YouHarvestedAndDropped = 802,
|
|
815
|
+
YouHave = 803,
|
|
816
|
+
YouHaveAlreadyLearned = 804,
|
|
817
|
+
YouHaveBeenCut = 805,
|
|
818
|
+
YouHaveCaged = 806,
|
|
819
|
+
YouHaveCommanded = 807,
|
|
820
|
+
YouHaveDied = 808,
|
|
821
|
+
YouHaveHealedOther = 809,
|
|
822
|
+
YouHaveKilled = 810,
|
|
823
|
+
YouHaveReleased = 811,
|
|
824
|
+
YouHaveSummoned = 812,
|
|
825
|
+
YouHaveTamed = 813,
|
|
826
|
+
YouHaveUncaged = 814,
|
|
827
|
+
YouNoticeBarren = 815,
|
|
828
|
+
YouNoticeBecomeEnraged = 816,
|
|
829
|
+
YouNoticeDying = 817,
|
|
830
|
+
YouNoticeFertilityDecreasing = 818,
|
|
831
|
+
YouNoticeFertilityIncreasing = 819,
|
|
832
|
+
YouNoticeGrowing = 820,
|
|
833
|
+
YouNoticeLavaCooling = 821,
|
|
834
|
+
YouNoticeLavaHardening = 822,
|
|
835
|
+
YouNoticePerish = 823,
|
|
836
|
+
YouNoticePlantDamage = 824,
|
|
837
|
+
YouNoticePlantRegenerated = 825,
|
|
838
|
+
YouNoticeRegrowing = 826,
|
|
839
|
+
YouNoticeStumbleInjureItself = 827,
|
|
840
|
+
YouNoticeTakeFromGround = 828,
|
|
841
|
+
YouNoticeWoundsClosing = 829,
|
|
842
|
+
YouNoticeZombieHorde = 830,
|
|
843
|
+
YouOfferedToCreature = 831,
|
|
844
|
+
YouOfferedToCreatureRejects = 832,
|
|
845
|
+
YouOpen = 833,
|
|
846
|
+
YouPacked = 834,
|
|
847
|
+
YouPickedUp = 835,
|
|
848
|
+
YouRefine = 836,
|
|
849
|
+
YouReinforce = 837,
|
|
850
|
+
YouRepair = 838,
|
|
851
|
+
YouReturnFromCivilizationWith = 839,
|
|
852
|
+
YourFist = 840,
|
|
853
|
+
YourHands = 841,
|
|
854
|
+
YourInventory = 842,
|
|
855
|
+
YourIsland = 843,
|
|
856
|
+
YourRubbingNoEffect = 844,
|
|
857
|
+
YouRub = 845,
|
|
858
|
+
YouSee = 846,
|
|
859
|
+
YouSeeALivingMushroomSpore = 847,
|
|
860
|
+
YouSeeASkeletonCollapse = 848,
|
|
861
|
+
YouSeeASlimeCombine = 849,
|
|
862
|
+
YouSeeAZombieBleeding = 850,
|
|
863
|
+
YouSeeCoolDown = 851,
|
|
864
|
+
YouSeeDrop = 852,
|
|
865
|
+
YouSeeEngulfFire = 853,
|
|
866
|
+
YouSeeFireSpread = 854,
|
|
867
|
+
YouSeeHelpingPlant = 855,
|
|
868
|
+
YouSeeLay = 856,
|
|
869
|
+
YouSeeLayingTrap = 857,
|
|
870
|
+
YouSeeSpewLava = 858,
|
|
871
|
+
YouSeeSpitAcid = 859,
|
|
872
|
+
YouSeeSpringForth = 860,
|
|
873
|
+
YouSeeSummon = 861,
|
|
874
|
+
YouSeeSwampFlood = 862,
|
|
875
|
+
YouSeeTrampling = 863,
|
|
876
|
+
YouSetTheTrapOff = 864,
|
|
877
|
+
YouStokeTheCreature = 865,
|
|
878
|
+
YouSwapMainHandAndOffHand = 866,
|
|
879
|
+
YouThrew = 867,
|
|
880
|
+
YouTilled = 868,
|
|
881
|
+
YouUnequip = 869,
|
|
882
|
+
YouUsed = 870,
|
|
883
|
+
YouWhileTraveling = 871
|
|
883
884
|
}
|
|
884
885
|
export default Message;
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2011-2023 Unlok
|
|
3
|
+
* https://www.unlok.ca
|
|
4
|
+
*
|
|
5
|
+
* Credits & Thanks:
|
|
6
|
+
* https://www.unlok.ca/credits-thanks/
|
|
7
|
+
*
|
|
8
|
+
* Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
|
|
9
|
+
* https://github.com/WaywardGame/types/wiki
|
|
10
|
+
*/
|
|
1
11
|
import { LoadType } from "@wayward/game/game/meta/Loading";
|
|
2
12
|
import Component from "@wayward/game/ui/component/Component";
|
|
3
13
|
export declare enum LoadingClasses {
|
|
@@ -18,7 +18,14 @@ interface ISprite {
|
|
|
18
18
|
export interface ISpriteEditorFilters {
|
|
19
19
|
glowColors?: IRGBA[];
|
|
20
20
|
opacity?: number;
|
|
21
|
+
/**
|
|
22
|
+
* 0 = current saturation, 1 = full grayscale
|
|
23
|
+
*/
|
|
21
24
|
grayscale?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 0 = black, 1 = current colour, 2 = white
|
|
27
|
+
*/
|
|
28
|
+
brightness?: number;
|
|
22
29
|
}
|
|
23
30
|
export default class SpriteEditor {
|
|
24
31
|
static readonly CACHE: DataCache<ISprite>;
|
package/package.json
CHANGED