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