@wayward/types 2.12.0-beta.dev.20220902.1 → 2.12.0-beta.dev.20220903.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/doodad/Doodad.d.ts +1 -0
- package/definitions/game/game/entity/IHuman.d.ts +2 -1
- package/definitions/game/game/entity/action/ActionsRegistration.d.ts +5 -9
- package/definitions/game/game/entity/action/IAction.d.ts +4 -3
- package/definitions/game/game/entity/action/actions/{Operate.d.ts → Dismount.d.ts} +1 -1
- package/definitions/game/game/entity/action/actions/GrabAll.d.ts +1 -3
- package/definitions/game/game/entity/action/actions/MoveItem.d.ts +32 -3
- package/definitions/game/game/entity/action/actions/{Paddle.d.ts → Ride.d.ts} +1 -1
- package/definitions/game/game/entity/action/actions/ToggleVehicle.d.ts +1 -1
- package/definitions/game/game/entity/action/usable/UsableAction.d.ts +6 -6
- package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +3 -1
- package/definitions/game/game/entity/action/usable/actions/UsableActionsMain.d.ts +27 -25
- package/definitions/game/game/entity/action/usable/actions/UsableActionsVehicle.d.ts +13 -0
- package/definitions/game/game/entity/action/usable/actions/doodad/IUsableActionsDoodad.d.ts +2 -1
- package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +6 -5
- package/definitions/game/game/inspection/infoProviders/Uses.d.ts +2 -1
- package/definitions/game/game/item/IItem.d.ts +23 -4
- package/definitions/game/game/item/Item.d.ts +1 -0
- package/definitions/game/language/dictionary/Message.d.ts +409 -405
- package/definitions/game/language/dictionary/UiTranslation.d.ts +663 -660
- package/definitions/game/ui/input/Bindable.d.ts +160 -175
- package/definitions/game/ui/input/BindableManager.d.ts +2 -2
- package/definitions/game/ui/screen/screens/game/component/Item.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +1 -0
- package/package.json +1 -1
|
@@ -179,665 +179,668 @@ declare enum UiTranslation {
|
|
|
179
179
|
GameTooltipIslandCoordinates = 164,
|
|
180
180
|
GameTooltipIslandCoordinatesLabel = 165,
|
|
181
181
|
GameTooltipActionNone = 166,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
182
|
+
GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 167,
|
|
183
|
+
GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 168,
|
|
184
|
+
GameStatsPercentage = 169,
|
|
185
|
+
GameStatsStatAttack = 170,
|
|
186
|
+
GameStatsStatGeneric = 171,
|
|
187
|
+
GameStatsStatGenericWithMax = 172,
|
|
188
|
+
GameStatsStatbar = 173,
|
|
189
|
+
GameStatsStatHealthTooltip = 174,
|
|
190
|
+
GameStatsStatStaminaTooltip = 175,
|
|
191
|
+
GameStatsStatHungerTooltip = 176,
|
|
192
|
+
GameStatsStatThirstTooltip = 177,
|
|
193
|
+
GameStatsStatHealthStatusWarning = 178,
|
|
194
|
+
GameStatsStatStaminaStatusWarning = 179,
|
|
195
|
+
GameStatsStatHungerStatusWarning = 180,
|
|
196
|
+
GameStatsStatThirstStatusWarning = 181,
|
|
197
|
+
GameStatsStatWeightStatusWarning = 182,
|
|
198
|
+
GameStatsStatStaminaStatusBad = 183,
|
|
199
|
+
GameStatsStatHungerStatusBad = 184,
|
|
200
|
+
GameStatsStatThirstStatusBad = 185,
|
|
201
|
+
GameStatsStatWeightStatusBad = 186,
|
|
202
|
+
GameStatsStatReputationTooltipAverageReputation = 187,
|
|
203
|
+
GameStatsStatReputationTooltipDifficulty = 188,
|
|
204
|
+
GameStatsStatReputationTooltipDifficultyEasy = 189,
|
|
205
|
+
GameStatsStatReputationTooltipDifficultyHard = 190,
|
|
206
|
+
GameStatsStatReputationTooltipDifficultyInfantile = 191,
|
|
207
|
+
GameStatsStatReputationTooltipDifficultyInsane = 192,
|
|
208
|
+
GameStatsStatReputationTooltipDifficultyMedium = 193,
|
|
209
|
+
GameStatsStatReputationTooltipDifficultyNightmare = 194,
|
|
210
|
+
GameStatsStatReputationTooltipDifficultySimple = 195,
|
|
211
|
+
GameStatsStatReputationTooltipDifficultyVeryEasy = 196,
|
|
212
|
+
GameStatsStatReputationTooltipDifficultyVeryHard = 197,
|
|
213
|
+
GameStatsStatReputationTooltipBenignity = 198,
|
|
214
|
+
GameStatsStatReputationTooltipMalignity = 199,
|
|
215
|
+
GameStatsStatReputationTooltipScore = 200,
|
|
216
|
+
GameStatsStatReputationTooltipCivilizationScore = 201,
|
|
217
|
+
GameStatsStatReputationTooltipTurn = 202,
|
|
218
|
+
GameStatsStatReputationTooltipTicks = 203,
|
|
219
|
+
GameStatsStatWeightTooltip = 204,
|
|
220
|
+
GameStatsStatAttackTooltipTactics = 205,
|
|
221
|
+
GameStatsStatAttackTooltipMainHand = 206,
|
|
222
|
+
GameStatsStatAttackTooltipOffHand = 207,
|
|
223
|
+
GameStatsStatDefenseTooltipBase = 208,
|
|
224
|
+
GameStatsStatDefenseTooltipBlunt = 209,
|
|
225
|
+
GameStatsStatDefenseTooltipParrying = 210,
|
|
226
|
+
GameStatsStatDefenseTooltipFire = 211,
|
|
227
|
+
GameStatsStatDefenseTooltipCold = 212,
|
|
228
|
+
GameStatsStatDefenseTooltipPiercing = 213,
|
|
229
|
+
GameStatsStatDefenseTooltipSlashing = 214,
|
|
230
|
+
GameItemBarterCredit = 215,
|
|
231
|
+
GameMenuBarButtonTooltipBindable = 216,
|
|
232
|
+
GameMenuBarButtonTooltipSaveSize = 217,
|
|
233
|
+
GameMenuBarButtonTooltipSaveTurnsAgo = 218,
|
|
234
|
+
GameMenuBarButtonTooltipSaveLastTime = 219,
|
|
235
|
+
GameMenuBarButtonTooltipNotesUnread = 220,
|
|
236
|
+
GameMenuBarButtonTooltipMilestonesDisabled = 221,
|
|
237
|
+
GameMenuBarButtonTooltipQuestsDisabled = 222,
|
|
238
|
+
GameMenuBarContextMenuActionRemoveItem = 223,
|
|
239
|
+
GameMenuBarContextMenuActionInsertItem = 224,
|
|
240
|
+
GameMenuBarContextMenuActionReset = 225,
|
|
241
|
+
GameActionBarContextMenuDisplayBindings = 226,
|
|
242
|
+
GameActionBarContextMenuAddSlot = 227,
|
|
243
|
+
GameActionBarContextMenuRemoveSlot = 228,
|
|
244
|
+
GameActionBarContextMenuConfigure = 229,
|
|
245
|
+
GameActionBarConfigurationDrawerSlotTitle = 230,
|
|
246
|
+
GameActionBarConfigurationDrawerSlotHintUse = 231,
|
|
247
|
+
GameActionBarConfigurationDrawerSlotHintToggle = 232,
|
|
248
|
+
GameActionBarConfigurationDrawerColumnTitleActions = 233,
|
|
249
|
+
GameActionBarConfigurationDrawerColumnTitleItemActions = 234,
|
|
250
|
+
GameActionBarConfigurationDrawerButtonEditBindings = 235,
|
|
251
|
+
GameActionBarConfigurationDrawerButtonRemoveSlot = 236,
|
|
252
|
+
GameActionBarConfigurationDrawerButtonRemoveSlotDescription = 237,
|
|
253
|
+
GameActionBarConfigurationDrawerColumnTitleInapplicable = 238,
|
|
254
|
+
GameActionBarConfigurationDrawerButtonUseOnMove = 239,
|
|
255
|
+
GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 240,
|
|
256
|
+
GameActionBarConfigurationDrawerButtonUseExactItem = 241,
|
|
257
|
+
GameActionBarConfigurationDrawerButtonUseByType = 242,
|
|
258
|
+
GameActionBarConfigurationDrawerButtonUseAny = 243,
|
|
259
|
+
GameActionBarSlotTooltipHintUse = 244,
|
|
260
|
+
GameActionBarSlotTooltipHintConfigure = 245,
|
|
261
|
+
GameActionBarSlotTooltipHintUseOnMove = 246,
|
|
262
|
+
GameActionBarSlotTooltipHintClear = 247,
|
|
263
|
+
GameMessagesButtonSend = 248,
|
|
264
|
+
GameMessagesContextMenuShowAsDialog = 249,
|
|
265
|
+
GameMessagesContextMenuClear = 250,
|
|
266
|
+
GameMessagesContextMenuCopy = 251,
|
|
267
|
+
GameMessagesContextMenuExport = 252,
|
|
268
|
+
GameMessagesFilter = 253,
|
|
269
|
+
GameMessagesFiltersEdit = 254,
|
|
270
|
+
GameMessagesNewNote = 255,
|
|
271
|
+
GameMessagesTurn = 256,
|
|
272
|
+
GameMessagesDedicatedServerBackup = 257,
|
|
273
|
+
GameMessagesDedicatedServerBackupLimitReached = 258,
|
|
274
|
+
GameMessagesPlaceholderChat = 259,
|
|
275
|
+
GameTileInspectionCannotSeeTile = 260,
|
|
276
|
+
GameQuickslotsTooltipUsageHint = 261,
|
|
277
|
+
MenuAboutTitle = 262,
|
|
278
|
+
MenuAboutDescription = 263,
|
|
279
|
+
MenuAboutGameDescription = 264,
|
|
280
|
+
MenuAboutSectionTeam = 265,
|
|
281
|
+
MenuAboutTeamMemberResponsibilities = 266,
|
|
282
|
+
MenuAboutTeamMemberName = 267,
|
|
283
|
+
MenuAboutTeamMemberNickname = 268,
|
|
284
|
+
MenuAboutSectionContributors = 269,
|
|
285
|
+
MenuAboutSectionSpecialThanks = 270,
|
|
286
|
+
MenuAboutTextSpecialThanksTestorsAndDonators = 271,
|
|
287
|
+
MenuAboutSectionLibraries = 272,
|
|
288
|
+
MenuAboutSectionLibrariesDescription = 273,
|
|
289
|
+
MenuBindings = 274,
|
|
290
|
+
MenuBindingsDescription = 275,
|
|
291
|
+
MenuBindingsTooltipBindConflicts = 276,
|
|
292
|
+
MenuBindingsManagedBindableGameActionBarUseSlot = 277,
|
|
293
|
+
MenuBindingsManagedBindableGameActionBarToggleSlot = 278,
|
|
294
|
+
MenuChangelogTitle = 279,
|
|
295
|
+
MenuChangelogDescription = 280,
|
|
296
|
+
MenuChangelogHeadingUnchartedWaters = 281,
|
|
297
|
+
MenuChangelogFailedToLoadTitle = 282,
|
|
298
|
+
MenuChangelogFailedToLoadDescription = 283,
|
|
299
|
+
MenuChangelogHeadingChangeCount = 284,
|
|
300
|
+
MenuChangelogButtonCopyChangelog = 285,
|
|
301
|
+
MenuCharacterCreationButtonRandomizeName = 286,
|
|
302
|
+
MenuCharacterCreationButtonExportTooltip = 287,
|
|
303
|
+
MenuCharacterCreationButtonImportTooltip = 288,
|
|
304
|
+
MenuCharacterCreationButtonStartGame = 289,
|
|
305
|
+
MenuCharacterCreationButtonJoinGame = 290,
|
|
306
|
+
MenuCharacterCreationDescription = 291,
|
|
307
|
+
MenuCharacterCreationHeadingHairColor = 292,
|
|
308
|
+
MenuCharacterCreationHeadingHairStyle = 293,
|
|
309
|
+
MenuCharacterCreationHeadingSkinTone = 294,
|
|
310
|
+
MenuCharacterCreationLabelName = 295,
|
|
311
|
+
MenuCharacterCreationTitle = 296,
|
|
312
|
+
MenuCharacterCreationButtonRotateLeftTooltip = 297,
|
|
313
|
+
MenuCharacterCreationButtonRotateRightTooltip = 298,
|
|
314
|
+
MenuCharacterCreationButtonRandomizeTooltip = 299,
|
|
315
|
+
MenuCharacterSelectionButtonNewCharacter = 300,
|
|
316
|
+
MenuCharacterSelectionDescription = 301,
|
|
317
|
+
MenuCharacterSelectionHeadingNoCharacters = 302,
|
|
318
|
+
MenuCharacterSelectionTitle = 303,
|
|
319
|
+
MenuCharacterSelectionLabelLastUse = 304,
|
|
320
|
+
MenuCharacterSelectionLabelUseCount = 305,
|
|
321
|
+
MenuCharacterSelectionCharacterButtonDeleteTooltip = 306,
|
|
322
|
+
MenuCharacterSelectionCharacterButtonCustomizeTooltip = 307,
|
|
323
|
+
MenuMultiplayerDescription = 308,
|
|
324
|
+
MenuMultiplayerTitle = 309,
|
|
325
|
+
MenuMultiplayerButtonJoinById = 310,
|
|
326
|
+
MenuMultiplayerServerLabelReputation = 311,
|
|
327
|
+
MenuMultiplayerServerLabelDays = 312,
|
|
328
|
+
MenuMultiplayerServerLabelIsland = 313,
|
|
329
|
+
MenuMultiplayerButtonNewGame = 314,
|
|
330
|
+
MenuMultiplayerButtonLoadGame = 315,
|
|
331
|
+
MenuMultiplayerServerTooltipPVP = 316,
|
|
332
|
+
MenuMultiplayerServerTooltipModsLabel = 317,
|
|
333
|
+
MenuMultiplayerServerTooltipFriendsLabel = 318,
|
|
334
|
+
MenuMultiplayerServerPlayers = 319,
|
|
335
|
+
MenuMultiplayerServerLobbyType = 320,
|
|
336
|
+
MenuMultiplayerServerRegion = 321,
|
|
337
|
+
MenuMultiplayerServerHost = 322,
|
|
338
|
+
MenuMultiplayerServerVersion = 323,
|
|
339
|
+
MenuMultiplayerServerVersionUnknown = 324,
|
|
340
|
+
MenuMultiplayerServerDedicated = 325,
|
|
341
|
+
MenuMultiplayerHeadingPlayersOnline = 326,
|
|
342
|
+
MenuMultiplayerServerModUnableToLoad = 327,
|
|
343
|
+
MenuGameEndTitleDead = 328,
|
|
344
|
+
MenuGameEndTitleWon = 329,
|
|
345
|
+
MenuGameEndShareFacebook = 330,
|
|
346
|
+
MenuGameEndShareTwitter = 331,
|
|
347
|
+
MenuGameEndContinueAsGhost = 332,
|
|
348
|
+
MenuGameEndRespawnInCasualMode = 333,
|
|
349
|
+
MenuGameEndRespawnAsNewCharacter = 334,
|
|
350
|
+
MenuGameEndReturnToIsland = 335,
|
|
351
|
+
MenuGameEndExitToMenu = 336,
|
|
352
|
+
MenuHelpTitle = 337,
|
|
353
|
+
MenuHelpDescription = 338,
|
|
354
|
+
MenuHelpLabelSearch = 339,
|
|
355
|
+
MenuHighscoresTitle = 340,
|
|
356
|
+
MenuHighscoresDescription = 341,
|
|
357
|
+
MenuHighscoresDifficultyFilterAll = 342,
|
|
358
|
+
MenuHighscoresHighscoreLabelDifficulty = 343,
|
|
359
|
+
MenuHighscoresHighscoreLabelTurns = 344,
|
|
360
|
+
MenuHighscoresHighscoreLabelScore = 345,
|
|
361
|
+
MenuHighscoresHighscoreLabelPlace = 346,
|
|
362
|
+
MenuHighscoresHighscoreLabelDate = 347,
|
|
363
|
+
MenuHighscoresHighscoreLabelDeathBy = 348,
|
|
364
|
+
MenuHighscoresHighscoreTitle = 349,
|
|
365
|
+
MenuHighscoresCharacterNameUnknown = 350,
|
|
366
|
+
MenuHighscoresHighscoreReplayWithSettings = 351,
|
|
367
|
+
MenuLoadGameButtonSaveSlot = 352,
|
|
368
|
+
MenuLoadGameButtonNewGame = 353,
|
|
369
|
+
MenuLoadGameButtonNewGameButtonImportTooltip = 354,
|
|
370
|
+
MenuLoadGameDescription = 355,
|
|
371
|
+
MenuLoadGameSaveButtonDeleteTooltip = 356,
|
|
372
|
+
MenuLoadGameSaveButtonEditNameTooltip = 357,
|
|
373
|
+
MenuLoadGameSaveButtonExportTooltip = 358,
|
|
374
|
+
MenuLoadGameSaveTooltipLabelCreatedTime = 359,
|
|
375
|
+
MenuLoadGameSaveTooltipLabelSaveTime = 360,
|
|
376
|
+
MenuLoadGameSaveTooltipLabelGameMode = 361,
|
|
377
|
+
MenuLoadGameSaveTooltipLabelScore = 362,
|
|
378
|
+
MenuLoadGameSaveTooltipLabelSeed = 363,
|
|
379
|
+
MenuLoadGameSaveTooltipLabelTurns = 364,
|
|
380
|
+
MenuLoadGameSaveTooltipLabelMods = 365,
|
|
381
|
+
MenuLoadGameSaveTooltipLabelOriginalVersion = 366,
|
|
382
|
+
MenuLoadGameSaveTooltipMod = 367,
|
|
383
|
+
MenuLoadGameSaveTooltipNew = 368,
|
|
384
|
+
MenuLoadGameSaveGame = 369,
|
|
385
|
+
MenuLoadGameSaveGameDescription = 370,
|
|
386
|
+
MenuLoadGameTitle = 371,
|
|
387
|
+
MenuLoadGameLabelSelected = 372,
|
|
388
|
+
MenuLoadGameButtonDeleteSelectedTooltip = 373,
|
|
389
|
+
MenuLoadGameImportSaveFailure = 374,
|
|
390
|
+
MenuMainButtonAbout = 375,
|
|
391
|
+
MenuMainButtonChangelog = 376,
|
|
392
|
+
MenuMainButtonContinueGame = 377,
|
|
393
|
+
MenuMainButtonMultiplayer = 378,
|
|
394
|
+
MenuMainButtonHighscores = 379,
|
|
395
|
+
MenuMainButtonLoadGame = 380,
|
|
396
|
+
MenuMainButtonMods = 381,
|
|
397
|
+
MenuMainButtonModsAllDisabled = 382,
|
|
398
|
+
MenuMainButtonNewGame = 383,
|
|
399
|
+
MenuMainButtonNews = 384,
|
|
400
|
+
MenuMainButtonOptions = 385,
|
|
401
|
+
MenuMainButtonQuitGame = 386,
|
|
402
|
+
MenuModsWarningModsDisabledTitle = 387,
|
|
403
|
+
MenuModsWarningModsDisabledDescription = 388,
|
|
404
|
+
MenuModsButtonModdingGuide = 389,
|
|
405
|
+
MenuModsButtonOpenFolder = 390,
|
|
406
|
+
MenuModsButtonOpenWorkshop = 391,
|
|
407
|
+
MenuModsDescription = 392,
|
|
408
|
+
MenuModsTitle = 393,
|
|
409
|
+
MenuModsTooltipLabelAuthor = 394,
|
|
410
|
+
MenuModsTooltipLabelTags = 395,
|
|
411
|
+
MenuModsTooltipLabelDependencies = 396,
|
|
412
|
+
MenuModsTooltipLabelProvides = 397,
|
|
413
|
+
MenuModsTooltipLabelVersion = 398,
|
|
414
|
+
MenuModsTooltipLabelDescription = 399,
|
|
415
|
+
MenuModsTooltipLabelInstallDate = 400,
|
|
416
|
+
MenuModsTooltipLabelCreatedDate = 401,
|
|
417
|
+
MenuModsTooltipLabelLastUpdatedDate = 402,
|
|
418
|
+
MenuModsTooltipPreventsMilestoneUnlocks = 403,
|
|
419
|
+
MenuModsTooltipModOptions = 404,
|
|
420
|
+
MenuModsTooltipPublishMod = 405,
|
|
421
|
+
MenuModsTooltipModMoreInformation = 406,
|
|
422
|
+
MenuModsTooltipUninstallMod = 407,
|
|
423
|
+
MenuModsTooltipViewInSteamWorkshop = 408,
|
|
424
|
+
MenuModsTooltipViewGitHub = 409,
|
|
425
|
+
MenuModsTooltipOpenFolder = 410,
|
|
426
|
+
MenuModsButtonEditInternalMods = 411,
|
|
427
|
+
MenuModsSectionHeading = 412,
|
|
428
|
+
MenuModsSubmenuEditInternalModsTitle = 413,
|
|
429
|
+
MenuModsSubmenuEditInternalModsDescription = 414,
|
|
430
|
+
MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 415,
|
|
431
|
+
MenuNewGameButtonNext = 416,
|
|
432
|
+
MenuNewGameButtonStartServer = 417,
|
|
433
|
+
MenuNewGameDescription = 418,
|
|
434
|
+
MenuNewGameLabelEditName = 419,
|
|
435
|
+
MenuNewGameLabelEditSeed = 420,
|
|
436
|
+
MenuNewGamePlaceholderEditSeed = 421,
|
|
437
|
+
MenuNewGameTitle = 422,
|
|
438
|
+
MenuNewGameChoiceDifficulty = 423,
|
|
439
|
+
MenuNewGameChoiceSingleplayer = 424,
|
|
440
|
+
MenuNewGameChoiceSingleplayerDescription = 425,
|
|
441
|
+
MenuNewGameChoiceMultiplayer = 426,
|
|
442
|
+
MenuNewGameChoiceMultiplayerDescription = 427,
|
|
443
|
+
MenuNewGameChoiceTurnModeManual = 428,
|
|
444
|
+
MenuNewGameChoiceTurnModeManualDescription = 429,
|
|
445
|
+
MenuNewGameChoiceTurnModeRealTime = 430,
|
|
446
|
+
MenuNewGameChoiceTurnModeRealTimeDescription = 431,
|
|
447
|
+
MenuNewGameChoiceTurnModeSimulated = 432,
|
|
448
|
+
MenuNewGameChoiceTurnModeSimulatedDescription = 433,
|
|
449
|
+
MenuNewGameChoiceDifficultyTooltipMaxSaves = 434,
|
|
450
|
+
MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 435,
|
|
451
|
+
MenuNewGameChoiceDifficultyChallengeDaily = 436,
|
|
452
|
+
MenuNewGameChoiceDifficultyChallengeDailyTooltip = 437,
|
|
453
|
+
MenuNewGameButtonMilestones = 438,
|
|
454
|
+
MenuNewGameButtonMilestonesDescription = 439,
|
|
455
|
+
MenuNewGameTabGameMode = 440,
|
|
456
|
+
MenuNewGameTabMultiplayer = 441,
|
|
457
|
+
MenuNewGameTabGameplayModifiers = 442,
|
|
458
|
+
MenuNewGameHeadingGameMode = 443,
|
|
459
|
+
MenuNewGameHeadingMultiplayer = 444,
|
|
460
|
+
MenuNewGameHeadingGameplayModifiers = 445,
|
|
461
|
+
MenuNewGameChoiceClientsInheritHostModifiers = 446,
|
|
462
|
+
MenuNewGameChoiceClientsInheritHostModifiersDescription = 447,
|
|
463
|
+
MenuNewGameChoiceCustomModifiers = 448,
|
|
464
|
+
MenuNewGameChoiceCustomModifiersDescription = 449,
|
|
465
|
+
MenuMilestoneModifiersTitle = 450,
|
|
466
|
+
MenuMilestoneModifiersDescription = 451,
|
|
467
|
+
MenuCustomGameOptionsTitle = 452,
|
|
468
|
+
MenuCustomGameOptionsDescription = 453,
|
|
469
|
+
MenuCustomGameOptionsRespawnOnDeath = 454,
|
|
470
|
+
MenuCustomGameOptionsRespawnOnDeathDescription = 455,
|
|
471
|
+
MenuCustomGameOptionsUseUnlockedRecipes = 456,
|
|
472
|
+
MenuCustomGameOptionsStartingIslandBiome = 457,
|
|
473
|
+
MenuCustomGameOptionsApplyTravelingEffects = 458,
|
|
474
|
+
MenuCustomGameOptionsApplyTravelingEffectsDescription = 459,
|
|
475
|
+
MenuCustomGameOptionsCreaturesPeaceful = 460,
|
|
476
|
+
MenuCustomGameOptionsCreaturesPeacefulDescription = 461,
|
|
477
|
+
MenuCustomGameOptionsCreaturesAberrantSpawns = 462,
|
|
478
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 463,
|
|
479
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 464,
|
|
480
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 465,
|
|
481
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 466,
|
|
482
|
+
MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 467,
|
|
483
|
+
MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 468,
|
|
484
|
+
MenuCustomGameOptionsCreaturesAlwaysSpawn = 469,
|
|
485
|
+
MenuCustomGameOptionsCreaturesAllowSpawning = 470,
|
|
486
|
+
MenuCustomGameOptionsCreaturesSpawnLimit = 471,
|
|
487
|
+
MenuCustomGameOptionsCreaturesSpawnLimitDescription = 472,
|
|
488
|
+
MenuCustomGameOptionsCreatureNone = 473,
|
|
489
|
+
MenuCustomGameOptionsCreatureConfigure = 474,
|
|
490
|
+
MenuCustomGameOptionsBenignityInitial = 475,
|
|
491
|
+
MenuCustomGameOptionsBenignityMultiplier = 476,
|
|
492
|
+
MenuCustomGameOptionsBenignityMultiplierTooltip = 477,
|
|
493
|
+
MenuCustomGameOptionsMalignityInitial = 478,
|
|
494
|
+
MenuCustomGameOptionsMalignityMultiplier = 479,
|
|
495
|
+
MenuCustomGameOptionsMalignityMultiplierTooltip = 480,
|
|
496
|
+
MenuCustomGameOptionsStatMultiplier = 481,
|
|
497
|
+
MenuCustomGameOptionsStatMultiplierTooltip = 482,
|
|
498
|
+
MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 483,
|
|
499
|
+
MenuCustomGameOptionsHeadingGeneral = 484,
|
|
500
|
+
MenuCustomGameOptionsHeadingTravel = 485,
|
|
501
|
+
MenuCustomGameOptionsHeadingTime = 486,
|
|
502
|
+
MenuCustomGameOptionsHeadingStats = 487,
|
|
503
|
+
MenuCustomGameOptionsHeadingReputation = 488,
|
|
504
|
+
MenuCustomGameOptionsHeadingItems = 489,
|
|
505
|
+
MenuCustomGameOptionsHeadingCreatures = 490,
|
|
506
|
+
MenuCustomGameOptionsHeadingSkills = 491,
|
|
507
|
+
MenuCustomGameOptionsHeadingStatusEffects = 492,
|
|
508
|
+
MenuCustomGameOptionsEternalNight = 493,
|
|
509
|
+
MenuCustomGameOptionsEternalNightDescription = 494,
|
|
510
|
+
MenuCustomGameOptionsEternalDay = 495,
|
|
511
|
+
MenuCustomGameOptionsEternalDayDescription = 496,
|
|
512
|
+
MenuCustomGameOptionsTimeFrozen = 497,
|
|
513
|
+
MenuCustomGameOptionsTimeInitial = 498,
|
|
514
|
+
MenuCustomGameOptionsTimeDayLength = 499,
|
|
515
|
+
MenuCustomGameOptionsTimeDayLengthTooltip = 500,
|
|
516
|
+
MenuCustomGameOptionsTimeDayPercent = 501,
|
|
517
|
+
MenuCustomGameOptionsTimeDayPercentTooltip = 502,
|
|
518
|
+
MenuCustomGameOptionsStatStarting = 503,
|
|
519
|
+
MenuCustomGameOptionsStatMax = 504,
|
|
520
|
+
MenuCustomGameOptionsStatStartingDisplay = 505,
|
|
521
|
+
MenuCustomGameOptionsStatMaxDisplay = 506,
|
|
522
|
+
MenuCustomGameOptionsStatNoChange = 507,
|
|
523
|
+
MenuCustomGameOptionsStatBonus = 508,
|
|
524
|
+
MenuCustomGameOptionsStatBonusDisplay = 509,
|
|
525
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplier = 510,
|
|
526
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplierTooltip = 511,
|
|
527
|
+
MenuCustomGameOptionsStatusEffectStartWith = 512,
|
|
528
|
+
MenuCustomGameOptionsStatusEffectUntreatable = 513,
|
|
529
|
+
MenuCustomGameOptionsStatusEffectUntreatableTooltip = 514,
|
|
530
|
+
MenuCustomGameOptionsSkillInitialRandomCount = 515,
|
|
531
|
+
MenuCustomGameOptionsSkillInitialRandomCountDescription = 516,
|
|
532
|
+
MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 517,
|
|
533
|
+
MenuCustomGameOptionsSkillsGlobal = 518,
|
|
534
|
+
MenuCustomGameOptionsSkillNone = 519,
|
|
535
|
+
MenuCustomGameOptionsSkillConfigure = 520,
|
|
536
|
+
MenuCustomGameOptionsSkillInitial = 521,
|
|
537
|
+
MenuCustomGameOptionsSkillMultiplier = 522,
|
|
538
|
+
MenuCustomGameOptionsSkillMultiplierTooltip = 523,
|
|
539
|
+
MenuCustomGameOptionsRandomItems = 524,
|
|
540
|
+
MenuCustomGameOptionsRandomItemsDescription = 525,
|
|
541
|
+
MenuCustomGameOptionsItemDurability = 526,
|
|
542
|
+
MenuCustomGameOptionsItemDurabilityTooltip = 527,
|
|
543
|
+
MenuCustomGameOptionsItemDecay = 528,
|
|
544
|
+
MenuCustomGameOptionsItemDecayTooltip = 529,
|
|
545
|
+
MenuCustomGameOptionsExport = 530,
|
|
546
|
+
MenuCustomGameOptionsImport = 531,
|
|
547
|
+
MenuNewsDescription = 532,
|
|
548
|
+
MenuNewsHeadingSocial = 533,
|
|
549
|
+
MenuNewsTitle = 534,
|
|
550
|
+
MenuNewsHeadingUnableToLoad = 535,
|
|
551
|
+
MenuNewsButtonAllNews = 536,
|
|
552
|
+
MenuNewsButtonViewChangelog = 537,
|
|
553
|
+
MenuOptionsButtonDitherFogOfWar = 538,
|
|
554
|
+
MenuOptionsButtonHealthVignette = 539,
|
|
555
|
+
MenuOptionsButtonHealthVignetteTooltip = 540,
|
|
556
|
+
MenuOptionsButtonDisableCustomCursor = 541,
|
|
557
|
+
MenuOptionsButtonDisplayArticleInObjectNames = 542,
|
|
558
|
+
MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 543,
|
|
559
|
+
MenuOptionsButtonFullscreen = 544,
|
|
560
|
+
MenuOptionsButtonCustomTitleBar = 545,
|
|
561
|
+
MenuOptionsButtonDeveloperMode = 546,
|
|
562
|
+
MenuOptionsButtonDeveloperModeContextMenu = 547,
|
|
563
|
+
MenuOptionsButtonPixelFont = 548,
|
|
564
|
+
MenuOptionsButtonReloadGame = 549,
|
|
565
|
+
MenuOptionsButtonReloadStylesheets = 550,
|
|
566
|
+
MenuOptionsButtonReloadVariableUIImages = 551,
|
|
567
|
+
MenuOptionsButtonExportGlobalSaveData = 552,
|
|
568
|
+
MenuOptionsButtonImportGlobalSaveData = 553,
|
|
569
|
+
MenuOptionsButtonSaveDataBackups = 554,
|
|
570
|
+
MenuOptionsButtonSaveDataBackupsTooltip = 555,
|
|
571
|
+
MenuOptionsButtonSaveDataClearAll = 556,
|
|
572
|
+
MenuOptionsButtonSaveDataClearCharacters = 557,
|
|
573
|
+
MenuOptionsButtonSaveDataClearHighscores = 558,
|
|
574
|
+
MenuOptionsButtonSaveDataClearMilestones = 559,
|
|
575
|
+
MenuOptionsButtonSaveDataClearOptions = 560,
|
|
576
|
+
MenuOptionsButtonSaveDataClearCraftingRecipes = 561,
|
|
577
|
+
MenuOptionsButtonSaveDataClearSaves = 562,
|
|
578
|
+
MenuOptionsButtonSkipSplash = 563,
|
|
579
|
+
MenuOptionsButtonToggleDevTools = 564,
|
|
580
|
+
MenuOptionsButtonTooltipsCreatures = 565,
|
|
581
|
+
MenuOptionsButtonOpenBackupsFolder = 566,
|
|
582
|
+
MenuOptionsButtonOpenLogsFolder = 567,
|
|
583
|
+
MenuOptionsButtonTooltipsDoodads = 568,
|
|
584
|
+
MenuOptionsButtonTooltipsItems = 569,
|
|
585
|
+
MenuOptionsButtonTooltipsTerrain = 570,
|
|
586
|
+
MenuOptionsButtonDropLocationFacing = 571,
|
|
587
|
+
MenuOptionsButtonDropLocationFeet = 572,
|
|
588
|
+
MenuOptionsButtonStartTraceRecording = 573,
|
|
589
|
+
MenuOptionsButtonStopTraceRecording = 574,
|
|
590
|
+
MenuOptionsButtonTracingRecordingtTooltip = 575,
|
|
591
|
+
MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 576,
|
|
592
|
+
MenuOptionsDescription = 577,
|
|
593
|
+
MenuOptionsHeadingAudio = 578,
|
|
594
|
+
MenuOptionsHeadingDeveloper = 579,
|
|
595
|
+
MenuOptionsHeadingGameplayOptions = 580,
|
|
596
|
+
MenuOptionsHeadingGameplayOptionsDescription = 581,
|
|
597
|
+
MenuOptionsHeadingOtherOptions = 582,
|
|
598
|
+
MenuOptionsHeadingControls = 583,
|
|
599
|
+
MenuOptionsHeadingLanguage = 584,
|
|
600
|
+
MenuOptionsHeadingPowerPreference = 585,
|
|
601
|
+
MenuOptionsHeadingModOptions = 586,
|
|
602
|
+
MenuOptionsHeadingOther = 587,
|
|
603
|
+
MenuOptionsHeadingSaveData = 588,
|
|
604
|
+
MenuOptionsHeadingTooltipsTile = 589,
|
|
605
|
+
MenuOptionsHeadingVideo = 590,
|
|
606
|
+
MenuOptionsLabelInterfaceScale = 591,
|
|
607
|
+
MenuOptionsLabelTooltipDelay = 592,
|
|
608
|
+
MenuOptionsLabelDirectionTurnDelay = 593,
|
|
609
|
+
MenuOptionsLabelMouseTurnDelay = 594,
|
|
610
|
+
MenuOptionsLabelFontStyle = 595,
|
|
611
|
+
MenuOptionsTooltipTurnDelay = 596,
|
|
612
|
+
MenuOptionsTooltipMouseTurnDelay = 597,
|
|
613
|
+
MenuOptionsTooltipUiScaleClamped = 598,
|
|
614
|
+
MenuOptionsTooltipControlsFilter = 599,
|
|
615
|
+
MenuOptionsLabelVolumeEffects = 600,
|
|
616
|
+
MenuOptionsLabelVolumeMusic = 601,
|
|
617
|
+
MenuOptionsTabAudio = 602,
|
|
618
|
+
MenuOptionsTabDeveloper = 603,
|
|
619
|
+
MenuOptionsTabGameplay = 604,
|
|
620
|
+
MenuOptionsTabTooltips = 605,
|
|
621
|
+
MenuOptionsTabOther = 606,
|
|
622
|
+
MenuOptionsTabLanguage = 607,
|
|
623
|
+
MenuOptionsTabControls = 608,
|
|
624
|
+
MenuOptionsTabMods = 609,
|
|
625
|
+
MenuOptionsTabSaveData = 610,
|
|
626
|
+
MenuOptionsTabVideo = 611,
|
|
627
|
+
MenuOptionsTabPerformance = 612,
|
|
628
|
+
MenuOptionsHeadingPerformance = 613,
|
|
629
|
+
MenuOptionsTitle = 614,
|
|
630
|
+
MenuOptionsTooltipMusicNextTrack = 615,
|
|
631
|
+
MenuOptionsBindChoose = 616,
|
|
632
|
+
MenuOptionsBindChooseAdd = 617,
|
|
633
|
+
MenuOptionsBindLabelModifier = 618,
|
|
634
|
+
MenuOptionsBindButtonResetTooltip = 619,
|
|
635
|
+
MenuOptionsBindButtonDeleteTooltip = 620,
|
|
636
|
+
MenuOptionsBindButtonAddTooltip = 621,
|
|
637
|
+
MenuOptionsBindButtonAddMacroTooltip = 622,
|
|
638
|
+
MenuOptionsButtonUnlockAllMilestones = 623,
|
|
639
|
+
MenuOptionsButtonUnlockAllCraftingRecipes = 624,
|
|
640
|
+
MenuOptionsButtonAlternatingDirectionMovement = 625,
|
|
641
|
+
MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 626,
|
|
642
|
+
MenuOptionsButtonAlwaysShowMoreInformation = 627,
|
|
643
|
+
MenuOptionsButtonAlwaysShowMoreInformationTooltip = 628,
|
|
644
|
+
MenuOptionsButtonDisableAcrylicTransparency = 629,
|
|
645
|
+
MenuOptionsButtonDisableAcrylicTransparencyTooltip = 630,
|
|
646
|
+
MenuOptionsButtonDisableOverlaySupport = 631,
|
|
647
|
+
MenuOptionsButtonDisableOverlaySupportTooltip = 632,
|
|
648
|
+
MenuOptionsButtonDisableUIEffects = 633,
|
|
649
|
+
MenuOptionsButtonDisableUIEffectsTooltip = 634,
|
|
650
|
+
MenuOptionsButtonDisableUIOpacity = 635,
|
|
651
|
+
MenuOptionsButtonDisableUIOpacityTooltip = 636,
|
|
652
|
+
MenuOptionsButtonDisableMovementAnimations = 637,
|
|
653
|
+
MenuOptionsButtonDisableMovementAnimationsTooltip = 638,
|
|
654
|
+
MenuOptionsButtonAutoAttack = 639,
|
|
655
|
+
MenuOptionsButtonAutoAttackTooltip = 640,
|
|
656
|
+
MenuOptionsButtonAutoPickUp = 641,
|
|
657
|
+
MenuOptionsButtonAutoPickUpTooltip = 642,
|
|
658
|
+
MenuOptionsButtonAutoPickUpOnIdle = 643,
|
|
659
|
+
MenuOptionsButtonAutoPickUpOnIdleTooltip = 644,
|
|
660
|
+
MenuOptionsButtonDropOnDismantle = 645,
|
|
661
|
+
MenuOptionsButtonDropOnDismantleTooltip = 646,
|
|
662
|
+
MenuOptionsButtonDisableCraftingProtectedItems = 647,
|
|
663
|
+
MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 648,
|
|
664
|
+
MenuOptionsButtonDropOnGatherHarvest = 649,
|
|
665
|
+
MenuOptionsButtonDropOnGatherHarvestTooltip = 650,
|
|
666
|
+
MenuOptionsButtonKeepSortActive = 651,
|
|
667
|
+
MenuOptionsButtonKeepSortActiveTooltip = 652,
|
|
668
|
+
MenuOptionsButtonUseAdjacentContainers = 653,
|
|
669
|
+
MenuOptionsButtonUseAdjacentContainersTooltip = 654,
|
|
670
|
+
MenuOptionsButtonHideEquippedHeadgear = 655,
|
|
671
|
+
MenuOptionsButtonHideEquippedHeadgearTooltip = 656,
|
|
672
|
+
MenuOptionsButtonAutoSave = 657,
|
|
673
|
+
MenuOptionsButtonAutoSaveTooltip = 658,
|
|
674
|
+
MenuOptionsRangeAutoSaveTimerLabel = 659,
|
|
675
|
+
MenuOptionsRangeAutoSaveTimerTurnsDisplay = 660,
|
|
676
|
+
MenuOptionsRangeAutoSaveTimerTimeDisplay = 661,
|
|
677
|
+
MenuOptionsButtonDropIntoContainers = 662,
|
|
678
|
+
MenuOptionsButtonDropIntoContainersTooltip = 663,
|
|
679
|
+
MenuOptionsButtonWarnOnDangerousActions = 664,
|
|
680
|
+
MenuOptionsButtonWarnOnDangerousActionsTooltip = 665,
|
|
681
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 666,
|
|
682
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 667,
|
|
683
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 668,
|
|
684
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 669,
|
|
685
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 670,
|
|
686
|
+
MenuOptionsButtonSaveDataClearBindings = 671,
|
|
687
|
+
MenuOptionsTooltipDialogOpacity = 672,
|
|
688
|
+
MenuOptionsLabelDialogOpacity = 673,
|
|
689
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 674,
|
|
690
|
+
MenuOptionsDeveloperUIExperiments = 675,
|
|
691
|
+
MenuOptionsDeveloperUIExperimentsDescription = 676,
|
|
692
|
+
MenuOptionsAudioVolumeDisplay = 677,
|
|
693
|
+
MenuOptionsAudioInputSoundOnTyping = 678,
|
|
694
|
+
MenuOptionsMusicPlaylist = 679,
|
|
695
|
+
MenuOptionsButtonConfigureBindings = 680,
|
|
696
|
+
MenuOptionsButtonSaveCompression = 681,
|
|
697
|
+
MenuOptionsButtonSaveCompressionTooltip = 682,
|
|
698
|
+
MenuPauseButtonContinueGame = 683,
|
|
699
|
+
MenuPauseButtonReturnToGame = 684,
|
|
700
|
+
MenuPauseButtonOptions = 685,
|
|
701
|
+
MenuPauseButtonGameSettings = 686,
|
|
702
|
+
MenuPauseButtonPaused = 687,
|
|
703
|
+
MenuPauseButtonMultiplayer = 688,
|
|
704
|
+
MenuPauseButtonTitleScreen = 689,
|
|
705
|
+
MenuPauseButtonStopServer = 690,
|
|
706
|
+
MenuPauseHeadingDedicatedServer = 691,
|
|
707
|
+
MenuPauseTooltipNotPaused = 692,
|
|
708
|
+
MenuPauseParagraphDedicatedServer = 693,
|
|
709
|
+
MenuPauseLabelPaused = 694,
|
|
710
|
+
MenuPauseLabelNotPaused = 695,
|
|
711
|
+
MenuModesTitle = 696,
|
|
712
|
+
MenuModesDescription = 697,
|
|
713
|
+
MenuMultiplayerOptionsTitle = 698,
|
|
714
|
+
MenuMultiplayerOptionsDescription = 699,
|
|
715
|
+
MenuMultiplayerOptionsOpenServer = 700,
|
|
716
|
+
MenuMultiplayerOptionsOpenServerDescription = 701,
|
|
717
|
+
MenuMultiplayerOptionsCopyGameCode = 702,
|
|
718
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 703,
|
|
719
|
+
MenuMultiplayerOptionsInviteSteamFriends = 704,
|
|
720
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 705,
|
|
721
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 706,
|
|
722
|
+
MenuMultiplayerOptionsCheckConnectionButton = 707,
|
|
723
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 708,
|
|
724
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 709,
|
|
725
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 710,
|
|
726
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 711,
|
|
727
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 712,
|
|
728
|
+
MenuMultiplayerOptionsCheckConnectionResultWebRTC = 713,
|
|
729
|
+
MenuMultiplayerOptionsCheckConnectionResultWebRTCFail = 714,
|
|
730
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 715,
|
|
731
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 716,
|
|
732
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 717,
|
|
733
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 718,
|
|
734
|
+
MenuJoinServerTitle = 719,
|
|
735
|
+
MenuJoinServerDescription = 720,
|
|
736
|
+
MenuJoinServerInputPlaceholder = 721,
|
|
737
|
+
MenuJoinServerChooseModifiersTitle = 722,
|
|
738
|
+
MenuJoinServerChooseModifiersDescription = 723,
|
|
739
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 724,
|
|
740
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 725,
|
|
741
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 726,
|
|
742
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 727,
|
|
743
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 728,
|
|
744
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 729,
|
|
745
|
+
MenuSharedMultiplayerChoicePVP = 730,
|
|
746
|
+
MenuSharedMultiplayerChoicePVPDescription = 731,
|
|
747
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 732,
|
|
748
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 733,
|
|
749
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 734,
|
|
750
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 735,
|
|
751
|
+
MenuSharedMultiplayerDescription = 736,
|
|
752
|
+
MenuSharedMultiplayerMessageOfTheDay = 737,
|
|
753
|
+
MenuSharedMultiplayerMaxPlayers = 738,
|
|
754
|
+
MenuSharedRealTimeTickSpeedTooltip = 739,
|
|
755
|
+
MenuSharedRealTimeTickSpeedLabel = 740,
|
|
756
|
+
MenuSharedMaxTravelTimeLabel = 741,
|
|
757
|
+
MenuSharedMaxTravelTimeLabelTooltip = 742,
|
|
758
|
+
MenuSharedButtonDefault = 743,
|
|
759
|
+
MenuSharedValueMillseconds = 744,
|
|
760
|
+
MenuSharedValueTurns = 745,
|
|
761
|
+
MenuSharedValuePercentage = 746,
|
|
762
|
+
MenuSharedMilestonesNotUnlockable = 747,
|
|
763
|
+
MenuSharedMilestonesNotUnlockableDescription = 748,
|
|
764
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 749,
|
|
765
|
+
MenuSharedButtonDisableAll = 750,
|
|
766
|
+
MenuSharedButtonEnableAll = 751,
|
|
767
|
+
MenuSharedMilestoneModifiersSelected = 752,
|
|
768
|
+
MiscSortBy = 753,
|
|
769
|
+
MiscSortDirection = 754,
|
|
770
|
+
MiscFilter = 755,
|
|
771
|
+
MiscPlayerNameDefault = 756,
|
|
772
|
+
MiscPlayerNameServer = 757,
|
|
773
|
+
MiscSaveNameDefault = 758,
|
|
774
|
+
MiscSaveNameDailyChallenge = 759,
|
|
775
|
+
MiscSaveNameChallenge = 760,
|
|
776
|
+
MiscSaveVersionUnknown = 761,
|
|
777
|
+
MiscVersion = 762,
|
|
778
|
+
MiscVersionUpdate = 763,
|
|
779
|
+
MiscTime = 764,
|
|
780
|
+
MiscTimeMeridiem = 765,
|
|
781
|
+
MiscError = 766,
|
|
782
|
+
MiscContextMenuCopyTooltip = 767,
|
|
783
|
+
MiscBindableOr = 768,
|
|
784
|
+
MiscBindableNoBindings = 769,
|
|
785
|
+
DifficultyOptionsPeaceful = 770,
|
|
786
|
+
DifficultyOptionsAberrantSpawnsDisabled = 771,
|
|
787
|
+
DifficultyOptionsAberrantSpawnsOnly = 772,
|
|
788
|
+
DifficultyOptionsCreatureSpawningDisabled = 773,
|
|
789
|
+
DifficultyOptionsCreatureAlwaysSpawns = 774,
|
|
790
|
+
DifficultyOptionsCreatureSpawnsDefault = 775,
|
|
791
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 776,
|
|
792
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 777,
|
|
793
|
+
DifficultyOptionsSpawnLimit = 778,
|
|
794
|
+
DifficultyOptionsRespawn = 779,
|
|
795
|
+
DifficultyOptionsEternalNight = 780,
|
|
796
|
+
DifficultyOptionsEternalDay = 781,
|
|
797
|
+
DifficultyOptionsTimeInitial = 782,
|
|
798
|
+
DifficultyOptionsTimeFrozen = 783,
|
|
799
|
+
DifficultyOptionsTimeDayLength = 784,
|
|
800
|
+
DifficultyOptionsTimeDayPercent = 785,
|
|
801
|
+
DifficultyOptionsNoItems = 786,
|
|
802
|
+
DifficultyOptionsRecipes = 787,
|
|
803
|
+
DifficultyOptionsStartingIsland = 788,
|
|
804
|
+
DifficultyOptionsTravelingEffectsDisabled = 789,
|
|
805
|
+
DifficultyOptionsBenignityInitial = 790,
|
|
806
|
+
DifficultyOptionsBenignityMultiplier = 791,
|
|
807
|
+
DifficultyOptionsMalignityInitial = 792,
|
|
808
|
+
DifficultyOptionsMalignityMultiplier = 793,
|
|
809
|
+
DifficultyOptionsWeightBonus = 794,
|
|
810
|
+
DifficultyOptionsStatInitial = 795,
|
|
811
|
+
DifficultyOptionsStatMax = 796,
|
|
812
|
+
DifficultyOptionsStatMultiplier = 797,
|
|
813
|
+
DifficultyOptionsStatusEffectStartWith = 798,
|
|
814
|
+
DifficultyOptionsStatusEffectUntreatable = 799,
|
|
815
|
+
DifficultyOptionsStatusEffectPassChanceMultiplier = 800,
|
|
816
|
+
DifficultyOptionsNoRandomSkills = 801,
|
|
817
|
+
DifficultyOptionsSkillStartingCount = 802,
|
|
818
|
+
DifficultyOptionsSkillGainMultiplier = 803,
|
|
819
|
+
DifficultyOptionsSkillInitial = 804,
|
|
820
|
+
DifficultyOptionsStatusEffectPermanent = 805,
|
|
821
|
+
DifficultyOptionsStatusEffectRateMultiplier = 806,
|
|
822
|
+
DifficultyOptionsStatusEffectMultiplier = 807,
|
|
823
|
+
DifficultyOptionsItemDurabilityMultiplier = 808,
|
|
824
|
+
DifficultyOptionsItemDecayMultiplier = 809,
|
|
825
|
+
EquipmentBack = 810,
|
|
826
|
+
EquipmentBelt = 811,
|
|
827
|
+
EquipmentChest = 812,
|
|
828
|
+
EquipmentFeet = 813,
|
|
829
|
+
EquipmentHands = 814,
|
|
830
|
+
EquipmentHead = 815,
|
|
831
|
+
EquipmentLegs = 816,
|
|
832
|
+
EquipmentMainHand = 817,
|
|
833
|
+
EquipmentMainHandOption = 818,
|
|
834
|
+
EquipmentNeck = 819,
|
|
835
|
+
EquipmentOffHand = 820,
|
|
836
|
+
EquipmentOffHandOption = 821,
|
|
837
|
+
EquipmentUse = 822,
|
|
838
|
+
HudFilter = 823,
|
|
839
|
+
TabCrafting = 824,
|
|
840
|
+
TabDismantle = 825,
|
|
841
|
+
WindowTitleContainer = 826,
|
|
842
|
+
WindowTitleCrafting = 827,
|
|
843
|
+
WindowTitleEquipment = 828,
|
|
844
|
+
WindowTitleInventory = 829
|
|
842
845
|
}
|
|
843
846
|
export default UiTranslation;
|