@wayward/types 2.10.8-beta.dev.20210908.1 → 2.10.8-beta.dev.20210917.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/entity/Human.d.ts +2 -0
- package/definitions/game/inspection/infoProviders/item/ItemUses.d.ts +2 -0
- package/definitions/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +2 -0
- package/definitions/language/dictionary/UiTranslation.d.ts +665 -664
- package/definitions/multiplayer/Multiplayer.d.ts +1 -1
- package/package.json +1 -1
|
@@ -110,6 +110,8 @@ export default abstract class Human extends Entity implements IHasInsulation {
|
|
|
110
110
|
*/
|
|
111
111
|
getStaminaDelay(staminaToStartAddingDelayAt?: number): number;
|
|
112
112
|
getConsumeBonus(item: Item | undefined, skillUse?: SkillType): number;
|
|
113
|
+
getSkillBonus(skillUse?: SkillType): number;
|
|
114
|
+
getQualityBonus(item: Item | undefined): number;
|
|
113
115
|
checkForGatherFire(): Translation | undefined;
|
|
114
116
|
calculateEquipmentStats(): void;
|
|
115
117
|
private recalculateInsulation;
|
|
@@ -40,6 +40,8 @@ export default class ItemUses extends Uses<Item> {
|
|
|
40
40
|
}, Item> | import("../UseInfo").default<{
|
|
41
41
|
onConsume: number | import("game/item/IItem").ConsumeItemStatsTuple;
|
|
42
42
|
skill: import("../../../entity/IHuman").SkillType | undefined;
|
|
43
|
+
itemQuality: import("../../../IObject").Quality | undefined;
|
|
44
|
+
qualityBonus: number;
|
|
43
45
|
skillBonus: number;
|
|
44
46
|
magicalBonus: number;
|
|
45
47
|
stats: import("../../../entity/IStats").Stat[];
|
|
@@ -16,6 +16,8 @@ import { ITooltip } from "ui/component/IComponent";
|
|
|
16
16
|
declare const _default: UseInfo<{
|
|
17
17
|
onConsume: number | import("../../../../item/IItem").ConsumeItemStatsTuple;
|
|
18
18
|
skill: import("../../../../entity/IHuman").SkillType | undefined;
|
|
19
|
+
itemQuality: import("../../../../IObject").Quality | undefined;
|
|
20
|
+
qualityBonus: number;
|
|
19
21
|
skillBonus: number;
|
|
20
22
|
magicalBonus: number;
|
|
21
23
|
stats: Stat[];
|
|
@@ -97,669 +97,670 @@ declare enum UiTranslation {
|
|
|
97
97
|
GameTooltipItemUse = 82,
|
|
98
98
|
GameTooltipItemUseActionOnConsumeTooltipBase = 83,
|
|
99
99
|
GameTooltipItemUseActionOnConsumeTooltipSkill = 84,
|
|
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
|
-
|
|
100
|
+
GameTooltipItemUseActionOnConsumeTooltipQuality = 85,
|
|
101
|
+
GameTooltipItemUseActionOnConsumeTooltipMagical = 86,
|
|
102
|
+
GameTooltipSharedUseActionTierLabel = 87,
|
|
103
|
+
GameTooltipItemUseActionSharedLabelRequirements = 88,
|
|
104
|
+
GameTooltipItemUseActionDismantleProduces = 89,
|
|
105
|
+
GameTooltipSharedUseLabelLightSource = 90,
|
|
106
|
+
GameTooltipItemUseLabelTelescopy = 91,
|
|
107
|
+
GameTooltipItemDecay = 92,
|
|
108
|
+
GameTooltipItemDecayExact = 93,
|
|
109
|
+
GameTooltipItemDecayRate = 94,
|
|
110
|
+
GameTooltipItemDecayRateTooltip = 95,
|
|
111
|
+
GameTooltipItemWeight = 96,
|
|
112
|
+
GameTooltipItemWeightBase = 97,
|
|
113
|
+
GameTooltipItemWeightStored = 98,
|
|
114
|
+
GameTooltipItemWeightStoredReduction = 99,
|
|
115
|
+
GameTooltipItemLabelRange = 100,
|
|
116
|
+
GameTooltipItemMagicalSource = 101,
|
|
117
|
+
GameTooltipItemGroupingsLabel = 102,
|
|
118
|
+
GameTooltipItemGroup = 103,
|
|
119
|
+
GameTooltipItemLabelUsesWhenBuilt = 104,
|
|
120
|
+
GameTooltipItemWorth = 105,
|
|
121
|
+
GameTooltipItemProtected = 106,
|
|
122
|
+
GameTooltipItemProtectedContainer = 107,
|
|
123
|
+
GameTooltipItemProtectedTooltip = 108,
|
|
124
|
+
GameTooltipItemLabelDismantle = 109,
|
|
125
|
+
GameTooltipItemLabelDismantleRequirement = 110,
|
|
126
|
+
GameTooltipItemQuantityMultiplier = 111,
|
|
127
|
+
GameTooltipItemUseAttack = 112,
|
|
128
|
+
GameTooltipItemUseThrowDamage = 113,
|
|
129
|
+
GameTooltipItemUseOffering = 114,
|
|
130
|
+
GameTooltipItemUseEquipDefense = 115,
|
|
131
|
+
GameTooltipItemUseEquipDefenseAttribute = 116,
|
|
132
|
+
GameTooltipItemLabelDamage = 117,
|
|
133
|
+
GameTooltipItemBarterCreditTrade = 118,
|
|
134
|
+
GameTooltipItemBarterCredit = 119,
|
|
135
|
+
GameTooltipSharedLabelWeightCapacity = 120,
|
|
136
|
+
GameTooltipSharedLabelInsulation = 121,
|
|
137
|
+
GameTooltipSharedLabelPreservation = 122,
|
|
138
|
+
GameTooltipSharedLabelDurability = 123,
|
|
139
|
+
GameTooltipSharedDurabilityMagicalDamageReduction = 124,
|
|
140
|
+
GameTooltipSharedLabelContents = 125,
|
|
141
|
+
GameTooltipSkillCurrent = 126,
|
|
142
|
+
GameTooltipSkillReputationImpact = 127,
|
|
143
|
+
GameTooltipSkillCanIncrease = 128,
|
|
144
|
+
GameTooltipSkillBonuses = 129,
|
|
145
|
+
GameTooltipSkillBonus = 130,
|
|
146
|
+
GameTooltipMilestoneProgress = 131,
|
|
147
|
+
GameTooltipMilestoneDiscovered = 132,
|
|
148
|
+
GameTooltipSharedMagicalProperty = 133,
|
|
149
|
+
GameTooltipSharedMagicalPropertyOutOf = 134,
|
|
150
|
+
GameTooltipSharedLabel = 135,
|
|
151
|
+
GameTooltipSharedLabelHead = 136,
|
|
152
|
+
GameTooltipSharedLabelTail = 137,
|
|
153
|
+
GameTooltipSharedLabelStart = 138,
|
|
154
|
+
GameTooltipSharedLabelEnd = 139,
|
|
155
|
+
GameStatsPercentage = 140,
|
|
156
|
+
GameStatsStatAttack = 141,
|
|
157
|
+
GameStatsStatGeneric = 142,
|
|
158
|
+
GameStatsStatGenericWithMax = 143,
|
|
159
|
+
GameStatsStatbar = 144,
|
|
160
|
+
GameStatsStatHealthTooltip = 145,
|
|
161
|
+
GameStatsStatStaminaTooltip = 146,
|
|
162
|
+
GameStatsStatHungerTooltip = 147,
|
|
163
|
+
GameStatsStatThirstTooltip = 148,
|
|
164
|
+
GameStatsStatHealthStatusWarning = 149,
|
|
165
|
+
GameStatsStatStaminaStatusWarning = 150,
|
|
166
|
+
GameStatsStatHungerStatusWarning = 151,
|
|
167
|
+
GameStatsStatThirstStatusWarning = 152,
|
|
168
|
+
GameStatsStatWeightStatusWarning = 153,
|
|
169
|
+
GameStatsStatStaminaStatusBad = 154,
|
|
170
|
+
GameStatsStatHungerStatusBad = 155,
|
|
171
|
+
GameStatsStatThirstStatusBad = 156,
|
|
172
|
+
GameStatsStatWeightStatusBad = 157,
|
|
173
|
+
GameStatsStatReputationTooltipAverageReputation = 158,
|
|
174
|
+
GameStatsStatReputationTooltipDifficulty = 159,
|
|
175
|
+
GameStatsStatReputationTooltipDifficultyEasy = 160,
|
|
176
|
+
GameStatsStatReputationTooltipDifficultyHard = 161,
|
|
177
|
+
GameStatsStatReputationTooltipDifficultyInfantile = 162,
|
|
178
|
+
GameStatsStatReputationTooltipDifficultyInsane = 163,
|
|
179
|
+
GameStatsStatReputationTooltipDifficultyMedium = 164,
|
|
180
|
+
GameStatsStatReputationTooltipDifficultyNightmare = 165,
|
|
181
|
+
GameStatsStatReputationTooltipDifficultySimple = 166,
|
|
182
|
+
GameStatsStatReputationTooltipDifficultyVeryEasy = 167,
|
|
183
|
+
GameStatsStatReputationTooltipDifficultyVeryHard = 168,
|
|
184
|
+
GameStatsStatReputationTooltipBenignity = 169,
|
|
185
|
+
GameStatsStatReputationTooltipMalignity = 170,
|
|
186
|
+
GameStatsStatReputationTooltipScore = 171,
|
|
187
|
+
GameStatsStatReputationTooltipTurn = 172,
|
|
188
|
+
GameStatsStatReputationTooltipTicks = 173,
|
|
189
|
+
GameStatsStatWeightTooltip = 174,
|
|
190
|
+
GameStatsStatAttackTooltipTactics = 175,
|
|
191
|
+
GameStatsStatAttackTooltipLeftHand = 176,
|
|
192
|
+
GameStatsStatAttackTooltipRightHand = 177,
|
|
193
|
+
GameStatsStatDefenseTooltipBase = 178,
|
|
194
|
+
GameStatsStatDefenseTooltipBlunt = 179,
|
|
195
|
+
GameStatsStatDefenseTooltipParrying = 180,
|
|
196
|
+
GameStatsStatDefenseTooltipFire = 181,
|
|
197
|
+
GameStatsStatDefenseTooltipCold = 182,
|
|
198
|
+
GameStatsStatDefenseTooltipPiercing = 183,
|
|
199
|
+
GameStatsStatDefenseTooltipSlashing = 184,
|
|
200
|
+
GameItemBarterCredit = 185,
|
|
201
|
+
GameMenuBarButtonTooltipBindable = 186,
|
|
202
|
+
GameMenuBarButtonTooltipMenu = 187,
|
|
203
|
+
GameMenuBarButtonTooltipSave = 188,
|
|
204
|
+
GameMenuBarButtonTooltipSaveSize = 189,
|
|
205
|
+
GameMenuBarButtonTooltipSaveTurnsAgo = 190,
|
|
206
|
+
GameMenuBarButtonTooltipSaveLastTime = 191,
|
|
207
|
+
GameMenuBarButtonTooltipNotes = 192,
|
|
208
|
+
GameMenuBarButtonTooltipNotesUnread = 193,
|
|
209
|
+
GameMenuBarButtonTooltipMilestones = 194,
|
|
210
|
+
GameMenuBarButtonTooltipMilestonesDisabled = 195,
|
|
211
|
+
GameMenuBarButtonTooltipMessages = 196,
|
|
212
|
+
GameMenuBarButtonTooltipHelp = 197,
|
|
213
|
+
GameMenuBarButtonTooltipQuickSettings = 198,
|
|
214
|
+
GameMenuBarButtonTooltipActions = 199,
|
|
215
|
+
GameMenuBarButtonTooltipInventory = 200,
|
|
216
|
+
GameMenuBarButtonTooltipCrafting = 201,
|
|
217
|
+
GameMenuBarButtonTooltipEquipment = 202,
|
|
218
|
+
GameMenuBarButtonTooltipSkills = 203,
|
|
219
|
+
GameMenuBarButtonTooltipQuests = 204,
|
|
220
|
+
GameMenuBarButtonTooltipQuestsDisabled = 205,
|
|
221
|
+
GameMessagesButtonSend = 206,
|
|
222
|
+
GameMessagesContextMenuShowAsDialog = 207,
|
|
223
|
+
GameMessagesContextMenuClear = 208,
|
|
224
|
+
GameMessagesContextMenuCopy = 209,
|
|
225
|
+
GameMessagesContextMenuExport = 210,
|
|
226
|
+
GameMessagesFilter = 211,
|
|
227
|
+
GameMessagesFiltersEdit = 212,
|
|
228
|
+
GameMessagesNewNote = 213,
|
|
229
|
+
GameMessagesTurn = 214,
|
|
230
|
+
GameMessagesDedicatedServerBackup = 215,
|
|
231
|
+
GameMessagesDedicatedServerBackupLimitReached = 216,
|
|
232
|
+
GameTileInspectionCannotSeeTile = 217,
|
|
233
|
+
MenuAboutTitle = 218,
|
|
234
|
+
MenuAboutDescription = 219,
|
|
235
|
+
MenuAboutGameDescription = 220,
|
|
236
|
+
MenuAboutSectionTeam = 221,
|
|
237
|
+
MenuAboutTeamMemberResponsibilities = 222,
|
|
238
|
+
MenuAboutTeamMemberName = 223,
|
|
239
|
+
MenuAboutTeamMemberNickname = 224,
|
|
240
|
+
MenuAboutSectionContributors = 225,
|
|
241
|
+
MenuAboutSectionSpecialThanks = 226,
|
|
242
|
+
MenuAboutTextSpecialThanksTestorsAndDonators = 227,
|
|
243
|
+
MenuAboutSectionLibraries = 228,
|
|
244
|
+
MenuAboutSectionLibrariesDescription = 229,
|
|
245
|
+
MenuBindings = 230,
|
|
246
|
+
MenuBindingsDescription = 231,
|
|
247
|
+
MenuBindingsTooltipBindConflicts = 232,
|
|
248
|
+
MenuChangelogTitle = 233,
|
|
249
|
+
MenuChangelogDescription = 234,
|
|
250
|
+
MenuChangelogHeadingFailedLoad = 235,
|
|
251
|
+
MenuChangelogHeadingChangeCount = 236,
|
|
252
|
+
MenuChangelogButtonCopyChangelog = 237,
|
|
253
|
+
MenuCharacterCreationButtonRandomizeName = 238,
|
|
254
|
+
MenuCharacterCreationButtonExportTooltip = 239,
|
|
255
|
+
MenuCharacterCreationButtonImportTooltip = 240,
|
|
256
|
+
MenuCharacterCreationButtonStartGame = 241,
|
|
257
|
+
MenuCharacterCreationButtonJoinGame = 242,
|
|
258
|
+
MenuCharacterCreationDescription = 243,
|
|
259
|
+
MenuCharacterCreationHeadingHairColor = 244,
|
|
260
|
+
MenuCharacterCreationHeadingHairStyle = 245,
|
|
261
|
+
MenuCharacterCreationHeadingSkinTone = 246,
|
|
262
|
+
MenuCharacterCreationLabelName = 247,
|
|
263
|
+
MenuCharacterCreationTitle = 248,
|
|
264
|
+
MenuCharacterCreationButtonRotateLeftTooltip = 249,
|
|
265
|
+
MenuCharacterCreationButtonRotateRightTooltip = 250,
|
|
266
|
+
MenuCharacterCreationButtonRandomizeTooltip = 251,
|
|
267
|
+
MenuCharacterSelectionButtonNewCharacter = 252,
|
|
268
|
+
MenuCharacterSelectionDescription = 253,
|
|
269
|
+
MenuCharacterSelectionHeadingNoCharacters = 254,
|
|
270
|
+
MenuCharacterSelectionTitle = 255,
|
|
271
|
+
MenuCharacterSelectionLabelLastUse = 256,
|
|
272
|
+
MenuCharacterSelectionLabelUseCount = 257,
|
|
273
|
+
MenuCharacterSelectionCharacterButtonDeleteTooltip = 258,
|
|
274
|
+
MenuCharacterSelectionCharacterButtonCustomizeTooltip = 259,
|
|
275
|
+
MenuMultiplayerDescription = 260,
|
|
276
|
+
MenuMultiplayerTitle = 261,
|
|
277
|
+
MenuMultiplayerButtonJoinById = 262,
|
|
278
|
+
MenuMultiplayerServerLabelReputation = 263,
|
|
279
|
+
MenuMultiplayerServerLabelDays = 264,
|
|
280
|
+
MenuMultiplayerServerLabelIsland = 265,
|
|
281
|
+
MenuMultiplayerButtonNewGame = 266,
|
|
282
|
+
MenuMultiplayerButtonLoadGame = 267,
|
|
283
|
+
MenuMultiplayerServerTooltipPVP = 268,
|
|
284
|
+
MenuMultiplayerServerTooltipModsLabel = 269,
|
|
285
|
+
MenuMultiplayerServerTooltipFriendsLabel = 270,
|
|
286
|
+
MenuMultiplayerServerPlayers = 271,
|
|
287
|
+
MenuMultiplayerServerLobbyType = 272,
|
|
288
|
+
MenuMultiplayerServerRegion = 273,
|
|
289
|
+
MenuMultiplayerServerHost = 274,
|
|
290
|
+
MenuMultiplayerServerVersion = 275,
|
|
291
|
+
MenuMultiplayerServerVersionUnknown = 276,
|
|
292
|
+
MenuMultiplayerServerDedicated = 277,
|
|
293
|
+
MenuMultiplayerHeadingPlayersOnline = 278,
|
|
294
|
+
MenuMultiplayerServerModUnableToLoad = 279,
|
|
295
|
+
MenuGameEndTitleDead = 280,
|
|
296
|
+
MenuGameEndTitleWon = 281,
|
|
297
|
+
MenuGameEndShareFacebook = 282,
|
|
298
|
+
MenuGameEndShareTwitter = 283,
|
|
299
|
+
MenuGameEndContinueAsGhost = 284,
|
|
300
|
+
MenuGameEndReturnToIsland = 285,
|
|
301
|
+
MenuGameEndExitToMenu = 286,
|
|
302
|
+
MenuHelpTitle = 287,
|
|
303
|
+
MenuHelpDescription = 288,
|
|
304
|
+
MenuHelpLabelSearch = 289,
|
|
305
|
+
MenuHighscoresTitle = 290,
|
|
306
|
+
MenuHighscoresDescription = 291,
|
|
307
|
+
MenuHighscoresDifficultyFilterAll = 292,
|
|
308
|
+
MenuHighscoresHighscoreLabelDifficulty = 293,
|
|
309
|
+
MenuHighscoresHighscoreLabelTurns = 294,
|
|
310
|
+
MenuHighscoresHighscoreLabelScore = 295,
|
|
311
|
+
MenuHighscoresHighscoreLabelPlace = 296,
|
|
312
|
+
MenuHighscoresHighscoreLabelDate = 297,
|
|
313
|
+
MenuHighscoresHighscoreLabelDeathBy = 298,
|
|
314
|
+
MenuHighscoresHighscoreTitle = 299,
|
|
315
|
+
MenuHighscoresCharacterNameUnknown = 300,
|
|
316
|
+
MenuHighscoresHighscoreReplayWithSettings = 301,
|
|
317
|
+
MenuLoadGameButtonNewGame = 302,
|
|
318
|
+
MenuLoadGameButtonNewGameButtonImportTooltip = 303,
|
|
319
|
+
MenuLoadGameDescription = 304,
|
|
320
|
+
MenuLoadGameSaveButtonDeleteTooltip = 305,
|
|
321
|
+
MenuLoadGameSaveButtonEditNameTooltip = 306,
|
|
322
|
+
MenuLoadGameSaveButtonExportTooltip = 307,
|
|
323
|
+
MenuLoadGameSaveTooltipLabelCreatedTime = 308,
|
|
324
|
+
MenuLoadGameSaveTooltipLabelSaveTime = 309,
|
|
325
|
+
MenuLoadGameSaveTooltipLabelGameMode = 310,
|
|
326
|
+
MenuLoadGameSaveTooltipLabelScore = 311,
|
|
327
|
+
MenuLoadGameSaveTooltipLabelSeed = 312,
|
|
328
|
+
MenuLoadGameSaveTooltipLabelTurns = 313,
|
|
329
|
+
MenuLoadGameSaveTooltipLabelMods = 314,
|
|
330
|
+
MenuLoadGameSaveTooltipLabelOriginalVersion = 315,
|
|
331
|
+
MenuLoadGameSaveTooltipMod = 316,
|
|
332
|
+
MenuLoadGameSaveTooltipNew = 317,
|
|
333
|
+
MenuLoadGameSlotsRemaining = 318,
|
|
334
|
+
MenuLoadGameSaveGame = 319,
|
|
335
|
+
MenuLoadGameSaveGameDescription = 320,
|
|
336
|
+
MenuLoadGameTitle = 321,
|
|
337
|
+
MenuLoadGameLabelSelected = 322,
|
|
338
|
+
MenuLoadGameButtonDeleteSelectedTooltip = 323,
|
|
339
|
+
MenuMainButtonAbout = 324,
|
|
340
|
+
MenuMainButtonChangelog = 325,
|
|
341
|
+
MenuMainButtonContinueGame = 326,
|
|
342
|
+
MenuMainButtonMultiplayer = 327,
|
|
343
|
+
MenuMainButtonHighscores = 328,
|
|
344
|
+
MenuMainButtonLoadGame = 329,
|
|
345
|
+
MenuMainButtonMods = 330,
|
|
346
|
+
MenuMainButtonModsAllDisabled = 331,
|
|
347
|
+
MenuMainButtonNewGame = 332,
|
|
348
|
+
MenuMainButtonNews = 333,
|
|
349
|
+
MenuMainButtonOptions = 334,
|
|
350
|
+
MenuMainButtonQuitGame = 335,
|
|
351
|
+
MenuModsButtonModdingGuide = 336,
|
|
352
|
+
MenuModsButtonOpenFolder = 337,
|
|
353
|
+
MenuModsButtonOpenWorkshop = 338,
|
|
354
|
+
MenuModsDescription = 339,
|
|
355
|
+
MenuModsTitle = 340,
|
|
356
|
+
MenuModsTooltipLabelAuthor = 341,
|
|
357
|
+
MenuModsTooltipLabelTags = 342,
|
|
358
|
+
MenuModsTooltipLabelDependencies = 343,
|
|
359
|
+
MenuModsTooltipLabelProvides = 344,
|
|
360
|
+
MenuModsTooltipLabelVersion = 345,
|
|
361
|
+
MenuModsTooltipLabelDescription = 346,
|
|
362
|
+
MenuModsTooltipLabelInstallDate = 347,
|
|
363
|
+
MenuModsTooltipLabelCreatedDate = 348,
|
|
364
|
+
MenuModsTooltipLabelLastUpdatedDate = 349,
|
|
365
|
+
MenuModsTooltipPreventsMilestoneUnlocks = 350,
|
|
366
|
+
MenuModsTooltipModOptions = 351,
|
|
367
|
+
MenuModsTooltipPublishMod = 352,
|
|
368
|
+
MenuModsTooltipModMoreInformation = 353,
|
|
369
|
+
MenuModsTooltipUninstallMod = 354,
|
|
370
|
+
MenuModsTooltipViewInSteamWorkshop = 355,
|
|
371
|
+
MenuModsTooltipViewGitHub = 356,
|
|
372
|
+
MenuModsTooltipOpenFolder = 357,
|
|
373
|
+
MenuModsButtonEditInternalMods = 358,
|
|
374
|
+
MenuModsSectionHeading = 359,
|
|
375
|
+
MenuModsSubmenuEditInternalModsTitle = 360,
|
|
376
|
+
MenuModsSubmenuEditInternalModsDescription = 361,
|
|
377
|
+
MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 362,
|
|
378
|
+
MenuNewGameButtonNext = 363,
|
|
379
|
+
MenuNewGameButtonStartServer = 364,
|
|
380
|
+
MenuNewGameDescription = 365,
|
|
381
|
+
MenuNewGameLabelEditName = 366,
|
|
382
|
+
MenuNewGameLabelEditSeed = 367,
|
|
383
|
+
MenuNewGamePlaceholderEditSeed = 368,
|
|
384
|
+
MenuNewGameTitle = 369,
|
|
385
|
+
MenuNewGameChoiceDifficulty = 370,
|
|
386
|
+
MenuNewGameChoiceSingleplayer = 371,
|
|
387
|
+
MenuNewGameChoiceSingleplayerDescription = 372,
|
|
388
|
+
MenuNewGameChoiceMultiplayer = 373,
|
|
389
|
+
MenuNewGameChoiceMultiplayerDescription = 374,
|
|
390
|
+
MenuNewGameChoiceTurnModeManual = 375,
|
|
391
|
+
MenuNewGameChoiceTurnModeManualDescription = 376,
|
|
392
|
+
MenuNewGameChoiceTurnModeRealTime = 377,
|
|
393
|
+
MenuNewGameChoiceTurnModeRealTimeDescription = 378,
|
|
394
|
+
MenuNewGameChoiceTurnModeSimulated = 379,
|
|
395
|
+
MenuNewGameChoiceTurnModeSimulatedDescription = 380,
|
|
396
|
+
MenuNewGameChoiceDifficultyTooltipMaxSaves = 381,
|
|
397
|
+
MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 382,
|
|
398
|
+
MenuNewGameChoiceDifficultyChallengeDaily = 383,
|
|
399
|
+
MenuNewGameChoiceDifficultyChallengeDailyTooltip = 384,
|
|
400
|
+
MenuNewGameButtonMilestones = 385,
|
|
401
|
+
MenuNewGameButtonMilestonesDescription = 386,
|
|
402
|
+
MenuNewGameTabGameMode = 387,
|
|
403
|
+
MenuNewGameTabMultiplayer = 388,
|
|
404
|
+
MenuNewGameTabGameplayModifiers = 389,
|
|
405
|
+
MenuNewGameHeadingGameMode = 390,
|
|
406
|
+
MenuNewGameHeadingMultiplayer = 391,
|
|
407
|
+
MenuNewGameHeadingGameplayModifiers = 392,
|
|
408
|
+
MenuNewGameChoiceClientsInheritHostModifiers = 393,
|
|
409
|
+
MenuNewGameChoiceClientsInheritHostModifiersDescription = 394,
|
|
410
|
+
MenuNewGameChoiceCustomModifiers = 395,
|
|
411
|
+
MenuNewGameChoiceCustomModifiersDescription = 396,
|
|
412
|
+
MenuMilestoneModifiersTitle = 397,
|
|
413
|
+
MenuMilestoneModifiersDescription = 398,
|
|
414
|
+
MenuCustomGameOptionsTitle = 399,
|
|
415
|
+
MenuCustomGameOptionsDescription = 400,
|
|
416
|
+
MenuCustomGameOptionsRespawnOnDeath = 401,
|
|
417
|
+
MenuCustomGameOptionsRespawnOnDeathDescription = 402,
|
|
418
|
+
MenuCustomGameOptionsUseUnlockedRecipes = 403,
|
|
419
|
+
MenuCustomGameOptionsStartingIslandBiome = 404,
|
|
420
|
+
MenuCustomGameOptionsApplyTravelingEffects = 405,
|
|
421
|
+
MenuCustomGameOptionsApplyTravelingEffectsDescription = 406,
|
|
422
|
+
MenuCustomGameOptionsCreaturesPeaceful = 407,
|
|
423
|
+
MenuCustomGameOptionsCreaturesPeacefulDescription = 408,
|
|
424
|
+
MenuCustomGameOptionsCreaturesAberrantSpawns = 409,
|
|
425
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 410,
|
|
426
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 411,
|
|
427
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 412,
|
|
428
|
+
MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 413,
|
|
429
|
+
MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 414,
|
|
430
|
+
MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 415,
|
|
431
|
+
MenuCustomGameOptionsCreaturesAllowSpawning = 416,
|
|
432
|
+
MenuCustomGameOptionsCreaturesSpawnLimit = 417,
|
|
433
|
+
MenuCustomGameOptionsCreaturesSpawnLimitDescription = 418,
|
|
434
|
+
MenuCustomGameOptionsCreatureNone = 419,
|
|
435
|
+
MenuCustomGameOptionsCreatureConfigure = 420,
|
|
436
|
+
MenuCustomGameOptionsBenignityInitial = 421,
|
|
437
|
+
MenuCustomGameOptionsBenignityMultiplier = 422,
|
|
438
|
+
MenuCustomGameOptionsBenignityMultiplierTooltip = 423,
|
|
439
|
+
MenuCustomGameOptionsMalignityInitial = 424,
|
|
440
|
+
MenuCustomGameOptionsMalignityMultiplier = 425,
|
|
441
|
+
MenuCustomGameOptionsMalignityMultiplierTooltip = 426,
|
|
442
|
+
MenuCustomGameOptionsStatMultiplier = 427,
|
|
443
|
+
MenuCustomGameOptionsStatMultiplierTooltip = 428,
|
|
444
|
+
MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 429,
|
|
445
|
+
MenuCustomGameOptionsHeadingGeneral = 430,
|
|
446
|
+
MenuCustomGameOptionsHeadingIsland = 431,
|
|
447
|
+
MenuCustomGameOptionsHeadingTime = 432,
|
|
448
|
+
MenuCustomGameOptionsHeadingStats = 433,
|
|
449
|
+
MenuCustomGameOptionsHeadingReputation = 434,
|
|
450
|
+
MenuCustomGameOptionsHeadingInventory = 435,
|
|
451
|
+
MenuCustomGameOptionsHeadingCreatures = 436,
|
|
452
|
+
MenuCustomGameOptionsHeadingSkills = 437,
|
|
453
|
+
MenuCustomGameOptionsHeadingStatusEffects = 438,
|
|
454
|
+
MenuCustomGameOptionsEternalNight = 439,
|
|
455
|
+
MenuCustomGameOptionsEternalNightDescription = 440,
|
|
456
|
+
MenuCustomGameOptionsEternalDay = 441,
|
|
457
|
+
MenuCustomGameOptionsEternalDayDescription = 442,
|
|
458
|
+
MenuCustomGameOptionsTimeFrozen = 443,
|
|
459
|
+
MenuCustomGameOptionsTimeInitial = 444,
|
|
460
|
+
MenuCustomGameOptionsTimeDayLength = 445,
|
|
461
|
+
MenuCustomGameOptionsTimeDayLengthTooltip = 446,
|
|
462
|
+
MenuCustomGameOptionsTimeDayPercent = 447,
|
|
463
|
+
MenuCustomGameOptionsTimeDayPercentTooltip = 448,
|
|
464
|
+
MenuCustomGameOptionsStatStarting = 449,
|
|
465
|
+
MenuCustomGameOptionsStatMax = 450,
|
|
466
|
+
MenuCustomGameOptionsStatStartingDisplay = 451,
|
|
467
|
+
MenuCustomGameOptionsStatMaxDisplay = 452,
|
|
468
|
+
MenuCustomGameOptionsStatNoChange = 453,
|
|
469
|
+
MenuCustomGameOptionsStatBonus = 454,
|
|
470
|
+
MenuCustomGameOptionsStatBonusDisplay = 455,
|
|
471
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplier = 456,
|
|
472
|
+
MenuCustomGameOptionsStatusEffectPassChanceMultiplierTooltip = 457,
|
|
473
|
+
MenuCustomGameOptionsStatusEffectStartWith = 458,
|
|
474
|
+
MenuCustomGameOptionsStatusEffectUntreatable = 459,
|
|
475
|
+
MenuCustomGameOptionsStatusEffectUntreatableTooltip = 460,
|
|
476
|
+
MenuCustomGameOptionsSkillInitialRandomCount = 461,
|
|
477
|
+
MenuCustomGameOptionsSkillInitialRandomCountDescription = 462,
|
|
478
|
+
MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 463,
|
|
479
|
+
MenuCustomGameOptionsSkillsGlobal = 464,
|
|
480
|
+
MenuCustomGameOptionsSkillNone = 465,
|
|
481
|
+
MenuCustomGameOptionsSkillConfigure = 466,
|
|
482
|
+
MenuCustomGameOptionsSkillInitial = 467,
|
|
483
|
+
MenuCustomGameOptionsSkillMultiplier = 468,
|
|
484
|
+
MenuCustomGameOptionsSkillMultiplierTooltip = 469,
|
|
485
|
+
MenuCustomGameOptionsRandomItems = 470,
|
|
486
|
+
MenuCustomGameOptionsRandomItemsDescription = 471,
|
|
487
|
+
MenuCustomGameOptionsExport = 472,
|
|
488
|
+
MenuCustomGameOptionsImport = 473,
|
|
489
|
+
MenuNewsDescription = 474,
|
|
490
|
+
MenuNewsHeadingSocial = 475,
|
|
491
|
+
MenuNewsTitle = 476,
|
|
492
|
+
MenuNewsHeadingUnableToLoad = 477,
|
|
493
|
+
MenuNewsButtonAllNews = 478,
|
|
494
|
+
MenuNewsButtonViewChangelog = 479,
|
|
495
|
+
MenuOptionsButtonDitherFogOfWar = 480,
|
|
496
|
+
MenuOptionsButtonDisableCustomCursor = 481,
|
|
497
|
+
MenuOptionsButtonDisplayArticleInObjectNames = 482,
|
|
498
|
+
MenuOptionsButtonFullscreen = 483,
|
|
499
|
+
MenuOptionsButtonDeveloperMode = 484,
|
|
500
|
+
MenuOptionsButtonDeveloperModeContextMenu = 485,
|
|
501
|
+
MenuOptionsButtonPixelFont = 486,
|
|
502
|
+
MenuOptionsButtonReloadGame = 487,
|
|
503
|
+
MenuOptionsButtonReloadStylesheets = 488,
|
|
504
|
+
MenuOptionsButtonExportGlobalSaveData = 489,
|
|
505
|
+
MenuOptionsButtonImportGlobalSaveData = 490,
|
|
506
|
+
MenuOptionsButtonSaveDataBackups = 491,
|
|
507
|
+
MenuOptionsButtonSaveDataBackupsTooltip = 492,
|
|
508
|
+
MenuOptionsButtonSaveDataClearAll = 493,
|
|
509
|
+
MenuOptionsButtonSaveDataClearCharacters = 494,
|
|
510
|
+
MenuOptionsButtonSaveDataClearHighscores = 495,
|
|
511
|
+
MenuOptionsButtonSaveDataClearMilestones = 496,
|
|
512
|
+
MenuOptionsButtonSaveDataClearOptions = 497,
|
|
513
|
+
MenuOptionsButtonSaveDataClearCraftingRecipes = 498,
|
|
514
|
+
MenuOptionsButtonSaveDataClearSaves = 499,
|
|
515
|
+
MenuOptionsButtonSkipSplash = 500,
|
|
516
|
+
MenuOptionsButtonToggleDevTools = 501,
|
|
517
|
+
MenuOptionsButtonTooltipsCreatures = 502,
|
|
518
|
+
MenuOptionsButtonOpenLogsFolder = 503,
|
|
519
|
+
MenuOptionsButtonTooltipsDoodads = 504,
|
|
520
|
+
MenuOptionsButtonTooltipsItems = 505,
|
|
521
|
+
MenuOptionsButtonTooltipsTerrain = 506,
|
|
522
|
+
MenuOptionsButtonDropLocationFacing = 507,
|
|
523
|
+
MenuOptionsButtonDropLocationFeet = 508,
|
|
524
|
+
MenuOptionsButtonStartTraceRecording = 509,
|
|
525
|
+
MenuOptionsButtonStopTraceRecording = 510,
|
|
526
|
+
MenuOptionsButtonTracingRecordingtTooltip = 511,
|
|
527
|
+
MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 512,
|
|
528
|
+
MenuOptionsDescription = 513,
|
|
529
|
+
MenuOptionsHeadingAudio = 514,
|
|
530
|
+
MenuOptionsHeadingDeveloper = 515,
|
|
531
|
+
MenuOptionsHeadingGameplayOptions = 516,
|
|
532
|
+
MenuOptionsHeadingGeneralOptions = 517,
|
|
533
|
+
MenuOptionsHeadingControls = 518,
|
|
534
|
+
MenuOptionsHeadingLanguage = 519,
|
|
535
|
+
MenuOptionsHeadingPowerPreference = 520,
|
|
536
|
+
MenuOptionsHeadingModOptions = 521,
|
|
537
|
+
MenuOptionsHeadingOther = 522,
|
|
538
|
+
MenuOptionsHeadingSaveData = 523,
|
|
539
|
+
MenuOptionsHeadingTooltips = 524,
|
|
540
|
+
MenuOptionsHeadingTooltipsTile = 525,
|
|
541
|
+
MenuOptionsHeadingVideo = 526,
|
|
542
|
+
MenuOptionsLabelInterfaceScale = 527,
|
|
543
|
+
MenuOptionsLabelTooltipDelay = 528,
|
|
544
|
+
MenuOptionsLabelDirectionTurnDelay = 529,
|
|
545
|
+
MenuOptionsLabelMouseTurnDelay = 530,
|
|
546
|
+
MenuOptionsTooltipTurnDelay = 531,
|
|
547
|
+
MenuOptionsTooltipMouseTurnDelay = 532,
|
|
548
|
+
MenuOptionsTooltipUiScaleClamped = 533,
|
|
549
|
+
MenuOptionsTooltipControlsFilter = 534,
|
|
550
|
+
MenuOptionsLabelVolumeEffects = 535,
|
|
551
|
+
MenuOptionsLabelVolumeMusic = 536,
|
|
552
|
+
MenuOptionsTabAudio = 537,
|
|
553
|
+
MenuOptionsTabDeveloper = 538,
|
|
554
|
+
MenuOptionsTabGameplay = 539,
|
|
555
|
+
MenuOptionsTabGeneral = 540,
|
|
556
|
+
MenuOptionsTabControls = 541,
|
|
557
|
+
MenuOptionsTabMods = 542,
|
|
558
|
+
MenuOptionsTabSaveData = 543,
|
|
559
|
+
MenuOptionsTabVideo = 544,
|
|
560
|
+
MenuOptionsTitle = 545,
|
|
561
|
+
MenuOptionsTooltipMusicNextTrack = 546,
|
|
562
|
+
MenuOptionsBindChoose = 547,
|
|
563
|
+
MenuOptionsBindChooseAdd = 548,
|
|
564
|
+
MenuOptionsBindLabelModifier = 549,
|
|
565
|
+
MenuOptionsBindButtonResetTooltip = 550,
|
|
566
|
+
MenuOptionsBindButtonDeleteTooltip = 551,
|
|
567
|
+
MenuOptionsBindButtonAddTooltip = 552,
|
|
568
|
+
MenuOptionsBindButtonAddMacroTooltip = 553,
|
|
569
|
+
MenuOptionsButtonUnlockAllMilestones = 554,
|
|
570
|
+
MenuOptionsButtonUnlockAllCraftingRecipes = 555,
|
|
571
|
+
MenuOptionsButtonAlternatingDirectionMovement = 556,
|
|
572
|
+
MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 557,
|
|
573
|
+
MenuOptionsButtonAlwaysShowMoreInformation = 558,
|
|
574
|
+
MenuOptionsButtonAlwaysShowMoreInformationTooltip = 559,
|
|
575
|
+
MenuOptionsButtonAutoGatherHarvest = 560,
|
|
576
|
+
MenuOptionsButtonAutoGatherHarvestTooltip = 561,
|
|
577
|
+
MenuOptionsButtonDisableUIEffects = 562,
|
|
578
|
+
MenuOptionsButtonDisableUIEffectsTooltip = 563,
|
|
579
|
+
MenuOptionsButtonAutoAttack = 564,
|
|
580
|
+
MenuOptionsButtonAutoAttackTooltip = 565,
|
|
581
|
+
MenuOptionsButtonAutoPickup = 566,
|
|
582
|
+
MenuOptionsButtonAutoPickupTooltip = 567,
|
|
583
|
+
MenuOptionsButtonAutoPickupOnIdle = 568,
|
|
584
|
+
MenuOptionsButtonAutoPickupOnIdleTooltip = 569,
|
|
585
|
+
MenuOptionsButtonDropOnDismantle = 570,
|
|
586
|
+
MenuOptionsButtonDropOnDismantleTooltip = 571,
|
|
587
|
+
MenuOptionsButtonDropOnGatherHarvest = 572,
|
|
588
|
+
MenuOptionsButtonDropOnGatherHarvestTooltip = 573,
|
|
589
|
+
MenuOptionsButtonKeepSortActive = 574,
|
|
590
|
+
MenuOptionsButtonKeepSortActiveTooltip = 575,
|
|
591
|
+
MenuOptionsButtonProtectCraftingItemContainers = 576,
|
|
592
|
+
MenuOptionsButtonProtectCraftingItemsContainersTooltip = 577,
|
|
593
|
+
MenuOptionsButtonProtectCraftingItemsInInventory = 578,
|
|
594
|
+
MenuOptionsButtonProtectCraftingItemsInInventoryTooltip = 579,
|
|
595
|
+
MenuOptionsButtonUseAdjacentContainers = 580,
|
|
596
|
+
MenuOptionsButtonUseAdjacentContainersTooltip = 581,
|
|
597
|
+
MenuOptionsButtonHideEquippedHeadgear = 582,
|
|
598
|
+
MenuOptionsButtonHideEquippedHeadgearTooltip = 583,
|
|
599
|
+
MenuOptionsButtonAutoSave = 584,
|
|
600
|
+
MenuOptionsButtonAutoSaveTooltip = 585,
|
|
601
|
+
MenuOptionsRangeAutoSaveTimerLabel = 586,
|
|
602
|
+
MenuOptionsRangeAutoSaveTimerTurnsDisplay = 587,
|
|
603
|
+
MenuOptionsRangeAutoSaveTimerTimeDisplay = 588,
|
|
604
|
+
MenuOptionsButtonWarnOnDangerousActions = 589,
|
|
605
|
+
MenuOptionsButtonWarnOnDangerousActionsTooltip = 590,
|
|
606
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 591,
|
|
607
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 592,
|
|
608
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 593,
|
|
609
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 594,
|
|
610
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 595,
|
|
611
|
+
MenuOptionsButtonSaveDataClearBindings = 596,
|
|
612
|
+
MenuOptionsTooltipDialogOpacity = 597,
|
|
613
|
+
MenuOptionsLabelDialogOpacity = 598,
|
|
614
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 599,
|
|
615
|
+
MenuOptionsDeveloperUIExperiments = 600,
|
|
616
|
+
MenuOptionsDeveloperUIExperimentsDescription = 601,
|
|
617
|
+
MenuOptionsAudioVolumeDisplay = 602,
|
|
618
|
+
MenuOptionsAudioInputSoundOnTyping = 603,
|
|
619
|
+
MenuOptionsMusicPlaylist = 604,
|
|
620
|
+
MenuOptionsButtonConfigureBindings = 605,
|
|
621
|
+
MenuPauseButtonContinue = 606,
|
|
622
|
+
MenuPauseButtonOptions = 607,
|
|
623
|
+
MenuPauseButtonModes = 608,
|
|
624
|
+
MenuPauseButtonPaused = 609,
|
|
625
|
+
MenuPauseButtonMultiplayer = 610,
|
|
626
|
+
MenuPauseButtonTitleScreen = 611,
|
|
627
|
+
MenuPauseButtonStopServer = 612,
|
|
628
|
+
MenuPauseHeadingPaused = 613,
|
|
629
|
+
MenuPauseParagraphPaused = 614,
|
|
630
|
+
MenuPauseHeadingNotPaused = 615,
|
|
631
|
+
MenuPauseParagraphNotPaused = 616,
|
|
632
|
+
MenuPauseHeadingDedicatedServer = 617,
|
|
633
|
+
MenuPauseParagraphDedicatedServer = 618,
|
|
634
|
+
MenuModesTitle = 619,
|
|
635
|
+
MenuModesDescription = 620,
|
|
636
|
+
MenuMultiplayerOptionsTitle = 621,
|
|
637
|
+
MenuMultiplayerOptionsDescription = 622,
|
|
638
|
+
MenuMultiplayerOptionsOpenServer = 623,
|
|
639
|
+
MenuMultiplayerOptionsOpenServerDescription = 624,
|
|
640
|
+
MenuMultiplayerOptionsCopyGameCode = 625,
|
|
641
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 626,
|
|
642
|
+
MenuMultiplayerOptionsInviteSteamFriends = 627,
|
|
643
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 628,
|
|
644
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 629,
|
|
645
|
+
MenuMultiplayerOptionsCheckConnectionButton = 630,
|
|
646
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 631,
|
|
647
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 632,
|
|
648
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 633,
|
|
649
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 634,
|
|
650
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 635,
|
|
651
|
+
MenuMultiplayerOptionsCheckConnectionResultWebRTC = 636,
|
|
652
|
+
MenuMultiplayerOptionsCheckConnectionResultWebRTCFail = 637,
|
|
653
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 638,
|
|
654
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 639,
|
|
655
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 640,
|
|
656
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 641,
|
|
657
|
+
MenuJoinServerTitle = 642,
|
|
658
|
+
MenuJoinServerDescription = 643,
|
|
659
|
+
MenuJoinServerInputPlaceholder = 644,
|
|
660
|
+
MenuJoinServerNext = 645,
|
|
661
|
+
MenuJoinServerChooseModifiersTitle = 646,
|
|
662
|
+
MenuJoinServerChooseModifiersDescription = 647,
|
|
663
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 648,
|
|
664
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 649,
|
|
665
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 650,
|
|
666
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 651,
|
|
667
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 652,
|
|
668
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 653,
|
|
669
|
+
MenuSharedMultiplayerChoicePVP = 654,
|
|
670
|
+
MenuSharedMultiplayerChoicePVPDescription = 655,
|
|
671
|
+
MenuSharedMultiplayerDescription = 656,
|
|
672
|
+
MenuSharedMultiplayerMessageOfTheDay = 657,
|
|
673
|
+
MenuSharedMultiplayerMaxPlayers = 658,
|
|
674
|
+
MenuSharedRealTimeTickSpeedTooltip = 659,
|
|
675
|
+
MenuSharedRealTimeTickSpeedLabel = 660,
|
|
676
|
+
MenuSharedButtonDefault = 661,
|
|
677
|
+
MenuSharedValueMillseconds = 662,
|
|
678
|
+
MenuSharedValuePercentage = 663,
|
|
679
|
+
MenuSharedMilestonesNotUnlockable = 664,
|
|
680
|
+
MenuSharedMilestonesNotUnlockableDescription = 665,
|
|
681
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 666,
|
|
682
|
+
MenuSharedButtonDisableAll = 667,
|
|
683
|
+
MenuSharedButtonEnableAll = 668,
|
|
684
|
+
MenuSharedMilestoneModifiersSelected = 669,
|
|
685
|
+
MiscSortBy = 670,
|
|
686
|
+
MiscSortDirection = 671,
|
|
687
|
+
MiscFilter = 672,
|
|
688
|
+
MiscPlayerNameDefault = 673,
|
|
689
|
+
MiscPlayerNameServer = 674,
|
|
690
|
+
MiscSaveNameDefault = 675,
|
|
691
|
+
MiscSaveNameDailyChallenge = 676,
|
|
692
|
+
MiscSaveNameChallenge = 677,
|
|
693
|
+
MiscSaveVersionUnknown = 678,
|
|
694
|
+
MiscVersion = 679,
|
|
695
|
+
MiscTime = 680,
|
|
696
|
+
MiscTimeMeridiem = 681,
|
|
697
|
+
MiscError = 682,
|
|
698
|
+
MiscContextMenuCopyTooltip = 683,
|
|
699
|
+
MiscBindableOr = 684,
|
|
700
|
+
MiscBindableNoBindings = 685,
|
|
701
|
+
DifficultyOptionsPeaceful = 686,
|
|
702
|
+
DifficultyOptionsAberrantSpawnsDisabled = 687,
|
|
703
|
+
DifficultyOptionsAberrantSpawnsOnly = 688,
|
|
704
|
+
DifficultyOptionsCreatureSpawningDisabled = 689,
|
|
705
|
+
DifficultyOptionsCreatureSpawnsDefault = 690,
|
|
706
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 691,
|
|
707
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 692,
|
|
708
|
+
DifficultyOptionsSpawnLimit = 693,
|
|
709
|
+
DifficultyOptionsRespawn = 694,
|
|
710
|
+
DifficultyOptionsEternalNight = 695,
|
|
711
|
+
DifficultyOptionsEternalDay = 696,
|
|
712
|
+
DifficultyOptionsTimeInitial = 697,
|
|
713
|
+
DifficultyOptionsTimeFrozen = 698,
|
|
714
|
+
DifficultyOptionsTimeDayLength = 699,
|
|
715
|
+
DifficultyOptionsTimeDayPercent = 700,
|
|
716
|
+
DifficultyOptionsNoItems = 701,
|
|
717
|
+
DifficultyOptionsBenignityInitial = 702,
|
|
718
|
+
DifficultyOptionsBenignityMultiplier = 703,
|
|
719
|
+
DifficultyOptionsMalignityInitial = 704,
|
|
720
|
+
DifficultyOptionsMalignityMultiplier = 705,
|
|
721
|
+
DifficultyOptionsWeightBonus = 706,
|
|
722
|
+
DifficultyOptionsStatInitial = 707,
|
|
723
|
+
DifficultyOptionsStatMax = 708,
|
|
724
|
+
DifficultyOptionsStatMultiplier = 709,
|
|
725
|
+
DifficultyOptionsStatusEffectStartWith = 710,
|
|
726
|
+
DifficultyOptionsStatusEffectUntreatable = 711,
|
|
727
|
+
DifficultyOptionsStatusEffectPassChanceMultiplier = 712,
|
|
728
|
+
DifficultyOptionsNoRandomSkills = 713,
|
|
729
|
+
DifficultyOptionsSkillStartingCount = 714,
|
|
730
|
+
DifficultyOptionsSkillGainMultiplier = 715,
|
|
731
|
+
DifficultyOptionsSkillInitial = 716,
|
|
732
|
+
DifficultyOptionsStatusEffectPermanent = 717,
|
|
733
|
+
DifficultyOptionsStatusEffectRateMultiplier = 718,
|
|
734
|
+
DifficultyOptionsStatusEffectMultiplier = 719,
|
|
735
|
+
EquipmentBack = 720,
|
|
736
|
+
EquipmentBelt = 721,
|
|
737
|
+
EquipmentChest = 722,
|
|
738
|
+
EquipmentFeet = 723,
|
|
739
|
+
EquipmentHands = 724,
|
|
740
|
+
EquipmentHead = 725,
|
|
741
|
+
EquipmentLeftHand = 726,
|
|
742
|
+
EquipmentLeftHandOption = 727,
|
|
743
|
+
EquipmentLegs = 728,
|
|
744
|
+
EquipmentNeck = 729,
|
|
745
|
+
EquipmentRightHand = 730,
|
|
746
|
+
EquipmentRightHandOption = 731,
|
|
747
|
+
EquipmentUse = 732,
|
|
748
|
+
HudFilter = 733,
|
|
749
|
+
QuickSlot1 = 734,
|
|
750
|
+
QuickSlot2 = 735,
|
|
751
|
+
QuickSlot3 = 736,
|
|
752
|
+
QuickSlot4 = 737,
|
|
753
|
+
QuickSlot5 = 738,
|
|
754
|
+
QuickSlot6 = 739,
|
|
755
|
+
QuickSlot7 = 740,
|
|
756
|
+
QuickSlot8 = 741,
|
|
757
|
+
QuickSlot9 = 742,
|
|
758
|
+
TabCrafting = 743,
|
|
759
|
+
TabDismantle = 744,
|
|
760
|
+
Version = 745,
|
|
761
|
+
WindowTitleContainer = 746,
|
|
762
|
+
WindowTitleCrafting = 747,
|
|
763
|
+
WindowTitleEquipment = 748,
|
|
764
|
+
WindowTitleInventory = 749
|
|
764
765
|
}
|
|
765
766
|
export default UiTranslation;
|