-
Notifications
You must be signed in to change notification settings - Fork 15
/
ro.json
4250 lines (4250 loc) · 173 KB
/
ro.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"key": "100DA204405F9111E1C236B3FF176270",
"location": "/Game/Blueprints/actionExecute.actionExecute_C:ExecuteUbergraph_actionExecute [Script Bytecode]",
"id": "The impostor used mislead by posing as {doll} for an hour and performed the action {action}.",
"str": "Impostorul a folosit să inducă în eroare dându-se drept {doll} timp de o oră și a efectuat acțiunea {action}."
},
{
"key": "9F428B644FC340682C8E35A9365C2E1D",
"location": "/Game/Blueprints/crateInventory.crateInventory_C:ExecuteUbergraph_crateInventory [Script Bytecode]",
"id": "You can't open the chest until you pass the career mode tutorial.",
"str": "Nu poți deschide cufă până nu treci de tutorialul modului carieră."
},
{
"key": "8C6EFCE649B93D5275B158901F4CAB7A",
"location": "/Game/Blueprints/driveVan.driveVan_C:ExecuteUbergraph_driveVan [Script Bytecode]",
"id": "Back to the safehouse",
"str": "Înapoi la casa de siguranță"
},
{
"key": "E0A26C2A477073293C2A5093569FFE5E",
"location": "/Game/Blueprints/driveVan.driveVan_C:ExecuteUbergraph_driveVan [Script Bytecode]",
"id": "If you return to the safehouse, the house will restore its state and you will lose the equipped items",
"str": "Dacă te întorci la casa de siguranță, casa își va restabili starea și vei pierde obiectele echipate"
},
{
"key": "C312729245B39D3E05385886891922CF",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(0).texts",
"id": "God, Save Us",
"str": "Doamne, salvează-ne"
},
{
"key": "78CDF9F24D7F05B20507E99EF8B9D6B4",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(1).texts",
"id": "Where is the hope?",
"str": "Unde este speranta?"
},
{
"key": "806D1B0C4EFCAD5D435AD6A24A208010",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(10).texts",
"id": "Who will listen to us?",
"str": "Cine ne va asculta?"
},
{
"key": "4CC12ED04C0CCDD4B99137BA4EFF21F1",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(2).texts",
"id": "Everything is falling apart",
"str": "Totul se prăbușește"
},
{
"key": "D3B042044111E5CC7AE8239FB511F147",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(3).texts",
"id": "Darkness surrounds us",
"str": "Întunericul ne înconjoară"
},
{
"key": "46CE50D24305DF8EE5E3069A686AD62E",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(4).texts",
"id": "What do we have left?",
"str": "Ce ne-a mai rămas?"
},
{
"key": "7C103CB840F8E092D02937A8D8ACCCCF",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(5).texts",
"id": "Nothing makes sense anymore",
"str": "Nimic nu mai are sens"
},
{
"key": "C868184542C8CF8CE45E35881EB2FB7F",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(6).texts",
"id": "The pain is overwhelming",
"str": "Durerea este copleșitoare"
},
{
"key": "1B91C6234DA146AEDD1F52A4882D4BE0",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(7).texts",
"id": "There seems to be no way out",
"str": "Se pare că nu există nicio ieșire"
},
{
"key": "8013788A45FE0968E12AA3BAF0AE5233",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(8).texts",
"id": "The silence is deafening",
"str": "Tăcerea este asurzitoare"
},
{
"key": "FB77087A4862A67B758D529F87748C2F",
"location": "/Game/Blueprints/dynamicActions/daycare/blackboard.Default__blackboard_C.texts(9).texts",
"id": "Chaos consumes us",
"str": "Haosul ne consumă"
},
{
"key": "1C4A0DD846CCF542A5D75C843FB42C43",
"location": "/Game/Blueprints/dynamicDoll.dynamicDoll_C:ExecuteUbergraph_dynamicDoll [Script Bytecode]",
"id": "This doll is under effects, wait for the effect to finish to apply another one",
"str": "Aceasta papusa este sub efecte, asteptati sa se termine efectul pentru a aplica alta"
},
{
"key": "486E52D945C3D792DA06099F44AC1A7A",
"location": "/Game/Blueprints/dynamicDoll.dynamicDoll_C:ExecuteUbergraph_dynamicDoll [Script Bytecode]",
"id": "Be careful, you will lose the equipped items",
"str": "Ai grijă, vei pierde obiectele echipate"
},
{
"key": "5DAA61584F29C51BE364D59FAF17F7CB",
"location": "/Game/Blueprints/dynamicDoll.dynamicDoll_C:ExecuteUbergraph_dynamicDoll [Script Bytecode]",
"id": "You need to use the book of souls before you save the imposter doll",
"str": "Trebuie să folosești cartea sufletelor înainte de a salva păpușa impostora"
},
{
"key": "073BF882481ECDE57F50FF98957A3C22",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "You've unlocked a new difficulty!",
"str": "Ai deblocat o nouă dificultate!"
},
{
"key": "51B58C89473E1AE2A37E6A8118DC37C1",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "Have you ever wondered where the information about the dolls comes from? In career mode, you will discover the information about the dolls with infinite cases, economy, levels, shop, crafting, and much more!",
"str": "Te-ai întrebat vreodată de unde provin informațiile despre păpuși? "
},
{
"key": "839DA89C42E027A3CA515CA3BC5BE204",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "You can try it now in PC",
"str": "Puteți încerca acum pe PC"
},
{
"key": "9472CB7546EB19A64D00B9B40CF7BC7D",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "You've unlocked a new extra mode!",
"str": "Ați deblocat un nou mod suplimentar!"
},
{
"key": "B372B7564467D935DC5122B7415A738C",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "You've unlocked the career mode!",
"str": "Ai deblocat modul carieră!"
},
{
"key": "FE11E6ED4FA63C5B12631383E56A20B5",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:checkPopUps [Script Bytecode]",
"id": "You've unlocked the {map} Map!",
"str": "Ați deblocat harta {map}!"
},
{
"key": "313664F547D8F4158BB67E8898134C0E",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "{player} leave the game",
"str": "{player} părăsește jocul"
},
{
"key": "8098B1CA4AED33E029A8D4878EE21A49",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "You've broken your new record with {new} nights! of the {old} nights before!",
"str": "Ți-ai doborât noul record cu {new} nopți! din {old} nopți înainte!"
},
{
"key": "97F7579E41A844AC5D7FDDAB706274C6",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "Try again",
"str": "Încearcă din nou"
},
{
"key": "A54FC3294EFCB8B57B533BBF0FABD261",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "The time limit for a player to join has been exceeded, what do you want to do?",
"str": "S-a depășit timpul limită pentru care un jucător se alătură, ce vrei să faci?"
},
{
"key": "B4559452445FD99D5366B68268BCFC9E",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "Congratulations!",
"str": "Felicitări!"
},
{
"key": "E260B86E4EF0F3E2B1480B8784D99A9A",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "{player} joined the game",
"str": "{player} s-a alăturat jocului"
},
{
"key": "F83E76BC49FC84244322C382556B6E5F",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "Oh no...",
"str": "Oh, nu..."
},
{
"key": "FC67115746EDB65A022A51B4C1176418",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:ExecuteUbergraph_HorrorEngineGameMode [Script Bytecode]",
"id": "You've got {new} nights, you haven't managed to beat your record of {old} nights",
"str": "Aveți {new} nopți, nu ați reușit să vă bateți recordul de {old} nopți"
},
{
"key": "0525435A4091E8021EFF0D8B98CE9BC4",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:isCorrectImpostor [Script Bytecode]",
"id": "Wrong impostor",
"str": "Impostor greșit"
},
{
"key": "416137A54D8BDF2957A99DA3E3A214DB",
"location": "/Game/Blueprints/HorrorEngineGameMode.HorrorEngineGameMode_C:isCorrectImpostor [Script Bytecode]",
"id": "You left several dolls uncrossed out",
"str": "Ai lăsat mai multe păpuși fără bătaie"
},
{
"key": "27228C9F429D8354B0534FB17BD564AA",
"location": "/Game/Blueprints/interactableUI3D.interactableUI3D_C:ExecuteUbergraph_interactableUI3D [Script Bytecode]",
"id": "Interact",
"str": "Interacționează"
},
{
"key": "0CA5844D4070A29607D91D9C17419FCD",
"location": "/Game/Blueprints/options.options_C:ExecuteUbergraph_options [Script Bytecode]",
"id": "Skip all hours",
"str": "Sari peste toate orele"
},
{
"key": "34568E7B486905A5400643A88FA2E8A8",
"location": "/Game/Blueprints/options.options_C:ExecuteUbergraph_options [Script Bytecode]",
"id": "Show list",
"str": "Afișează lista"
},
{
"key": "8048C27C4B137230FE4708ADFD1AD7F4",
"location": "/Game/Blueprints/options.options_C:ExecuteUbergraph_options [Script Bytecode]",
"id": "Show Jumpscares",
"str": "Arată jumpcares"
},
{
"key": "0590A39240854404475C3696E14AF5A8",
"location": "/Game/Blueprints/PC.PC_C:ExecuteUbergraph_PC [Script Bytecode]",
"id": "We have detected a change in your inputs.",
"str": "Am detectat o schimbare în intrările dvs.."
},
{
"key": "821BBE2A48EE821074956AB736CA0ECB",
"location": "/Game/Blueprints/PC.PC_C:ExecuteUbergraph_PC [Script Bytecode]",
"id": "Input detected!",
"str": "Intrare detectată!"
},
{
"key": "A7B995CE42A855DD02B0D4A9CA26F37C",
"location": "/Game/Blueprints/PC.PC_C:ExecuteUbergraph_PC [Script Bytecode]",
"id": "We were unable to create an online session. Please check your connection and restart the game. If you decide to continue, the game will work in offline mode.",
"str": "Nu am putut crea o sesiune online. Vă rugăm să vă verificați conexiunea și să reporniți jocul. Dacă decideți să continuați, jocul va funcționa în modul offline."
},
{
"key": "BCA4F7E9472918A4030087B0CBCF7608",
"location": "/Game/Blueprints/PC.PC_C:ExecuteUbergraph_PC [Script Bytecode]",
"id": "OK",
"str": "Bine"
},
{
"key": "79B48418402866A435B0658D650C041D",
"location": "/Game/Blueprints/weaponInteract.weaponInteract_C:ExecuteUbergraph_weaponInteract [Script Bytecode]",
"id": "You've used everything you needed to use here.",
"str": "Ai folosit tot ce ai nevoie pentru a folosi aici."
},
{
"key": "8E794D794CCEA0D30D037D8DA2BFD248",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Lights",
"str": "Lumini"
},
{
"key": "B41DE7E344BBE9E3F4ED828B3AC5DE1A",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow.sections_22_4031E9264112E4E86BC48BA9D729A311(0).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Color",
"str": "Culoare"
},
{
"key": "3D3092E04B30FAE9F91970831F869B44",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_0.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Wall",
"str": "Perete"
},
{
"key": "E93B4EC241D67CCBA288EAB44234C576",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_0.sections_22_4031E9264112E4E86BC48BA9D729A311(0).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Material",
"str": "Material"
},
{
"key": "31D983AD40E7D0F0976B7CAC11BD3D12",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_1.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Roof",
"str": "Acoperiş"
},
{
"key": "54DD43104162D7A89F5B2ABADBA7F0A6",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_14.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van Lights",
"str": "Lumini dubă"
},
{
"key": "F1D636544DE5ADC7945E9789ACC63D6C",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_15.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van wall",
"str": "Peretele dubei"
},
{
"key": "F398437D44CE91CF11D919A1208038ED",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_15.sections_22_4031E9264112E4E86BC48BA9D729A311(2).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Size",
"str": "Dimensiune"
},
{
"key": "805F56F9484DE7ED01BC83B1E3304EE7",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_16.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van floor",
"str": "Podeaua dubei"
},
{
"key": "BEF09CA34BAE3DC7635E8485BB667E28",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_17.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van exterior",
"str": "Exteriorul vanului"
},
{
"key": "4BA592A54AE29F2B8AA5DCB59A988A0F",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_18.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van Hanging doll",
"str": "Papusa Van Hanging"
},
{
"key": "7D2E931045A6E1506DEEC6BD2C264ED3",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_19.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van Left Side",
"str": "Van partea stângă"
},
{
"key": "109D973D484D997685448980DCB79533",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_2.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Floor",
"str": "Podea"
},
{
"key": "C539F07A44FA320908B87FADABCFB0C9",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_20.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van Right Side",
"str": "Van partea dreaptă"
},
{
"key": "164553EC4B6A9D265430F3B6A25830E5",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_21.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Van Bed",
"str": "Pat Van"
},
{
"key": "8D62136643D4EAA319AD22BBFD4C8FD1",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_3.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Statue",
"str": "Statuie"
},
{
"key": "6A1B28C14FD17FB8222E60837327DA35",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_3.sections_22_4031E9264112E4E86BC48BA9D729A311(0).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Object",
"str": "Obiect"
},
{
"key": "E7D75C9A40FB9B41721A46B5B7198EF1",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_3.sections_22_4031E9264112E4E86BC48BA9D729A311(1).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Sticker",
"str": "Autocolant"
},
{
"key": "A1DAA0264F4E98D0E7FF1E89CCEF4110",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_4.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Left Place",
"str": "Locul stâng"
},
{
"key": "D2EAFC9348E348C7516300BF122B9702",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_5.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Right Place",
"str": "Locul potrivit"
},
{
"key": "2F29E9E841620DC6B54893A7BE60FE77",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_6.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "Desktop",
"str": "Desktop"
},
{
"key": "7D39CA6640F288A9002846AE7D7F4041",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_6.sections_22_4031E9264112E4E86BC48BA9D729A311(0).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Mini Object",
"str": "Mini obiect"
},
{
"key": "0B88630D44BEE72FF2A76095115344A8",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_6.sections_22_4031E9264112E4E86BC48BA9D729A311(1).sections_22_4031E9264112E4E86BC48BA9D729A311.section_3_07527C2F4BE4A70097D1ACA12D7EA7DE",
"id": "Doll Object",
"str": "Obiect păpușă"
},
{
"key": "7095C09D4014D1FB9E4C1D9529586155",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_7.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "PC Left Side",
"str": "PC partea stângă"
},
{
"key": "1AEE02D7485216A7EBEC93AD95D81A25",
"location": "/Game/data-tables/customizerRooms.customizerRooms.NewRow_8.label_17_E97135F84728B1D3E2D91DAE099E4D25",
"id": "PC Right Side",
"str": "PC Partea dreapta"
},
{
"key": "D249146742516BB46178BA859A421873",
"location": "/Game/data-tables/itemList.itemList.NewRow.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Take doll photos for fill the clues",
"str": "Faceți fotografii păpușilor pentru a completa indicii"
},
{
"key": "69F832714D668740651DED8EBBD4EBB8",
"location": "/Game/data-tables/itemList.itemList.NewRow.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Camera",
"str": "Camera foto"
},
{
"key": "5471B2664F74874D8556F9B63E352A84",
"location": "/Game/data-tables/itemList.itemList.NewRow_1.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Take flashlight",
"str": "Luați lanterna"
},
{
"key": "4020C7B84456D9F178DC488EAB546977",
"location": "/Game/data-tables/itemList.itemList.NewRow_1.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Flashlight",
"str": "Lanternă"
},
{
"key": "93917B7240A1743F582D7E9208B16F62",
"location": "/Game/data-tables/itemList.itemList.NewRow_10.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Paper that reveals dislikes",
"str": "Hârtie care dezvăluie antipatiile"
},
{
"key": "2E06BFD64361FE191A01DD86C96EBAEE",
"location": "/Game/data-tables/itemList.itemList.NewRow_10.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Soul Dark Paper",
"str": "Sânge de șarpe"
},
{
"key": "AE174EC646F0BB590D3A1CAB82B6AC70",
"location": "/Game/data-tables/itemList.itemList.NewRow_11.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A small, dark, and shriveled heart.",
"str": "O inimă mică, întunecată și zbârcită."
},
{
"key": "F63BB439446A93B294D5789005AB927F",
"location": "/Game/data-tables/itemList.itemList.NewRow_11.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Crow's Heart",
"str": "Inima Corbului"
},
{
"key": "3B43B2384C4FFE5DE5823BAB1338EC37",
"location": "/Game/data-tables/itemList.itemList.NewRow_12.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "An ancient piece of paper.",
"str": "O bucată de hârtie străveche ."
},
{
"key": "CEB55E1E480248C3E1553AB0E3E06BA3",
"location": "/Game/data-tables/itemList.itemList.NewRow_12.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Parchment",
"str": "Pergament"
},
{
"key": "743C50254A73CE29F7B3D7858FFBA46F",
"location": "/Game/data-tables/itemList.itemList.NewRow_13.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Dark and thick liquid.",
"str": "Lichid întunecat și gros."
},
{
"key": "35FE04294F60A661E2A93E8CF5BAB2C9",
"location": "/Game/data-tables/itemList.itemList.NewRow_13.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Snake's Blood",
"str": "Sângele șarpelui"
},
{
"key": "1D8C5BFB408218C11B5F8E88DED5DDE0",
"location": "/Game/data-tables/itemList.itemList.NewRow_14.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Large and grayish feather.",
"str": "Pană mare și cenușie."
},
{
"key": "FD5D53AB4A626CFD46CF4E93053F9719",
"location": "/Game/data-tables/itemList.itemList.NewRow_14.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Vulture's feather",
"str": "Pană de vultur"
},
{
"key": "14AD66ED4AA7704FAEA0CD892A4DDD54",
"location": "/Game/data-tables/itemList.itemList.NewRow_15.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A white flower with soft petals.",
"str": "O floare albă cu petale moi."
},
{
"key": "6F62E8EE4D6306627A7D92B69CABCC13",
"location": "/Game/data-tables/itemList.itemList.NewRow_15.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Lily flower",
"str": "Floare de crin"
},
{
"key": "C28723EC476B280B7C783CAAD9FE2784",
"location": "/Game/data-tables/itemList.itemList.NewRow_16.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A white and delicate feather.",
"str": "O pană albă și delicată."
},
{
"key": "814D9929402ED9670B11B8A5F77DD89E",
"location": "/Game/data-tables/itemList.itemList.NewRow_16.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Dove's feather",
"str": "Pana de porumbel"
},
{
"key": "4E005C71470C8416B3B419B0E3E4CD6E",
"location": "/Game/data-tables/itemList.itemList.NewRow_17.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A clear and pure crystal.",
"str": "Un cristal limpede și pur."
},
{
"key": "34549E97462027359C04D69FE1AC1E77",
"location": "/Game/data-tables/itemList.itemList.NewRow_17.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Quartz crystal",
"str": "Cristal de cuarț"
},
{
"key": "821C250E485ED0C26041C8830F8E0625",
"location": "/Game/data-tables/itemList.itemList.NewRow_18.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A durable and flexible material.",
"str": "Un material durabil și flexibil."
},
{
"key": "008C17DA426E713F7F3A418B4FDE1BE4",
"location": "/Game/data-tables/itemList.itemList.NewRow_18.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Leather",
"str": "Piele"
},
{
"key": "F746170F4C38F9AE155525AEA0B83F1C",
"location": "/Game/data-tables/itemList.itemList.NewRow_19.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Soft and fragrant rose petals.",
"str": "Petale de trandafir moi și parfumate."
},
{
"key": "AF3764E04E32829AB3E75FBD938BF9C1",
"location": "/Game/data-tables/itemList.itemList.NewRow_19.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Rose Petals",
"str": "Petale de trandafir"
},
{
"key": "ADEEDBE04D10D55BE7B838934AC45E6C",
"location": "/Game/data-tables/itemList.itemList.NewRow_2.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Activate the final battle to uncover the impostor.",
"str": "Activați bătălia finală pentru a descoperi impostorul."
},
{
"key": "CA5357694E9708D4AC84699C2DC77CBD",
"location": "/Game/data-tables/itemList.itemList.NewRow_2.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Soul Book",
"str": "Cartea sufletelor"
},
{
"key": "F2BAB4874C2FDD509DA5CDA67FF91E37",
"location": "/Game/data-tables/itemList.itemList.NewRow_20.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A golden and sweet liquid.",
"str": "Un lichid auriu și dulce."
},
{
"key": "72400A564910846D7B2ECEAD2631331D",
"location": "/Game/data-tables/itemList.itemList.NewRow_20.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Honey",
"str": "Miere"
},
{
"key": "0A4EE34344113573CE97F6B1E7151DDE",
"location": "/Game/data-tables/itemList.itemList.NewRow_21.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A fragrant vanilla pod.",
"str": "O pastaie de vanilie parfumata."
},
{
"key": "DDB9D7494B887F84ABF6FA9C68A57B95",
"location": "/Game/data-tables/itemList.itemList.NewRow_21.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Vanilla",
"str": "Vanilie"
},
{
"key": "9CAB638548874B5E9D71628F2EE226D1",
"location": "/Game/data-tables/itemList.itemList.NewRow_22.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A transparent and elegant container.",
"str": "Un recipient transparent și elegant."
},
{
"key": "8D70CD774E635393573985830A5099B8",
"location": "/Game/data-tables/itemList.itemList.NewRow_22.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Crystal Bottle",
"str": "Sticla de cristal"
},
{
"key": "653072BC4D6CCFF0D204B6B4887A557F",
"location": "/Game/data-tables/itemList.itemList.NewRow_23.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Dark and pungent bulb.",
"str": "Bec întunecat și înțepător."
},
{
"key": "20C95AA345D28767010999ADA95FBAE7",
"location": "/Game/data-tables/itemList.itemList.NewRow_23.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Black Garlic",
"str": "Usturoiul negru"
},
{
"key": "F249EDB640DA6D9A4C0334BE6E3B5DAB",
"location": "/Game/data-tables/itemList.itemList.NewRow_24.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A bitter and viscous liquid.",
"str": "Un lichid amar și vâscos."
},
{
"key": "F3539C0B4A4D262BEEADFCBC91E58848",
"location": "/Game/data-tables/itemList.itemList.NewRow_24.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Toad Bile",
"str": "Bilă de broască"
},
{
"key": "8B556C7E4DB153BCF7AF4AA0042DBADC",
"location": "/Game/data-tables/itemList.itemList.NewRow_25.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Green and stinging leaves.",
"str": "Frunze verzi si usturatoare."
},
{
"key": "F5FA5A154002D6C4EDB30FB45794A50A",
"location": "/Game/data-tables/itemList.itemList.NewRow_25.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Nettle",
"str": "Urzica"
},
{
"key": "E67B208049756CC3B5F16089AC41B470",
"location": "/Game/data-tables/itemList.itemList.NewRow_26.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Refreshing green leaves.",
"str": "Frunze verzi răcoritoare."
},
{
"key": "AC46E8C5498572C242CBADA69A94A0A7",
"location": "/Game/data-tables/itemList.itemList.NewRow_26.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Mint",
"str": "Mentă"
},
{
"key": "FD27A6D94DD43A861953BA81606B6B11",
"location": "/Game/data-tables/itemList.itemList.NewRow_27.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A fragrant cinnamon stick.",
"str": "Un baton de scortisoara parfumat."
},
{
"key": "01C8EACC48F42AB3BC9A26B9A45C3E10",
"location": "/Game/data-tables/itemList.itemList.NewRow_27.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Cinnamon",
"str": "Scorţişoară"
},
{
"key": "6FDA4FB448EF65CB05B874842143CD74",
"location": "/Game/data-tables/itemList.itemList.NewRow_28.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Small and juicy fruits.",
"str": "Fructe mici și suculente."
},
{
"key": "091617E74F451B4492E4B78A534E9BF3",
"location": "/Game/data-tables/itemList.itemList.NewRow_28.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Berries",
"str": "Fructe de pădure"
},
{
"key": "24B7D6584C3AF4730B3365BB46DDA130",
"location": "/Game/data-tables/itemList.itemList.NewRow_29.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Dark and toxic leaves.",
"str": "Frunze întunecate și toxice."
},
{
"key": "4852DFEF4B35409C425DA1B5468B83D9",
"location": "/Game/data-tables/itemList.itemList.NewRow_29.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Belladonna leaves",
"str": "Belladonna pleacă"
},
{
"key": "D597FBE342A7B8B23676A3BB4B81D863",
"location": "/Game/data-tables/itemList.itemList.NewRow_3.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Take notes on the behavior of the dolls",
"str": "Ia notițe despre comportamentul păpușilor"
},
{
"key": "ED2F4CB1487E0D6D9070899567BB98B0",
"location": "/Game/data-tables/itemList.itemList.NewRow_3.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Notebook",
"str": "Caiet"
},
{
"key": "F9560AD34A829952AE5F5498756E174C",
"location": "/Game/data-tables/itemList.itemList.NewRow_30.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Clear and lethal liquid.",
"str": "Lichid limpede și letal."
},
{
"key": "32F257464B93572E3D0BF293BA036023",
"location": "/Game/data-tables/itemList.itemList.NewRow_30.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Scorpion Venom",
"str": "Venin de scorpion"
},
{
"key": "17BF9A32484E32062DAF9F8542DD97A7",
"location": "/Game/data-tables/itemList.itemList.NewRow_31.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A gnarled and sinister root.",
"str": "O rădăcină noduroasă și sinistră."
},
{
"key": "F671810346E2F778C0E4E7BA69FE7D9C",
"location": "/Game/data-tables/itemList.itemList.NewRow_31.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Mandrake Root",
"str": "Rădăcină de Mandrake"
},
{
"key": "C6C0EE3547F1545A84D8268AC0025132",
"location": "/Game/data-tables/itemList.itemList.NewRow_32.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Portable device that produces a flame to start a fire.",
"str": "Dispozitiv portabil care produce o flacără pentru a aprinde un foc."
},
{
"key": "AB25CB294CD7BEF8559DFA89B96B8F9B",
"location": "/Game/data-tables/itemList.itemList.NewRow_32.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Lighter",
"str": "Brichetă"
},
{
"key": "3B56E6BC4AEDD9945911B29AC8342F9D",
"location": "/Game/data-tables/itemList.itemList.NewRow_33.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Spacious bag",
"str": "Geanta spatioasa"
},
{
"key": "9412FB8146653EECA5DBB2BD2504B413",
"location": "/Game/data-tables/itemList.itemList.NewRow_33.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Bag",
"str": "Sac"
},
{
"key": "BF1AC59D4D99C0F9E92606B3C78A909C",
"location": "/Game/data-tables/itemList.itemList.NewRow_34.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A precious gemstone known for its extreme hardness and brilliance, commonly used in jewelry and valued for its purity and rarity.",
"str": "O piatră prețioasă cunoscută pentru duritatea și strălucirea sa extremă, folosită în mod obișnuit în bijuterii și apreciată pentru puritatea și raritatea sa."
},
{
"key": "6BF7F5344FD96A246EE841869E9C0DB0",
"location": "/Game/data-tables/itemList.itemList.NewRow_34.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Diamond",
"str": "Diamant"
},
{
"key": "C4B2BB4B48FA324D2BC7979577E55027",
"location": "/Game/data-tables/itemList.itemList.NewRow_35.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A solid block of refined gold, highly pure, used as an investment or store of value, characterized by its weight and golden luster.",
"str": "Un bloc solid de aur rafinat, extrem de pur, folosit ca investiție sau depozit de valoare, caracterizat prin greutatea și strălucirea aurie."
},
{
"key": "22B8C07045CAEA974D03AD9C0D933A4E",
"location": "/Game/data-tables/itemList.itemList.NewRow_35.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Gold Bar",
"str": "Lingoul de aur"
},
{
"key": "415807E5403F54FCC16EEA9338CF267F",
"location": "/Game/data-tables/itemList.itemList.NewRow_36.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "A trophy in the shape of a cup, usually golden, awarded as a symbol of victory in sports competitions or prestigious ceremonies.",
"str": "Un trofeu în formă de cupă, de obicei auriu, acordat ca simbol al victoriei în competiții sportive sau ceremonii prestigioase."
},
{
"key": "9A3A87B047A1CC933C4F6197811B657B",
"location": "/Game/data-tables/itemList.itemList.NewRow_36.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Gold Cup",
"str": "Cupa de aur"
},
{
"key": "86BE55834614BDEE6BACCD821A069F89",
"location": "/Game/data-tables/itemList.itemList.NewRow_37.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "An elegant piece of jewelry made up of a string of round pearls, known for their soft luster and associated with sophistication and luxury.",
"str": "O bijuterie elegantă alcătuită dintr-un șir de perle rotunde, cunoscute pentru luciul lor moale și asociate cu rafinament și lux."
},
{
"key": "82B77C5A456740B0D72910B21AF4A463",
"location": "/Game/data-tables/itemList.itemList.NewRow_37.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Pearl Necklace",
"str": "Colier de perle"
},
{
"key": "C0FD3F65464661A0D220FFAF9A25C2D4",
"location": "/Game/data-tables/itemList.itemList.NewRow_4.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Fuse to activate electrical circuits",
"str": "Siguranță pentru activarea circuitelor electrice"
},
{
"key": "DE011C1944710509D6330C8C62491DBA",
"location": "/Game/data-tables/itemList.itemList.NewRow_4.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Fuse",
"str": "Siguranță"
},
{
"key": "8841057C4E79D1D004AE35BDDA5930D6",
"location": "/Game/data-tables/itemList.itemList.NewRow_5.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Elixir that reveals hatred",
"str": "Elixir care dezvăluie ura"
},
{
"key": "B377188C494F5DA03FE7E8A6C86AB940",
"location": "/Game/data-tables/itemList.itemList.NewRow_6.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Elixir that reveals friendship",
"str": "Elixir care dezvăluie prietenia"
},
{
"key": "7EB47B9449369EB3E3F18C972CC18786",
"location": "/Game/data-tables/itemList.itemList.NewRow_7.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Elixir that reveals enmity",
"str": "Elixir care dezvăluie dușmănia"
},
{
"key": "58DD772D4ABE943A14B03D9A569701B6",
"location": "/Game/data-tables/itemList.itemList.NewRow_8.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Elixir that reveals love",
"str": "Elixir care dezvăluie dragostea"
},
{
"key": "92CDFBB847F726D64FF6169E8B2A6631",
"location": "/Game/data-tables/itemList.itemList.NewRow_9.info_16_4DFA58E54C75086154A8DC9A319FD10E",
"id": "Paper that reveals likes",
"str": "Hârtie care dezvăluie like-uri"
},
{
"key": "FF45EB7F42E49E1D9D364DAFAB0467BE",
"location": "/Game/data-tables/itemList.itemList.NewRow_9.name_12_D217604B46FF9197C7004FBE2050F6FD",
"id": "Soul Paper",
"str": "Hârtia de suflet"
},
{
"key": "D955FAE74433E108EB3C078EF42B2DC8",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(0).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Quiet",
"str": "Liniștea"
},
{
"key": "B53AF9564736AB6B4D8F2C81FD9CE5F6",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(1).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Unnoticed",
"str": "Neobservat"
},
{
"key": "4F13E4CD4029EC13370EF7B54BCF3D90",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(10).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Governor",
"str": "Guvernatorul"
},
{
"key": "740E2993476C6AB0DEDC3BA514B0FF5F",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(11).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Comedian",
"str": "Comediantul"
},
{
"key": "8B7A2813470D5B634D42F1B18FD1C975",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(12).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Acrobat",
"str": "Acrobatul"
},
{
"key": "75A0760B4CF756F7572751980578A7E4",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(13).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Single",
"str": "Singurul"
},
{
"key": "D618A4A346B0EA7CBABE00AA94C80485",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(14).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Count",
"str": "Contele"
},
{
"key": "B46005B1494B233FC63D6C92DB922873",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(15).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Doorman",
"str": "Portarul"
},
{
"key": "CF3A6ECB45A9488C10D246A3FD143977",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(16).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Weasel",
"str": "Nevăstuica"
},
{
"key": "143BBE1843E5BD9D98FB8C9B4041B306",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(17).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Beautiful",
"str": "Frumosul"
},
{
"key": "DFCF9FFA438E6B63C7745586401C14BA",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(18).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The New",
"str": "Noul"
},
{
"key": "D8CB256A4FC1286A3BD465B95B7398D6",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(19).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Flirt",
"str": "Flirtul"
},
{
"key": "1D5965BE4639794BCFFC6BA942EC1A62",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(2).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Gentleman",
"str": "Domnul"
},
{
"key": "73AD26AC4F1BCAD5E64E5E889E9D9A79",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(3).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Traitor",
"str": "Trădătorul"
},
{
"key": "996579D246DE71F2608BB5BF8C353DA4",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(4).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Kid",
"str": "Copilul"
},
{
"key": "0375A2D542A72CFAD4E4CA8A30C56CC4",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(5).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Duchess",
"str": "Ducesa"
},
{
"key": "FA4E21624A2D966B1B2ED19005131257",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(6).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Traditional",
"str": "Tradiționalul"
},
{
"key": "D03A184741DBDC2985FBC9A454F19494",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(7).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Nervous",
"str": "Nervosul"
},
{
"key": "60747A674F244C50BD7C42986DD084AD",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(8).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Widow",
"str": "Văduva"
},
{
"key": "554BB9D046155183D4DCF7A14F96171E",
"location": "/Game/data-tables/mapList.mapList.NewRow.dolls_9_7FEB33284744601C3269539AAFDB6152(9).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Duke",
"str": "Ducele"
},
{
"key": "F28247BF4A488DEE853285BA1EBC6188",
"location": "/Game/data-tables/mapList.mapList.NewRow_0.name_18_82096130492E34A890A0138C4910D929",
"id": "House",
"str": "Casa"
},
{
"key": "B4AEF1D44E3C8E5E66BF539EAD22F342",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(0).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Terrifying",
"str": "Înspăimântătoarea"
},
{
"key": "C8A00764485261B746BFEE94C58D6ECA",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(1).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Scary",
"str": "Înfricoșător"
},
{
"key": "493B1FBE4D84E9D9798F7D8AAD0CF937",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(10).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Ominous",
"str": "Cel Amenințător"
},
{
"key": "DAFC2C134E48E1FBE3399C9D15E37173",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(11).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Unsettling",
"str": "Neliniștitorul"
},
{
"key": "F22CBEE0429B4D716137DE9A58D8A371",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(12).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",
"id": "The Frightening",
"str": "Înspăimântătoarea"
},
{
"key": "D0B2C8BA4674F0C2C3F6CAB676B10CBF",
"location": "/Game/data-tables/mapList.mapList.NewRow_1.dolls_9_7FEB33284744601C3269539AAFDB6152(13).dolls_9_7FEB33284744601C3269539AAFDB6152.alias_32_BCA92BEA4AAFD6928073EDABA20013F5",