-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathja_jp_items.json
1225 lines (1225 loc) · 79.3 KB
/
ja_jp_items.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
{
"block.minecraft.acacia_button": "アカシアのボタン",
"block.minecraft.acacia_door": "アカシアのドア",
"block.minecraft.acacia_fence": "アカシアのフェンス",
"block.minecraft.acacia_fence_gate": "アカシアのフェンスゲート",
"block.minecraft.acacia_leaves": "アカシアの葉",
"block.minecraft.acacia_log": "アカシアの原木",
"block.minecraft.acacia_planks": "アカシアの板材",
"block.minecraft.acacia_pressure_plate": "アカシアの感圧板",
"block.minecraft.acacia_sapling": "アカシアの苗木",
"block.minecraft.acacia_sign": "アカシアの看板",
"block.minecraft.acacia_slab": "アカシアのハーフブロック",
"block.minecraft.acacia_stairs": "アカシアの階段",
"block.minecraft.acacia_trapdoor": "アカシアのトラップドア",
"block.minecraft.acacia_wall_sign": "壁に付けられたアカシアの看板",
"block.minecraft.acacia_wood": "アカシアの木",
"block.minecraft.activator_rail": "アクティベーターレール",
"block.minecraft.air": "空気",
"block.minecraft.allium": "アリウム",
"block.minecraft.ancient_debris": "古代の残骸",
"block.minecraft.andesite": "安山岩",
"block.minecraft.andesite_slab": "安山岩のハーフブロック",
"block.minecraft.andesite_stairs": "安山岩の階段",
"block.minecraft.andesite_wall": "安山岩の塀",
"block.minecraft.anvil": "金床",
"block.minecraft.attached_melon_stem": "実がなったスイカの茎",
"block.minecraft.attached_pumpkin_stem": "実がなったカボチャの茎",
"block.minecraft.azure_bluet": "ヒナソウ",
"block.minecraft.bamboo": "竹",
"block.minecraft.bamboo_sapling": "タケノコ",
"block.minecraft.barrel": "樽",
"block.minecraft.barrier": "バリアブロック",
"block.minecraft.basalt": "玄武岩",
"block.minecraft.beacon": "ビーコン",
"block.minecraft.bedrock": "岩盤",
"block.minecraft.bee_nest": "ミツバチの巣",
"block.minecraft.beehive": "養蜂箱",
"block.minecraft.beetroots": "ビートルート",
"block.minecraft.bell": "鐘",
"block.minecraft.birch_button": "シラカバのボタン",
"block.minecraft.birch_door": "シラカバのドア",
"block.minecraft.birch_fence": "シラカバのフェンス",
"block.minecraft.birch_fence_gate": "シラカバのフェンスゲート",
"block.minecraft.birch_leaves": "シラカバの葉",
"block.minecraft.birch_log": "シラカバの原木",
"block.minecraft.birch_planks": "シラカバの板材",
"block.minecraft.birch_pressure_plate": "シラカバの感圧板",
"block.minecraft.birch_sapling": "シラカバの苗木",
"block.minecraft.birch_sign": "シラカバの看板",
"block.minecraft.birch_slab": "シラカバのハーフブロック",
"block.minecraft.birch_stairs": "シラカバの階段",
"block.minecraft.birch_trapdoor": "シラカバのトラップドア",
"block.minecraft.birch_wall_sign": "壁に付けられたシラカバの看板",
"block.minecraft.birch_wood": "シラカバの木",
"block.minecraft.black_banner": "黒色の旗",
"block.minecraft.black_bed": "黒色のベッド",
"block.minecraft.black_carpet": "黒色のカーペット",
"block.minecraft.black_concrete": "黒色のコンクリート",
"block.minecraft.black_concrete_powder": "黒色のコンクリートパウダー",
"block.minecraft.black_glazed_terracotta": "黒色の彩釉テラコッタ",
"block.minecraft.black_shulker_box": "黒色のシュルカーボックス",
"block.minecraft.black_stained_glass": "黒色の色付きガラス",
"block.minecraft.black_stained_glass_pane": "黒色の色付きガラス板",
"block.minecraft.black_terracotta": "黒色のテラコッタ",
"block.minecraft.black_wool": "黒色の羊毛",
"block.minecraft.blackstone": "ブラックストーン",
"block.minecraft.blackstone_slab": "ブラックストーンのハーフブロック",
"block.minecraft.blackstone_stairs": "ブラックストーンの階段",
"block.minecraft.blackstone_wall": "ブラックストーンの塀",
"block.minecraft.blast_furnace": "溶鉱炉",
"block.minecraft.blue_banner": "青色の旗",
"block.minecraft.blue_bed": "青色のベッド",
"block.minecraft.blue_carpet": "青色のカーペット",
"block.minecraft.blue_concrete": "青色のコンクリート",
"block.minecraft.blue_concrete_powder": "青色のコンクリートパウダー",
"block.minecraft.blue_glazed_terracotta": "青色の彩釉テラコッタ",
"block.minecraft.blue_ice": "青氷",
"block.minecraft.blue_orchid": "ヒスイラン",
"block.minecraft.blue_shulker_box": "青色のシュルカーボックス",
"block.minecraft.blue_stained_glass": "青色の色付きガラス",
"block.minecraft.blue_stained_glass_pane": "青色の色付きガラス板",
"block.minecraft.blue_terracotta": "青色のテラコッタ",
"block.minecraft.blue_wool": "青色の羊毛",
"block.minecraft.bone_block": "骨ブロック",
"block.minecraft.bookshelf": "本棚",
"block.minecraft.brain_coral": "ノウサンゴ",
"block.minecraft.brain_coral_block": "ノウサンゴブロック",
"block.minecraft.brain_coral_fan": "ノウウチワサンゴ",
"block.minecraft.brain_coral_wall_fan": "壁付きのノウウチワサンゴ",
"block.minecraft.brewing_stand": "醸造台",
"block.minecraft.brick_slab": "レンガのハーフブロック",
"block.minecraft.brick_stairs": "レンガの階段",
"block.minecraft.brick_wall": "レンガの塀",
"block.minecraft.bricks": "レンガ",
"block.minecraft.brown_banner": "茶色の旗",
"block.minecraft.brown_bed": "茶色のベッド",
"block.minecraft.brown_carpet": "茶色のカーペット",
"block.minecraft.brown_concrete": "茶色のコンクリート",
"block.minecraft.brown_concrete_powder": "茶色のコンクリートパウダー",
"block.minecraft.brown_glazed_terracotta": "茶色の彩釉テラコッタ",
"block.minecraft.brown_mushroom": "茶色のキノコ",
"block.minecraft.brown_mushroom_block": "茶色のキノコブロック",
"block.minecraft.brown_shulker_box": "茶色のシュルカーボックス",
"block.minecraft.brown_stained_glass": "茶色の色付きガラス",
"block.minecraft.brown_stained_glass_pane": "茶色の色付きガラス板",
"block.minecraft.brown_terracotta": "茶色のテラコッタ",
"block.minecraft.brown_wool": "茶色の羊毛",
"block.minecraft.bubble_column": "気泡柱",
"block.minecraft.bubble_coral": "ミズタマサンゴ",
"block.minecraft.bubble_coral_block": "ミズタマサンゴブロック",
"block.minecraft.bubble_coral_fan": "ミズタマウチワサンゴ",
"block.minecraft.bubble_coral_wall_fan": "壁付きのミズタマウチワサンゴ",
"block.minecraft.cactus": "サボテン",
"block.minecraft.cake": "ケーキ",
"block.minecraft.campfire": "焚き火",
"block.minecraft.carrots": "ニンジン",
"block.minecraft.cartography_table": "製図台",
"block.minecraft.carved_pumpkin": "くり抜かれたカボチャ",
"block.minecraft.cauldron": "大釜",
"block.minecraft.cave_air": "洞窟の空気",
"block.minecraft.chain": "鎖",
"block.minecraft.chain_command_block": "チェーンコマンドブロック",
"block.minecraft.chest": "チェスト",
"block.minecraft.chipped_anvil": "欠けた金床",
"block.minecraft.chiseled_nether_bricks": "模様入りのネザーレンガ",
"block.minecraft.chiseled_polished_blackstone": "模様入りの磨かれたブラックストーン",
"block.minecraft.chiseled_quartz_block": "模様入りのクォーツブロック",
"block.minecraft.chiseled_red_sandstone": "模様入りの赤い砂岩",
"block.minecraft.chiseled_sandstone": "模様入りの砂岩",
"block.minecraft.chiseled_stone_bricks": "模様入りの石レンガ",
"block.minecraft.chorus_flower": "コーラスフラワー",
"block.minecraft.chorus_plant": "コーラスプラント",
"block.minecraft.clay": "粘土",
"block.minecraft.coal_block": "石炭ブロック",
"block.minecraft.coal_ore": "石炭鉱石",
"block.minecraft.coarse_dirt": "粗い土",
"block.minecraft.cobblestone": "丸石",
"block.minecraft.cobblestone_slab": "丸石のハーフブロック",
"block.minecraft.cobblestone_stairs": "丸石の階段",
"block.minecraft.cobblestone_wall": "丸石の塀",
"block.minecraft.cobweb": "クモの巣",
"block.minecraft.cocoa": "カカオの実",
"block.minecraft.command_block": "コマンドブロック",
"block.minecraft.comparator": "レッドストーンコンパレーター",
"block.minecraft.composter": "コンポスター",
"block.minecraft.conduit": "コンジット",
"block.minecraft.cornflower": "ヤグルマギク",
"block.minecraft.cracked_nether_bricks": "ひび割れたネザーレンガ",
"block.minecraft.cracked_polished_blackstone_bricks": "ひび割れたブラックストーンレンガ",
"block.minecraft.cracked_stone_bricks": "ひび割れた石レンガ",
"block.minecraft.crafting_table": "作業台",
"block.minecraft.creeper_head": "クリーパーの頭",
"block.minecraft.creeper_wall_head": "壁に付けられたクリーパーの頭",
"block.minecraft.crimson_button": "真紅のボタン",
"block.minecraft.crimson_door": "真紅のドア",
"block.minecraft.crimson_fence": "真紅のフェンス",
"block.minecraft.crimson_fence_gate": "真紅のフェンスゲート",
"block.minecraft.crimson_fungus": "真紅のキノコ",
"block.minecraft.crimson_hyphae": "真紅の菌糸",
"block.minecraft.crimson_nylium": "真紅のナイリウム",
"block.minecraft.crimson_planks": "真紅の板材",
"block.minecraft.crimson_pressure_plate": "真紅の感圧板",
"block.minecraft.crimson_roots": "真紅の根",
"block.minecraft.crimson_sign": "真紅の看板",
"block.minecraft.crimson_slab": "真紅のハーフブロック",
"block.minecraft.crimson_stairs": "真紅の階段",
"block.minecraft.crimson_stem": "真紅の幹",
"block.minecraft.crimson_trapdoor": "真紅のトラップドア",
"block.minecraft.crimson_wall_sign": "壁に付けられた真紅の看板",
"block.minecraft.crying_obsidian": "泣く黒曜石",
"block.minecraft.cut_red_sandstone": "研がれた赤い砂岩",
"block.minecraft.cut_red_sandstone_slab": "研がれた赤い砂岩のハーフブロック",
"block.minecraft.cut_sandstone": "研がれた砂岩",
"block.minecraft.cut_sandstone_slab": "研がれた砂岩のハーフブロック",
"block.minecraft.cyan_banner": "青緑色の旗",
"block.minecraft.cyan_bed": "青緑色のベッド",
"block.minecraft.cyan_carpet": "青緑色のカーペット",
"block.minecraft.cyan_concrete": "青緑色のコンクリート",
"block.minecraft.cyan_concrete_powder": "青緑色のコンクリートパウダー",
"block.minecraft.cyan_glazed_terracotta": "青緑色の彩釉テラコッタ",
"block.minecraft.cyan_shulker_box": "青緑色のシュルカーボックス",
"block.minecraft.cyan_stained_glass": "青緑色の色付きガラス",
"block.minecraft.cyan_stained_glass_pane": "青緑色の色付きガラス板",
"block.minecraft.cyan_terracotta": "青緑色のテラコッタ",
"block.minecraft.cyan_wool": "青緑色の羊毛",
"block.minecraft.damaged_anvil": "壊れかけの金床",
"block.minecraft.dandelion": "タンポポ",
"block.minecraft.dark_oak_button": "ダークオークのボタン",
"block.minecraft.dark_oak_door": "ダークオークのドア",
"block.minecraft.dark_oak_fence": "ダークオークのフェンス",
"block.minecraft.dark_oak_fence_gate": "ダークオークのフェンスゲート",
"block.minecraft.dark_oak_leaves": "ダークオークの葉",
"block.minecraft.dark_oak_log": "ダークオークの原木",
"block.minecraft.dark_oak_planks": "ダークオークの板材",
"block.minecraft.dark_oak_pressure_plate": "ダークオークの感圧板",
"block.minecraft.dark_oak_sapling": "ダークオークの苗木",
"block.minecraft.dark_oak_sign": "ダークオークの看板",
"block.minecraft.dark_oak_slab": "ダークオークのハーフブロック",
"block.minecraft.dark_oak_stairs": "ダークオークの階段",
"block.minecraft.dark_oak_trapdoor": "ダークオークのトラップドア",
"block.minecraft.dark_oak_wall_sign": "壁に付けられたダークオークの看板",
"block.minecraft.dark_oak_wood": "ダークオークの木",
"block.minecraft.dark_prismarine": "ダークプリズマリン",
"block.minecraft.dark_prismarine_slab": "ダークプリズマリンのハーフブロック",
"block.minecraft.dark_prismarine_stairs": "ダークプリズマリンの階段",
"block.minecraft.daylight_detector": "日照センサー",
"block.minecraft.dead_brain_coral": "死んだノウサンゴ",
"block.minecraft.dead_brain_coral_block": "死んだノウサンゴブロック",
"block.minecraft.dead_brain_coral_fan": "死んだノウウチワサンゴ",
"block.minecraft.dead_brain_coral_wall_fan": "壁付きの死んだノウウチワサンゴ",
"block.minecraft.dead_bubble_coral": "死んだミズタマサンゴ",
"block.minecraft.dead_bubble_coral_block": "死んだミズタマサンゴブロック",
"block.minecraft.dead_bubble_coral_fan": "死んだミズタマウチワサンゴ",
"block.minecraft.dead_bubble_coral_wall_fan": "壁付きの死んだミズタマウチワサンゴ",
"block.minecraft.dead_bush": "枯れ木",
"block.minecraft.dead_fire_coral": "死んだミレポラサンゴ",
"block.minecraft.dead_fire_coral_block": "死んだミレポラサンゴブロック",
"block.minecraft.dead_fire_coral_fan": "死んだミレポラウチワサンゴ",
"block.minecraft.dead_fire_coral_wall_fan": "壁付きの死んだミレポラウチワサンゴ",
"block.minecraft.dead_horn_coral": "死んだシカツノサンゴ",
"block.minecraft.dead_horn_coral_block": "死んだシカツノサンゴブロック",
"block.minecraft.dead_horn_coral_fan": "死んだシカツノウチワサンゴ",
"block.minecraft.dead_horn_coral_wall_fan": "壁付きの死んだシカツノウチワサンゴ",
"block.minecraft.dead_tube_coral": "死んだクダサンゴ",
"block.minecraft.dead_tube_coral_block": "死んだクダサンゴブロック",
"block.minecraft.dead_tube_coral_fan": "死んだクダウチワサンゴ",
"block.minecraft.dead_tube_coral_wall_fan": "壁付きの死んだクダウチワサンゴ",
"block.minecraft.detector_rail": "ディテクターレール",
"block.minecraft.diamond_block": "ダイヤモンドブロック",
"block.minecraft.diamond_ore": "ダイヤモンド鉱石",
"block.minecraft.diorite": "閃緑岩",
"block.minecraft.diorite_slab": "閃緑岩のハーフブロック",
"block.minecraft.diorite_stairs": "閃緑岩の階段",
"block.minecraft.diorite_wall": "閃緑岩の塀",
"block.minecraft.dirt": "土",
"block.minecraft.dispenser": "ディスペンサー",
"block.minecraft.dragon_egg": "ドラゴンの卵",
"block.minecraft.dragon_head": "ドラゴンの頭",
"block.minecraft.dragon_wall_head": "壁に付けられたドラゴンの頭",
"block.minecraft.dried_kelp_block": "乾燥した昆布ブロック",
"block.minecraft.dropper": "ドロッパー",
"block.minecraft.emerald_block": "エメラルドブロック",
"block.minecraft.emerald_ore": "エメラルド鉱石",
"block.minecraft.enchanting_table": "エンチャントテーブル",
"block.minecraft.end_gateway": "エンドゲートウェイ",
"block.minecraft.end_portal": "エンドポータル",
"block.minecraft.end_portal_frame": "エンドポータルフレーム",
"block.minecraft.end_rod": "エンドロッド",
"block.minecraft.end_stone": "エンドストーン",
"block.minecraft.end_stone_brick_slab": "エンドストーンレンガのハーフブロック",
"block.minecraft.end_stone_brick_stairs": "エンドストーンレンガの階段",
"block.minecraft.end_stone_brick_wall": "エンドストーンレンガの塀",
"block.minecraft.end_stone_bricks": "エンドストーンレンガ",
"block.minecraft.ender_chest": "エンダーチェスト",
"block.minecraft.farmland": "耕地",
"block.minecraft.fern": "シダ",
"block.minecraft.fire": "炎",
"block.minecraft.fire_coral": "ミレポラサンゴ",
"block.minecraft.fire_coral_block": "ミレポラサンゴブロック",
"block.minecraft.fire_coral_fan": "ミレポラウチワサンゴ",
"block.minecraft.fire_coral_wall_fan": "壁付きのミレポラウチワサンゴ",
"block.minecraft.fletching_table": "矢細工台",
"block.minecraft.flower_pot": "植木鉢",
"block.minecraft.frosted_ice": "薄氷",
"block.minecraft.furnace": "かまど",
"block.minecraft.gilded_blackstone": "きらめくブラックストーン",
"block.minecraft.glass": "ガラス",
"block.minecraft.glass_pane": "ガラス板",
"block.minecraft.glowstone": "グロウストーン",
"block.minecraft.gold_block": "金ブロック",
"block.minecraft.gold_ore": "金鉱石",
"block.minecraft.granite": "花崗岩",
"block.minecraft.granite_slab": "花崗岩のハーフブロック",
"block.minecraft.granite_stairs": "花崗岩の階段",
"block.minecraft.granite_wall": "花崗岩の塀",
"block.minecraft.grass": "草",
"block.minecraft.grass_block": "草ブロック",
"block.minecraft.grass_path": "草の道",
"block.minecraft.gravel": "砂利",
"block.minecraft.gray_banner": "灰色の旗",
"block.minecraft.gray_bed": "灰色のベッド",
"block.minecraft.gray_carpet": "灰色のカーペット",
"block.minecraft.gray_concrete": "灰色のコンクリート",
"block.minecraft.gray_concrete_powder": "灰色のコンクリートパウダー",
"block.minecraft.gray_glazed_terracotta": "灰色の彩釉テラコッタ",
"block.minecraft.gray_shulker_box": "灰色のシュルカーボックス",
"block.minecraft.gray_stained_glass": "灰色の色付きガラス",
"block.minecraft.gray_stained_glass_pane": "灰色の色付きガラス板",
"block.minecraft.gray_terracotta": "灰色のテラコッタ",
"block.minecraft.gray_wool": "灰色の羊毛",
"block.minecraft.green_banner": "緑色の旗",
"block.minecraft.green_bed": "緑色のベッド",
"block.minecraft.green_carpet": "緑色のカーペット",
"block.minecraft.green_concrete": "緑色のコンクリート",
"block.minecraft.green_concrete_powder": "緑色のコンクリートパウダー",
"block.minecraft.green_glazed_terracotta": "緑色の彩釉テラコッタ",
"block.minecraft.green_shulker_box": "緑色のシュルカーボックス",
"block.minecraft.green_stained_glass": "緑色の色付きガラス",
"block.minecraft.green_stained_glass_pane": "緑色の色付きガラス板",
"block.minecraft.green_terracotta": "緑色のテラコッタ",
"block.minecraft.green_wool": "緑色の羊毛",
"block.minecraft.grindstone": "砥石",
"block.minecraft.hay_block": "干草の俵",
"block.minecraft.heavy_weighted_pressure_plate": "重量用感圧板",
"block.minecraft.honey_block": "ハチミツブロック",
"block.minecraft.honeycomb_block": "ハニカムブロック",
"block.minecraft.hopper": "ホッパー",
"block.minecraft.horn_coral": "シカツノサンゴ",
"block.minecraft.horn_coral_block": "シカツノサンゴブロック",
"block.minecraft.horn_coral_fan": "シカツノウチワサンゴ",
"block.minecraft.horn_coral_wall_fan": "壁付きのシカツノウチワサンゴ",
"block.minecraft.ice": "氷",
"block.minecraft.infested_chiseled_stone_bricks": "模様入りの虫食い石レンガ",
"block.minecraft.infested_cobblestone": "虫食い丸石",
"block.minecraft.infested_cracked_stone_bricks": "ひび割れた虫食い石レンガ",
"block.minecraft.infested_mossy_stone_bricks": "苔むした虫食い石レンガ",
"block.minecraft.infested_stone": "虫食い石",
"block.minecraft.infested_stone_bricks": "虫食い石レンガ",
"block.minecraft.iron_bars": "鉄格子",
"block.minecraft.iron_block": "鉄ブロック",
"block.minecraft.iron_door": "鉄のドア",
"block.minecraft.iron_ore": "鉄鉱石",
"block.minecraft.iron_trapdoor": "鉄のトラップドア",
"block.minecraft.jack_o_lantern": "ジャック・オ・ランタン",
"block.minecraft.jigsaw": "ジグソーブロック",
"block.minecraft.jukebox": "ジュークボックス",
"block.minecraft.jungle_button": "ジャングルのボタン",
"block.minecraft.jungle_door": "ジャングルのドア",
"block.minecraft.jungle_fence": "ジャングルのフェンス",
"block.minecraft.jungle_fence_gate": "ジャングルのフェンスゲート",
"block.minecraft.jungle_leaves": "ジャングルの葉",
"block.minecraft.jungle_log": "ジャングルの原木",
"block.minecraft.jungle_planks": "ジャングルの板材",
"block.minecraft.jungle_pressure_plate": "ジャングルの感圧板",
"block.minecraft.jungle_sapling": "ジャングルの苗木",
"block.minecraft.jungle_sign": "ジャングルの看板",
"block.minecraft.jungle_slab": "ジャングルのハーフブロック",
"block.minecraft.jungle_stairs": "ジャングルの階段",
"block.minecraft.jungle_trapdoor": "ジャングルのトラップドア",
"block.minecraft.jungle_wall_sign": "壁に付けられたジャングルの看板",
"block.minecraft.jungle_wood": "ジャングルの木",
"block.minecraft.kelp": "コンブ",
"block.minecraft.kelp_plant": "コンブの茎",
"block.minecraft.ladder": "はしご",
"block.minecraft.lantern": "ランタン",
"block.minecraft.lapis_block": "ラピスラズリブロック",
"block.minecraft.lapis_ore": "ラピスラズリ鉱石",
"block.minecraft.large_fern": "大きなシダ",
"block.minecraft.lava": "溶岩",
"block.minecraft.lectern": "書見台",
"block.minecraft.lever": "レバー",
"block.minecraft.light_blue_banner": "空色の旗",
"block.minecraft.light_blue_bed": "空色のベッド",
"block.minecraft.light_blue_carpet": "空色のカーペット",
"block.minecraft.light_blue_concrete": "空色のコンクリート",
"block.minecraft.light_blue_concrete_powder": "空色のコンクリートパウダー",
"block.minecraft.light_blue_glazed_terracotta": "空色の彩釉テラコッタ",
"block.minecraft.light_blue_shulker_box": "空色のシュルカーボックス",
"block.minecraft.light_blue_stained_glass": "空色の色付きガラス",
"block.minecraft.light_blue_stained_glass_pane": "空色の色付きガラス板",
"block.minecraft.light_blue_terracotta": "空色のテラコッタ",
"block.minecraft.light_blue_wool": "空色の羊毛",
"block.minecraft.light_gray_banner": "薄灰色の旗",
"block.minecraft.light_gray_bed": "薄灰色のベッド",
"block.minecraft.light_gray_carpet": "薄灰色のカーペット",
"block.minecraft.light_gray_concrete": "薄灰色のコンクリート",
"block.minecraft.light_gray_concrete_powder": "薄灰色のコンクリートパウダー",
"block.minecraft.light_gray_glazed_terracotta": "薄灰色の彩釉テラコッタ",
"block.minecraft.light_gray_shulker_box": "薄灰色のシュルカーボックス",
"block.minecraft.light_gray_stained_glass": "薄灰色の色付きガラス",
"block.minecraft.light_gray_stained_glass_pane": "薄灰色の色付きガラス板",
"block.minecraft.light_gray_terracotta": "薄灰色のテラコッタ",
"block.minecraft.light_gray_wool": "薄灰色の羊毛",
"block.minecraft.light_weighted_pressure_plate": "軽量用感圧板",
"block.minecraft.lilac": "ライラック",
"block.minecraft.lily_of_the_valley": "スズラン",
"block.minecraft.lily_pad": "スイレンの葉",
"block.minecraft.lime_banner": "黄緑色の旗",
"block.minecraft.lime_bed": "黄緑色のベッド",
"block.minecraft.lime_carpet": "黄緑色のカーペット",
"block.minecraft.lime_concrete": "黄緑色のコンクリート",
"block.minecraft.lime_concrete_powder": "黄緑色のコンクリートパウダー",
"block.minecraft.lime_glazed_terracotta": "黄緑色の彩釉テラコッタ",
"block.minecraft.lime_shulker_box": "黄緑色のシュルカーボックス",
"block.minecraft.lime_stained_glass": "黄緑色の色付きガラス",
"block.minecraft.lime_stained_glass_pane": "黄緑色の色付きガラス板",
"block.minecraft.lime_terracotta": "黄緑色のテラコッタ",
"block.minecraft.lime_wool": "黄緑色の羊毛",
"block.minecraft.lodestone": "ロードストーン",
"block.minecraft.loom": "機織り機",
"block.minecraft.magenta_banner": "赤紫色の旗",
"block.minecraft.magenta_bed": "赤紫色のベッド",
"block.minecraft.magenta_carpet": "赤紫色のカーペット",
"block.minecraft.magenta_concrete": "赤紫色のコンクリート",
"block.minecraft.magenta_concrete_powder": "赤紫色のコンクリートパウダー",
"block.minecraft.magenta_glazed_terracotta": "赤紫色の彩釉テラコッタ",
"block.minecraft.magenta_shulker_box": "赤紫色のシュルカーボックス",
"block.minecraft.magenta_stained_glass": "赤紫色の色付きガラス",
"block.minecraft.magenta_stained_glass_pane": "赤紫色の色付きガラス板",
"block.minecraft.magenta_terracotta": "赤紫色のテラコッタ",
"block.minecraft.magenta_wool": "赤紫色の羊毛",
"block.minecraft.magma_block": "マグマブロック",
"block.minecraft.melon": "スイカ",
"block.minecraft.melon_stem": "スイカの茎",
"block.minecraft.mossy_cobblestone": "苔むした丸石",
"block.minecraft.mossy_cobblestone_slab": "苔むした丸石のハーフブロック",
"block.minecraft.mossy_cobblestone_stairs": "苔むした丸石の階段",
"block.minecraft.mossy_cobblestone_wall": "苔むした丸石の塀",
"block.minecraft.mossy_stone_brick_slab": "苔むした石レンガのハーフブロック",
"block.minecraft.mossy_stone_brick_stairs": "苔むした石レンガの階段",
"block.minecraft.mossy_stone_brick_wall": "苔むした石レンガの塀",
"block.minecraft.mossy_stone_bricks": "苔むした石レンガ",
"block.minecraft.moving_piston": "作動中のピストン",
"block.minecraft.mushroom_stem": "キノコの柄",
"block.minecraft.mycelium": "菌糸",
"block.minecraft.nether_brick_fence": "ネザーレンガのフェンス",
"block.minecraft.nether_brick_slab": "ネザーレンガのハーフブロック",
"block.minecraft.nether_brick_stairs": "ネザーレンガの階段",
"block.minecraft.nether_brick_wall": "ネザーレンガの塀",
"block.minecraft.nether_bricks": "ネザーレンガ",
"block.minecraft.nether_gold_ore": "ネザー金鉱石",
"block.minecraft.nether_portal": "ネザーポータル",
"block.minecraft.nether_quartz_ore": "ネザークォーツ鉱石",
"block.minecraft.nether_sprouts": "ネザースプラウト",
"block.minecraft.nether_wart": "ネザーウォート",
"block.minecraft.nether_wart_block": "ネザーウォートブロック",
"block.minecraft.netherite_block": "ネザライトブロック",
"block.minecraft.netherrack": "ネザーラック",
"block.minecraft.note_block": "音符ブロック",
"block.minecraft.oak_button": "オークのボタン",
"block.minecraft.oak_door": "オークのドア",
"block.minecraft.oak_fence": "オークのフェンス",
"block.minecraft.oak_fence_gate": "オークのフェンスゲート",
"block.minecraft.oak_leaves": "オークの葉",
"block.minecraft.oak_log": "オークの原木",
"block.minecraft.oak_planks": "オークの板材",
"block.minecraft.oak_pressure_plate": "オークの感圧板",
"block.minecraft.oak_sapling": "オークの苗木",
"block.minecraft.oak_sign": "オークの看板",
"block.minecraft.oak_slab": "オークのハーフブロック",
"block.minecraft.oak_stairs": "オークの階段",
"block.minecraft.oak_trapdoor": "オークのトラップドア",
"block.minecraft.oak_wall_sign": "壁に付けられたオークの看板",
"block.minecraft.oak_wood": "オークの木",
"block.minecraft.observer": "オブザーバー",
"block.minecraft.obsidian": "黒曜石",
"block.minecraft.ominous_banner": "不吉な旗",
"block.minecraft.orange_banner": "橙色の旗",
"block.minecraft.orange_bed": "橙色のベッド",
"block.minecraft.orange_carpet": "橙色のカーペット",
"block.minecraft.orange_concrete": "橙色のコンクリート",
"block.minecraft.orange_concrete_powder": "橙色のコンクリートパウダー",
"block.minecraft.orange_glazed_terracotta": "橙色の彩釉テラコッタ",
"block.minecraft.orange_shulker_box": "橙色のシュルカーボックス",
"block.minecraft.orange_stained_glass": "橙色の色付きガラス",
"block.minecraft.orange_stained_glass_pane": "橙色の色付きガラス板",
"block.minecraft.orange_terracotta": "橙色のテラコッタ",
"block.minecraft.orange_tulip": "橙色のチューリップ",
"block.minecraft.orange_wool": "橙色の羊毛",
"block.minecraft.oxeye_daisy": "フランスギク",
"block.minecraft.packed_ice": "氷塊",
"block.minecraft.peony": "ボタン",
"block.minecraft.petrified_oak_slab": "石化したオークのハーフブロック",
"block.minecraft.pink_banner": "桃色の旗",
"block.minecraft.pink_bed": "桃色のベッド",
"block.minecraft.pink_carpet": "桃色のカーペット",
"block.minecraft.pink_concrete": "桃色のコンクリート",
"block.minecraft.pink_concrete_powder": "桃色のコンクリートパウダー",
"block.minecraft.pink_glazed_terracotta": "桃色の彩釉テラコッタ",
"block.minecraft.pink_shulker_box": "桃色のシュルカーボックス",
"block.minecraft.pink_stained_glass": "桃色の色付きガラス",
"block.minecraft.pink_stained_glass_pane": "桃色の色付きガラス板",
"block.minecraft.pink_terracotta": "桃色のテラコッタ",
"block.minecraft.pink_tulip": "桃色のチューリップ",
"block.minecraft.pink_wool": "桃色の羊毛",
"block.minecraft.piston": "ピストン",
"block.minecraft.piston_head": "ピストンヘッド",
"block.minecraft.player_head": "プレイヤーの頭",
"block.minecraft.player_head.named": "%s の頭",
"block.minecraft.player_wall_head": "壁に付けられたプレイヤーの頭",
"block.minecraft.podzol": "ポドゾル",
"block.minecraft.polished_andesite": "磨かれた安山岩",
"block.minecraft.polished_andesite_slab": "磨かれた安山岩のハーフブロック",
"block.minecraft.polished_andesite_stairs": "磨かれた安山岩の階段",
"block.minecraft.polished_basalt": "磨かれた玄武岩",
"block.minecraft.polished_blackstone": "磨かれたブラックストーン",
"block.minecraft.polished_blackstone_brick_slab": "磨かれたブラックストーンレンガのハーフブロック",
"block.minecraft.polished_blackstone_brick_stairs": "磨かれたブラックストーンレンガの階段",
"block.minecraft.polished_blackstone_brick_wall": "磨かれたブラックストーンレンガの塀",
"block.minecraft.polished_blackstone_bricks": "磨かれたブラックストーンレンガ",
"block.minecraft.polished_blackstone_button": "磨かれたブラックストーンのボタン",
"block.minecraft.polished_blackstone_pressure_plate": "磨かれたブラックストーンの感圧板",
"block.minecraft.polished_blackstone_slab": "磨かれたブラックストーンのハーフブロック",
"block.minecraft.polished_blackstone_stairs": "磨かれたブラックストーンの階段",
"block.minecraft.polished_blackstone_wall": "磨かれたブラックストーンの塀",
"block.minecraft.polished_diorite": "磨かれた閃緑岩",
"block.minecraft.polished_diorite_slab": "磨かれた閃緑岩のハーフブロック",
"block.minecraft.polished_diorite_stairs": "磨かれた閃緑岩の階段",
"block.minecraft.polished_granite": "磨かれた花崗岩",
"block.minecraft.polished_granite_slab": "磨かれた花崗岩のハーフブロック",
"block.minecraft.polished_granite_stairs": "磨かれた花崗岩の階段",
"block.minecraft.poppy": "ポピー",
"block.minecraft.potatoes": "ジャガイモ",
"block.minecraft.potted_acacia_sapling": "植えられたアカシアの苗木",
"block.minecraft.potted_allium": "植えられたアリウム",
"block.minecraft.potted_azure_bluet": "植えられたヒナソウ",
"block.minecraft.potted_bamboo": "植えられた竹",
"block.minecraft.potted_birch_sapling": "植えられたシラカバの苗木",
"block.minecraft.potted_blue_orchid": "植えられたヒスイラン",
"block.minecraft.potted_brown_mushroom": "植えられた茶色のキノコ",
"block.minecraft.potted_cactus": "植えられたサボテン",
"block.minecraft.potted_cornflower": "植えられたヤグルマギク",
"block.minecraft.potted_crimson_fungus": "植えられた真紅のキノコ",
"block.minecraft.potted_crimson_roots": "植えられた真紅の根",
"block.minecraft.potted_dandelion": "植えられたタンポポ",
"block.minecraft.potted_dark_oak_sapling": "植えられたダークオークの苗木",
"block.minecraft.potted_dead_bush": "植えられた枯れ木",
"block.minecraft.potted_fern": "植えられたシダ",
"block.minecraft.potted_jungle_sapling": "植えられたジャングルの苗木",
"block.minecraft.potted_lily_of_the_valley": "植えられたスズラン",
"block.minecraft.potted_oak_sapling": "植えられたオークの苗木",
"block.minecraft.potted_orange_tulip": "植えられた橙色のチューリップ",
"block.minecraft.potted_oxeye_daisy": "植えられたフランスギク",
"block.minecraft.potted_pink_tulip": "植えられた桃色のチューリップ",
"block.minecraft.potted_poppy": "植えられたポピー",
"block.minecraft.potted_red_mushroom": "植えられた赤色のキノコ",
"block.minecraft.potted_red_tulip": "植えられた赤色のチューリップ",
"block.minecraft.potted_spruce_sapling": "植えられたトウヒの苗木",
"block.minecraft.potted_warped_fungus": "植えられた歪んだキノコ",
"block.minecraft.potted_warped_roots": "植えられた歪んだ根",
"block.minecraft.potted_white_tulip": "植えられた白色のチューリップ",
"block.minecraft.potted_wither_rose": "植えられたウィザーローズ",
"block.minecraft.powered_rail": "パワードレール",
"block.minecraft.prismarine": "プリズマリン",
"block.minecraft.prismarine_brick_slab": "プリズマリンレンガのハーフブロック",
"block.minecraft.prismarine_brick_stairs": "プリズマリンレンガの階段",
"block.minecraft.prismarine_bricks": "プリズマリンレンガ",
"block.minecraft.prismarine_slab": "プリズマリンのハーフブロック",
"block.minecraft.prismarine_stairs": "プリズマリンの階段",
"block.minecraft.prismarine_wall": "プリズマリンの塀",
"block.minecraft.pumpkin": "カボチャ",
"block.minecraft.pumpkin_stem": "カボチャの茎",
"block.minecraft.purple_banner": "紫色の旗",
"block.minecraft.purple_bed": "紫色のベッド",
"block.minecraft.purple_carpet": "紫色のカーペット",
"block.minecraft.purple_concrete": "紫色のコンクリート",
"block.minecraft.purple_concrete_powder": "紫色のコンクリートパウダー",
"block.minecraft.purple_glazed_terracotta": "紫色の彩釉テラコッタ",
"block.minecraft.purple_shulker_box": "紫色のシュルカーボックス",
"block.minecraft.purple_stained_glass": "紫色の色付きガラス",
"block.minecraft.purple_stained_glass_pane": "紫色の色付きガラス板",
"block.minecraft.purple_terracotta": "紫色のテラコッタ",
"block.minecraft.purple_wool": "紫色の羊毛",
"block.minecraft.purpur_block": "プルプァブロック",
"block.minecraft.purpur_pillar": "プルプァの柱",
"block.minecraft.purpur_slab": "プルプァのハーフブロック",
"block.minecraft.purpur_stairs": "プルプァの階段",
"block.minecraft.quartz_block": "クォーツブロック",
"block.minecraft.quartz_bricks": "クォーツレンガ",
"block.minecraft.quartz_pillar": "クォーツの柱",
"block.minecraft.quartz_slab": "クォーツのハーフブロック",
"block.minecraft.quartz_stairs": "クォーツの階段",
"block.minecraft.rail": "レール",
"block.minecraft.red_banner": "赤色の旗",
"block.minecraft.red_bed": "赤色のベッド",
"block.minecraft.red_carpet": "赤色のカーペット",
"block.minecraft.red_concrete": "赤色のコンクリート",
"block.minecraft.red_concrete_powder": "赤色のコンクリートパウダー",
"block.minecraft.red_glazed_terracotta": "赤色の彩釉テラコッタ",
"block.minecraft.red_mushroom": "赤色のキノコ",
"block.minecraft.red_mushroom_block": "赤色のキノコブロック",
"block.minecraft.red_nether_brick_slab": "赤いネザーレンガのハーフブロック",
"block.minecraft.red_nether_brick_stairs": "赤いネザーレンガの階段",
"block.minecraft.red_nether_brick_wall": "赤いネザーレンガの塀",
"block.minecraft.red_nether_bricks": "赤いネザーレンガ",
"block.minecraft.red_sand": "赤い砂",
"block.minecraft.red_sandstone": "赤い砂岩",
"block.minecraft.red_sandstone_slab": "赤い砂岩のハーフブロック",
"block.minecraft.red_sandstone_stairs": "赤い砂岩の階段",
"block.minecraft.red_sandstone_wall": "赤い砂岩の塀",
"block.minecraft.red_shulker_box": "赤色のシュルカーボックス",
"block.minecraft.red_stained_glass": "赤色の色付きガラス",
"block.minecraft.red_stained_glass_pane": "赤色の色付きガラス板",
"block.minecraft.red_terracotta": "赤色のテラコッタ",
"block.minecraft.red_tulip": "赤色のチューリップ",
"block.minecraft.red_wool": "赤色の羊毛",
"block.minecraft.redstone_block": "レッドストーンブロック",
"block.minecraft.redstone_lamp": "レッドストーンランプ",
"block.minecraft.redstone_ore": "レッドストーン鉱石",
"block.minecraft.redstone_torch": "レッドストーントーチ",
"block.minecraft.redstone_wall_torch": "壁に付けられたレッドストーントーチ",
"block.minecraft.redstone_wire": "レッドストーンワイヤー",
"block.minecraft.repeater": "レッドストーンリピーター",
"block.minecraft.repeating_command_block": "リピートコマンドブロック",
"block.minecraft.respawn_anchor": "リスポーンアンカー",
"block.minecraft.rose_bush": "バラの低木",
"block.minecraft.sand": "砂",
"block.minecraft.sandstone": "砂岩",
"block.minecraft.sandstone_slab": "砂岩のハーフブロック",
"block.minecraft.sandstone_stairs": "砂岩の階段",
"block.minecraft.sandstone_wall": "砂岩の塀",
"block.minecraft.scaffolding": "足場",
"block.minecraft.sea_lantern": "シーランタン",
"block.minecraft.sea_pickle": "シーピクルス",
"block.minecraft.seagrass": "海草",
"block.minecraft.set_spawn": "リスポーン地点が設定されました",
"block.minecraft.shroomlight": "シュルームライト",
"block.minecraft.shulker_box": "シュルカーボックス",
"block.minecraft.skeleton_skull": "スケルトンの頭蓋骨",
"block.minecraft.skeleton_wall_skull": "壁に付けられたスケルトンの頭蓋骨",
"block.minecraft.slime_block": "スライムブロック",
"block.minecraft.smithing_table": "鍛冶台",
"block.minecraft.smoker": "燻製器",
"block.minecraft.smooth_quartz": "滑らかなクォーツブロック",
"block.minecraft.smooth_quartz_slab": "滑らかなクォーツのハーフブロック",
"block.minecraft.smooth_quartz_stairs": "滑らかなクォーツの階段",
"block.minecraft.smooth_red_sandstone": "滑らかな赤い砂岩",
"block.minecraft.smooth_red_sandstone_slab": "滑らかな赤い砂岩のハーフブロック",
"block.minecraft.smooth_red_sandstone_stairs": "滑らかな赤い砂岩の階段",
"block.minecraft.smooth_sandstone": "滑らかな砂岩",
"block.minecraft.smooth_sandstone_slab": "滑らかな砂岩のハーフブロック",
"block.minecraft.smooth_sandstone_stairs": "滑らかな砂岩の階段",
"block.minecraft.smooth_stone": "滑らかな石",
"block.minecraft.smooth_stone_slab": "滑らかな石のハーフブロック",
"block.minecraft.snow": "雪",
"block.minecraft.snow_block": "雪ブロック",
"block.minecraft.soul_campfire": "魂の焚き火",
"block.minecraft.soul_fire": "魂の炎",
"block.minecraft.soul_lantern": "魂のランタン",
"block.minecraft.soul_sand": "ソウルサンド",
"block.minecraft.soul_soil": "ソウルソイル",
"block.minecraft.soul_torch": "魂の松明",
"block.minecraft.soul_wall_torch": "壁に付けられた魂の松明",
"block.minecraft.spawn.not_valid": "ベッドもしくはチャージされたリスポーンアンカーが存在しないか、あるいは塞がれています。",
"block.minecraft.spawner": "スポナー",
"block.minecraft.sponge": "スポンジ",
"block.minecraft.spruce_button": "トウヒのボタン",
"block.minecraft.spruce_door": "トウヒのドア",
"block.minecraft.spruce_fence": "トウヒのフェンス",
"block.minecraft.spruce_fence_gate": "トウヒのフェンスゲート",
"block.minecraft.spruce_leaves": "トウヒの葉",
"block.minecraft.spruce_log": "トウヒの原木",
"block.minecraft.spruce_planks": "トウヒの板材",
"block.minecraft.spruce_pressure_plate": "トウヒの感圧板",
"block.minecraft.spruce_sapling": "トウヒの苗木",
"block.minecraft.spruce_sign": "トウヒの看板",
"block.minecraft.spruce_slab": "トウヒのハーフブロック",
"block.minecraft.spruce_stairs": "トウヒの階段",
"block.minecraft.spruce_trapdoor": "トウヒのトラップドア",
"block.minecraft.spruce_wall_sign": "壁に付けられたトウヒの看板",
"block.minecraft.spruce_wood": "トウヒの木",
"block.minecraft.sticky_piston": "粘着ピストン",
"block.minecraft.stone": "石",
"block.minecraft.stone_brick_slab": "石レンガのハーフブロック",
"block.minecraft.stone_brick_stairs": "石レンガの階段",
"block.minecraft.stone_brick_wall": "石レンガの塀",
"block.minecraft.stone_bricks": "石レンガ",
"block.minecraft.stone_button": "石のボタン",
"block.minecraft.stone_pressure_plate": "石の感圧板",
"block.minecraft.stone_slab": "石のハーフブロック",
"block.minecraft.stone_stairs": "石の階段",
"block.minecraft.stonecutter": "石切台",
"block.minecraft.stripped_acacia_log": "樹皮を剥いだアカシアの原木",
"block.minecraft.stripped_acacia_wood": "樹皮を剥いだアカシアの木",
"block.minecraft.stripped_birch_log": "樹皮を剥いだシラカバの原木",
"block.minecraft.stripped_birch_wood": "樹皮を剥いだシラカバの木",
"block.minecraft.stripped_crimson_hyphae": "表皮を剥いだ真紅の菌糸",
"block.minecraft.stripped_crimson_stem": "表皮を剥いだ真紅の幹",
"block.minecraft.stripped_dark_oak_log": "樹皮を剥いだダークオークの原木",
"block.minecraft.stripped_dark_oak_wood": "樹皮を剥いだダークオークの木",
"block.minecraft.stripped_jungle_log": "樹皮を剥いだジャングルの原木",
"block.minecraft.stripped_jungle_wood": "樹皮を剥いだジャングルの木",
"block.minecraft.stripped_oak_log": "樹皮を剥いだオークの原木",
"block.minecraft.stripped_oak_wood": "樹皮を剥いだオークの木",
"block.minecraft.stripped_spruce_log": "樹皮を剥いだトウヒの原木",
"block.minecraft.stripped_spruce_wood": "樹皮を剥いだトウヒの木",
"block.minecraft.stripped_warped_hyphae": "表皮を剥いだ歪んだ菌糸",
"block.minecraft.stripped_warped_stem": "表皮を剥いだ歪んだ幹",
"block.minecraft.structure_block": "ストラクチャーブロック",
"block.minecraft.structure_void": "ストラクチャーヴォイド",
"block.minecraft.sugar_cane": "サトウキビ",
"block.minecraft.sunflower": "ヒマワリ",
"block.minecraft.sweet_berry_bush": "スイートベリーの低木",
"block.minecraft.tall_grass": "背の高い草",
"block.minecraft.tall_seagrass": "背の高い海草",
"block.minecraft.target": "的",
"block.minecraft.terracotta": "テラコッタ",
"block.minecraft.tnt": "TNT",
"block.minecraft.torch": "松明",
"block.minecraft.trapped_chest": "トラップチェスト",
"block.minecraft.tripwire": "トリップワイヤー",
"block.minecraft.tripwire_hook": "トリップワイヤーフック",
"block.minecraft.tube_coral": "クダサンゴ",
"block.minecraft.tube_coral_block": "クダサンゴブロック",
"block.minecraft.tube_coral_fan": "クダウチワサンゴ",
"block.minecraft.tube_coral_wall_fan": "壁付きのクダウチワサンゴ",
"block.minecraft.turtle_egg": "カメの卵",
"block.minecraft.twisting_vines": "ねじれツタ",
"block.minecraft.twisting_vines_plant": "ねじれツタのつる",
"block.minecraft.vine": "ツタ",
"block.minecraft.void_air": "奈落の空気",
"block.minecraft.wall_torch": "壁に付けられた松明",
"block.minecraft.warped_button": "歪んだボタン",
"block.minecraft.warped_door": "歪んだドア",
"block.minecraft.warped_fence": "歪んだフェンス",
"block.minecraft.warped_fence_gate": "歪んだフェンスゲート",
"block.minecraft.warped_fungus": "歪んだキノコ",
"block.minecraft.warped_hyphae": "歪んだ菌糸",
"block.minecraft.warped_nylium": "歪んだナイリウム",
"block.minecraft.warped_planks": "歪んだ板材",
"block.minecraft.warped_pressure_plate": "歪んだ感圧板",
"block.minecraft.warped_roots": "歪んだ根",
"block.minecraft.warped_sign": "歪んだ看板",
"block.minecraft.warped_slab": "歪んだハーフブロック",
"block.minecraft.warped_stairs": "歪んだ階段",
"block.minecraft.warped_stem": "歪んだ幹",
"block.minecraft.warped_trapdoor": "歪んだトラップドア",
"block.minecraft.warped_wall_sign": "壁に付けられた歪んだ看板",
"block.minecraft.warped_wart_block": "歪んだウォートブロック",
"block.minecraft.water": "水",
"block.minecraft.weeping_vines": "しだれツタ",
"block.minecraft.weeping_vines_plant": "しだれツタのつる",
"block.minecraft.wet_sponge": "濡れたスポンジ",
"block.minecraft.wheat": "小麦",
"block.minecraft.white_banner": "白色の旗",
"block.minecraft.white_bed": "白色のベッド",
"block.minecraft.white_carpet": "白色のカーペット",
"block.minecraft.white_concrete": "白色のコンクリート",
"block.minecraft.white_concrete_powder": "白色のコンクリートパウダー",
"block.minecraft.white_glazed_terracotta": "白色の彩釉テラコッタ",
"block.minecraft.white_shulker_box": "白色のシュルカーボックス",
"block.minecraft.white_stained_glass": "白色の色付きガラス",
"block.minecraft.white_stained_glass_pane": "白色の色付きガラス板",
"block.minecraft.white_terracotta": "白色のテラコッタ",
"block.minecraft.white_tulip": "白色のチューリップ",
"block.minecraft.white_wool": "白色の羊毛",
"block.minecraft.wither_rose": "ウィザーローズ",
"block.minecraft.wither_skeleton_skull": "ウィザースケルトンの頭蓋骨",
"block.minecraft.wither_skeleton_wall_skull": "壁に付けられたウィザースケルトンの頭蓋骨",
"block.minecraft.yellow_banner": "黄色の旗",
"block.minecraft.yellow_bed": "黄色のベッド",
"block.minecraft.yellow_carpet": "黄色のカーペット",
"block.minecraft.yellow_concrete": "黄色のコンクリート",
"block.minecraft.yellow_concrete_powder": "黄色のコンクリートパウダー",
"block.minecraft.yellow_glazed_terracotta": "黄色の彩釉テラコッタ",
"block.minecraft.yellow_shulker_box": "黄色のシュルカーボックス",
"block.minecraft.yellow_stained_glass": "黄色の色付きガラス",
"block.minecraft.yellow_stained_glass_pane": "黄色の色付きガラス板",
"block.minecraft.yellow_terracotta": "黄色のテラコッタ",
"block.minecraft.yellow_wool": "黄色の羊毛",
"block.minecraft.zombie_head": "ゾンビの頭",
"block.minecraft.zombie_wall_head": "壁に付けられたゾンビの頭",
"item.minecraft.acacia_boat": "アカシアのボート",
"item.minecraft.apple": "リンゴ",
"item.minecraft.armor_stand": "防具立て",
"item.minecraft.arrow": "矢",
"item.minecraft.baked_potato": "ベイクドポテト",
"item.minecraft.bat_spawn_egg": "コウモリのスポーンエッグ",
"item.minecraft.bee_spawn_egg": "ミツバチのスポーンエッグ",
"item.minecraft.beef": "生の牛肉",
"item.minecraft.beetroot": "ビートルート",
"item.minecraft.beetroot_seeds": "ビートルートの種",
"item.minecraft.beetroot_soup": "ビートルートスープ",
"item.minecraft.birch_boat": "シラカバのボート",
"item.minecraft.black_dye": "黒色の染料",
"item.minecraft.blaze_powder": "ブレイズパウダー",
"item.minecraft.blaze_rod": "ブレイズロッド",
"item.minecraft.blaze_spawn_egg": "ブレイズのスポーンエッグ",
"item.minecraft.blue_dye": "青色の染料",
"item.minecraft.bone": "骨",
"item.minecraft.bone_meal": "骨粉",
"item.minecraft.book": "本",
"item.minecraft.bow": "弓",
"item.minecraft.bowl": "ボウル",
"item.minecraft.bread": "パン",
"item.minecraft.brewing_stand": "醸造台",
"item.minecraft.brick": "レンガ",
"item.minecraft.brown_dye": "茶色の染料",
"item.minecraft.bucket": "バケツ",
"item.minecraft.carrot": "ニンジン",
"item.minecraft.carrot_on_a_stick": "ニンジン付きの棒",
"item.minecraft.cat_spawn_egg": "ネコのスポーンエッグ",
"item.minecraft.cauldron": "大釜",
"item.minecraft.cave_spider_spawn_egg": "洞窟グモのスポーンエッグ",
"item.minecraft.chainmail_boots": "チェーンのブーツ",
"item.minecraft.chainmail_chestplate": "チェーンのチェストプレート",
"item.minecraft.chainmail_helmet": "チェーンのヘルメット",
"item.minecraft.chainmail_leggings": "チェーンのレギンス",
"item.minecraft.charcoal": "木炭",
"item.minecraft.chest_minecart": "チェスト付きトロッコ",
"item.minecraft.chicken": "生の鶏肉",
"item.minecraft.chicken_spawn_egg": "ニワトリのスポーンエッグ",
"item.minecraft.chorus_fruit": "コーラスフルーツ",
"item.minecraft.clay_ball": "粘土玉",
"item.minecraft.clock": "時計",
"item.minecraft.coal": "石炭",
"item.minecraft.cocoa_beans": "カカオ豆",
"item.minecraft.cod": "生鱈",
"item.minecraft.cod_bucket": "タラ入りバケツ",
"item.minecraft.cod_spawn_egg": "タラのスポーンエッグ",
"item.minecraft.command_block_minecart": "コマンドブロック付きトロッコ",
"item.minecraft.compass": "コンパス",
"item.minecraft.cooked_beef": "ステーキ",
"item.minecraft.cooked_chicken": "焼き鳥",
"item.minecraft.cooked_cod": "焼き鱈",
"item.minecraft.cooked_mutton": "焼き羊肉",
"item.minecraft.cooked_porkchop": "焼き豚",
"item.minecraft.cooked_rabbit": "焼き兎肉",
"item.minecraft.cooked_salmon": "焼き鮭",
"item.minecraft.cookie": "クッキー",
"item.minecraft.cow_spawn_egg": "ウシのスポーンエッグ",
"item.minecraft.creeper_banner_pattern": "旗の模様",
"item.minecraft.creeper_banner_pattern.desc": "クリーパー模様",
"item.minecraft.creeper_spawn_egg": "クリーパーのスポーンエッグ",
"item.minecraft.crossbow": "クロスボウ",
"item.minecraft.crossbow.projectile": "発射物:",
"item.minecraft.cyan_dye": "青緑色の染料",
"item.minecraft.dark_oak_boat": "ダークオークのボート",
"item.minecraft.debug_stick": "デバッグ棒",
"item.minecraft.diamond": "ダイヤモンド",
"item.minecraft.diamond_axe": "ダイヤモンドの斧",
"item.minecraft.diamond_boots": "ダイヤモンドのブーツ",
"item.minecraft.diamond_chestplate": "ダイヤモンドのチェストプレート",
"item.minecraft.diamond_helmet": "ダイヤモンドのヘルメット",
"item.minecraft.diamond_hoe": "ダイヤモンドのクワ",
"item.minecraft.diamond_horse_armor": "ダイヤモンドの馬鎧",
"item.minecraft.diamond_leggings": "ダイヤモンドのレギンス",
"item.minecraft.diamond_pickaxe": "ダイヤモンドのツルハシ",
"item.minecraft.diamond_shovel": "ダイヤモンドのシャベル",
"item.minecraft.diamond_sword": "ダイヤモンドの剣",
"item.minecraft.dolphin_spawn_egg": "イルカのスポーンエッグ",
"item.minecraft.donkey_spawn_egg": "ロバのスポーンエッグ",
"item.minecraft.dragon_breath": "ドラゴンブレス",
"item.minecraft.dried_kelp": "乾燥した昆布",
"item.minecraft.drowned_spawn_egg": "ドラウンドのスポーンエッグ",
"item.minecraft.egg": "卵",
"item.minecraft.elder_guardian_spawn_egg": "エルダーガーディアンのスポーンエッグ",
"item.minecraft.elytra": "エリトラ",
"item.minecraft.emerald": "エメラルド",
"item.minecraft.enchanted_book": "エンチャントの本",
"item.minecraft.enchanted_golden_apple": "エンチャントされた金のリンゴ",
"item.minecraft.end_crystal": "エンドクリスタル",
"item.minecraft.ender_eye": "エンダーアイ",
"item.minecraft.ender_pearl": "エンダーパール",
"item.minecraft.enderman_spawn_egg": "エンダーマンのスポーンエッグ",
"item.minecraft.endermite_spawn_egg": "エンダーマイトのスポーンエッグ",
"item.minecraft.evoker_spawn_egg": "エヴォーカーのスポーンエッグ",
"item.minecraft.experience_bottle": "エンチャントの瓶",
"item.minecraft.feather": "羽根",
"item.minecraft.fermented_spider_eye": "発酵したクモの目",
"item.minecraft.filled_map": "地図",
"item.minecraft.fire_charge": "ファイヤーチャージ",
"item.minecraft.firework_rocket": "ロケット花火",
"item.minecraft.firework_rocket.flight": "飛翔時間:",
"item.minecraft.firework_star": "花火の星",
"item.minecraft.firework_star.black": "黒色",
"item.minecraft.firework_star.blue": "青色",
"item.minecraft.firework_star.brown": "茶色",
"item.minecraft.firework_star.custom_color": "カスタム",
"item.minecraft.firework_star.cyan": "青緑色",
"item.minecraft.firework_star.fade_to": "色変化:",
"item.minecraft.firework_star.flicker": "点滅",
"item.minecraft.firework_star.gray": "灰色",
"item.minecraft.firework_star.green": "緑色",
"item.minecraft.firework_star.light_blue": "空色",
"item.minecraft.firework_star.light_gray": "薄灰色",
"item.minecraft.firework_star.lime": "黄緑色",
"item.minecraft.firework_star.magenta": "赤紫色",
"item.minecraft.firework_star.orange": "橙色",
"item.minecraft.firework_star.pink": "桃色",
"item.minecraft.firework_star.purple": "紫色",
"item.minecraft.firework_star.red": "赤色",
"item.minecraft.firework_star.shape": "不明な形状",
"item.minecraft.firework_star.shape.burst": "破裂",
"item.minecraft.firework_star.shape.creeper": "クリーパー型",
"item.minecraft.firework_star.shape.large_ball": "大玉",
"item.minecraft.firework_star.shape.small_ball": "小玉",
"item.minecraft.firework_star.shape.star": "星型",
"item.minecraft.firework_star.trail": "流星",
"item.minecraft.firework_star.white": "白色",
"item.minecraft.firework_star.yellow": "黄色",
"item.minecraft.fishing_rod": "釣竿",
"item.minecraft.flint": "火打石",
"item.minecraft.flint_and_steel": "火打石と打ち金",
"item.minecraft.flower_banner_pattern": "旗の模様",
"item.minecraft.flower_banner_pattern.desc": "花模様",
"item.minecraft.flower_pot": "植木鉢",
"item.minecraft.fox_spawn_egg": "キツネのスポーンエッグ",
"item.minecraft.furnace_minecart": "かまど付きトロッコ",
"item.minecraft.ghast_spawn_egg": "ガストのスポーンエッグ",
"item.minecraft.ghast_tear": "ガストの涙",
"item.minecraft.glass_bottle": "ガラス瓶",
"item.minecraft.glistering_melon_slice": "きらめくスイカの薄切り",
"item.minecraft.globe_banner_pattern": "旗の模様",
"item.minecraft.globe_banner_pattern.desc": "地球の模様",
"item.minecraft.glowstone_dust": "グロウストーンダスト",
"item.minecraft.gold_ingot": "金インゴット",
"item.minecraft.gold_nugget": "金塊",
"item.minecraft.golden_apple": "金のリンゴ",
"item.minecraft.golden_axe": "金の斧",
"item.minecraft.golden_boots": "金のブーツ",
"item.minecraft.golden_carrot": "金のニンジン",
"item.minecraft.golden_chestplate": "金のチェストプレート",
"item.minecraft.golden_helmet": "金のヘルメット",
"item.minecraft.golden_hoe": "金のクワ",
"item.minecraft.golden_horse_armor": "金の馬鎧",
"item.minecraft.golden_leggings": "金のレギンス",
"item.minecraft.golden_pickaxe": "金のツルハシ",
"item.minecraft.golden_shovel": "金のシャベル",
"item.minecraft.golden_sword": "金の剣",
"item.minecraft.gray_dye": "灰色の染料",
"item.minecraft.green_dye": "緑色の染料",
"item.minecraft.guardian_spawn_egg": "ガーディアンのスポーンエッグ",
"item.minecraft.gunpowder": "火薬",
"item.minecraft.heart_of_the_sea": "海洋の心",
"item.minecraft.hoglin_spawn_egg": "ホグリンのスポーンエッグ",
"item.minecraft.honey_bottle": "ハチミツ入りの瓶",
"item.minecraft.honeycomb": "ハニカム",
"item.minecraft.hopper_minecart": "ホッパー付きトロッコ",
"item.minecraft.horse_spawn_egg": "ウマのスポーンエッグ",
"item.minecraft.husk_spawn_egg": "ハスクのスポーンエッグ",
"item.minecraft.ink_sac": "イカスミ",
"item.minecraft.iron_axe": "鉄の斧",
"item.minecraft.iron_boots": "鉄のブーツ",
"item.minecraft.iron_chestplate": "鉄のチェストプレート",
"item.minecraft.iron_helmet": "鉄のヘルメット",
"item.minecraft.iron_hoe": "鉄のクワ",
"item.minecraft.iron_horse_armor": "鉄の馬鎧",
"item.minecraft.iron_ingot": "鉄インゴット",
"item.minecraft.iron_leggings": "鉄のレギンス",
"item.minecraft.iron_nugget": "鉄塊",
"item.minecraft.iron_pickaxe": "鉄のツルハシ",
"item.minecraft.iron_shovel": "鉄のシャベル",
"item.minecraft.iron_sword": "鉄の剣",
"item.minecraft.item_frame": "額縁",
"item.minecraft.jungle_boat": "ジャングルのボート",
"item.minecraft.knowledge_book": "知恵の本",
"item.minecraft.lapis_lazuli": "ラピスラズリ",
"item.minecraft.lava_bucket": "溶岩入りバケツ",
"item.minecraft.lead": "リード",
"item.minecraft.leather": "革",
"item.minecraft.leather_boots": "革のブーツ",
"item.minecraft.leather_chestplate": "革の上着",
"item.minecraft.leather_helmet": "革の帽子",
"item.minecraft.leather_horse_armor": "革の馬鎧",
"item.minecraft.leather_leggings": "革のズボン",
"item.minecraft.light_blue_dye": "空色の染料",
"item.minecraft.light_gray_dye": "薄灰色の染料",
"item.minecraft.lime_dye": "黄緑色の染料",
"item.minecraft.lingering_potion": "残留ポーション",
"item.minecraft.lingering_potion.effect.awkward": "奇妙な残留ポーション",
"item.minecraft.lingering_potion.effect.empty": "クラフト不可能な残留ポーション",
"item.minecraft.lingering_potion.effect.fire_resistance": "耐火の残留ポーション",
"item.minecraft.lingering_potion.effect.harming": "負傷の残留ポーション",
"item.minecraft.lingering_potion.effect.healing": "治癒の残留ポーション",
"item.minecraft.lingering_potion.effect.invisibility": "透明化の残留ポーション",
"item.minecraft.lingering_potion.effect.leaping": "跳躍の残留ポーション",
"item.minecraft.lingering_potion.effect.levitation": "浮遊の残留ポーション",
"item.minecraft.lingering_potion.effect.luck": "幸運の残留ポーション",
"item.minecraft.lingering_potion.effect.mundane": "ありふれた残留ポーション",
"item.minecraft.lingering_potion.effect.night_vision": "暗視の残留ポーション",
"item.minecraft.lingering_potion.effect.poison": "毒の残留ポーション",
"item.minecraft.lingering_potion.effect.regeneration": "再生の残留ポーション",
"item.minecraft.lingering_potion.effect.slow_falling": "低速落下の残留ポーション",
"item.minecraft.lingering_potion.effect.slowness": "鈍化の残留ポーション",
"item.minecraft.lingering_potion.effect.strength": "力の残留ポーション",
"item.minecraft.lingering_potion.effect.swiftness": "俊敏の残留ポーション",
"item.minecraft.lingering_potion.effect.thick": "濃厚な残留ポーション",
"item.minecraft.lingering_potion.effect.turtle_master": "タートルマスターの残留ポーション",
"item.minecraft.lingering_potion.effect.water": "水入り残留瓶",
"item.minecraft.lingering_potion.effect.water_breathing": "水中呼吸の残留ポーション",
"item.minecraft.lingering_potion.effect.weakness": "弱化の残留ポーション",
"item.minecraft.llama_spawn_egg": "ラマのスポーンエッグ",
"item.minecraft.lodestone_compass": "ロードストーンコンパス",
"item.minecraft.magenta_dye": "赤紫色の染料",
"item.minecraft.magma_cream": "マグマクリーム",
"item.minecraft.magma_cube_spawn_egg": "マグマキューブのスポーンエッグ",
"item.minecraft.map": "白紙の地図",
"item.minecraft.melon_seeds": "スイカの種",
"item.minecraft.melon_slice": "スイカの薄切り",
"item.minecraft.milk_bucket": "ミルク入りバケツ",
"item.minecraft.minecart": "トロッコ",
"item.minecraft.mojang_banner_pattern": "旗の模様",
"item.minecraft.mojang_banner_pattern.desc": "何かの模様",
"item.minecraft.mooshroom_spawn_egg": "ムーシュルームのスポーンエッグ",
"item.minecraft.mule_spawn_egg": "ラバのスポーンエッグ",
"item.minecraft.mushroom_stew": "キノコシチュー",
"item.minecraft.music_disc_11": "レコード",
"item.minecraft.music_disc_11.desc": "C418 - 11",
"item.minecraft.music_disc_13": "レコード",
"item.minecraft.music_disc_13.desc": "C418 - 13",
"item.minecraft.music_disc_blocks": "レコード",
"item.minecraft.music_disc_blocks.desc": "C418 - blocks",
"item.minecraft.music_disc_cat": "レコード",
"item.minecraft.music_disc_cat.desc": "C418 - cat",
"item.minecraft.music_disc_chirp": "レコード",
"item.minecraft.music_disc_chirp.desc": "C418 - chirp",
"item.minecraft.music_disc_far": "レコード",
"item.minecraft.music_disc_far.desc": "C418 - far",
"item.minecraft.music_disc_mall": "レコード",