-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.json
More file actions
3332 lines (3332 loc) · 115 KB
/
Copy pathtemplate.json
File metadata and controls
3332 lines (3332 loc) · 115 KB
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
[
{
"path": "augments/idols/bear idol.mp3",
"tts_text": "bear idol",
"ssml_text": "<prosody rate='fast'>bear idol</prosody>"
},
{
"path": "augments/idols/boar idol.mp3",
"tts_text": "boar idol",
"ssml_text": "<prosody rate='fast'>boar idol</prosody>"
},
{
"path": "augments/idols/cat idol.mp3",
"tts_text": "cat idol",
"ssml_text": "<prosody rate='fast'>cat idol</prosody>"
},
{
"path": "augments/idols/fox idol.mp3",
"tts_text": "fox idol",
"ssml_text": "<prosody rate='fast'>fox idol</prosody>"
},
{
"path": "augments/idols/hawk idol.mp3",
"tts_text": "hawk idol",
"ssml_text": "<prosody rate='fast'>hawk idol</prosody>"
},
{
"path": "augments/idols/idol of eeshta.mp3",
"tts_text": "idol of eeshta",
"ssml_text": "<prosody rate='fast'>idol of eeshta</prosody>"
},
{
"path": "augments/idols/idol of egrin.mp3",
"tts_text": "idol of egrin",
"ssml_text": "<prosody rate='fast'>idol of egrin</prosody>"
},
{
"path": "augments/idols/idol of grold.mp3",
"tts_text": "idol of grold",
"ssml_text": "<prosody rate='fast'>idol of grold</prosody>"
},
{
"path": "augments/idols/idol of maxarius.mp3",
"tts_text": "idol of maxarius",
"ssml_text": "<prosody rate='fast'>idol of maxarius</prosody>"
},
{
"path": "augments/idols/idol of ralakesh.mp3",
"tts_text": "idol of ralakesh",
"ssml_text": "<prosody rate='fast'>idol of ralakesh</prosody>"
},
{
"path": "augments/idols/idol of sirrius.mp3",
"tts_text": "idol of sirrius",
"ssml_text": "<prosody rate='fast'>idol of sirrius</prosody>"
},
{
"path": "augments/idols/idol of thruldana.mp3",
"tts_text": "idol of thruldana",
"ssml_text": "<prosody rate='fast'>idol of thruldana</prosody>"
},
{
"path": "augments/idols/owl idol.mp3",
"tts_text": "owl idol",
"ssml_text": "<prosody rate='fast'>owl idol</prosody>"
},
{
"path": "augments/idols/ox idol.mp3",
"tts_text": "ox idol",
"ssml_text": "<prosody rate='fast'>ox idol</prosody>"
},
{
"path": "augments/idols/panther idol.mp3",
"tts_text": "panther idol",
"ssml_text": "<prosody rate='fast'>panther idol</prosody>"
},
{
"path": "augments/idols/primate idol.mp3",
"tts_text": "primate idol",
"ssml_text": "<prosody rate='fast'>primate idol</prosody>"
},
{
"path": "augments/idols/rabbit idol.mp3",
"tts_text": "rabbit idol",
"ssml_text": "<prosody rate='fast'>rabbit idol</prosody>"
},
{
"path": "augments/idols/snake idol.mp3",
"tts_text": "snake idol",
"ssml_text": "<prosody rate='fast'>snake idol</prosody>"
},
{
"path": "augments/idols/stag idol.mp3",
"tts_text": "stag idol",
"ssml_text": "<prosody rate='fast'>stag idol</prosody>"
},
{
"path": "augments/idols/stoat idol.mp3",
"tts_text": "stoat idol",
"ssml_text": "<prosody rate='fast'>stoat idol</prosody>"
},
{
"path": "augments/idols/wolf idol.mp3",
"tts_text": "wolf idol",
"ssml_text": "<prosody rate='fast'>wolf idol</prosody>"
},
{
"path": "augments/runes/adept rune.mp3",
"tts_text": "adept rune",
"ssml_text": "<prosody rate='fast'>adept rune</prosody>"
},
{
"path": "augments/runes/body rune.mp3",
"tts_text": "body rune",
"ssml_text": "<prosody rate='fast'>body rune</prosody>"
},
{
"path": "augments/runes/charging rune.mp3",
"tts_text": "charging rune",
"ssml_text": "<prosody rate='fast'>charging rune</prosody>"
},
{
"path": "augments/runes/desert rune.mp3",
"tts_text": "desert rune",
"ssml_text": "<prosody rate='fast'>desert rune</prosody>"
},
{
"path": "augments/runes/glacial rune.mp3",
"tts_text": "glacial rune",
"ssml_text": "<prosody rate='fast'>glacial rune</prosody>"
},
{
"path": "augments/runes/greater adept rune.mp3",
"tts_text": "greater adept rune",
"ssml_text": "<prosody rate='fast'>greater adept rune</prosody>"
},
{
"path": "augments/runes/greater body rune.mp3",
"tts_text": "greater body rune",
"ssml_text": "<prosody rate='fast'>greater body rune</prosody>"
},
{
"path": "augments/runes/greater charging rune.mp3",
"tts_text": "greater charging rune",
"ssml_text": "<prosody rate='fast'>greater charging rune</prosody>"
},
{
"path": "augments/runes/greater desert rune.mp3",
"tts_text": "greater desert rune",
"ssml_text": "<prosody rate='fast'>greater desert rune</prosody>"
},
{
"path": "augments/runes/greater glacial rune.mp3",
"tts_text": "greater glacial rune",
"ssml_text": "<prosody rate='fast'>greater glacial rune</prosody>"
},
{
"path": "augments/runes/greater inspiration rune.mp3",
"tts_text": "greater inspiration rune",
"ssml_text": "<prosody rate='fast'>greater inspiration rune</prosody>"
},
{
"path": "augments/runes/greater iron rune.mp3",
"tts_text": "greater iron rune",
"ssml_text": "<prosody rate='fast'>greater iron rune</prosody>"
},
{
"path": "augments/runes/greater mind rune.mp3",
"tts_text": "greater mind rune",
"ssml_text": "<prosody rate='fast'>greater mind rune</prosody>"
},
{
"path": "augments/runes/greater rebirth rune.mp3",
"tts_text": "greater rebirth rune",
"ssml_text": "<prosody rate='fast'>greater rebirth rune</prosody>"
},
{
"path": "augments/runes/greater resolve rune.mp3",
"tts_text": "greater resolve rune",
"ssml_text": "<prosody rate='fast'>greater resolve rune</prosody>"
},
{
"path": "augments/runes/greater robust rune.mp3",
"tts_text": "greater robust rune",
"ssml_text": "<prosody rate='fast'>greater robust rune</prosody>"
},
{
"path": "augments/runes/greater rune of alacrity.mp3",
"tts_text": "greater alacrity rune",
"ssml_text": "<prosody rate='fast'>greater alacrity rune</prosody>"
},
{
"path": "augments/runes/greater rune of leadership.mp3",
"tts_text": "greater leadership rune",
"ssml_text": "<prosody rate='fast'>greater leadership rune</prosody>"
},
{
"path": "augments/runes/greater rune of nobility.mp3",
"tts_text": "greater nobility rune",
"ssml_text": "<prosody rate='fast'>greater nobility rune</prosody>"
},
{
"path": "augments/runes/greater rune of tithing.mp3",
"tts_text": "greater tithing rune",
"ssml_text": "<prosody rate='fast'>greater tithing rune</prosody>"
},
{
"path": "augments/runes/greater stone rune.mp3",
"tts_text": "greater stone rune",
"ssml_text": "<prosody rate='fast'>greater stone rune</prosody>"
},
{
"path": "augments/runes/greater storm rune.mp3",
"tts_text": "greater storm rune",
"ssml_text": "<prosody rate='fast'>greater storm rune</prosody>"
},
{
"path": "augments/runes/greater vision rune.mp3",
"tts_text": "greater vision rune",
"ssml_text": "<prosody rate='fast'>greater vision rune</prosody>"
},
{
"path": "augments/runes/greater ward rune.mp3",
"tts_text": "greater ward rune",
"ssml_text": "<prosody rate='fast'>greater ward rune</prosody>"
},
{
"path": "augments/runes/inspiration rune.mp3",
"tts_text": "inspiration rune",
"ssml_text": "<prosody rate='fast'>inspiration rune</prosody>"
},
{
"path": "augments/runes/iron rune.mp3",
"tts_text": "iron rune",
"ssml_text": "<prosody rate='fast'>iron rune</prosody>"
},
{
"path": "augments/runes/lesser adept rune.mp3",
"tts_text": "lesser adept rune",
"ssml_text": "<prosody rate='fast'>lesser adept rune</prosody>"
},
{
"path": "augments/runes/lesser body rune.mp3",
"tts_text": "lesser body rune",
"ssml_text": "<prosody rate='fast'>lesser body rune</prosody>"
},
{
"path": "augments/runes/lesser charging rune.mp3",
"tts_text": "lesser charging rune",
"ssml_text": "<prosody rate='fast'>lesser charging rune</prosody>"
},
{
"path": "augments/runes/lesser desert rune.mp3",
"tts_text": "lesser desert rune",
"ssml_text": "<prosody rate='fast'>lesser desert rune</prosody>"
},
{
"path": "augments/runes/lesser glacial rune.mp3",
"tts_text": "lesser glacial rune",
"ssml_text": "<prosody rate='fast'>lesser glacial rune</prosody>"
},
{
"path": "augments/runes/lesser inspiration rune.mp3",
"tts_text": "lesser inspiration rune",
"ssml_text": "<prosody rate='fast'>lesser inspiration rune</prosody>"
},
{
"path": "augments/runes/lesser iron rune.mp3",
"tts_text": "lesser iron rune",
"ssml_text": "<prosody rate='fast'>lesser iron rune</prosody>"
},
{
"path": "augments/runes/lesser mind rune.mp3",
"tts_text": "lesser mind rune",
"ssml_text": "<prosody rate='fast'>lesser mind rune</prosody>"
},
{
"path": "augments/runes/lesser rebirth rune.mp3",
"tts_text": "lesser rebirth rune",
"ssml_text": "<prosody rate='fast'>lesser rebirth rune</prosody>"
},
{
"path": "augments/runes/lesser resolve rune.mp3",
"tts_text": "lesser resolve rune",
"ssml_text": "<prosody rate='fast'>lesser resolve rune</prosody>"
},
{
"path": "augments/runes/lesser robust rune.mp3",
"tts_text": "lesser robust rune",
"ssml_text": "<prosody rate='fast'>lesser robust rune</prosody>"
},
{
"path": "augments/runes/lesser stone rune.mp3",
"tts_text": "lesser stone rune",
"ssml_text": "<prosody rate='fast'>lesser stone rune</prosody>"
},
{
"path": "augments/runes/lesser storm rune.mp3",
"tts_text": "lesser storm rune",
"ssml_text": "<prosody rate='fast'>lesser storm rune</prosody>"
},
{
"path": "augments/runes/lesser vision rune.mp3",
"tts_text": "lesser vision rune",
"ssml_text": "<prosody rate='fast'>lesser vision rune</prosody>"
},
{
"path": "augments/runes/lesser ward rune.mp3",
"tts_text": "lesser ward rune",
"ssml_text": "<prosody rate='fast'>lesser ward rune</prosody>"
},
{
"path": "augments/runes/mind rune.mp3",
"tts_text": "mind rune",
"ssml_text": "<prosody rate='fast'>mind rune</prosody>"
},
{
"path": "augments/runes/rebirth rune.mp3",
"tts_text": "rebirth rune",
"ssml_text": "<prosody rate='fast'>rebirth rune</prosody>"
},
{
"path": "augments/runes/resolve rune.mp3",
"tts_text": "resolve rune",
"ssml_text": "<prosody rate='fast'>resolve rune</prosody>"
},
{
"path": "augments/runes/robust rune.mp3",
"tts_text": "robust rune",
"ssml_text": "<prosody rate='fast'>robust rune</prosody>"
},
{
"path": "augments/runes/stone rune.mp3",
"tts_text": "stone rune",
"ssml_text": "<prosody rate='fast'>stone rune</prosody>"
},
{
"path": "augments/runes/storm rune.mp3",
"tts_text": "storm rune",
"ssml_text": "<prosody rate='fast'>storm rune</prosody>"
},
{
"path": "augments/runes/vision rune.mp3",
"tts_text": "vision rune",
"ssml_text": "<prosody rate='fast'>vision rune</prosody>"
},
{
"path": "augments/runes/ward rune.mp3",
"tts_text": "ward rune",
"ssml_text": "<prosody rate='fast'>ward rune</prosody>"
},
{
"path": "augments/soul cores/soul core of atmohua.mp3",
"tts_text": "soul core of atmohua",
"ssml_text": "<prosody rate='fast'>soul core of atmohua</prosody>"
},
{
"path": "augments/soul cores/soul core of azcapa.mp3",
"tts_text": "soul core of azcapa",
"ssml_text": "<prosody rate='fast'>soul core of azcapa</prosody>"
},
{
"path": "augments/soul cores/soul core of cholotl.mp3",
"tts_text": "soul core of cholotl",
"ssml_text": "<prosody rate='fast'>soul core of cholotl</prosody>"
},
{
"path": "augments/soul cores/soul core of citaqualotl.mp3",
"tts_text": "soul core of citaqualotl",
"ssml_text": "<prosody rate='fast'>soul core of citaqualotl</prosody>"
},
{
"path": "augments/soul cores/soul core of citaqualotl.mp3",
"tts_text": "soul core of citaqualotl",
"ssml_text": "<prosody rate='fast'>soul core of citaqualotl</prosody>"
},
{
"path": "augments/soul cores/soul core of jiquani.mp3",
"tts_text": "soul core of jiquani",
"ssml_text": "<prosody rate='fast'>soul core of jiquani</prosody>"
},
{
"path": "augments/soul cores/soul core of jiquani.mp3",
"tts_text": "soul core of jiquani",
"ssml_text": "<prosody rate='fast'>soul core of jiquani</prosody>"
},
{
"path": "augments/soul cores/soul core of opiloti.mp3",
"tts_text": "soul core of opiloti",
"ssml_text": "<prosody rate='fast'>soul core of opiloti</prosody>"
},
{
"path": "augments/soul cores/soul core of puhuarte.mp3",
"tts_text": "soul core of puhuarte",
"ssml_text": "<prosody rate='fast'>soul core of puhuarte</prosody>"
},
{
"path": "augments/soul cores/soul core of quipolatl.mp3",
"tts_text": "soul core of quipolatl",
"ssml_text": "<prosody rate='fast'>soul core of quipolatl</prosody>"
},
{
"path": "augments/soul cores/soul core of tacati.mp3",
"tts_text": "soul core of tacati",
"ssml_text": "<prosody rate='fast'>soul core of tacati</prosody>"
},
{
"path": "augments/soul cores/soul core of ticaba.mp3",
"tts_text": "soul core of ticaba",
"ssml_text": "<prosody rate='fast'>soul core of ticaba</prosody>"
},
{
"path": "augments/soul cores/soul core of topotante.mp3",
"tts_text": "soul core of topotante",
"ssml_text": "<prosody rate='fast'>soul core of topotante</prosody>"
},
{
"path": "augments/soul cores/soul core of tzamoto.mp3",
"tts_text": "soul core of tzamoto",
"ssml_text": "<prosody rate='fast'>soul core of tzamoto</prosody>"
},
{
"path": "augments/soul cores/soul core of xopec.mp3",
"tts_text": "soul core of xopec",
"ssml_text": "<prosody rate='fast'>soul core of xopec</prosody>"
},
{
"path": "augments/soul cores/soul core of zalatl.mp3",
"tts_text": "soul core of zalatl",
"ssml_text": "<prosody rate='fast'>soul core of zalatl</prosody>"
},
{
"path": "augments/soul cores/soul core of zantipi.mp3",
"tts_text": "soul core of zantipi",
"ssml_text": "<prosody rate='fast'>soul core of zantipi</prosody>"
},
{
"path": "basetypes/1h maces/bandit mace.mp3",
"tts_text": "bandit mace",
"ssml_text": "<prosody rate='fast'>bandit mace</prosody>"
},
{
"path": "basetypes/1h maces/brigand mace.mp3",
"tts_text": "brigand mace",
"ssml_text": "<prosody rate='fast'>brigand mace</prosody>"
},
{
"path": "basetypes/1h maces/construct hammer.mp3",
"tts_text": "construct hammer",
"ssml_text": "<prosody rate='fast'>construct hammer</prosody>"
},
{
"path": "basetypes/1h maces/jade club.mp3",
"tts_text": "jade club",
"ssml_text": "<prosody rate='fast'>jade club</prosody>"
},
{
"path": "basetypes/1h maces/marching mace.mp3",
"tts_text": "marching mace",
"ssml_text": "<prosody rate='fast'>marching mace</prosody>"
},
{
"path": "basetypes/1h maces/morning star.mp3",
"tts_text": "morning star",
"ssml_text": "<prosody rate='fast'>morning star</prosody>"
},
{
"path": "basetypes/1h maces/plated mace.mp3",
"tts_text": "plated mace",
"ssml_text": "<prosody rate='fast'>plated mace</prosody>"
},
{
"path": "basetypes/1h maces/slim mace.mp3",
"tts_text": "slim mace",
"ssml_text": "<prosody rate='fast'>slim mace</prosody>"
},
{
"path": "basetypes/1h maces/smithing hammer.mp3",
"tts_text": "smithing hammer",
"ssml_text": "<prosody rate='fast'>smithing hammer</prosody>"
},
{
"path": "basetypes/1h maces/spiked club.mp3",
"tts_text": "spiked club",
"ssml_text": "<prosody rate='fast'>spiked club</prosody>"
},
{
"path": "basetypes/1h maces/structured hammer.mp3",
"tts_text": "structured hammer",
"ssml_text": "<prosody rate='fast'>structured hammer</prosody>"
},
{
"path": "basetypes/1h maces/warpick.mp3",
"tts_text": "warpick",
"ssml_text": "<prosody rate='fast'>warpick</prosody>"
},
{
"path": "basetypes/1h maces/wooden club.mp3",
"tts_text": "wooden club",
"ssml_text": "<prosody rate='fast'>wooden club</prosody>"
},
{
"path": "basetypes/2h maces/crumbling maul.mp3",
"tts_text": "crumbling maul",
"ssml_text": "<prosody rate='fast'>crumbling maul</prosody>"
},
{
"path": "basetypes/2h maces/cultist greathammer.mp3",
"tts_text": "cultist great hammer",
"ssml_text": "<prosody rate='fast'>cultist greathammer</prosody>"
},
{
"path": "basetypes/2h maces/disintegrating maul.mp3",
"tts_text": "disintegrating maul",
"ssml_text": "<prosody rate='fast'>disintegrating maul</prosody>"
},
{
"path": "basetypes/2h maces/felled greatclub.mp3",
"tts_text": "felled greatclub",
"ssml_text": "<prosody rate='fast'>felled greatclub</prosody>"
},
{
"path": "basetypes/2h maces/forge maul.mp3",
"tts_text": "forge maul",
"ssml_text": "<prosody rate='fast'>forge maul</prosody>"
},
{
"path": "basetypes/2h maces/heavy greathammer.mp3",
"tts_text": "heavy great hammer",
"ssml_text": "<prosody rate='fast'>heavy greathammer</prosody>"
},
{
"path": "basetypes/2h maces/leaden greathammer.mp3",
"tts_text": "leaden great hammer",
"ssml_text": "<prosody rate='fast'>leaden greathammer</prosody>"
},
{
"path": "basetypes/2h maces/oak greathammer.mp3",
"tts_text": "oak great hammer",
"ssml_text": "<prosody rate='fast'>oak greathammer</prosody>"
},
{
"path": "basetypes/2h maces/pointed maul.mp3",
"tts_text": "pointed maul",
"ssml_text": "<prosody rate='fast'>pointed maul</prosody>"
},
{
"path": "basetypes/2h maces/solemn maul.mp3",
"tts_text": "solemn maul",
"ssml_text": "<prosody rate='fast'>solemn maul</prosody>"
},
{
"path": "basetypes/2h maces/studded greatclub.mp3",
"tts_text": "studded greatclub",
"ssml_text": "<prosody rate='fast'>studded greatclub</prosody>"
},
{
"path": "basetypes/2h maces/temple maul.mp3",
"tts_text": "temple maul",
"ssml_text": "<prosody rate='fast'>temple maul</prosody>"
},
{
"path": "basetypes/2h maces/totemic greatclub.mp3",
"tts_text": "totemic greatclub",
"ssml_text": "<prosody rate='fast'>totemic greatclub</prosody>"
},
{
"path": "basetypes/amulets/amber amulet.mp3",
"tts_text": "amber amulet",
"ssml_text": "<prosody rate='fast'>amber amulet</prosody>"
},
{
"path": "basetypes/amulets/azure amulet.mp3",
"tts_text": "azure amulet",
"ssml_text": "<prosody rate='fast'>azure amulet</prosody>"
},
{
"path": "basetypes/amulets/bloodstone amulet.mp3",
"tts_text": "bloodstone amulet",
"ssml_text": "<prosody rate='fast'>bloodstone amulet</prosody>"
},
{
"path": "basetypes/amulets/crimson amulet.mp3",
"tts_text": "crimson amulet",
"ssml_text": "<prosody rate='fast'>crimson amulet</prosody>"
},
{
"path": "basetypes/amulets/gold amulet.mp3",
"tts_text": "gold amulet",
"ssml_text": "<prosody rate='fast'>gold amulet</prosody>"
},
{
"path": "basetypes/amulets/jade amulet.mp3",
"tts_text": "jade amulet",
"ssml_text": "<prosody rate='fast'>jade amulet</prosody>"
},
{
"path": "basetypes/amulets/lapis amulet.mp3",
"tts_text": "lapis amulet",
"ssml_text": "<prosody rate='fast'>lapis amulet</prosody>"
},
{
"path": "basetypes/amulets/lunar amulet.mp3",
"tts_text": "lunar amulet",
"ssml_text": "<prosody rate='fast'>lunar amulet</prosody>"
},
{
"path": "basetypes/amulets/pearlescent amulet.mp3",
"tts_text": "pearlescent amulet",
"ssml_text": "<prosody rate='fast'>pearlescent amulet</prosody>"
},
{
"path": "basetypes/amulets/solar amulet.mp3",
"tts_text": "solar amulet",
"ssml_text": "<prosody rate='fast'>solar amulet</prosody>"
},
{
"path": "basetypes/amulets/stellar amulet.mp3",
"tts_text": "stellar amulet",
"ssml_text": "<prosody rate='fast'>stellar amulet</prosody>"
},
{
"path": "basetypes/belts/double belt.mp3",
"tts_text": "double belt",
"ssml_text": "<prosody rate='fast'>double belt</prosody>"
},
{
"path": "basetypes/belts/fine belt.mp3",
"tts_text": "fine belt",
"ssml_text": "<prosody rate='fast'>fine belt</prosody>"
},
{
"path": "basetypes/belts/heavy belt.mp3",
"tts_text": "heavy belt",
"ssml_text": "<prosody rate='fast'>heavy belt</prosody>"
},
{
"path": "basetypes/belts/linen belt.mp3",
"tts_text": "linen belt",
"ssml_text": "<prosody rate='fast'>linen belt</prosody>"
},
{
"path": "basetypes/belts/long belt.mp3",
"tts_text": "long belt",
"ssml_text": "<prosody rate='fast'>long belt</prosody>"
},
{
"path": "basetypes/belts/mail belt.mp3",
"tts_text": "mail belt",
"ssml_text": "<prosody rate='fast'>mail belt</prosody>"
},
{
"path": "basetypes/belts/ornate belt.mp3",
"tts_text": "ornate belt",
"ssml_text": "<prosody rate='fast'>ornate belt</prosody>"
},
{
"path": "basetypes/belts/plate belt.mp3",
"tts_text": "plate belt",
"ssml_text": "<prosody rate='fast'>plate belt</prosody>"
},
{
"path": "basetypes/belts/rawhide belt.mp3",
"tts_text": "rawhide belt",
"ssml_text": "<prosody rate='fast'>rawhide belt</prosody>"
},
{
"path": "basetypes/belts/utility belt.mp3",
"tts_text": "utility belt",
"ssml_text": "<prosody rate='fast'>utility belt</prosody>"
},
{
"path": "basetypes/belts/wide belt.mp3",
"tts_text": "wide belt",
"ssml_text": "<prosody rate='fast'>wide belt</prosody>"
},
{
"path": "basetypes/bows/adherent bow.mp3",
"tts_text": "adherent boe",
"ssml_text": "<prosody rate='fast'>adherent bow</prosody>"
},
{
"path": "basetypes/bows/artillery bow.mp3",
"tts_text": "artillery boe",
"ssml_text": "<prosody rate='fast'>artillery bow</prosody>"
},
{
"path": "basetypes/bows/composite bow.mp3",
"tts_text": "composite boe",
"ssml_text": "<prosody rate='fast'>composite bow</prosody>"
},
{
"path": "basetypes/bows/crude bow.mp3",
"tts_text": "crude boe",
"ssml_text": "<prosody rate='fast'>crude bow</prosody>"
},
{
"path": "basetypes/bows/cultist bow.mp3",
"tts_text": "cultist boe",
"ssml_text": "<prosody rate='fast'>cultist bow</prosody>"
},
{
"path": "basetypes/bows/dualstring bow.mp3",
"tts_text": "dualstring boe",
"ssml_text": "<prosody rate='fast'>dualstring bow</prosody>"
},
{
"path": "basetypes/bows/militant bow.mp3",
"tts_text": "militant boe",
"ssml_text": "<prosody rate='fast'>militant bow</prosody>"
},
{
"path": "basetypes/bows/recurve bow.mp3",
"tts_text": "recurve boe",
"ssml_text": "<prosody rate='fast'>recurve bow</prosody>"
},
{
"path": "basetypes/bows/shortbow.mp3",
"tts_text": "short boe",
"ssml_text": "<prosody rate='fast'>shortbow</prosody>"
},
{
"path": "basetypes/bows/tribal bow.mp3",
"tts_text": "tribal boe",
"ssml_text": "<prosody rate='fast'>tribal bow</prosody>"
},
{
"path": "basetypes/bows/twin bow.mp3",
"tts_text": "twin boe",
"ssml_text": "<prosody rate='fast'>twin bow</prosody>"
},
{
"path": "basetypes/bows/warden bow.mp3",
"tts_text": "warden boe",
"ssml_text": "<prosody rate='fast'>warden bow</prosody>"
},
{
"path": "basetypes/bows/zealot bow.mp3",
"tts_text": "zealot boe",
"ssml_text": "<prosody rate='fast'>zealot bow</prosody>"
},
{
"path": "basetypes/bronze key.mp3",
"tts_text": "bronze key",
"ssml_text": "<prosody rate='fast'>bronze key</prosody>"
},
{
"path": "basetypes/charms/amethyst charm.mp3",
"tts_text": "amethyst charm",
"ssml_text": "<prosody rate='fast'>amethyst charm</prosody>"
},
{
"path": "basetypes/charms/antidote charm.mp3",
"tts_text": "antidote charm",
"ssml_text": "<prosody rate='fast'>antidote charm</prosody>"
},
{
"path": "basetypes/charms/dousing charm.mp3",
"tts_text": "dousing charm",
"ssml_text": "<prosody rate='fast'>dousing charm</prosody>"
},
{
"path": "basetypes/charms/golden charm.mp3",
"tts_text": "golden charm",
"ssml_text": "<prosody rate='fast'>golden charm</prosody>"
},
{
"path": "basetypes/charms/grounding charm.mp3",
"tts_text": "grounding charm",
"ssml_text": "<prosody rate='fast'>grounding charm</prosody>"
},
{
"path": "basetypes/charms/ruby charm.mp3",
"tts_text": "ruby charm",
"ssml_text": "<prosody rate='fast'>ruby charm</prosody>"
},
{
"path": "basetypes/charms/sapphire charm.mp3",
"tts_text": "sapphire charm",
"ssml_text": "<prosody rate='fast'>sapphire charm</prosody>"
},
{
"path": "basetypes/charms/stone charm.mp3",
"tts_text": "stone charm",
"ssml_text": "<prosody rate='fast'>stone charm</prosody>"
},
{
"path": "basetypes/charms/thawing charm.mp3",
"tts_text": "thawing charm",
"ssml_text": "<prosody rate='fast'>thawing charm</prosody>"
},
{
"path": "basetypes/charms/topaz charm.mp3",
"tts_text": "topaz charm",
"ssml_text": "<prosody rate='fast'>topaz charm</prosody>"
},
{
"path": "basetypes/crossbows/alloy crossbow.mp3",
"tts_text": "alloy crossbow",
"ssml_text": "<prosody rate='fast'>alloy crossbow</prosody>"
},
{
"path": "basetypes/crossbows/blackfire crossbow.mp3",
"tts_text": "blackfire crossbow",
"ssml_text": "<prosody rate='fast'>blackfire crossbow</prosody>"
},
{
"path": "basetypes/crossbows/bleak crossbow.mp3",
"tts_text": "bleak crossbow",
"ssml_text": "<prosody rate='fast'>bleak crossbow</prosody>"
},
{
"path": "basetypes/crossbows/bombard crossbow.mp3",
"tts_text": "bombard crossbow",
"ssml_text": "<prosody rate='fast'>bombard crossbow</prosody>"
},
{
"path": "basetypes/crossbows/cannonade crossbow.mp3",
"tts_text": "cannonade crossbow",
"ssml_text": "<prosody rate='fast'>cannonade crossbow</prosody>"
},
{
"path": "basetypes/crossbows/construct crossbow.mp3",
"tts_text": "construct crossbow",
"ssml_text": "<prosody rate='fast'>construct crossbow</prosody>"
},
{
"path": "basetypes/crossbows/dyad crossbow.mp3",
"tts_text": "dyad crossbow",
"ssml_text": "<prosody rate='fast'>dyad crossbow</prosody>"
},
{
"path": "basetypes/crossbows/makeshift crossbow.mp3",
"tts_text": "makeshift crossbow",
"ssml_text": "<prosody rate='fast'>makeshift crossbow</prosody>"
},
{
"path": "basetypes/crossbows/piercing crossbow.mp3",
"tts_text": "piercing crossbow",
"ssml_text": "<prosody rate='fast'>piercing crossbow</prosody>"
},
{
"path": "basetypes/crossbows/robust crossbow.mp3",
"tts_text": "robust crossbow",
"ssml_text": "<prosody rate='fast'>robust crossbow</prosody>"
},
{
"path": "basetypes/crossbows/sturdy crossbow.mp3",
"tts_text": "sturdy crossbow",
"ssml_text": "<prosody rate='fast'>sturdy crossbow</prosody>"
},
{
"path": "basetypes/crossbows/tense crossbow.mp3",
"tts_text": "tense crossbow",
"ssml_text": "<prosody rate='fast'>tense crossbow</prosody>"
},
{
"path": "basetypes/crossbows/twin crossbow.mp3",
"tts_text": "twin crossbow",
"ssml_text": "<prosody rate='fast'>twin crossbow</prosody>"
},
{
"path": "basetypes/crossbows/varnished crossbow.mp3",
"tts_text": "varnished crossbow",
"ssml_text": "<prosody rate='fast'>varnished crossbow</prosody>"
},
{
"path": "basetypes/djinn barya 1 floor.mp3",
"tts_text": "djinn barya 1 floor",
"ssml_text": "<prosody rate='fast'>djinn barya 1 floor</prosody>"
},
{
"path": "basetypes/djinn barya 2 floors.mp3",
"tts_text": "djinn barya 2 floors",
"ssml_text": "<prosody rate='fast'>djinn barya 2 floors</prosody>"
},
{
"path": "basetypes/djinn barya 3 floors.mp3",
"tts_text": "djinn barya 3 floors",
"ssml_text": "<prosody rate='fast'>djinn barya 3 floors</prosody>"
},
{
"path": "basetypes/flasks/colossal life flask.mp3",
"tts_text": "colossal life flask",
"ssml_text": "<prosody rate='fast'>colossal life flask</prosody>"
},
{
"path": "basetypes/flasks/colossal mana flask.mp3",
"tts_text": "colossal mana flask",
"ssml_text": "<prosody rate='fast'>colossal mana flask</prosody>"
},
{
"path": "basetypes/flasks/gargantuan life flask.mp3",
"tts_text": "gargantuan life flask",
"ssml_text": "<prosody rate='fast'>gargantuan life flask</prosody>"
},
{
"path": "basetypes/flasks/gargantuan mana flask.mp3",
"tts_text": "gargantuan mana flask",
"ssml_text": "<prosody rate='fast'>gargantuan mana flask</prosody>"
},
{
"path": "basetypes/flasks/giant life flask.mp3",
"tts_text": "giant life flask",
"ssml_text": "<prosody rate='fast'>giant life flask</prosody>"
},
{
"path": "basetypes/flasks/giant mana flask.mp3",
"tts_text": "giant mana flask",
"ssml_text": "<prosody rate='fast'>giant mana flask</prosody>"
},
{
"path": "basetypes/flasks/grand life flask.mp3",
"tts_text": "grand life flask",
"ssml_text": "<prosody rate='fast'>grand life flask</prosody>"
},
{
"path": "basetypes/flasks/grand mana flask.mp3",
"tts_text": "grand mana flask",
"ssml_text": "<prosody rate='fast'>grand mana flask</prosody>"
},
{
"path": "basetypes/flasks/greater life flask.mp3",
"tts_text": "greater life flask",
"ssml_text": "<prosody rate='fast'>greater life flask</prosody>"
},
{
"path": "basetypes/flasks/greater mana flask.mp3",
"tts_text": "greater mana flask",
"ssml_text": "<prosody rate='fast'>greater mana flask</prosody>"
},
{
"path": "basetypes/flasks/medium life flask.mp3",
"tts_text": "medium life flask",
"ssml_text": "<prosody rate='fast'>medium life flask</prosody>"
},
{
"path": "basetypes/flasks/medium mana flask.mp3",
"tts_text": "medium mana flask",
"ssml_text": "<prosody rate='fast'>medium mana flask</prosody>"
},
{
"path": "basetypes/flasks/transcendent life flask.mp3",
"tts_text": "transcendent life flask",
"ssml_text": "<prosody rate='fast'>transcendent life flask</prosody>"
},
{
"path": "basetypes/flasks/transcendent mana flask.mp3",
"tts_text": "transcendent mana flask",
"ssml_text": "<prosody rate='fast'>transcendent mana flask</prosody>"
},
{
"path": "basetypes/flasks/ultimate life flask.mp3",
"tts_text": "ultimate life flask",
"ssml_text": "<prosody rate='fast'>ultimate life flask</prosody>"
},
{
"path": "basetypes/flasks/ultimate mana flask.mp3",
"tts_text": "ultimate mana flask",
"ssml_text": "<prosody rate='fast'>ultimate mana flask</prosody>"
},
{
"path": "basetypes/gold key.mp3",
"tts_text": "gold key",
"ssml_text": "<prosody rate='fast'>gold key</prosody>"
},
{
"path": "basetypes/inscribed ultimatum 4 trials.mp3",
"tts_text": "inscribed ultimatum 4 trials",
"ssml_text": "<prosody rate='fast'>inscribed ultimatum 4 trials</prosody>"
},
{
"path": "basetypes/inscribed ultimatum 7 trials.mp3",
"tts_text": "inscribed ultimatum 7 trials",
"ssml_text": "<prosody rate='fast'>inscribed ultimatum 7 trials</prosody>"
},
{
"path": "basetypes/jewels/emerald jewel.mp3",
"tts_text": "emerald jewel",
"ssml_text": "<prosody rate='fast'>emerald jewel</prosody>"
},
{
"path": "basetypes/jewels/ruby jewel.mp3",
"tts_text": "ruby jewel",
"ssml_text": "<prosody rate='fast'>ruby jewel</prosody>"
},
{
"path": "basetypes/jewels/sapphire jewel.mp3",
"tts_text": "sapphire jewel",
"ssml_text": "<prosody rate='fast'>sapphire jewel</prosody>"
},
{
"path": "basetypes/jewels/time lost emerald jewel.mp3",
"tts_text": "time lost emerald",
"ssml_text": "<prosody rate='fast'>time lost emerald</prosody>"
},
{
"path": "basetypes/jewels/time lost ruby jewel.mp3",
"tts_text": "time lost ruby",
"ssml_text": "<prosody rate='fast'>time lost ruby</prosody>"