-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUmaMusume_SkillNameTranslation.json
1556 lines (1556 loc) · 40.7 KB
/
UmaMusume_SkillNameTranslation.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
{
"skill_list": [
{
"text": "波乱注意砲!",
"translation": "Warning Shot!"
},
{
"text": "アクセルX",
"translation": "Accelerator X"
},
{
"text": "レッドエース",
"translation": "Red Ace"
},
{
"text": "精神一到",
"translation": "Desire to win"
},
{
"text": "熱血☆アミーゴ",
"translation": "Hot Blooded ☆ Amigo"
},
{
"text": "エンプレス・プライド",
"translation": "Empress・Pride"
},
{
"text": "勝利のキッス☆",
"translation": "Victory Kiss ☆"
},
{
"text": "燃えろ筋肉!",
"translation": "Burning Muscles!"
},
{
"text": "introduction:My body",
"translation": "introduction:My body"
},
{
"text": "全力Vサインッ!",
"translation": "Full Power for V"
},
{
"text": "学級委員長+速さ=バクシン",
"translation": "Class President + Speed = Bakushin"
},
{
"text": "クリアハート",
"translation": "Clear Heart"
},
{
"text": "ワクワクよーいドン",
"translation": "Ready, Steady, Go!"
},
{
"text": "来てください来てください!",
"translation": "Come, Come!"
},
{
"text": "アタシもたまには、ね?",
"translation": "You know, sometimes even I can…"
},
{
"text": "Call me KING",
"translation": "Call me KING"
},
{
"text": "シューティングスター",
"translation": "Shooting Star"
},
{
"text": "先頭の景色は譲らない…!",
"translation": "I'm not giving up the lead…!"
},
{
"text": "究極テイオーステップ",
"translation": "Ultimate Teio Step"
},
{
"text": "紅焔ギア/LP1211-M",
"translation": "Red Flame Gear/LP1211-M"
},
{
"text": "煌星のヴォードヴィル",
"translation": "Glittering Star Vaudeville"
},
{
"text": "勝利の鼓動",
"translation": "The Beat of Victory"
},
{
"text": "不沈艦、抜錨ォッ!",
"translation": "Unsinkable ship, anchored!"
},
{
"text": "カッティングDRIVE!",
"translation": "Cutting DRIVE!"
},
{
"text": "ブリリアント・レッドエース",
"translation": "Brilliant Red Ace"
},
{
"text": "ヴィクトリーショット!",
"translation": "Victory Shot!"
},
{
"text": "精神一到何事か成らざらん",
"translation": "Where there's a will, there's a way"
},
{
"text": "タイマン!デッドヒート!",
"translation": "One-on-one! Dead heat!"
},
{
"text": "貴顕の使命を果たすべく",
"translation": "Fulfilling your noble duty"
},
{
"text": "プランチャ☆ガナドール",
"translation": "Plancha ☆ Ganador"
},
{
"text": "ヴィットーリアに捧ぐ舞踏",
"translation": "Dance for Vittoria"
},
{
"text": "Shadow Break",
"translation": "Shadow Break"
},
{
"text": "汝、皇帝の神威を見よ",
"translation": "Thou, witness the heavenly might of the Emperor"
},
{
"text": "ブレイズ・オブ・プライド",
"translation": "Blaze of Pride"
},
{
"text": "アングリングスキーミング",
"translation": "AnglingScheming"
},
{
"text": "∴win Q.E.D.",
"translation": "∴win Q.E.D."
},
{
"text": "ひらめき☆ランディング",
"translation": "Inspiration ☆ Landing"
},
{
"text": "G00 1st.F∞;",
"translation": "G00 1st.F∞;"
},
{
"text": "レッツ・アナボリック!",
"translation": "Let's anabolic!"
},
{
"text": "ブルーローズチェイサー",
"translation": "Blue Rose Chaser"
},
{
"text": "U=ma2",
"translation": "U=ma2"
},
{
"text": "勝利のチケットを、君にッ!",
"translation": "The ticket to victory, for you!"
},
{
"text": "Schwarze Schwert",
"translation": "Schwarze Schwert"
},
{
"text": "#LookatCurren",
"translation": "#LookatCurren"
},
{
"text": "KEEP IT REAL.",
"translation": "KEEP IT REAL."
},
{
"text": "優等生バクシン=大勝利ッ",
"translation": "Honor Student x Bakushin = Big Victory"
},
{
"text": "ピュリティオブハート",
"translation": "Purity of Heart"
},
{
"text": "キラキラ☆STARDOM",
"translation": "Sparkling☆STARDOM"
},
{
"text": "Nemesis",
"translation": "Nemesis"
},
{
"text": "ワクワククライマックス",
"translation": "Exciting Climax"
},
{
"text": "来ます来てます来させます!",
"translation": "I'm coming, I'm coming, I'm coming!"
},
{
"text": "I Never Goof Up!",
"translation": "I Never Goof Up!"
},
{
"text": "きっとその先へ…!",
"translation": "Surely, beyond...!"
},
{
"text": "Pride of KING",
"translation": "Pride of KING"
},
{
"text": "わやかわ♪マリンダイヴ",
"translation": "Wayakawa ♪ Marine Dive"
},
{
"text": "絶対は、ボクだ",
"translation": "It's going to be me"
},
{
"text": "グッときて♪Chu",
"translation": "Heartfelt ♪ Smooch"
},
{
"text": "ゲインヒール・スペリアー",
"translation": "Gain Superior Heal"
},
{
"text": "最強の名を懸けて",
"translation": "For the Strongest Name"
},
{
"text": "コンドル猛撃波",
"translation": "Condor Onslaught"
},
{
"text": "薫風、永遠なる瞬間を",
"translation": "Summer breeze, an eternal moment"
},
{
"text": "フラワリー☆マニューバ",
"translation": "Flowery ☆ Maneuver"
},
{
"text": "右回り",
"translation": "Right Turns "
},
{
"text": "右回り",
"translation": "Right Turns "
},
{
"text": "右回り",
"translation": "Right Turns "
},
{
"text": "左回り",
"translation": "Left Turns "
},
{
"text": "左回り",
"translation": "Left Turns "
},
{
"text": "左回り",
"translation": "Left Turns "
},
{
"text": "東京レース場",
"translation": "Tokyo Racetrack "
},
{
"text": "東京レース場",
"translation": "Tokyo Racetrack "
},
{
"text": "東京レース場",
"translation": "Tokyo Racetrack "
},
{
"text": "中山レース場",
"translation": "Nakayama Racetrack "
},
{
"text": "中山レース場",
"translation": "Nakayama Racetrack "
},
{
"text": "中山レース場",
"translation": "Nakayama Racetrack "
},
{
"text": "阪神レース場",
"translation": "Hanshin Racetrack "
},
{
"text": "阪神レース場",
"translation": "Hanshin Racetrack "
},
{
"text": "阪神レース場",
"translation": "Hanshin Racetrack "
},
{
"text": "京都レース場",
"translation": "Kyoto Racetrack "
},
{
"text": "京都レース場",
"translation": "Kyoto Racetrack "
},
{
"text": "京都レース場",
"translation": "Kyoto Racetrack "
},
{
"text": "中京レース場",
"translation": "Chukyo Racetrack "
},
{
"text": "中京レース場",
"translation": "Chukyo Racetrack "
},
{
"text": "中京レース場",
"translation": "Chukyo Racetrack "
},
{
"text": "札幌レース場",
"translation": "Sapporo Racetrack "
},
{
"text": "札幌レース場",
"translation": "Sapporo Racetrack "
},
{
"text": "札幌レース場",
"translation": "Sapporo Racetrack "
},
{
"text": "函館レース場",
"translation": "Hakodate Racetrack "
},
{
"text": "函館レース場",
"translation": "Hakodate Racetrack "
},
{
"text": "函館レース場",
"translation": "Hakodate Racetrack "
},
{
"text": "福島レース場",
"translation": "Fukushima Racetrack "
},
{
"text": "福島レース場",
"translation": "Fukushima Racetrack "
},
{
"text": "福島レース場",
"translation": "Fukushima Racetrack "
},
{
"text": "新潟レース場",
"translation": "Niigata Racetrack "
},
{
"text": "新潟レース場",
"translation": "Niigata Racetrack "
},
{
"text": "新潟レース場",
"translation": "Niigata Racetrack "
},
{
"text": "小倉レース場",
"translation": "Kokura Racetrack "
},
{
"text": "小倉レース場",
"translation": "Kokura Racetrack "
},
{
"text": "小倉レース場",
"translation": "Kokura Racetrack "
},
{
"text": "根幹距離",
"translation": "Core Distance "
},
{
"text": "根幹距離",
"translation": "Core Distance "
},
{
"text": "根幹距離",
"translation": "Core Distance "
},
{
"text": "非根幹距離",
"translation": "Non-Core Distances "
},
{
"text": "非根幹距離",
"translation": "Non-Core Distances "
},
{
"text": "非根幹距離",
"translation": "Non-Core Distances "
},
{
"text": "良バ場",
"translation": "Track Condition (Good) "
},
{
"text": "良バ場",
"translation": "Track Condition (Good) "
},
{
"text": "良バ場",
"translation": "Track Condition (Good) "
},
{
"text": "道悪",
"translation": "Wicked Path "
},
{
"text": "道悪",
"translation": "Wicked Path "
},
{
"text": "道悪",
"translation": "Wicked Path "
},
{
"text": "春ウマ娘",
"translation": "Spring Girl "
},
{
"text": "春ウマ娘",
"translation": "Spring Girl "
},
{
"text": "春ウマ娘",
"translation": "Spring Girl "
},
{
"text": "夏ウマ娘",
"translation": "Summer Girl "
},
{
"text": "夏ウマ娘",
"translation": "Summer Girl "
},
{
"text": "夏ウマ娘",
"translation": "Summer Girl "
},
{
"text": "秋ウマ娘",
"translation": "Autumn Girl "
},
{
"text": "秋ウマ娘",
"translation": "Autumn Girl "
},
{
"text": "秋ウマ娘",
"translation": "Autumn Girl "
},
{
"text": "冬ウマ娘",
"translation": "Winter Girl "
},
{
"text": "冬ウマ娘",
"translation": "Winter Girl "
},
{
"text": "冬ウマ娘",
"translation": "Winter Girl "
},
{
"text": "晴れの日",
"translation": "Sunny Days "
},
{
"text": "晴れの日",
"translation": "Sunny Days "
},
{
"text": "曇りの日",
"translation": "Cloudy Days "
},
{
"text": "曇りの日",
"translation": "Cloudy Days "
},
{
"text": "雨の日",
"translation": "Rainy Day "
},
{
"text": "雨の日",
"translation": "Rainy Day "
},
{
"text": "雨の日",
"translation": "Rainy Day "
},
{
"text": "雪の日",
"translation": "Snowy Days "
},
{
"text": "雪の日",
"translation": "Snowy Days "
},
{
"text": "内枠得意",
"translation": "Inner Gate Affinity "
},
{
"text": "内枠得意",
"translation": "Inner Gate Affinity "
},
{
"text": "内枠苦手",
"translation": "Inner Gate Affinity "
},
{
"text": "外枠得意",
"translation": "Outer Gate Affinity "
},
{
"text": "外枠得意",
"translation": "Outer Gate Affinity "
},
{
"text": "外枠苦手",
"translation": "Outer Gate Affinity "
},
{
"text": "おひとり様",
"translation": "The One "
},
{
"text": "おひとり様",
"translation": "The One "
},
{
"text": "対抗意識",
"translation": "Competitive Spirit "
},
{
"text": "対抗意識",
"translation": "Competitive Spirit "
},
{
"text": "引っ込み思案",
"translation": "Introverted"
},
{
"text": "徹底マーク",
"translation": "Eyes On You "
},
{
"text": "徹底マーク",
"translation": "Eyes On You "
},
{
"text": "伏兵",
"translation": "Underdog "
},
{
"text": "伏兵",
"translation": "Underdog "
},
{
"text": "GⅠ苦手",
"translation": "GⅠ Dislike"
},
{
"text": "小心者",
"translation": "Timid"
},
{
"text": "弧線のプロフェッサー",
"translation": "Archline Professor"
},
{
"text": "コーナー巧者",
"translation": "Clever Cornerer "
},
{
"text": "コーナー巧者",
"translation": "Clever Cornerer "
},
{
"text": "曲線のソムリエ",
"translation": "Curve Sommelier"
},
{
"text": "コーナー加速",
"translation": "Corner Accel "
},
{
"text": "コーナー加速",
"translation": "Corner Accel "
},
{
"text": "円弧のマエストロ",
"translation": "Arc Maestro"
},
{
"text": "コーナー回復",
"translation": "Corner Recovery "
},
{
"text": "コーナー回復",
"translation": "Corner Recovery "
},
{
"text": "ハヤテ一文字",
"translation": "Like The Wind"
},
{
"text": "直線巧者",
"translation": "Straight Skill"
},
{
"text": "一陣の風",
"translation": "Gust of Wind"
},
{
"text": "直線加速",
"translation": "Straight Accel"
},
{
"text": "好転一息",
"translation": "Breath of Fresh Air"
},
{
"text": "直線回復",
"translation": "Straight Recovery"
},
{
"text": "坂苦手",
"translation": "Hill Dislike"
},
{
"text": "バ群嫌い",
"translation": "Crowd Hater"
},
{
"text": "あきらめ癖",
"translation": "Resignation"
},
{
"text": "手抜き癖",
"translation": "Negligence"
},
{
"text": "コンセントレーション",
"translation": "Concentration"
},
{
"text": "集中力",
"translation": "Focus"
},
{
"text": "ゲート難",
"translation": "Gate Trouble"
},
{
"text": "鋼の意志",
"translation": "Will of Steel"
},
{
"text": "隠れ蓑",
"translation": "Undercover"
},
{
"text": "注目の踊り子",
"translation": "Star of the Show"
},
{
"text": "ポジションセンス",
"translation": "Position Sense"
},
{
"text": "アガッてきた!",
"translation": "Now I'm Pumped!"
},
{
"text": "ペースアップ",
"translation": "Up The Pace"
},
{
"text": "不屈の心",
"translation": "Indomitable Heart"
},
{
"text": "ペースキープ",
"translation": "Keep the Pace"
},
{
"text": "どこ吹く風",
"translation": "Where the Wind Blows"
},
{
"text": "ウマ込み冷静",
"translation": "Crowded Calm"
},
{
"text": "ノンストップガール",
"translation": "Non-stop Girl"
},
{
"text": "垂れウマ回避",
"translation": "Slight Detour"
},
{
"text": "レーンの魔術師",
"translation": "Magician of the Lane"
},
{
"text": "臨機応変",
"translation": "Improvise"
},
{
"text": "全身全霊",
"translation": "Heart and Soul"
},
{
"text": "末脚",
"translation": "Last Leg"
},
{
"text": "空回り",
"translation": "Running Idle"
},
{
"text": "先手必勝",
"translation": "Fortune Favors the Fast"
},
{
"text": "先駆け",
"translation": "Frontrunner"
},
{
"text": "脱出術",
"translation": "Escape Artist"
},
{
"text": "急ぎ足",
"translation": "Fast Paced"
},
{
"text": "逃亡者",
"translation": "Runaway"
},
{
"text": "押し切り準備",
"translation": "Press Forward, Ready!"
},
{
"text": "余裕綽々",
"translation": "Calm and Composed"
},
{
"text": "スタミナキープ",
"translation": "Stamina Keep"
},
{
"text": "レースプランナー",
"translation": "Race Planner"
},
{
"text": "好位追走",
"translation": "Favorite Place"
},
{
"text": "スピードスター",
"translation": "Speed Star"
},
{
"text": "抜け出し準備",
"translation": "Passing Preparations"
},
{
"text": "迅速果断",
"translation": "Quick and Decisive"
},
{
"text": "位置取り押し上げ",
"translation": "Position Swiper"
},
{
"text": "乗り換え上手",
"translation": "Switch-up Pro"
},
{
"text": "差し切り体勢",
"translation": "Between the Lines"
},
{
"text": "昇り龍",
"translation": "Rising Dragon"
},
{
"text": "外差し準備",
"translation": "Outside Pass, Ready!"
},
{
"text": "眠れる獅子",
"translation": "Sleeping Lion"
},
{
"text": "後方待機",
"translation": "On Standby"
},
{
"text": "疾風怒濤",
"translation": "Storm and Stress"
},
{
"text": "仕掛け抜群",
"translation": "Master Trickster"
},
{
"text": "迫る影",
"translation": "Imminent Shadow"
},
{
"text": "直線一気",
"translation": "Straight Shot"
},
{
"text": "スプリントターボ",
"translation": "Sprint Turbo"
},
{
"text": "スプリントギア",
"translation": "Sprinting Gear"
},
{
"text": "様子見",
"translation": "Wait and See"
},
{
"text": "電撃の煌めき",
"translation": "Glimmer of Shock"
},
{
"text": "詰め寄り",
"translation": "Draw Forward"
},
{
"text": "マイルの支配者",
"translation": "Ruler of Mile"
},
{
"text": "積極策",
"translation": "Positive Planning"
},
{
"text": "慧眼",
"translation": "Wisdom Eye"
},
{
"text": "展開窺い",
"translation": "Progress Peek"
},
{
"text": "豪脚",
"translation": "Big Strides"
},
{
"text": "上昇気流",
"translation": "Updraft"
},
{
"text": "切り開く者",
"translation": "The One Who Clears The Path"
},
{
"text": "前途洋々",
"translation": "Bright Future"
},
{
"text": "キラーチューン",
"translation": "Killer Tune"
},
{
"text": "テンポアップ",
"translation": "Uptempo"
},
{
"text": "勝利への執念",
"translation": "To Victory!"
},
{
"text": "食い下がり",
"translation": "Stand Your Ground"
},
{
"text": "クールダウン",
"translation": "Cooldown"
},
{
"text": "深呼吸",
"translation": "Deep Breaths"
},
{
"text": "内的体験",
"translation": "Intrinsic Experience"
},
{
"text": "内弁慶",
"translation": "King of the Castle"
},
{
"text": "火事場のバ鹿力",
"translation": "Fight or Flight"
},
{
"text": "別腹タンク",
"translation": "Backup Belly"
},
{
"text": "トリック(前)",
"translation": "Trick (Front)"
},
{
"text": "トリック(後)",
"translation": "Trick (Back)"
},
{
"text": "逃げ駆け引き",
"translation": "Frantic Runners"
},
{
"text": "先行駆け引き",
"translation": "Frantic Leaders"
},
{
"text": "差し駆け引き",
"translation": "Frantic Betweeners"
},
{
"text": "追込駆け引き",
"translation": "Frantic Chasers"
},
{
"text": "逃げけん制",
"translation": "Runners Restraint"
},
{
"text": "逃げ焦り",
"translation": "Panicked Runners"
},
{
"text": "逃げためらい",
"translation": "Faltering Runners"
},
{
"text": "先行けん制",
"translation": "Leaders Restraint"
},
{
"text": "先行焦り",
"translation": "Panicked Leaders"
},
{
"text": "先行ためらい",
"translation": "Faltering Leaders"
},
{
"text": "差しけん制",
"translation": "Betweeners Restraint"
},
{
"text": "差し焦り",
"translation": "Panicked Betweener"
},
{
"text": "差しためらい",
"translation": "Faltering Betweeners"
},
{
"text": "追込けん制",