@wayward/types 2.14.2-beta.dev.20241218.1 → 2.14.2-beta.dev.20241219.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/Entity.d.ts +2 -2
- package/definitions/game/game/entity/EntityMovable.d.ts +2 -1
- package/definitions/game/language/dictionary/UiTranslation.d.ts +553 -552
- package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +1 -1
- package/definitions/game/ui/screen/screens/game/dialog/EquipmentDialog.d.ts +1 -1
- package/definitions/game/ui/util/HighlightManager.d.ts +1 -1
- package/definitions/game/ui/util/IHighlight.d.ts +1 -1
- package/package.json +1 -1
- /package/definitions/utilities/{Encoding.d.ts → RunLengthEncoding.d.ts} +0 -0
@@ -96,8 +96,8 @@ export default abstract class Entity<DescriptionType = unknown, TypeType extends
|
|
96
96
|
*/
|
97
97
|
get tile(): Tile | undefined;
|
98
98
|
get tilesAround(): Tile[] | undefined;
|
99
|
-
protected setCachedTile(tile: Tile): void;
|
100
|
-
clearTileCache():
|
99
|
+
protected setCachedTile(tile: Tile | undefined): void;
|
100
|
+
clearTileCache(): Tile | undefined;
|
101
101
|
isNearby(entity: Entity | Tile, includeCurrentTile?: boolean): boolean;
|
102
102
|
/**
|
103
103
|
* Updates the world renderer & flow field state for the tile
|
@@ -22,7 +22,7 @@ import { FieldOfView } from "@wayward/game/renderer/fieldOfView/FieldOfView";
|
|
22
22
|
import type { CanASeeBType } from "@wayward/game/renderer/fieldOfView/IFieldOfView";
|
23
23
|
import type { INotificationLocation } from "@wayward/game/renderer/notifier/INotifier";
|
24
24
|
import type { Direction } from "@wayward/game/utilities/math/Direction";
|
25
|
-
import type { IVector2 } from "@wayward/game/utilities/math/IVector";
|
25
|
+
import type { IVector2, IVector3 } from "@wayward/game/utilities/math/IVector";
|
26
26
|
import Vector2 from "@wayward/game/utilities/math/Vector2";
|
27
27
|
import type { IEventEmitter } from "@wayward/utilities/event/EventEmitter";
|
28
28
|
export interface IEntityMovableEvents extends IEntityEvents {
|
@@ -107,6 +107,7 @@ export default abstract class EntityMovable<DescriptionType = unknown, TypeType
|
|
107
107
|
canSeeTile(type: CanASeeBType, tile: Tile, fieldOfView?: FieldOfView, customRadius?: number): boolean;
|
108
108
|
canSeePosition(type: CanASeeBType, islandId: IslandId, x: number, y: number, z: number, fieldOfView?: FieldOfView | undefined, customRadius?: number): boolean;
|
109
109
|
queueSoundEffectInFront(type: SfxType, delay?: number, speed?: number): void;
|
110
|
+
runWhileFacing<T>(lambda: () => T, position: IVector3, direction?: Direction.Cardinal): T;
|
110
111
|
getMovementDelay(): number;
|
111
112
|
/**
|
112
113
|
* Move the entity to the tile
|
@@ -373,557 +373,558 @@ declare enum UiTranslation {
|
|
373
373
|
MenuChangelogFailedToLoadDescription = 358,
|
374
374
|
MenuChangelogHeadingChangeCount = 359,
|
375
375
|
MenuChangelogButtonCopyChangelog = 360,
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
376
|
+
MenuChangelogButtonCopyAltChangelog = 361,
|
377
|
+
MenuCharacterCreationButtonRandomizeName = 362,
|
378
|
+
MenuCharacterCreationButtonExportTooltip = 363,
|
379
|
+
MenuCharacterCreationButtonImportTooltip = 364,
|
380
|
+
MenuCharacterCreationButtonStartGame = 365,
|
381
|
+
MenuCharacterCreationButtonJoinGame = 366,
|
382
|
+
MenuCharacterCreationDescription = 367,
|
383
|
+
MenuCharacterCreationHeadingHairColor = 368,
|
384
|
+
MenuCharacterCreationHeadingHairStyle = 369,
|
385
|
+
MenuCharacterCreationHeadingSkinTone = 370,
|
386
|
+
MenuCharacterCreationLabelName = 371,
|
387
|
+
MenuCharacterCreationTitle = 372,
|
388
|
+
MenuCharacterCreationButtonRotateLeftTooltip = 373,
|
389
|
+
MenuCharacterCreationButtonRotateRightTooltip = 374,
|
390
|
+
MenuCharacterCreationButtonRandomizeTooltip = 375,
|
391
|
+
MenuCharacterSelectionButtonNewCharacter = 376,
|
392
|
+
MenuCharacterSelectionDescription = 377,
|
393
|
+
MenuCharacterSelectionHeadingNoCharacters = 378,
|
394
|
+
MenuCharacterSelectionTitle = 379,
|
395
|
+
MenuCharacterSelectionLabelLastUse = 380,
|
396
|
+
MenuCharacterSelectionLabelUseCount = 381,
|
397
|
+
MenuCharacterSelectionCharacterButtonDeleteTooltip = 382,
|
398
|
+
MenuCharacterSelectionCharacterButtonCustomizeTooltip = 383,
|
399
|
+
MenuDevelopmentBranchTitle = 384,
|
400
|
+
MenuDevelopmentBranchSuperTitle = 385,
|
401
|
+
MenuDevelopmentBranchWarning = 386,
|
402
|
+
MenuDevelopmentBranchStatus = 387,
|
403
|
+
MenuDevelopmentBranchStatusUnavailable = 388,
|
404
|
+
MenuMultiplayerDescription = 389,
|
405
|
+
MenuMultiplayerTitle = 390,
|
406
|
+
MenuMultiplayerButtonJoinById = 391,
|
407
|
+
MenuMultiplayerServerLabelDays = 392,
|
408
|
+
MenuMultiplayerServerLabelIsland = 393,
|
409
|
+
MenuMultiplayerButtonNewGame = 394,
|
410
|
+
MenuMultiplayerButtonLoadGame = 395,
|
411
|
+
MenuMultiplayerServerTooltipPVP = 396,
|
412
|
+
MenuMultiplayerServerTooltipModsLabel = 397,
|
413
|
+
MenuMultiplayerServerTooltipFriendsLabel = 398,
|
414
|
+
MenuMultiplayerServerPlayers = 399,
|
415
|
+
MenuMultiplayerServerLobbyType = 400,
|
416
|
+
MenuMultiplayerServerRegion = 401,
|
417
|
+
MenuMultiplayerServerHost = 402,
|
418
|
+
MenuMultiplayerServerVersion = 403,
|
419
|
+
MenuMultiplayerServerVersionUnknown = 404,
|
420
|
+
MenuMultiplayerServerDedicated = 405,
|
421
|
+
MenuMultiplayerHeadingPlayersOnline = 406,
|
422
|
+
MenuMultiplayerServerModInfo = 407,
|
423
|
+
MenuMultiplayerServerModUnableToLoad = 408,
|
424
|
+
MenuMultiplayerServerLabelTerritoryTier = 409,
|
425
|
+
MenuGameEndTitleDead = 410,
|
426
|
+
MenuGameEndTitleWon = 411,
|
427
|
+
MenuGameEndShareFacebook = 412,
|
428
|
+
MenuGameEndShareTwitter = 413,
|
429
|
+
MenuGameEndContinueAsGhost = 414,
|
430
|
+
MenuGameEndRespawnInCasualMode = 415,
|
431
|
+
MenuGameEndRespawnAsNewCharacter = 416,
|
432
|
+
MenuGameEndReturnToIsland = 417,
|
433
|
+
MenuGameEndExitToMenu = 418,
|
434
|
+
MenuHelpTitle = 419,
|
435
|
+
MenuHelpDescription = 420,
|
436
|
+
MenuHelpLabelSearch = 421,
|
437
|
+
MenuHighscoresTitle = 422,
|
438
|
+
MenuHighscoresDescription = 423,
|
439
|
+
MenuHighscoresDifficultyFilterAll = 424,
|
440
|
+
MenuHighscoresHighscoreLabelDifficulty = 425,
|
441
|
+
MenuHighscoresHighscoreLabelTurns = 426,
|
442
|
+
MenuHighscoresHighscoreLabelScore = 427,
|
443
|
+
MenuHighscoresHighscoreLabelPlace = 428,
|
444
|
+
MenuHighscoresHighscoreLabelDate = 429,
|
445
|
+
MenuHighscoresHighscoreLabelDeathBy = 430,
|
446
|
+
MenuHighscoresHighscoreTitle = 431,
|
447
|
+
MenuHighscoresCharacterNameUnknown = 432,
|
448
|
+
MenuHighscoresHighscoreReplayWithSettings = 433,
|
449
|
+
MenuLoadGameButtonSaveSlot = 434,
|
450
|
+
MenuLoadGameButtonNewGame = 435,
|
451
|
+
MenuLoadGameButtonNewGameButtonImportTooltip = 436,
|
452
|
+
MenuLoadGameDescription = 437,
|
453
|
+
MenuLoadGameSaveButtonDeleteTooltip = 438,
|
454
|
+
MenuLoadGameSaveButtonEditNameTooltip = 439,
|
455
|
+
MenuLoadGameSaveButtonExportTooltip = 440,
|
456
|
+
MenuLoadGameSaveTooltipLabelCreatedTime = 441,
|
457
|
+
MenuLoadGameSaveTooltipLabelSaveTime = 442,
|
458
|
+
MenuLoadGameSaveTooltipLabelGameMode = 443,
|
459
|
+
MenuLoadGameSaveTooltipLabelScore = 444,
|
460
|
+
MenuLoadGameSaveTooltipLabelSeed = 445,
|
461
|
+
MenuLoadGameSaveTooltipLabelTurns = 446,
|
462
|
+
MenuLoadGameSaveTooltipLabelMods = 447,
|
463
|
+
MenuLoadGameSaveTooltipLabelOriginalVersion = 448,
|
464
|
+
MenuLoadGameSaveTooltipMod = 449,
|
465
|
+
MenuLoadGameSaveTooltipNew = 450,
|
466
|
+
MenuLoadGameSaveTooltipCorrupted = 451,
|
467
|
+
MenuLoadGameSaveGame = 452,
|
468
|
+
MenuLoadGameSaveGameDescription = 453,
|
469
|
+
MenuLoadGameTitle = 454,
|
470
|
+
MenuLoadGameLabelSelected = 455,
|
471
|
+
MenuLoadGameButtonDeleteSelectedTooltip = 456,
|
472
|
+
MenuLoadGameImportSaveFailure = 457,
|
473
|
+
MenuLoadGameSectionSavedGames = 458,
|
474
|
+
MenuLoadGameSectionImportFolders = 459,
|
475
|
+
MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 460,
|
476
|
+
MenuLoadGameSectionImportFoldersButtonAddFolder = 461,
|
477
|
+
MenuLoadGameSectionImportFoldersButtonDeleteFolder = 462,
|
478
|
+
MenuMainButtonAbout = 463,
|
479
|
+
MenuMainButtonChangelog = 464,
|
480
|
+
MenuMainButtonMultiplayer = 465,
|
481
|
+
MenuMainButtonHighscores = 466,
|
482
|
+
MenuMainButtonLoadGame = 467,
|
483
|
+
MenuMainButtonMods = 468,
|
484
|
+
MenuMainButtonModsTooltipLabelEnabledMods = 469,
|
485
|
+
MenuMainButtonModsTooltipAndXOthers = 470,
|
486
|
+
MenuMainButtonModsAllDisabled = 471,
|
487
|
+
MenuMainButtonNewGame = 472,
|
488
|
+
MenuMainButtonNews = 473,
|
489
|
+
MenuMainButtonOptions = 474,
|
490
|
+
MenuMainButtonQuitGame = 475,
|
491
|
+
MenuModsWarningModsDisabledTitle = 476,
|
492
|
+
MenuModsWarningModsDisabledDescription = 477,
|
493
|
+
MenuModsButtonModdingGuide = 478,
|
494
|
+
MenuModsButtonOpenFolder = 479,
|
495
|
+
MenuModsButtonOpenWorkshop = 480,
|
496
|
+
MenuModsDescription = 481,
|
497
|
+
MenuModsTitle = 482,
|
498
|
+
MenuModsTooltipLabelAuthor = 483,
|
499
|
+
MenuModsTooltipLabelTags = 484,
|
500
|
+
MenuModsTooltipLabelDependencies = 485,
|
501
|
+
MenuModsTooltipLabelProvides = 486,
|
502
|
+
MenuModsTooltipLabelVersion = 487,
|
503
|
+
MenuModsTooltipLabelDescription = 488,
|
504
|
+
MenuModsTooltipLabelInstallDate = 489,
|
505
|
+
MenuModsTooltipLabelCreatedDate = 490,
|
506
|
+
MenuModsTooltipLabelLastUpdatedDate = 491,
|
507
|
+
MenuModsTooltipPreventsMilestoneUnlocks = 492,
|
508
|
+
MenuModsTooltipModOptions = 493,
|
509
|
+
MenuModsTooltipPublishMod = 494,
|
510
|
+
MenuModsTooltipModMoreInformation = 495,
|
511
|
+
MenuModsTooltipUninstallMod = 496,
|
512
|
+
MenuModsTooltipViewInSteamWorkshop = 497,
|
513
|
+
MenuModsTooltipViewGitHub = 498,
|
514
|
+
MenuModsTooltipOpenFolder = 499,
|
515
|
+
MenuModsButtonEditInternalMods = 500,
|
516
|
+
MenuModsSectionHeading = 501,
|
517
|
+
MenuModsSubmenuEditInternalModsTitle = 502,
|
518
|
+
MenuModsSubmenuEditInternalModsDescription = 503,
|
519
|
+
MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 504,
|
520
|
+
MenuModsSubmenuEditInternalModsSectionRootsName = 505,
|
521
|
+
MenuModsSubmenuEditInternalModsSectionModsName = 506,
|
522
|
+
MenuModsSubmenuEditInternalModsPlaceholderModRootName = 507,
|
523
|
+
MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 508,
|
524
|
+
MenuNewGameButtonNext = 509,
|
525
|
+
MenuNewGameButtonStartServer = 510,
|
526
|
+
MenuNewGameDescription = 511,
|
527
|
+
MenuNewGameLabelEditName = 512,
|
528
|
+
MenuNewGameLabelEditSeed = 513,
|
529
|
+
MenuNewGamePlaceholderEditSeed = 514,
|
530
|
+
MenuNewGameTitle = 515,
|
531
|
+
MenuNewGameChoiceDifficulty = 516,
|
532
|
+
MenuNewGameChoiceSingleplayer = 517,
|
533
|
+
MenuNewGameChoiceSingleplayerDescription = 518,
|
534
|
+
MenuNewGameChoiceMultiplayer = 519,
|
535
|
+
MenuNewGameChoiceMultiplayerDescription = 520,
|
536
|
+
MenuNewGameChoiceTurnModeManual = 521,
|
537
|
+
MenuNewGameChoiceTurnModeManualDescription = 522,
|
538
|
+
MenuNewGameChoiceTurnModeRealTime = 523,
|
539
|
+
MenuNewGameChoiceTurnModeRealTimeDescription = 524,
|
540
|
+
MenuNewGameChoiceTurnModeSimulated = 525,
|
541
|
+
MenuNewGameChoiceTurnModeSimulatedDescription = 526,
|
542
|
+
MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 527,
|
543
|
+
MenuNewGameChoiceDifficultyChallengeDaily = 528,
|
544
|
+
MenuNewGameChoiceDifficultyChallengeDailyTooltip = 529,
|
545
|
+
MenuNewGameButtonMilestones = 530,
|
546
|
+
MenuNewGameButtonMilestonesDescription = 531,
|
547
|
+
MenuNewGameTabGameMode = 532,
|
548
|
+
MenuNewGameTabMultiplayer = 533,
|
549
|
+
MenuNewGameTabGameplayModifiers = 534,
|
550
|
+
MenuNewGameHeadingGameMode = 535,
|
551
|
+
MenuNewGameHeadingMultiplayer = 536,
|
552
|
+
MenuNewGameHeadingGameplayModifiers = 537,
|
553
|
+
MenuNewGameMilestoneModifiersUnlockableInMode = 538,
|
554
|
+
MenuNewGameChoiceClientsInheritHostModifiers = 539,
|
555
|
+
MenuNewGameChoiceClientsInheritHostModifiersDescription = 540,
|
556
|
+
MenuNewGameChoiceCustomModifiers = 541,
|
557
|
+
MenuNewGameChoiceCustomModifiersDescription = 542,
|
558
|
+
MenuMilestoneModifiersTitle = 543,
|
559
|
+
MenuMilestoneModifiersDescription = 544,
|
560
|
+
MenuCustomGameOptionsTitle = 545,
|
561
|
+
MenuCustomGameOptionsDescription = 546,
|
562
|
+
MenuCustomGameOptionsRespawnOnDeath = 547,
|
563
|
+
MenuCustomGameOptionsRespawnOnDeathDescription = 548,
|
564
|
+
MenuCustomGameOptionsUseUnlockedRecipes = 549,
|
565
|
+
MenuCustomGameOptionsStartingIslandBiome = 550,
|
566
|
+
MenuCustomGameOptionsApplyTravelingEffects = 551,
|
567
|
+
MenuCustomGameOptionsApplyTravelingEffectsDescription = 552,
|
568
|
+
MenuCustomGameOptionsCreaturesPeaceful = 553,
|
569
|
+
MenuCustomGameOptionsCreaturesDisableScared = 554,
|
570
|
+
MenuCustomGameOptionsCreaturesDisableScaredDescription = 555,
|
571
|
+
MenuCustomGameOptionsCreaturesAberrantSpawns = 556,
|
572
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 557,
|
573
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 558,
|
574
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 559,
|
575
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 560,
|
576
|
+
MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 561,
|
577
|
+
MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 562,
|
578
|
+
MenuCustomGameOptionsCreaturesAlwaysSpawn = 563,
|
579
|
+
MenuCustomGameOptionsCreaturesAllowSpawning = 564,
|
580
|
+
MenuCustomGameOptionsCreaturesSpawnLimit = 565,
|
581
|
+
MenuCustomGameOptionsCreaturesSpawnLimitDescription = 566,
|
582
|
+
MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 567,
|
583
|
+
MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 568,
|
584
|
+
MenuCustomGameOptionsCreatureNone = 569,
|
585
|
+
MenuCustomGameOptionsCreatureConfigure = 570,
|
586
|
+
MenuCustomGameOptionsStatMultiplier = 571,
|
587
|
+
MenuCustomGameOptionsStatMultiplierTooltip = 572,
|
588
|
+
MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 573,
|
589
|
+
MenuCustomGameOptionsHeadingGeneral = 574,
|
590
|
+
MenuCustomGameOptionsHeadingTravel = 575,
|
591
|
+
MenuCustomGameOptionsHeadingTime = 576,
|
592
|
+
MenuCustomGameOptionsHeadingStats = 577,
|
593
|
+
MenuCustomGameOptionsHeadingItems = 578,
|
594
|
+
MenuCustomGameOptionsHeadingCreatures = 579,
|
595
|
+
MenuCustomGameOptionsHeadingSkills = 580,
|
596
|
+
MenuCustomGameOptionsHeadingStatuses = 581,
|
597
|
+
MenuCustomGameOptionsEternalNight = 582,
|
598
|
+
MenuCustomGameOptionsEternalNightDescription = 583,
|
599
|
+
MenuCustomGameOptionsEternalDay = 584,
|
600
|
+
MenuCustomGameOptionsEternalDayDescription = 585,
|
601
|
+
MenuCustomGameOptionsTimeFrozen = 586,
|
602
|
+
MenuCustomGameOptionsTimeInitial = 587,
|
603
|
+
MenuCustomGameOptionsTimeDayLength = 588,
|
604
|
+
MenuCustomGameOptionsTimeDayLengthTooltip = 589,
|
605
|
+
MenuCustomGameOptionsTimeDayPercent = 590,
|
606
|
+
MenuCustomGameOptionsTimeDayPercentTooltip = 591,
|
607
|
+
MenuCustomGameOptionsStatStarting = 592,
|
608
|
+
MenuCustomGameOptionsStatMax = 593,
|
609
|
+
MenuCustomGameOptionsStatStartingDisplay = 594,
|
610
|
+
MenuCustomGameOptionsStatMaxDisplay = 595,
|
611
|
+
MenuCustomGameOptionsStatNoChange = 596,
|
612
|
+
MenuCustomGameOptionsStatBonus = 597,
|
613
|
+
MenuCustomGameOptionsStatBonusDisplay = 598,
|
614
|
+
MenuCustomGameOptionsStatusPassChanceMultiplier = 599,
|
615
|
+
MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 600,
|
616
|
+
MenuCustomGameOptionsStatusStartWith = 601,
|
617
|
+
MenuCustomGameOptionsStatusUntreatable = 602,
|
618
|
+
MenuCustomGameOptionsStatusUntreatableTooltip = 603,
|
619
|
+
MenuCustomGameOptionsSkillInitialRandomCount = 604,
|
620
|
+
MenuCustomGameOptionsSkillInitialRandomCountDescription = 605,
|
621
|
+
MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 606,
|
622
|
+
MenuCustomGameOptionsSkillsGlobal = 607,
|
623
|
+
MenuCustomGameOptionsSkillNone = 608,
|
624
|
+
MenuCustomGameOptionsSkillConfigure = 609,
|
625
|
+
MenuCustomGameOptionsSkillInitial = 610,
|
626
|
+
MenuCustomGameOptionsSkillMultiplier = 611,
|
627
|
+
MenuCustomGameOptionsSkillMultiplierTooltip = 612,
|
628
|
+
MenuCustomGameOptionsRandomItems = 613,
|
629
|
+
MenuCustomGameOptionsRandomItemsDescription = 614,
|
630
|
+
MenuCustomGameOptionsItemDurability = 615,
|
631
|
+
MenuCustomGameOptionsItemDurabilityTooltip = 616,
|
632
|
+
MenuCustomGameOptionsItemDecay = 617,
|
633
|
+
MenuCustomGameOptionsItemDecayTooltip = 618,
|
634
|
+
MenuCustomGameOptionsExport = 619,
|
635
|
+
MenuCustomGameOptionsImport = 620,
|
636
|
+
MenuCustomGameOptionsViewGroundItemsAsContainer = 621,
|
637
|
+
MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 622,
|
638
|
+
MenuNewsDescription = 623,
|
639
|
+
MenuNewsHeadingSocial = 624,
|
640
|
+
MenuNewsTitle = 625,
|
641
|
+
MenuNewsHeadingUnableToLoad = 626,
|
642
|
+
MenuNewsButtonAllNews = 627,
|
643
|
+
MenuNewsButtonViewChangelog = 628,
|
644
|
+
MenuOptionsButtonDitherFogOfWar = 629,
|
645
|
+
MenuOptionsButtonHealthVignette = 630,
|
646
|
+
MenuOptionsButtonHealthVignetteTooltip = 631,
|
647
|
+
MenuOptionsButtonDisableCustomCursor = 632,
|
648
|
+
MenuOptionsButtonEnableSmoothZooming = 633,
|
649
|
+
MenuOptionsButtonDisplayArticleInObjectNames = 634,
|
650
|
+
MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 635,
|
651
|
+
MenuOptionsButtonFullscreen = 636,
|
652
|
+
MenuOptionsButtonCustomTitleBar = 637,
|
653
|
+
MenuOptionsButtonDeveloperMode = 638,
|
654
|
+
MenuOptionsButtonReloadGame = 639,
|
655
|
+
MenuOptionsButtonReloadStylesheets = 640,
|
656
|
+
MenuOptionsButtonReloadTextures = 641,
|
657
|
+
MenuOptionsButtonPrepackedSprites = 642,
|
658
|
+
MenuOptionsButtonDisposeReflection = 643,
|
659
|
+
MenuOptionsButtonExportGlobalSaveData = 644,
|
660
|
+
MenuOptionsButtonImportGlobalSaveData = 645,
|
661
|
+
MenuOptionsButtonSaveDataBackups = 646,
|
662
|
+
MenuOptionsButtonSaveDataBackupsTooltip = 647,
|
663
|
+
MenuOptionsButtonSaveDataClearAll = 648,
|
664
|
+
MenuOptionsButtonSaveDataClearCharacters = 649,
|
665
|
+
MenuOptionsButtonSaveDataClearHighscores = 650,
|
666
|
+
MenuOptionsButtonSaveDataClearMilestones = 651,
|
667
|
+
MenuOptionsButtonSaveDataClearOptions = 652,
|
668
|
+
MenuOptionsButtonSaveDataClearCraftingRecipes = 653,
|
669
|
+
MenuOptionsButtonSaveDataClearSaves = 654,
|
670
|
+
MenuOptionsButtonSkipSplash = 655,
|
671
|
+
MenuOptionsButtonDisableQuitConfirmation = 656,
|
672
|
+
MenuOptionsButtonToggleDevTools = 657,
|
673
|
+
MenuOptionsButtonOpenBackupsFolder = 658,
|
674
|
+
MenuOptionsButtonOpenLogsFolder = 659,
|
675
|
+
MenuOptionsButtonDropLocationFacing = 660,
|
676
|
+
MenuOptionsButtonDropLocationFeet = 661,
|
677
|
+
MenuOptionsButtonStartTraceRecording = 662,
|
678
|
+
MenuOptionsButtonStopTraceRecording = 663,
|
679
|
+
MenuOptionsButtonTracingRecordingTooltip = 664,
|
680
|
+
MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 665,
|
681
|
+
MenuOptionsDescription = 666,
|
682
|
+
MenuOptionsHeadingAudio = 667,
|
683
|
+
MenuOptionsHeadingDeveloper = 668,
|
684
|
+
MenuOptionsHeadingGameplayOptions = 669,
|
685
|
+
MenuOptionsHeadingGameplayOptionsDescription = 670,
|
686
|
+
MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 671,
|
687
|
+
MenuOptionsHeadingOtherOptions = 672,
|
688
|
+
MenuOptionsHeadingControls = 673,
|
689
|
+
MenuOptionsHeadingModOptions = 674,
|
690
|
+
MenuOptionsHeadingSaveData = 675,
|
691
|
+
MenuOptionsHeadingTooltipsTile = 676,
|
692
|
+
MenuOptionsHeadingVideo = 677,
|
693
|
+
MenuOptionsLabelInterfaceScale = 678,
|
694
|
+
MenuOptionsLabelHudWidth = 679,
|
695
|
+
MenuOptionsLabelTooltipDelay = 680,
|
696
|
+
MenuOptionsLabelDirectionTurnDelay = 681,
|
697
|
+
MenuOptionsLabelMouseTurnDelay = 682,
|
698
|
+
MenuOptionsLabelFontStyle = 683,
|
699
|
+
MenuOptionsTooltipTurnDelay = 684,
|
700
|
+
MenuOptionsTooltipMouseTurnDelay = 685,
|
701
|
+
MenuOptionsTooltipControlsFilter = 686,
|
702
|
+
MenuOptionsLabelVolumeEffects = 687,
|
703
|
+
MenuOptionsLabelVolumeMusic = 688,
|
704
|
+
MenuOptionsTabAudio = 689,
|
705
|
+
MenuOptionsTabDeveloper = 690,
|
706
|
+
MenuOptionsTabGameplay = 691,
|
707
|
+
MenuOptionsTabTooltips = 692,
|
708
|
+
MenuOptionsTabOther = 693,
|
709
|
+
MenuOptionsTabLanguage = 694,
|
710
|
+
MenuOptionsTabControls = 695,
|
711
|
+
MenuOptionsTabMods = 696,
|
712
|
+
MenuOptionsTabSaveData = 697,
|
713
|
+
MenuOptionsTabVideo = 698,
|
714
|
+
MenuOptionsTabPerformance = 699,
|
715
|
+
MenuOptionsHeadingPerformance = 700,
|
716
|
+
MenuOptionsTitle = 701,
|
717
|
+
MenuOptionsTooltipMusicNextTrack = 702,
|
718
|
+
MenuOptionsBindChoose = 703,
|
719
|
+
MenuOptionsBindChooseAdd = 704,
|
720
|
+
MenuOptionsBindButtonResetTooltip = 705,
|
721
|
+
MenuOptionsBindButtonDeleteTooltip = 706,
|
722
|
+
MenuOptionsBindButtonAddTooltip = 707,
|
723
|
+
MenuOptionsBindButtonAddMacroTooltip = 708,
|
724
|
+
MenuOptionsButtonDiscoverEverything = 709,
|
725
|
+
MenuOptionsButtonDiscoverEverythingDescription = 710,
|
726
|
+
MenuOptionsButtonGrantAllMilestoneModifiers = 711,
|
727
|
+
MenuOptionsButtonGrantAllMilestoneModifiersDescription = 712,
|
728
|
+
MenuOptionsButtonAlternatingDirectionMovement = 713,
|
729
|
+
MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 714,
|
730
|
+
MenuOptionsButtonSteamInputKeyboardPosition = 715,
|
731
|
+
MenuOptionsButtonAlwaysShowMoreInformationTooltip = 716,
|
732
|
+
MenuOptionsButtonEnableLowPowerMode = 717,
|
733
|
+
MenuOptionsButtonEnableLowPowerModeTooltip = 718,
|
734
|
+
MenuOptionsButtonDisableAcrylicTransparency = 719,
|
735
|
+
MenuOptionsButtonDisableAcrylicTransparencyTooltip = 720,
|
736
|
+
MenuOptionsButtonDisableOverlaySupport = 721,
|
737
|
+
MenuOptionsButtonDisableOverlaySupportTooltip = 722,
|
738
|
+
MenuOptionsButtonDisableUIEffects = 723,
|
739
|
+
MenuOptionsButtonDisableUIEffectsTooltip = 724,
|
740
|
+
MenuOptionsButtonDisableUIOpacity = 725,
|
741
|
+
MenuOptionsButtonDisableUIOpacityTooltip = 726,
|
742
|
+
MenuOptionsButtonDisableMovementAnimations = 727,
|
743
|
+
MenuOptionsButtonDisableMovementAnimationsTooltip = 728,
|
744
|
+
MenuOptionsButtonAutoAttack = 729,
|
745
|
+
MenuOptionsButtonAutoAttackTooltip = 730,
|
746
|
+
MenuOptionsButtonDropOnDismantle = 731,
|
747
|
+
MenuOptionsButtonDropOnDismantleTooltip = 732,
|
748
|
+
MenuOptionsButtonDropOnDisassemble = 733,
|
749
|
+
MenuOptionsButtonDropOnDisassembleTooltip = 734,
|
750
|
+
MenuOptionsButtonDisableCraftingProtectedItems = 735,
|
751
|
+
MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 736,
|
752
|
+
MenuOptionsButtonDropOnGatherHarvest = 737,
|
753
|
+
MenuOptionsButtonDropOnGatherHarvestTooltip = 738,
|
754
|
+
MenuOptionsButtonUseAdjacentContainers = 739,
|
755
|
+
MenuOptionsButtonUseAdjacentContainersTooltip = 740,
|
756
|
+
MenuOptionsButtonHideEquippedHeadgear = 741,
|
757
|
+
MenuOptionsButtonHideEquippedHeadgearTooltip = 742,
|
758
|
+
MenuOptionsButtonDisableItemNotifiers = 743,
|
759
|
+
MenuOptionsButtonDisableItemNotifiersTooltip = 744,
|
760
|
+
MenuOptionsButtonLeftHanded = 745,
|
761
|
+
MenuOptionsButtonLeftHandedTooltip = 746,
|
762
|
+
MenuOptionsButtonAutoSave = 747,
|
763
|
+
MenuOptionsRangeAutoSaveTimerLabel = 748,
|
764
|
+
MenuOptionsRangeAutoSaveTimerTurnsDisplay = 749,
|
765
|
+
MenuOptionsRangeAutoSaveTimerTimeDisplay = 750,
|
766
|
+
MenuOptionsButtonDropIntoContainers = 751,
|
767
|
+
MenuOptionsButtonDropIntoContainersTooltip = 752,
|
768
|
+
MenuOptionsButtonWarnOnDangerousActions = 753,
|
769
|
+
MenuOptionsButtonWarnOnDangerousActionsTooltip = 754,
|
770
|
+
MenuOptionsButtonWarnOnDestructiveActions = 755,
|
771
|
+
MenuOptionsButtonWarnOnDestructiveActionsTooltip = 756,
|
772
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 757,
|
773
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 758,
|
774
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 759,
|
775
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 760,
|
776
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 761,
|
777
|
+
MenuOptionsButtonSaveDataClearBindings = 762,
|
778
|
+
MenuOptionsButtonDisableMilestones = 763,
|
779
|
+
MenuOptionsLabelSaveDataRemoval = 764,
|
780
|
+
MenuOptionsTooltipDialogOpacity = 765,
|
781
|
+
MenuOptionsLabelDialogOpacity = 766,
|
782
|
+
MenuOptionsDeveloperSteamBetas = 767,
|
783
|
+
MenuOptionsDeveloperSteamBetaName = 768,
|
784
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 769,
|
785
|
+
MenuOptionsDeveloperUIExperiments = 770,
|
786
|
+
MenuOptionsDeveloperUIExperimentsDescription = 771,
|
787
|
+
MenuOptionsAudioVolumeDisplay = 772,
|
788
|
+
MenuOptionsAudioInputSoundOnTyping = 773,
|
789
|
+
MenuOptionsAudioPlayAudioInBackground = 774,
|
790
|
+
MenuOptionsMusicPlaylist = 775,
|
791
|
+
MenuOptionsButtonConfigureBindings = 776,
|
792
|
+
MenuOptionsButtonSaveCompression = 777,
|
793
|
+
MenuOptionsButtonSaveCompressionTooltip = 778,
|
794
|
+
MenuOptionsButtonSaveUIDataGlobally = 779,
|
795
|
+
MenuOptionsButtonSaveUIDataGloballyTooltip = 780,
|
796
|
+
MenuPauseButtonContinueGame = 781,
|
797
|
+
MenuPauseButtonReturnToGame = 782,
|
798
|
+
MenuPauseButtonOptions = 783,
|
799
|
+
MenuPauseButtonGameSettings = 784,
|
800
|
+
MenuPauseButtonPaused = 785,
|
801
|
+
MenuPauseButtonMultiplayer = 786,
|
802
|
+
MenuPauseButtonHelp = 787,
|
803
|
+
MenuPauseButtonTitleScreen = 788,
|
804
|
+
MenuPauseButtonStopServer = 789,
|
805
|
+
MenuPauseButtonQuitWithoutSaving = 790,
|
806
|
+
MenuPauseTooltipNotPaused = 791,
|
807
|
+
MenuPauseLabelPaused = 792,
|
808
|
+
MenuPauseLabelNotPaused = 793,
|
809
|
+
MenuModesTitle = 794,
|
810
|
+
MenuModesDescription = 795,
|
811
|
+
MenuMultiplayerOptionsTitle = 796,
|
812
|
+
MenuMultiplayerOptionsDescription = 797,
|
813
|
+
MenuMultiplayerOptionsOpenServer = 798,
|
814
|
+
MenuMultiplayerOptionsOpenServerDescription = 799,
|
815
|
+
MenuMultiplayerOptionsCopyGameCode = 800,
|
816
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 801,
|
817
|
+
MenuMultiplayerOptionsInviteSteamFriends = 802,
|
818
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 803,
|
819
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 804,
|
820
|
+
MenuMultiplayerOptionsCheckConnectionButton = 805,
|
821
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 806,
|
822
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 807,
|
823
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 808,
|
824
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 809,
|
825
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 810,
|
826
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 811,
|
827
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 812,
|
828
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 813,
|
829
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 814,
|
830
|
+
MenuJoinServerTitle = 815,
|
831
|
+
MenuJoinServerDescription = 816,
|
832
|
+
MenuJoinServerInputPlaceholder = 817,
|
833
|
+
MenuJoinServerChooseModifiersTitle = 818,
|
834
|
+
MenuJoinServerChooseModifiersDescription = 819,
|
835
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 820,
|
836
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 821,
|
837
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 822,
|
838
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 823,
|
839
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 824,
|
840
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 825,
|
841
|
+
MenuSharedMultiplayerChoicePVP = 826,
|
842
|
+
MenuSharedMultiplayerChoicePVPDescription = 827,
|
843
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 828,
|
844
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 829,
|
845
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 830,
|
846
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 831,
|
847
|
+
MenuSharedMultiplayerChoicePauseOnDesync = 832,
|
848
|
+
MenuSharedMultiplayerChoicePauseOnDesyncDescription = 833,
|
849
|
+
MenuSharedMultiplayerDescription = 834,
|
850
|
+
MenuSharedMultiplayerMessageOfTheDay = 835,
|
851
|
+
MenuSharedMultiplayerMaxPlayers = 836,
|
852
|
+
MenuSharedRealTimeTickSpeedTooltip = 837,
|
853
|
+
MenuSharedRealTimeTickSpeedLabel = 838,
|
854
|
+
MenuSharedButtonDefault = 839,
|
855
|
+
MenuSharedValueSeconds = 840,
|
856
|
+
MenuSharedValueMilliseconds = 841,
|
857
|
+
MenuSharedValuePercentage = 842,
|
858
|
+
MenuSharedMilestonesNotUnlockable = 843,
|
859
|
+
MenuSharedMilestonesNotUnlockableDescription = 844,
|
860
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 845,
|
861
|
+
MenuSharedButtonDisableAll = 846,
|
862
|
+
MenuSharedButtonEnableAll = 847,
|
863
|
+
MenuSharedMilestoneModifiersSelected = 848,
|
864
|
+
MiscSortBy = 849,
|
865
|
+
MiscSortCustom = 850,
|
866
|
+
MiscSortDirection = 851,
|
867
|
+
MiscFilter = 852,
|
868
|
+
MiscNone = 853,
|
869
|
+
MiscPlayerNameDefault = 854,
|
870
|
+
MiscPlayerNameServer = 855,
|
871
|
+
MiscSaveNameDefault = 856,
|
872
|
+
MiscSaveNameDailyChallenge = 857,
|
873
|
+
MiscSaveNameChallenge = 858,
|
874
|
+
MiscSaveVersionUnknown = 859,
|
875
|
+
MiscVersion = 860,
|
876
|
+
MiscVersionBuildInfoTooltip = 861,
|
877
|
+
MiscVersionUpdate = 862,
|
878
|
+
MiscTime = 863,
|
879
|
+
MiscTimeMeridiem = 864,
|
880
|
+
MiscError = 865,
|
881
|
+
MiscContextMenuCopyTooltip = 866,
|
882
|
+
MiscBindableNoBindings = 867,
|
883
|
+
MiscBindingIcon = 868,
|
884
|
+
MiscBindingIconThen = 869,
|
885
|
+
DifficultyOptionsPeaceful = 870,
|
886
|
+
DifficultyOptionsAberrantSpawnsDisabled = 871,
|
887
|
+
DifficultyOptionsAberrantSpawnsOnly = 872,
|
888
|
+
DifficultyOptionsCreatureSpawningDisabled = 873,
|
889
|
+
DifficultyOptionsCreatureAlwaysSpawns = 874,
|
890
|
+
DifficultyOptionsCreatureSpawnsDefault = 875,
|
891
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 876,
|
892
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 877,
|
893
|
+
DifficultyOptionsSpawnLimit = 878,
|
894
|
+
DifficultyOptionsSpawnRateMultiplier = 879,
|
895
|
+
DifficultyOptionsDisableScared = 880,
|
896
|
+
DifficultyOptionsRespawn = 881,
|
897
|
+
DifficultyOptionsEternalNight = 882,
|
898
|
+
DifficultyOptionsEternalDay = 883,
|
899
|
+
DifficultyOptionsTimeInitial = 884,
|
900
|
+
DifficultyOptionsTimeFrozen = 885,
|
901
|
+
DifficultyOptionsTimeDayLength = 886,
|
902
|
+
DifficultyOptionsTimeDayPercent = 887,
|
903
|
+
DifficultyOptionsNoItems = 888,
|
904
|
+
DifficultyOptionsRecipes = 889,
|
905
|
+
DifficultyOptionsStartingIsland = 890,
|
906
|
+
DifficultyOptionsTravelingEffectsDisabled = 891,
|
907
|
+
DifficultyOptionsLuck = 892,
|
908
|
+
DifficultyOptionsWeightBonus = 893,
|
909
|
+
DifficultyOptionsStatInitial = 894,
|
910
|
+
DifficultyOptionsStatMax = 895,
|
911
|
+
DifficultyOptionsStatMultiplier = 896,
|
912
|
+
DifficultyOptionsStatusStartWith = 897,
|
913
|
+
DifficultyOptionsStatusUntreatable = 898,
|
914
|
+
DifficultyOptionsStatusPassChanceMultiplier = 899,
|
915
|
+
DifficultyOptionsNoRandomSkills = 900,
|
916
|
+
DifficultyOptionsSkillStartingCount = 901,
|
917
|
+
DifficultyOptionsSkillGainMultiplier = 902,
|
918
|
+
DifficultyOptionsSkillInitial = 903,
|
919
|
+
DifficultyOptionsStatusPermanent = 904,
|
920
|
+
DifficultyOptionsStatusRateMultiplier = 905,
|
921
|
+
DifficultyOptionsStatusMultiplier = 906,
|
922
|
+
DifficultyOptionsItemDurabilityMultiplier = 907,
|
923
|
+
DifficultyOptionsItemDecayMultiplier = 908,
|
924
|
+
DifficultyOptionsTileContainersEnabled = 909,
|
925
|
+
TabCrafting = 910,
|
926
|
+
TabDismantle = 911,
|
927
|
+
WindowTitleContainer = 912,
|
928
|
+
WindowTitleInventory = 913
|
928
929
|
}
|
929
930
|
export default UiTranslation;
|
@@ -241,7 +241,7 @@ export default class ItemComponent extends Component implements ItemSlot {
|
|
241
241
|
get actionSlots(): ReadonlySet<number> | undefined;
|
242
242
|
private _equipSlot;
|
243
243
|
get equipSlot(): EquipType;
|
244
|
-
refresh(refreshType: ItemRefreshType): this;
|
244
|
+
refresh(refreshType: ItemRefreshType, skipPlayingCheck?: boolean): this;
|
245
245
|
clone(): this | undefined;
|
246
246
|
setItemMenu(initialiser?: (contextMenu: ContextMenu<ActionId>) => any): this;
|
247
247
|
private registeredItemHighlights;
|
@@ -45,7 +45,7 @@ export declare class EquipmentSlot extends ItemComponent {
|
|
45
45
|
private overriddenItem?;
|
46
46
|
equipItem(item: Item): Promise<void>;
|
47
47
|
clear(): void;
|
48
|
-
refresh(refreshType: ItemRefreshType): this;
|
48
|
+
refresh(refreshType: ItemRefreshType, skipPlayingCheck?: boolean): this;
|
49
49
|
protected onEquipEvent(): void;
|
50
50
|
protected onPickUp(api: IItemPickUpApi): void;
|
51
51
|
protected onDropInto(api: IItemDropApi, fromSlot?: ItemSlot): boolean;
|
@@ -18,7 +18,7 @@ export default class HighlightManager {
|
|
18
18
|
*
|
19
19
|
* Note: When not providing `until` events, the `remove` event will be subscribed to automatically.
|
20
20
|
*/
|
21
|
-
register<C extends Component>(component: C, selector: HighlightSelector, ...until: Array<keyof Events<C>>): void;
|
21
|
+
register<C extends Component>(component: C, selector: HighlightSelector | undefined, ...until: Array<keyof Events<C>>): void;
|
22
22
|
is(component: Component, selector: HighlightSelector): boolean;
|
23
23
|
private getHighlightSelectorId;
|
24
24
|
private getHighlightableComponents;
|
@@ -18,7 +18,7 @@ export interface IHighlight {
|
|
18
18
|
class?: string;
|
19
19
|
}
|
20
20
|
export declare namespace IHighlight {
|
21
|
-
function item(item: Item): HighlightSelector;
|
21
|
+
function item(item: Item): HighlightSelector | undefined;
|
22
22
|
function optionalItem(item?: Item): HighlightSelector | undefined;
|
23
23
|
function optionalEquipSlot(item?: Item): HighlightSelector | undefined;
|
24
24
|
function container(container: IContainer): HighlightSelector;
|
package/package.json
CHANGED
File without changes
|