-
Notifications
You must be signed in to change notification settings - Fork 5
/
zh_TW_original.json
6000 lines (6000 loc) · 348 KB
/
zh_TW_original.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
{
"wtem.empty": "",
"wtem.space": " ",
"wtem.nbt_lore": "(+NBT)",
"item.gray_wool.1.name.1": "灰色羊毛",
"item.gray_wool.1.lore.0.1": "灰度工业 - 纪念碑物品",
"item.bow.1.name.1": "新手弓",
"item.wooden_pickaxe.1.name.1": "好一點的木鎬",
"item.wooden_pickaxe.1.lore.1.1": "不要跟我說你已經在",
"item.wooden_pickaxe.1.lore.2.1": "白色羊毛拿到更好",
"item.wooden_pickaxe.1.lore.3.1": "的鎬子了。",
"item.leather_helmet.1.name.1": "紀念頭盔",
"item.wooden_sword.1.name.1": "新手劍",
"item.wooden_sword.1.lore.1.1": "每個新手都需要一把這個!",
"item.leather_chestplate.1.name.1": "紀念裝甲",
"item.golden_hoe.1.name.1": "驚心鐮",
"item.golden_hoe.1.lore.1.1": "擊退可能沒什麼用...",
"item.golden_hoe.1.lore.2.1": "真的嗎?",
"item.sugar.1.name.1": "糖粉",
"item.sugar.1.lore.1.1": "糖粉!是糖粉!",
"item.stick.1.name.1": "奇形棍棍",
"item.stick.1.lore.1.1": "副手拿著一支木棍打怪",
"item.stick.1.lore.2.1": "是什麼感覺?",
"item.bow.2.name.1": "新手弓",
"item.wooden_sword.2.name.1": "楓木劍",
"item.wooden_sword.2.lore.1.1": "其實就跟一般木劍沒什麼兩樣...",
"item.leather_leggings.1.name.1": "風之護腿",
"item.leather_leggings.1.lore.1.1": "裝備在身上時:",
"item.leather_leggings.1.lore.2.1": "+3 盔甲",
"item.leather_leggings.1.lore.3.1": "+10% 速度",
"item.bow.3.name.1": "新手弓",
"item.raw_iron.1.name.1": "生鐵",
"item.raw_iron.1.lore.1.1": "拿來用?還是燒了?",
"item.leather_leggings.2.name.1": "紀念護腿",
"item.music_disc_blocks.1.name.1": "橘色唱片",
"item.music_disc_blocks.1.lore.1.1": "紀念碑谷的建築氛圍創造了",
"item.music_disc_blocks.1.lore.2.1": "這個區域!",
"item.golden_pickaxe.1.name.1": "脆弱的秘密",
"item.golden_pickaxe.1.lore.1.1": "這個鎬子的存在是個",
"item.golden_pickaxe.1.lore.2.1": "秘密!",
"item.stick.2.name.1": "奇形棍棍",
"item.stick.2.lore.1.1": "副手拿著一支木棍打怪",
"item.stick.2.lore.2.1": "是什麼感覺?",
"item.leather_chestplate.2.name.1": "心之護甲",
"item.leather_chestplate.2.lore.1.1": "裝備在身上時:",
"item.leather_chestplate.2.lore.2.1": "+4 盔甲",
"item.leather_chestplate.2.lore.3.1": "+3 最大生命值",
"item.bow.4.name.1": "新手弓",
"item.golden_sword.1.name.1": "破舊的聖劍",
"item.golden_sword.1.lore.1.1": "它曾留名青史...",
"item.golden_sword.1.lore.2.1": "直到它被遺棄至此處。",
"item.iron_sword.1.name.1": "幸運匕首",
"item.iron_sword.1.lore.1.1": "...5 攻擊傷害?",
"item.iron_sword.1.lore.3.1": "在慣用手時:",
"item.iron_sword.1.lore.4.1": " 5 攻擊傷害",
"item.iron_sword.1.lore.5.1": " 1.6 攻擊速度",
"item.orange_wool.1.name.1": "橘色羊毛",
"item.orange_wool.1.lore.0.1": "【成就物品】",
"item.orange_wool.2.name.1": "橘色羊毛",
"item.orange_wool.2.lore.0.1": "【成就物品】",
"item.orange_wool.3.name.1": "橘色羊毛",
"item.orange_wool.3.lore.0.1": "【成就物品】",
"item.stone_sword.1.name.1": "殘破的劍",
"item.stone_sword.2.name.1": "殘破的劍",
"item.leather_helmet.2.name.1": "紀念頭盔",
"item.leather_helmet.3.name.1": "鬥氣頭盔",
"item.leather_helmet.3.lore.1.1": "裝備於頭部時:",
"item.leather_helmet.3.lore.2.1": "+1 盔甲",
"item.leather_helmet.3.lore.3.1": "+1 攻擊傷害",
"item.stone_pickaxe.1.name.1": "好一點的石鎬",
"item.stone_pickaxe.1.lore.1.1": "什麼?你不喜歡木鎬?",
"item.leather_boots.1.name.1": "羽靴",
"item.raw_iron.2.name.1": "生鐵",
"item.raw_iron.2.lore.1.1": "拿來用?還是燒了?",
"item.wooden_axe.1.name.1": "銳斧",
"item.leather_boots.2.name.1": "紀念靴子",
"item.bow.5.name.1": "新手弓",
"block.sign.1.front_text1.1": "-=區域2=-",
"block.sign.1.front_text3.1": "紀念迷宮",
"block.sign.2.front_text1.1": "By",
"block.sign.2.front_text3.1": "雪央(big frog)",
"block.sign.3.front_text2.1": "-= 紀念迷宮 =-",
"block.sign.3.front_text3.1": "橘色羊毛",
"block.sign.3.front_text3.2": "】",
"block.sign.3.front_text3.3": "【",
"item.leather_leggings.3.name.1": "紀念護腿",
"item.bow.6.name.1": "新手弓",
"item.wooden_sword.3.name.1": "楓木劍",
"item.wooden_sword.3.lore.1.1": "其實就跟一般木劍沒什麼兩樣...",
"item.leather_boots.3.name.1": "羽靴",
"item.bow.7.name.1": "新手弓",
"item.sugar.2.name.1": "糖粉",
"item.sugar.2.lore.1.1": "糖粉!是糖粉!",
"item.stone_pickaxe.2.name.1": "好一點的石鎬",
"item.stone_pickaxe.2.lore.1.1": "什麼?你不喜歡木鎬?",
"item.leather_chestplate.3.name.1": "紀念裝甲",
"item.wooden_sword.4.name.1": "新手劍",
"item.wooden_sword.4.lore.1.1": "每個新手都需要一把這個!",
"item.leather_boots.4.name.1": "紀念靴子",
"item.wooden_axe.2.name.1": "銳斧",
"entity.vex.1.name.1": "混亂星",
"item.lily_of_the_valley.1.name.1": "諾拉鈴蘭",
"item.lily_of_the_valley.1.lore.1.1": "一朵沉睡的鈴蘭,",
"item.lily_of_the_valley.1.lore.2.1": "美麗動人。",
"item.lily_of_the_valley.1.lore.4.1": "* 把我帶到神殿,我能打開那厚重的大門。 *",
"item.lily_of_the_valley.2.name.1": "諾拉鈴蘭",
"item.lily_of_the_valley.2.lore.1.1": "一朵沉睡的鈴蘭,",
"item.lily_of_the_valley.2.lore.2.1": "美麗動人。",
"item.lily_of_the_valley.2.lore.4.1": "* 把我帶到神殿,我能打開那厚重的大門。 *",
"item.lily_of_the_valley.3.name.1": "諾拉鈴蘭",
"item.lily_of_the_valley.3.lore.1.1": "一朵沉睡的鈴蘭,",
"item.lily_of_the_valley.3.lore.2.1": "美麗動人。",
"item.lily_of_the_valley.3.lore.4.1": "* 把我帶到神殿,我能打開那厚重的大門。 *",
"entity.vex.2.name.1": "混亂星",
"entity.vex.3.name.1": "混亂星",
"entity.vex.4.name.1": "混亂星",
"entity.vex.5.name.1": "混亂星",
"entity.vex.6.name.1": "混亂星",
"entity.skeleton.1.name.1": "流星戰士",
"entity.vex.7.name.1": "混亂星",
"entity.vex.8.name.1": "混亂星",
"entity.skeleton.2.name.1": "流星戰士",
"item.potion.1.name.1": "星星藥水",
"item.potion.1.lore.1.1": "匯集",
"item.potion.1.lore.1.2": "星星速度",
"item.potion.1.lore.1.3": "的神奇藥水,",
"item.potion.1.lore.2.1": "能夠補充大量能量。",
"item.potion.2.name.1": "月之藥水",
"item.potion.2.lore.1.1": "匯集",
"item.potion.2.lore.1.2": "月之力量",
"item.potion.2.lore.1.3": "的神奇藥水,",
"item.potion.2.lore.2.1": "能夠瞬間獲得充沛的體力。",
"item.potion.3.name.1": "月之藥水",
"item.potion.3.lore.1.1": "匯集",
"item.potion.3.lore.1.2": "月之力量",
"item.potion.3.lore.1.3": "的神奇藥水,",
"item.potion.3.lore.2.1": "能夠瞬間獲得充沛的體力。",
"item.potion.4.name.1": "月之藥水",
"item.potion.4.lore.1.1": "匯集",
"item.potion.4.lore.1.2": "月之力量",
"item.potion.4.lore.1.3": "的神奇藥水,",
"item.potion.4.lore.2.1": "能夠瞬間獲得充沛的體力。",
"entity.vex.9.name.1": "混亂星",
"entity.vex.10.name.1": "混亂星",
"block.sign.4.front_text1.1": "-=安全區=-",
"block.sign.4.front_text3.1": "Monument(成就碑)",
"block.sign.5.front_text1.1": "By",
"block.sign.5.front_text3.1": "Hexakon",
"entity.skeleton.3.name.1": "流星戰士",
"entity.vex.11.name.1": "混亂星",
"item.potion.5.name.1": "星星藥水",
"item.potion.5.lore.1.1": "匯集",
"item.potion.5.lore.1.2": "星星速度",
"item.potion.5.lore.1.3": "的神奇藥水,",
"item.potion.5.lore.2.1": "能夠補充大量能量。",
"entity.skeleton.4.name.1": "星光劍士",
"block.sign.6.front_text1.1": "-=Area 1=-",
"block.sign.6.front_text2.1": "Brawling Mounds",
"block.sign.6.front_text3.1": "(土丘荒原)",
"block.sign.7.front_text1.1": "By",
"block.sign.7.front_text3.1": "GodChamber",
"item.iron_axe.1.name.1": "X",
"item.iron_axe.1.name.2": "墮天戰斧",
"item.iron_axe.1.name.3": "X",
"item.iron_axe.1.lore.0.1": "被擊中的敵人會獲得緩速III效果5秒",
"item.bow.8.name.1": "X",
"item.bow.8.name.2": "雲翼長弓",
"item.bow.8.name.3": "X",
"item.bow.8.lore.0.1": "持有者將增加跳躍提升效果",
"item.stick.3.name.1": "X",
"item.stick.3.name.2": "墮天魔杖",
"item.stick.3.name.3": "X",
"item.stick.3.lore.0.1": "在副手時,持有者獲得力量提升效果,\\n以及攻擊敵人造成額外凋零傷害",
"item.bow.9.name.1": "X",
"item.bow.9.name.2": "雲翼長弓",
"item.bow.9.name.3": "X",
"item.bow.9.lore.0.1": "持有者將增加跳躍提升效果",
"item.recovery_compass.1.name.1": "黑暗羅盤",
"item.amethyst_shard.1.name.1": "紫水晶護符",
"item.diamond_chestplate.1.name.1": "邪靈戰甲",
"item.diamond_sword.1.name.1": "邪靈之刃",
"item.potion.6.name.1": "金蘋果汁",
"item.iron_helmet.1.name.1": "雲鐵頭盔",
"item.chainmail_leggings.1.name.1": "雲鎖護腿",
"item.iron_axe.2.name.1": "雲鎖戰斧",
"item.iron_boots.1.name.1": "天之靴",
"item.bone.1.name.1": "異界龍骨",
"item.globe_banner_pattern.1.name.1": "輕盈卷軸",
"item.written_book.1.page.0.1": "Glowing",
"item.written_book.1.page.0.2": "On",
"item.written_book.1.page.0.3": "[開] ",
"item.written_book.1.page.0.4": "Off",
"item.written_book.1.page.0.5": "[關]",
"item.written_book.1.page.0.6": "Feedback forum",
"item.written_book.1.page.0.7": "\\n\\n本地圖討論區: ",
"item.written_book.1.page.0.8": "Cartoland Community",
"item.written_book.1.page.0.9": "[Discord]",
"item.written_book.1.page.0.11": "\\n------------------",
"item.written_book.1.page.0.13": "\\n主辦/統籌/整合:\\n米格MG(raphael_mg)\\n\\n測試:\\n小冰鳥(icebirdowo)\\n\\n各區作者: \\nGChamber\\n雪央(bigfrog)\\nDragonL",
"item.written_book.1.page.0.14": "全體玩家發亮: ",
"item.written_book.1.page.1.1": "SakuraPotato\\nHexakon\\n虛幻\\n徐志摩\\n雨宮\\nEdwinHK\\nGalacticAC\\nWalkman\\n遊戲亡\\n米格MG(raphael_mg)\\n天道瑪奇\\n收音機\\n村村(tag_villx)\\n紙圓",
"item.written_book.1.page.2.1": "ccJerrycc\\nDavleek天天\\n信Faith\\n小冰鳥\\nPikacnu",
"item.written_book.1.title.1": "",
"entity.armor_stand.1.name.1": "請務必安裝資源包遊玩",
"item.stick.4.name.1": "如果你看到的是一根木棒,代表你沒裝好資源包",
"entity.armor_stand.2.name.1": "Cartocraft 卡多蘭幻境",
"block.sign.8.front_text1.1": "挑戰守墓亡魂",
"entity.armor_stand.3.name.1": "fire_control",
"item.brick.1.name.2": "亡者的碑文",
"item.brick.1.lore.0.2": "生前是個慘遭暗殺的政治人物",
"item.brick.1.lore.1.2": "渴望更多的生靈能支持他的當選",
"item.brick.1.lore.3.2": "攻擊力 8 攻速 1 移動速度 +25%",
"item.brick.1.lore.4.2": "盔甲值 2 ",
"item.brick.1.lore.4.3": "最大生命 -3",
"item.brick.1.lore.5.2": "擊殺敵人時,對最近的敵人造成 8 點傷害",
"entity.armor_stand.4.name.1": "fire_control",
"item.magenta_wool.1.name.1": "洋紅色羊毛",
"item.magenta_wool.1.lore.0.1": "由星月神殿所保管的",
"item.magenta_wool.1.lore.0.2": "羊毛",
"item.magenta_wool.1.lore.1.1": "散發出非凡的能量",
"item.magenta_wool.2.name.1": "洋紅色羊毛",
"item.magenta_wool.2.lore.0.1": "由星月神殿所保管的",
"item.magenta_wool.2.lore.0.2": "羊毛",
"item.magenta_wool.2.lore.1.1": "散發出非凡的能量",
"item.magenta_wool.3.name.1": "洋紅色羊毛",
"item.magenta_wool.3.lore.0.1": "由星月神殿所保管的",
"item.magenta_wool.3.lore.0.2": "羊毛",
"item.magenta_wool.3.lore.1.1": "散發出非凡的能量",
"entity.armor_stand.5.name.1": "返回",
"entity.skeleton.5.name.1": "星光劍士",
"entity.skeleton.6.name.1": "星光劍士",
"entity.skeleton.7.name.1": "流星戰士",
"entity.vex.12.name.1": "混亂星",
"entity.vex.13.name.1": "混亂星",
"entity.vex.14.name.1": "混亂星",
"entity.skeleton.8.name.1": "流星戰士",
"entity.skeleton.9.name.1": "流星戰士",
"entity.armor_stand.6.name.1": "fire_control",
"entity.armor_stand.7.name.1": "fire_control",
"item.splash_potion.1.name.1": "Potion",
"item.splash_potion.2.name.1": "Potion",
"item.splash_potion.3.name.1": "Potion",
"item.splash_potion.4.name.1": "Potion",
"item.splash_potion.5.name.1": "Potion",
"item.splash_potion.6.name.1": "Potion",
"item.splash_potion.7.name.1": "Potion",
"item.splash_potion.8.name.1": "Potion",
"item.potion.7.name.1": "星星藥水",
"item.potion.7.lore.1.1": "匯集",
"item.potion.7.lore.1.2": "星星速度",
"item.potion.7.lore.1.3": "的神奇藥水,",
"item.potion.7.lore.2.1": "能夠補充大量能量。",
"item.potion.8.name.1": "月之藥水",
"item.potion.8.lore.1.1": "匯集",
"item.potion.8.lore.1.2": "月之力量",
"item.potion.8.lore.1.3": "的神奇藥水,",
"item.potion.8.lore.2.1": "能夠瞬間獲得充沛的體力。",
"entity.vex.15.name.1": "混亂星",
"entity.vex.16.name.1": "混亂星",
"entity.vex.17.name.1": "混亂星",
"entity.vex.18.name.1": "混亂星",
"entity.vex.19.name.1": "混亂星",
"entity.vex.20.name.1": "混亂星",
"entity.armor_stand.8.name.1": "fire_control",
"entity.armor_stand.9.name.1": "fire_control",
"entity.armor_stand.10.name.1": "fire_control",
"entity.vex.21.name.1": "混亂星",
"entity.vex.22.name.1": "混亂星",
"item.potion.9.name.1": "星星藥水",
"item.potion.9.lore.1.1": "匯集",
"item.potion.9.lore.1.2": "星星速度",
"item.potion.9.lore.1.3": "的神奇藥水,",
"item.potion.9.lore.2.1": "能夠補充大量能量。",
"item.diamond_boots.1.name.2": "伏聆靴子",
"item.diamond_leggings.1.name.2": "伏聆護腿",
"item.diamond_chestplate.2.name.2": "伏聆盔甲",
"item.diamond_boots.2.name.2": "伏聆靴子",
"item.diamond_leggings.2.name.2": "伏聆護腿",
"item.diamond_chestplate.3.name.2": "伏聆盔甲",
"item.netherite_ingot.1.name.2": "|",
"item.netherite_ingot.1.name.3": "BOSS鑰匙碎片",
"item.netherite_ingot.1.name.4": "[1/2]",
"item.netherite_ingot.1.name.5": "|",
"item.netherite_ingot.1.lore.0.2": "集其2個碎片並且透過鍛造台合成可獲得完整BOSS鑰匙碎片",
"item.netherite_ingot.1.lore.1.2": "擊敗本關最終BOSS即可獲得淺灰色羊毛!",
"entity.armor_stand.11.name.1": "fire_control",
"entity.armor_stand.12.name.1": "fire_control",
"entity.armor_stand.13.name.1": "fire_control",
"entity.armor_stand.14.name.1": "fire_control",
"entity.armor_stand.15.name.1": "fire_control",
"entity.armor_stand.16.name.1": "fire_control",
"item.diamond_boots.3.name.2": "伏聆靴子",
"item.diamond_leggings.3.name.2": "伏聆護腿",
"item.diamond_chestplate.4.name.2": "伏聆盔甲",
"item.diamond_boots.4.name.2": "伏聆靴子",
"item.diamond_leggings.4.name.2": "伏聆護腿",
"item.diamond_chestplate.5.name.2": "伏聆盔甲",
"entity.armor_stand.17.name.1": "fire_control",
"entity.armor_stand.18.name.1": "fire_control",
"entity.armor_stand.19.name.1": "fire_control",
"entity.skeleton.10.name.1": "星光劍士",
"entity.skeleton.11.name.1": "星光劍士",
"entity.vex.23.name.1": "混亂星",
"entity.armor_stand.20.name.1": "fire_control",
"entity.armor_stand.21.name.1": "fire_control",
"entity.armor_stand.22.name.1": "fire_control",
"entity.armor_stand.23.name.1": "fire_control",
"entity.armor_stand.24.name.1": "fire_control",
"entity.armor_stand.25.name.1": "fire_control",
"item.carrot_on_a_stick.1.name.2": "幽魂槍",
"item.carrot_on_a_stick.1.lore.0.2": "充滿靈魂的槍枝",
"item.carrot_on_a_stick.1.lore.1.2": "可以射出源源不絕的幽靈彈",
"item.carrot_on_a_stick.1.lore.3.2": "右鍵射出幽魂彈 造成 5 點傷害",
"item.carrot_on_a_stick.1.lore.4.2": "射出幽魂彈時,飽食度會稍微下降",
"item.carrot_on_a_stick.2.name.2": "幽魂槍",
"item.carrot_on_a_stick.2.lore.0.2": "充滿靈魂的槍枝",
"item.carrot_on_a_stick.2.lore.1.2": "可以射出源源不絕的幽靈彈",
"item.carrot_on_a_stick.2.lore.3.2": "右鍵射出幽魂彈 造成 5 點傷害",
"item.carrot_on_a_stick.2.lore.4.2": "射出幽魂彈時,飽食度會稍微下降",
"item.carrot_on_a_stick.3.name.2": "幽魂槍",
"item.carrot_on_a_stick.3.lore.0.2": "充滿靈魂的槍枝",
"item.carrot_on_a_stick.3.lore.1.2": "可以射出源源不絕的幽靈彈",
"item.carrot_on_a_stick.3.lore.3.2": "右鍵射出幽魂彈 造成 5 點傷害",
"item.carrot_on_a_stick.3.lore.4.2": "射出幽魂彈時,飽食度會稍微下降",
"entity.vex.24.name.1": "混亂星",
"entity.skeleton.12.name.1": "流星戰士",
"entity.skeleton.13.name.1": "星光劍士",
"entity.vex.25.name.1": "混亂星",
"entity.vex.26.name.1": "混亂星",
"entity.vex.27.name.1": "混亂星",
"block.sign.9.front_text1.1": "By",
"block.sign.9.front_text2.1": "DragonL &",
"block.sign.9.front_text3.1": "SakuraPotato",
"block.sign.10.front_text1.1": "-=區域3=-",
"block.sign.10.front_text3.1": "星月神殿",
"entity.wandering_trader.1.name.1": "旅行商人",
"item.lingering_potion.1.name.1": "陷阱藥水",
"entity.armor_stand.26.name.1": "<對水晶右鍵放置羊毛>",
"block.sign.11.front_text1.1": "By",
"block.sign.11.front_text3.1": "虛幻",
"block.sign.12.front_text1.1": "-=區域4=-",
"block.sign.12.front_text3.1": "仙境群島",
"item.leather_boots.5.name.1": "仙人之靴",
"entity.villager.1.name.1": "箭矢仙人",
"item.tipped_arrow.1.name.1": "絕命之箭",
"item.tipped_arrow.2.name.1": "虛化之箭",
"item.tipped_arrow.3.name.1": "黑暗之箭",
"entity.armor_stand.27.name.1": "fire_control",
"entity.armor_stand.28.name.1": "fire_control",
"entity.armor_stand.29.name.1": "fire_control",
"entity.armor_stand.30.name.1": "fire_control",
"item.feather.1.name.1": "星月之羽",
"item.feather.1.lore.0.1": "速度 I",
"item.feather.1.lore.2.1": "緊握在副手時,",
"item.feather.1.lore.3.1": "能獲得特殊的力量。",
"entity.skeleton.14.name.1": "流星戰士",
"entity.skeleton.15.name.1": "流星戰士",
"entity.skeleton.16.name.1": "流星戰士",
"entity.vex.28.name.1": "混亂星",
"entity.vex.29.name.1": "混亂星",
"entity.armor_stand.31.name.1": "fire_control",
"entity.zombie.1.name.2": "\\uE003",
"item.diamond_boots.5.name.2": "伏聆靴子",
"item.diamond_leggings.5.name.2": "伏聆護腿",
"item.diamond_chestplate.6.name.2": "伏聆盔甲",
"entity.zombie.2.name.2": "\\uE003",
"item.diamond_boots.6.name.2": "伏聆靴子",
"item.diamond_leggings.6.name.2": "伏聆護腿",
"item.diamond_chestplate.7.name.2": "伏聆盔甲",
"entity.armor_stand.32.name.1": "fire_control",
"entity.armor_stand.33.name.1": "fire_control",
"entity.armor_stand.34.name.1": "fire_control",
"entity.skeleton.17.name.1": "流星戰士",
"item.splash_potion.9.name.1": "Potion",
"item.splash_potion.10.name.1": "Potion",
"item.splash_potion.11.name.1": "Potion",
"entity.zombie.3.name.1": "月之巨人",
"entity.giant.1.name.1": "月之巨人",
"entity.vex.30.name.1": "混亂星",
"entity.armor_stand.35.name.1": "fire_control",
"entity.armor_stand.36.name.1": "fire_control",
"entity.armor_stand.37.name.1": "fire_control",
"entity.skeleton.18.name.1": "流星戰士",
"item.golden_sword.2.name.2": "馬鈴薯之劍",
"item.golden_sword.2.lore.0.2": "一位偉大的馬鈴薯神留下的劍",
"item.golden_sword.2.lore.1.2": "能給勇敢的戰士補充食物",
"item.golden_sword.2.lore.3.2": "攻擊力 5 攻速 12",
"item.golden_sword.2.lore.4.2": "擊殺敵人時掉落馬鈴薯,冷卻10秒",
"item.golden_sword.2.lore.5.2": "有低機率掉落烤豬排或金蘋果",
"item.golden_sword.3.name.2": "馬鈴薯之劍",
"item.golden_sword.3.lore.0.2": "一位偉大的馬鈴薯神留下的劍",
"item.golden_sword.3.lore.1.2": "能給勇敢的戰士補充食物",
"item.golden_sword.3.lore.3.2": "攻擊力 5 攻速 12",
"item.golden_sword.3.lore.4.2": "擊殺敵人時掉落馬鈴薯,冷卻10秒",
"item.golden_sword.3.lore.5.2": "有低機率掉落烤豬排或金蘋果",
"entity.armor_stand.38.name.1": "fire_control",
"entity.armor_stand.39.name.1": "fire_control",
"entity.armor_stand.40.name.1": "fire_control",
"entity.armor_stand.41.name.1": "fire_control",
"entity.armor_stand.42.name.1": "fire_control",
"entity.armor_stand.43.name.1": "fire_control",
"entity.armor_stand.44.name.1": "fire_control",
"entity.skeleton.19.name.1": "流星戰士",
"entity.skeleton.20.name.1": "流星戰士",
"entity.skeleton.21.name.1": "流星戰士",
"entity.skeleton.22.name.1": "流星戰士",
"entity.armor_stand.45.name.1": "fire_control",
"entity.armor_stand.46.name.1": "fire_control",
"block.sign.13.front_text1.1": "鑰匙丟地上合成",
"item.netherite_ingot.2.name.2": "|",
"item.netherite_ingot.2.name.3": "BOSS鑰匙碎片",
"item.netherite_ingot.2.name.4": "[2/2]",
"item.netherite_ingot.2.name.5": "|",
"item.netherite_ingot.2.lore.0.2": "集其2個碎片並且透過鍛造台合成可獲得完整BOSS鑰匙碎片",
"item.netherite_ingot.2.lore.1.2": "擊敗本關最終BOSS即可獲得淺灰色羊毛!",
"entity.zombie.4.name.2": "\\uE003",
"item.diamond_boots.7.name.2": "伏聆靴子",
"item.diamond_leggings.7.name.2": "伏聆護腿",
"item.diamond_chestplate.8.name.2": "伏聆盔甲",
"entity.zombie.5.name.2": "\\uE003",
"item.diamond_boots.8.name.2": "伏聆靴子",
"item.diamond_leggings.8.name.2": "伏聆護腿",
"item.diamond_chestplate.9.name.2": "伏聆盔甲",
"entity.armor_stand.47.name.1": "fire_control",
"entity.armor_stand.48.name.1": "fire_control",
"entity.skeleton.23.name.1": "流星戰士",
"entity.vex.31.name.1": "混亂星",
"entity.vex.32.name.1": "混亂星",
"entity.skeleton.24.name.1": "流星戰士",
"entity.armor_stand.49.name.1": "fire_control",
"entity.armor_stand.50.name.1": "fire_control",
"item.iron_sword.2.name.1": "魂鐵劍",
"item.iron_sword.2.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.iron_sword.3.name.1": "魂鐵劍",
"item.iron_sword.3.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"entity.armor_stand.51.name.1": "fire_control",
"entity.armor_stand.52.name.1": "fire_control",
"entity.armor_stand.53.name.1": "fire_control",
"entity.armor_stand.54.name.1": "fire_control",
"block.sign.14.front_text1.1": "離開",
"entity.zombie.6.name.2": "\\uE003",
"item.diamond_boots.9.name.2": "伏聆靴子",
"item.diamond_leggings.9.name.2": "伏聆護腿",
"item.diamond_chestplate.10.name.2": "伏聆盔甲",
"entity.zombie.7.name.2": "\\uE003",
"item.diamond_boots.10.name.2": "伏聆靴子",
"item.diamond_leggings.10.name.2": "伏聆護腿",
"item.diamond_chestplate.11.name.2": "伏聆盔甲",
"entity.armor_stand.55.name.1": "fire_control",
"entity.armor_stand.56.name.1": "fire_control",
"entity.armor_stand.57.name.1": "fire_control",
"block.sign.15.front_text1.1": "-=區域5=-",
"block.sign.15.front_text3.1": "牛仔峽谷",
"block.sign.16.front_text1.1": "By",
"block.sign.16.front_text2.1": "徐志摩",
"entity.armor_stand.58.name.1": "fire_control",
"entity.armor_stand.59.name.1": "fire_control",
"entity.armor_stand.60.name.1": "fire_control",
"entity.armor_stand.61.name.1": "fire_control",
"entity.armor_stand.62.name.1": "fire_control",
"entity.armor_stand.63.name.1": "fire_control",
"entity.armor_stand.64.name.1": "fire_control",
"entity.armor_stand.65.name.1": "fire_control",
"entity.armor_stand.66.name.1": "fire_control",
"entity.armor_stand.67.name.1": "fire_control",
"entity.armor_stand.68.name.1": "fire_control",
"entity.armor_stand.69.name.1": "fire_control",
"item.leather_helmet.4.name.1": "魂頭盔",
"item.leather_helmet.4.lore.0.1": "盔甲值:4 跑速:5%",
"item.leather_helmet.4.lore.1.1": "最大生命-1",
"item.leather_chestplate.4.name.1": "魂盔甲",
"item.leather_chestplate.4.lore.0.1": "盔甲值:6 跑速:10%",
"item.leather_chestplate.4.lore.1.1": "最大生命-2.5",
"item.leather_leggings.4.name.1": "魂護腿",
"item.leather_leggings.4.lore.0.1": "盔甲值 5 攻擊力 20%",
"item.leather_leggings.4.lore.1.1": "最大生命-2.5",
"item.leather_boots.6.name.1": "魂皮鞋",
"item.leather_boots.6.lore.0.1": "盔甲值 3 攻擊力 10%",
"item.leather_boots.6.lore.1.1": "最大生命-1",
"item.wooden_sword.5.name.1": "魂木劍",
"item.wooden_sword.5.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.golden_sword.4.name.1": "魂金劍",
"item.golden_sword.4.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.iron_sword.4.name.1": "魂鐵劍",
"item.iron_sword.4.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.stone_sword.3.name.1": "魂石劍",
"item.stone_sword.3.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.diamond_sword.2.name.1": "魂鑽石劍",
"item.diamond_sword.2.lore.0.1": "淺灰色羊毛關卡系列 / 武器",
"item.chainmail_helmet.1.name.2": "調和",
"item.chainmail_helmet.1.name.3": "之影",
"item.chainmail_helmet.1.name.4": "的頭盔",
"item.chainmail_helmet.1.name.5": "☯",
"item.chainmail_helmet.1.lore.0.2": "黑白調和!以此身為界!塑造萬象!",
"item.chainmail_helmet.1.lore.1.2": "====================",
"item.chainmail_helmet.1.lore.2.2": " 頭盔 / 調和之影 ",
"item.chainmail_helmet.1.lore.3.2": " 盔甲值: 2 ",
"item.chainmail_helmet.1.lore.3.3": "生命值:-2",
"item.chainmail_helmet.1.lore.4.2": "====================",
"item.chainmail_helmet.1.lore.5.2": " [四件套] 攻擊命中敵人並且傷害大於3有20%機率抽取其中一個狀態",
"item.chainmail_helmet.1.lore.6.2": " - 移動速度+20% 持續5秒",
"item.chainmail_helmet.1.lore.7.2": " - 立即恢復7點血量",
"item.chainmail_helmet.1.lore.8.2": " - 獲得吸收II持續10秒",
"item.chainmail_helmet.1.lore.9.2": " - 獲得力量I持續5秒",
"item.chainmail_chestplate.1.name.2": "調和",
"item.chainmail_chestplate.1.name.3": "之影",
"item.chainmail_chestplate.1.name.4": "的盔甲",
"item.chainmail_chestplate.1.name.5": "☯",
"item.chainmail_chestplate.1.lore.0.2": "黑白調和!以此身為界!塑造萬象!",
"item.chainmail_chestplate.1.lore.1.2": "====================",
"item.chainmail_chestplate.1.lore.2.2": " 盔甲 / 調和之影 ",
"item.chainmail_chestplate.1.lore.3.2": " 盔甲值: 6 ",
"item.chainmail_chestplate.1.lore.3.3": "生命值:-2",
"item.chainmail_chestplate.1.lore.4.2": "====================",
"item.chainmail_chestplate.1.lore.5.2": " [四件套] 攻擊命中敵人並且傷害大於3有20%機率抽取其中一個狀態",
"item.chainmail_chestplate.1.lore.6.2": " - 移動速度+20% 持續5秒",
"item.chainmail_chestplate.1.lore.7.2": " - 立即恢復7點血量",
"item.chainmail_chestplate.1.lore.8.2": " - 獲得吸收II持續10秒",
"item.chainmail_chestplate.1.lore.9.2": " - 獲得力量I持續5秒",
"item.chainmail_leggings.2.name.2": "調和",
"item.chainmail_leggings.2.name.3": "之影",
"item.chainmail_leggings.2.name.4": "的護腿",
"item.chainmail_leggings.2.name.5": "☯",
"item.chainmail_leggings.2.lore.0.2": "黑白調和!以此身為界!塑造萬象!",
"item.chainmail_leggings.2.lore.1.2": "====================",
"item.chainmail_leggings.2.lore.2.2": " 護腿 / 調和之影 ",
"item.chainmail_leggings.2.lore.3.2": " 盔甲值: 2 ",
"item.chainmail_leggings.2.lore.3.3": "生命值:-2",
"item.chainmail_leggings.2.lore.4.2": "====================",
"item.chainmail_leggings.2.lore.5.2": " [四件套] 攻擊命中敵人並且傷害大於3有20%機率抽取其中一個狀態",
"item.chainmail_leggings.2.lore.6.2": " - 移動速度+20% 持續5秒",
"item.chainmail_leggings.2.lore.7.2": " - 立即恢復7點血量",
"item.chainmail_leggings.2.lore.8.2": " - 獲得吸收II持續10秒",
"item.chainmail_leggings.2.lore.9.2": " - 獲得力量I持續5秒",
"item.chainmail_boots.1.name.2": "調和",
"item.chainmail_boots.1.name.3": "之影",
"item.chainmail_boots.1.name.4": "的靴子",
"item.chainmail_boots.1.name.5": "☯",
"item.chainmail_boots.1.lore.0.2": "黑白調和!以此身為界!塑造萬象!",
"item.chainmail_boots.1.lore.1.2": "====================",
"item.chainmail_boots.1.lore.2.2": " 靴子 / 調和之影 ",
"item.chainmail_boots.1.lore.3.2": " 盔甲值: 2 ",
"item.chainmail_boots.1.lore.3.3": "生命值:-2",
"item.chainmail_boots.1.lore.4.2": "====================",
"item.chainmail_boots.1.lore.5.2": " [四件套] 攻擊命中敵人並且傷害大於3有20%機率抽取其中一個狀態",
"item.chainmail_boots.1.lore.6.2": " - 移動速度+20% 持續5秒",
"item.chainmail_boots.1.lore.7.2": " - 立即恢復7點血量",
"item.chainmail_boots.1.lore.8.2": " - 獲得吸收II持續10秒",
"item.chainmail_boots.1.lore.9.2": " - 獲得力量I持續5秒",
"item.golden_sword.5.name.2": "馬鈴薯之劍",
"item.golden_sword.5.lore.0.2": "一位偉大的馬鈴薯神留下的劍",
"item.golden_sword.5.lore.1.2": "能給勇敢的戰士補充食物",
"item.golden_sword.5.lore.3.2": "攻擊力 5 攻速 12",
"item.golden_sword.5.lore.4.2": "擊殺敵人時掉落馬鈴薯,冷卻10秒",
"item.golden_sword.5.lore.5.2": "有低機率掉落烤豬排或金蘋果",
"item.brick.2.name.2": "亡者的碑文",
"item.brick.2.lore.0.2": "生前是個慘遭暗殺的政治人物",
"item.brick.2.lore.1.2": "渴望更多的生靈能支持他的當選",
"item.brick.2.lore.3.2": "攻擊力 8 攻速 1 移動速度 +25%",
"item.brick.2.lore.4.2": "盔甲值 2 ",
"item.brick.2.lore.4.3": "最大生命 -3",
"item.brick.2.lore.5.2": "擊殺敵人時,對最近的敵人造成 8 點傷害",
"item.armor_stand.1.name.2": "感應火把",
"item.armor_stand.1.lore.0.2": "有人來就會點亮",
"item.armor_stand.1.lore.1.2": "沒人來就會熄滅",
"entity.unknown.1.name.1": "fire_control",
"item.carrot_on_a_stick.4.name.2": "感應火把拆除器",
"item.carrot_on_a_stick.4.lore.0.2": "右鍵拆除3格內所有感應火把",
"item.netherite_ingot.3.name.2": "|",
"item.netherite_ingot.3.name.3": "BOSS鑰匙碎片",
"item.netherite_ingot.3.name.4": "|",
"item.netherite_ingot.3.lore.0.2": "把鑰匙碎片放到戰場中心物品展示框即可生成最終BOSS",
"item.netherite_ingot.3.lore.1.2": "擊敗本關最終BOSS即可獲得淺灰色羊毛!",
"block.sign.17.front_text1.1": "往BOSS區",
"entity.armor_stand.70.name.1": "fire_control",
"entity.armor_stand.71.name.1": "fire_control",
"entity.armor_stand.72.name.1": "fire_control",
"block.sign.18.front_text1.1": "-=區域9=-",
"block.sign.18.front_text3.1": "亡靈之墟",
"block.sign.19.front_text1.1": "By",
"block.sign.19.front_text3.1": "狗勾&遊戲亡",
"entity.armor_stand.73.name.1": "fire_control",
"item.golden_sword.6.name.1": "煌之劍",
"entity.skeleton.25.name.1": "构造体二十一号",
"entity.skeleton.26.name.1": "构造体二十一号",
"entity.skeleton.27.name.1": "构造体六十五号",
"item.iron_helmet.2.name.1": "塑钢护甲",
"item.iron_helmet.2.lore.0.1": "廉价但可靠的护甲",
"item.iron_helmet.2.lore.1.1": "灰度工业 - 普通物品",
"item.iron_leggings.1.name.1": "塑钢护甲",
"item.iron_leggings.1.lore.0.1": "廉价但可靠的护甲",
"item.iron_leggings.1.lore.1.1": "灰度工业 - 普通物品",
"item.iron_sword.5.name.1": "注能之刃",
"item.iron_sword.5.lore.0.1": "物品技能:能量爆发",
"item.iron_sword.5.lore.1.1": "击杀敌人后对你附近的敌人造成伤害",
"item.iron_sword.5.lore.3.1": "很少有敌人能从如此狂暴的能量洪流中存活",
"item.iron_sword.5.lore.4.1": "灰度工业 - 稀有物品",
"item.bow.10.name.1": "机械弓",
"item.bow.10.lore.0.1": "经过现代科技改造过的弓",
"item.bow.10.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.28.name.1": "构造体四十九号",
"entity.zombie.8.name.1": "採礦機器人",
"entity.zombie.9.name.1": "採礦機器人",
"entity.zombie.10.name.1": "採礦機器人",
"entity.zombie.11.name.1": "採礦機器人",
"entity.zombie.12.name.1": "採礦機器人",
"entity.zombie.13.name.1": "採礦機器人",
"entity.zombie.14.name.1": "採礦機器人",
"entity.zombie.15.name.1": "採礦機器人",
"entity.zombie.16.name.1": "採礦機器人",
"entity.zombie.17.name.1": "採礦機器人",
"entity.zombie.18.name.1": "鋼鐵守衛",
"entity.zombie.19.name.1": "鋼鐵守衛",
"entity.skeleton.29.name.1": "圖書整理機器",
"entity.skeleton.30.name.1": "圖書整理機器",
"entity.zombie.20.name.1": "採礦機器人",
"entity.zombie.21.name.1": "採礦機器人",
"entity.zombie.22.name.1": "鋼鐵守衛",
"entity.zombie.23.name.1": "鋼鐵守衛",
"entity.skeleton.31.name.1": "圖書整理機器",
"entity.skeleton.32.name.1": "圖書整理機器",
"entity.zombie.24.name.1": "清掃人偶",
"entity.zombie.25.name.1": "清掃人偶",
"entity.skeleton.33.name.1": "圖書整理機器",
"entity.skeleton.34.name.1": "圖書整理機器",
"entity.zombie.26.name.1": "鋼鐵守衛",
"entity.zombie.27.name.1": "鋼鐵守衛",
"item.shield.1.name.1": "蒸氣驅動盾",
"item.shield.1.lore.0.1": "上面佈滿蒸氣管道的盾牌,撞上應該會燙傷",
"item.shield.1.lore.1.1": "特性:當格擋攻擊時對附近敵人造成火焰傷害",
"item.rose_bush.1.name.1": "荊棘護符",
"item.rose_bush.1.lore.0.1": "只要斬斷重重荊棘,便會迎來希望",
"item.rose_bush.1.lore.1.1": "特性:當受到一定量傷害後,玩家獲得特性加成",
"item.iron_ingot.1.name.1": "鐵壁護符",
"item.iron_ingot.1.lore.0.1": "沉重的鐵塊,握在手中有股安心感",
"item.iron_ingot.1.lore.1.1": "特性:在副手時增加防禦與血量,但減慢移速",
"item.iron_sword.6.name.1": "塑钢长剑",
"item.iron_sword.6.lore.0.1": "随处可见的东西,但是的确够用了",
"item.iron_sword.6.lore.1.1": "灰度工业 - 普通物品",
"item.crossbow.1.name.1": "能量步枪",
"item.crossbow.1.lore.0.1": "发射威力可观的能量弹",
"item.crossbow.1.lore.1.1": "灰度工业 - 稀有物品",
"item.iron_chestplate.1.name.1": "塑钢护甲",
"item.iron_chestplate.1.lore.0.1": "廉价但可靠的护甲",
"item.iron_chestplate.1.lore.1.1": "灰度工业 - 普通物品",
"entity.spider.1.name.1": "构造体五十六号",
"entity.blaze.1.name.1": "构造体五十六号",
"entity.wither_skeleton.1.name.1": "构造体四百九十五号",
"entity.guardian.1.name.1": "构造体四百九十五号",
"entity.spider.2.name.1": "构造体五十六号",
"entity.blaze.2.name.1": "构造体五十六号",
"entity.skeleton.35.name.1": "构造体七十三号",
"entity.guardian.2.name.1": "构造体七十三号",
"entity.skeleton.36.name.1": "构造体七十三号",
"entity.guardian.3.name.1": "构造体七十三号",
"entity.skeleton.37.name.1": "构造体四十九号",
"entity.skeleton.38.name.1": "构造体六十五号",
"block.sign.20.front_text1.1": "-=區域6=-",
"block.sign.20.front_text3.1": "廢棄中轉站",
"block.sign.21.front_text1.1": "By",
"block.sign.21.front_text3.1": "雨宮",
"entity.zombie.28.name.1": "鋼鐵守衛",
"entity.zombie.29.name.1": "鋼鐵守衛",
"entity.zombie.30.name.1": "清掃人偶",
"entity.zombie.31.name.1": "清掃人偶",
"entity.zombie.32.name.1": "鋼鐵守衛",
"entity.zombie.33.name.1": "鋼鐵守衛",
"entity.zombie.34.name.1": "採礦機器人",
"entity.zombie.35.name.1": "採礦機器人",
"entity.zombie.36.name.1": "鋼鐵守衛",
"entity.zombie.37.name.1": "鋼鐵守衛",
"entity.zombie.38.name.1": "清掃人偶",
"entity.zombie.39.name.1": "清掃人偶",
"entity.zombie.40.name.1": "清掃人偶",
"entity.zombie.41.name.1": "清掃人偶",
"item.iron_sword.7.name.1": "蒸氣鍊鋸",
"item.iron_sword.7.lore.0.1": "蒸氣驅動的鍊鋸",
"item.iron_sword.7.lore.1.1": "雖然強大,但是容易傷到自己",
"item.iron_sword.7.lore.2.1": "特性:蹲下時持續造成範圍傷害,但過久將傷害玩家",
"entity.armor_stand.74.name.1": "_Kusarigama_",
"item.bone.2.name.1": "狩獵護符",
"item.bone.2.lore.0.1": "獵人與獵物只有一線之隔",
"item.bone.2.lore.1.1": "特性:握在副手時擊殺後恢復血量,但最高生命值減少",
"entity.pillager.1.name.1": "构造体七百二十八号",
"entity.pillager.2.name.1": "构造体七百二十八号",
"entity.pillager.3.name.1": "构造体七百二十八号",
"entity.pillager.4.name.1": "构造体七百二十八号",
"item.iron_axe.3.name.1": "X",
"item.iron_axe.3.name.2": "墮天戰斧",
"item.iron_axe.3.name.3": "X",
"item.iron_axe.3.lore.0.1": "被擊中的敵人會獲得緩速III效果5秒",
"entity.wither_skeleton.2.name.1": "墮天騎士",
"entity.wither_skeleton.3.name.1": "墮天騎士",
"entity.creeper.1.name.1": "构造体九十七号",
"entity.creeper.2.name.1": "构造体九十七号",
"item.iron_helmet.3.name.1": "魂脈頭盔",
"item.potion.10.name.1": "金蘋果汁",
"block.sign.22.front_text1.1": "墮天戰斧",
"entity.wither_skeleton.4.name.1": "墮天騎士",
"entity.wither_skeleton.5.name.1": "墮天騎士",
"entity.drowned.1.name.1": "墮天使",
"entity.drowned.2.name.1": "墮天使",
"entity.wither_skeleton.6.name.1": "墮天騎士",
"entity.wither_skeleton.7.name.1": "墮天騎士",
"block.sign.23.front_text1.1": "雲翼長弓",
"entity.wither_skeleton.8.name.1": "墮天騎士",
"entity.wither_skeleton.9.name.1": "墮天騎士",
"item.bow.11.name.1": "X",
"item.bow.11.name.2": "雲翼長弓",
"item.bow.11.name.3": "X",
"item.bow.11.lore.0.1": "持有者將增加跳躍提升效果",
"item.potion.11.name.1": "金蘋果汁",
"entity.creeper.3.name.1": "构造体九十七号",
"block.sign.24.front_text2.1": " 裂变火炮",
"block.sign.25.front_text2.1": " 裂变火炮",
"item.crossbow.2.name.1": "裂变火炮",
"item.crossbow.2.lore.0.1": "物品技能:裂变之箭",
"item.crossbow.2.lore.1.1": "发射的箭矢命中敌人后会爆炸",
"item.crossbow.2.lore.3.1": "灰度科技,震撼人心!",
"item.crossbow.2.lore.4.1": "灰度工业 - 传说物品",
"entity.pillager.5.name.1": "构造体七百二十八号",
"entity.pillager.6.name.1": "构造体七百二十八号",
"entity.pillager.7.name.1": "构造体七百二十八号",
"entity.pillager.8.name.1": "构造体七百二十八号",
"entity.pillager.9.name.1": "构造体七百二十八号",
"entity.pillager.10.name.1": "构造体七百二十八号",
"entity.pillager.11.name.1": "构造体七百二十八号",
"entity.pillager.12.name.1": "构造体七百二十八号",
"block.sign.26.front_text1.1": "-=區域7=-",
"block.sign.26.front_text3.1": "雲鎖地獄",
"block.sign.27.front_text1.1": "By",
"block.sign.27.front_text3.1": "EdwinHK(亞雲)",
"entity.spider.3.name.1": "构造体五十六号",
"entity.blaze.3.name.1": "构造体五十六号",
"entity.skeleton.39.name.1": "构造体二十一号",
"entity.creeper.4.name.1": "构造体九十七号",
"entity.skeleton.40.name.1": "构造体七十三号",
"entity.guardian.4.name.1": "构造体七十三号",
"entity.skeleton.41.name.1": "构造体四十九号",
"entity.skeleton.42.name.1": "构造体六十五号",
"entity.skeleton.43.name.1": "构造体七十三号",
"entity.guardian.5.name.1": "构造体七十三号",
"entity.skeleton.44.name.1": "构造体四十九号",
"entity.skeleton.45.name.1": "构造体七十三号",
"entity.guardian.6.name.1": "构造体七十三号",
"entity.skeleton.46.name.1": "构造体二十一号",
"entity.creeper.5.name.1": "构造体九十七号",
"entity.skeleton.47.name.1": "构造体二十一号",
"entity.skeleton.48.name.1": "构造体四十九号",
"item.shield.2.name.1": "齿轮盾",
"item.shield.2.lore.0.1": "会自动修复受到的损伤",
"item.shield.2.lore.1.1": "灰度工业 - 普通物品",
"item.iron_sword.8.name.1": "塑钢长剑",
"item.iron_sword.8.lore.0.1": "随处可见的东西,但是的确够用了",
"item.iron_sword.8.lore.1.1": "灰度工业 - 普通物品",
"item.iron_leggings.2.name.1": "塑钢护甲",
"item.iron_leggings.2.lore.0.1": "廉价但可靠的护甲",
"item.iron_leggings.2.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.49.name.1": "构造体四十九号",
"entity.spider.4.name.1": "构造体五十六号",
"entity.blaze.4.name.1": "构造体五十六号",
"entity.creeper.6.name.1": "构造体九十七号",
"entity.skeleton.50.name.1": "构造体六十五号",
"entity.pillager.13.name.1": "构造体七百二十八号",
"entity.pillager.14.name.1": "构造体七百二十八号",
"entity.pillager.15.name.1": "构造体七百二十八号",
"entity.pillager.16.name.1": "构造体七百二十八号",
"entity.wither_skeleton.10.name.1": "构造体三百八十二号",
"entity.skeleton.51.name.1": "构造体七十三号",
"entity.guardian.7.name.1": "构造体七十三号",
"entity.skeleton.52.name.1": "构造体二十一号",
"entity.wither_skeleton.11.name.1": "构造体四百九十五号",
"entity.guardian.8.name.1": "构造体四百九十五号",
"entity.pillager.17.name.1": "构造体七百二十八号",
"entity.pillager.18.name.1": "构造体七百二十八号",
"entity.pillager.19.name.1": "构造体七百二十八号",
"entity.pillager.20.name.1": "构造体七百二十八号",
"entity.pillager.21.name.1": "构造体七百二十八号",
"entity.pillager.22.name.1": "构造体七百二十八号",
"entity.pillager.23.name.1": "构造体七百二十八号",
"entity.pillager.24.name.1": "构造体七百二十八号",
"entity.wither_skeleton.12.name.1": "构造体四百九十五号",
"entity.guardian.9.name.1": "构造体四百九十五号",
"entity.creeper.7.name.1": "构造体九十七号",
"entity.skeleton.53.name.1": "构造体七十三号",
"entity.guardian.10.name.1": "构造体七十三号",
"entity.skeleton.54.name.1": "构造体七十三号",
"entity.guardian.11.name.1": "构造体七十三号",
"entity.creeper.8.name.1": "构造体九十七号",
"entity.skeleton.55.name.1": "构造体七十三号",
"entity.guardian.12.name.1": "构造体七十三号",
"entity.creeper.9.name.1": "构造体九十七号",
"entity.skeleton.56.name.1": "构造体七十三号",
"entity.guardian.13.name.1": "构造体七十三号",
"entity.creeper.10.name.1": "构造体九十七号",
"block.sign.28.front_text1.1": "By",
"block.sign.28.front_text3.1": "米格(MG)",
"block.sign.29.front_text1.1": "-=區域10=-",
"block.sign.29.front_text3.1": "殞落神界",
"entity.drowned.3.name.1": "墮天使",
"entity.drowned.4.name.1": "墮天使",
"entity.wither_skeleton.13.name.1": "墮天騎士",
"entity.wither_skeleton.14.name.1": "墮天騎士",
"entity.drowned.5.name.1": "墮天使",
"entity.drowned.6.name.1": "墮天使",
"item.potion.12.name.1": "金蘋果汁",
"item.bone.3.name.1": "異界龍骨",
"block.sign.30.front_text1.1": "回成就碑",
"item.iron_helmet.4.name.1": "塑钢护甲",
"item.iron_helmet.4.lore.0.1": "廉价但可靠的护甲",
"item.iron_helmet.4.lore.1.1": "灰度工业 - 普通物品",
"item.iron_pickaxe.1.name.1": "塑钢镐",
"item.iron_pickaxe.1.lore.0.1": "能高效地粉碎大部分的材料",
"item.iron_pickaxe.1.lore.1.1": "灰度工业 - 普通物品",
"item.iron_axe.4.name.1": "塑钢战斧",
"item.iron_axe.4.lore.0.1": "手感不错",
"item.iron_axe.4.lore.1.1": "灰度工业 - 普通物品",
"item.iron_chestplate.2.name.1": "塑钢护甲",
"item.iron_chestplate.2.lore.0.1": "廉价但可靠的护甲",
"item.iron_chestplate.2.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.57.name.1": "构造体六十五号",
"entity.skeleton.58.name.1": "构造体二十一号",
"entity.skeleton.59.name.1": "构造体六十五号",
"entity.skeleton.60.name.1": "构造体二十一号",
"entity.skeleton.61.name.1": "构造体二十一号",
"entity.skeleton.62.name.1": "构造体二十一号",
"entity.skeleton.63.name.1": "构造体四十九号",
"item.iron_sword.9.name.1": "塑钢长剑",
"item.iron_sword.9.lore.0.1": "随处可见的东西,但是的确够用了",
"item.iron_sword.9.lore.1.1": "灰度工业 - 普通物品",
"item.iron_chestplate.3.name.1": "塑钢护甲",
"item.iron_chestplate.3.lore.0.1": "廉价但可靠的护甲",
"item.iron_chestplate.3.lore.1.1": "灰度工业 - 普通物品",
"item.iron_boots.2.name.1": "塑钢护甲",
"item.iron_boots.2.lore.0.1": "廉价但可靠的护甲",
"item.iron_boots.2.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.64.name.1": "构造体七十三号",
"entity.guardian.14.name.1": "构造体七十三号",
"entity.skeleton.65.name.1": "构造体二十一号",
"entity.spider.5.name.1": "构造体五十六号",
"entity.blaze.5.name.1": "构造体五十六号",
"entity.creeper.11.name.1": "构造体九十七号",
"entity.creeper.12.name.1": "构造体九十七号",
"entity.spider.6.name.1": "构造体五十六号",
"entity.blaze.6.name.1": "构造体五十六号",
"entity.skeleton.66.name.1": "构造体四十九号",
"entity.skeleton.67.name.1": "构造体七十三号",
"entity.guardian.15.name.1": "构造体七十三号",
"entity.skeleton.68.name.1": "构造体二十一号",
"entity.spider.7.name.1": "构造体五十六号",
"entity.blaze.7.name.1": "构造体五十六号",
"entity.skeleton.69.name.1": "构造体六十五号",
"entity.spider.8.name.1": "构造体五十六号",
"entity.blaze.8.name.1": "构造体五十六号",
"entity.skeleton.70.name.1": "构造体二十一号",
"item.iron_helmet.5.name.1": "塑钢护甲",
"item.iron_helmet.5.lore.0.1": "廉价但可靠的护甲",
"item.iron_helmet.5.lore.1.1": "灰度工业 - 普通物品",
"item.paper.1.name.1": "工程蓝图",
"item.paper.1.lore.0.1": "高等数学...",
"item.paper.1.lore.1.1": "灰度工业 - 普通物品",
"item.bow.12.name.1": "机械弓",
"item.bow.12.lore.0.1": "经过现代科技改造过的弓",
"item.bow.12.lore.1.1": "灰度工业 - 普通物品",
"block.sign.31.front_text2.1": "哨卫系统核心",
"item.iron_pickaxe.2.name.1": "塑钢镐",
"item.iron_pickaxe.2.lore.0.1": "能高效地粉碎大部分的材料",
"item.iron_pickaxe.2.lore.1.1": "灰度工业 - 普通物品",
"item.iron_boots.3.name.1": "原型动力护甲",
"item.iron_boots.3.lore.0.1": "能极大地增强穿戴者的力量",
"item.iron_boots.3.lore.1.1": "灰度工业 - 稀有物品",
"item.iron_axe.5.name.1": "塑钢战斧",
"item.iron_axe.5.lore.0.1": "手感不错",
"item.iron_axe.5.lore.1.1": "灰度工业 - 普通物品",
"item.iron_chestplate.4.name.1": "哨卫系统核心",
"item.iron_chestplate.4.lore.0.1": "物品技能:自动防御系统",
"item.iron_chestplate.4.lore.1.1": "周期性地生成攻击无人机",
"item.iron_chestplate.4.lore.3.1": "灰度科技,震撼人心!",
"item.iron_chestplate.4.lore.4.1": "灰度工业 - 传说物品",
"entity.skeleton.71.name.1": "构造体六十五号",
"entity.spider.9.name.1": "构造体五十六号",
"entity.blaze.9.name.1": "构造体五十六号",
"entity.wither_skeleton.15.name.1": "构造体三百八十二号",
"entity.skeleton.72.name.1": "构造体七十三号",
"entity.guardian.16.name.1": "构造体七十三号",
"entity.skeleton.73.name.1": "构造体二十一号",
"entity.skeleton.74.name.1": "构造体二十一号",
"entity.skeleton.75.name.1": "构造体七十三号",
"entity.guardian.17.name.1": "构造体七十三号",
"entity.creeper.13.name.1": "构造体九十七号",
"entity.skeleton.76.name.1": "构造体六十五号",
"entity.skeleton.77.name.1": "构造体六十五号",
"entity.creeper.14.name.1": "构造体九十七号",
"entity.skeleton.78.name.1": "构造体七十三号",
"entity.guardian.18.name.1": "构造体七十三号",
"entity.wither_skeleton.16.name.1": "构造体三百八十二号",
"entity.skeleton.79.name.1": "构造体二十一号",
"entity.drowned.7.name.1": "墮天使",
"entity.drowned.8.name.1": "墮天使",
"item.iron_chestplate.5.name.1": "魂脈胸甲",
"item.potion.13.name.1": "金蘋果汁",
"entity.ghast.1.name.1": "天界幽魂",
"entity.ghast.2.name.1": "天界幽魂",
"item.iron_boots.4.name.1": "魂脈戰靴",
"item.potion.14.name.1": "金蘋果汁",
"item.player_head.1.name.1": "MG的頭盔",
"entity.wither_skeleton.17.name.1": "墮天騎士",
"entity.wither_skeleton.18.name.1": "墮天騎士",
"item.potion.15.name.1": "金蘋果汁",
"item.iron_leggings.3.name.1": "魂脈護腿",
"entity.ghast.3.name.1": "天界幽魂",
"entity.ghast.4.name.1": "天界幽魂",
"item.chainmail_leggings.3.name.1": "雲鎖護腿",
"block.sign.32.front_text1.1": "-=區域8=-",
"block.sign.32.front_text3.1": "灰度工業",
"item.written_book.2.page.0.1": "该区域的羊毛初始处于锁定状态。\\n请在区域中找出四块隐藏的磁石并破坏它们。当四块磁石都被破坏时羊毛会出现在区域的末尾。",
"item.written_book.2.title.1": "区域须知",
"block.sign.33.front_text1.1": "By",
"block.sign.33.front_text3.1": "GalacticAC",
"entity.creeper.15.name.1": "构造体九十七号",
"entity.skeleton.80.name.1": "构造体七十三号",
"entity.guardian.19.name.1": "构造体七十三号",
"entity.spider.10.name.1": "构造体五十六号",
"entity.blaze.10.name.1": "构造体五十六号",
"item.iron_helmet.6.name.1": "塑钢护甲",
"item.iron_helmet.6.lore.0.1": "廉价但可靠的护甲",
"item.iron_helmet.6.lore.1.1": "灰度工业 - 普通物品",
"item.paper.2.name.1": "工程蓝图",
"item.paper.2.lore.0.1": "高等数学...",
"item.paper.2.lore.1.1": "灰度工业 - 普通物品",
"item.iron_axe.6.name.1": "塑钢战斧",
"item.iron_axe.6.lore.0.1": "手感不错",
"item.iron_axe.6.lore.1.1": "灰度工业 - 普通物品",
"item.iron_boots.5.name.1": "塑钢护甲",
"item.iron_boots.5.lore.0.1": "廉价但可靠的护甲",
"item.iron_boots.5.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.81.name.1": "构造体六十五号",
"entity.spider.11.name.1": "构造体五十六号",
"entity.blaze.11.name.1": "构造体五十六号",
"entity.wither_skeleton.19.name.1": "构造体三百八十二号",
"entity.skeleton.82.name.1": "构造体二十一号",
"entity.skeleton.83.name.1": "构造体二十一号",
"entity.creeper.16.name.1": "构造体九十七号",
"entity.skeleton.84.name.1": "构造体二十一号",
"entity.skeleton.85.name.1": "构造体七十三号",
"entity.guardian.20.name.1": "构造体七十三号",
"entity.skeleton.86.name.1": "构造体二十一号",
"entity.spider.12.name.1": "构造体五十六号",
"entity.blaze.12.name.1": "构造体五十六号",
"entity.wither_skeleton.20.name.1": "构造体四百九十五号",
"entity.guardian.21.name.1": "构造体四百九十五号",
"entity.creeper.17.name.1": "构造体九十七号",
"entity.skeleton.87.name.1": "构造体七十三号",
"entity.guardian.22.name.1": "构造体七十三号",
"item.iron_axe.7.name.1": "塑钢战斧",
"item.iron_axe.7.lore.0.1": "手感不错",
"item.iron_axe.7.lore.1.1": "灰度工业 - 普通物品",
"item.iron_chestplate.6.name.1": "原型动力护甲",
"item.iron_chestplate.6.lore.0.1": "能极大地增强穿戴者的力量",
"item.iron_chestplate.6.lore.1.1": "灰度工业 - 稀有物品",
"item.iron_sword.10.name.1": "塑钢长剑",
"item.iron_sword.10.lore.0.1": "随处可见的东西,但是的确够用了",
"item.iron_sword.10.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.88.name.1": "构造体六十五号",
"entity.skeleton.89.name.1": "构造体六十五号",
"entity.creeper.18.name.1": "构造体九十七号",
"entity.skeleton.90.name.1": "构造体二十一号",
"entity.spider.13.name.1": "构造体五十六号",
"entity.blaze.13.name.1": "构造体五十六号",
"entity.spider.14.name.1": "构造体五十六号",
"entity.blaze.14.name.1": "构造体五十六号",
"entity.creeper.19.name.1": "构造体九十七号",
"entity.skeleton.91.name.1": "构造体六十五号",
"entity.skeleton.92.name.1": "构造体六十五号",
"entity.skeleton.93.name.1": "构造体二十一号",
"entity.drowned.9.name.1": "墮天使",
"entity.drowned.10.name.1": "墮天使",
"item.iron_helmet.7.name.1": "雲鐵頭盔",
"item.globe_banner_pattern.2.name.1": "輕盈卷軸",
"entity.skeleton.94.name.1": "构造体二十一号",
"entity.skeleton.95.name.1": "构造体二十一号",
"entity.skeleton.96.name.1": "构造体二十一号",
"entity.spider.15.name.1": "构造体五十六号",
"entity.blaze.15.name.1": "构造体五十六号",
"entity.skeleton.97.name.1": "构造体七十三号",
"entity.guardian.23.name.1": "构造体七十三号",
"item.iron_chestplate.7.name.1": "塑钢护甲",
"item.iron_chestplate.7.lore.0.1": "廉价但可靠的护甲",
"item.iron_chestplate.7.lore.1.1": "灰度工业 - 普通物品",
"item.bow.13.name.1": "机械弓",
"item.bow.13.lore.0.1": "经过现代科技改造过的弓",
"item.bow.13.lore.1.1": "灰度工业 - 普通物品",
"item.paper.3.name.1": "工程蓝图",
"item.paper.3.lore.0.1": "高等数学...",
"item.paper.3.lore.1.1": "灰度工业 - 普通物品",
"entity.skeleton.98.name.1": "构造体二十一号",
"entity.spider.16.name.1": "构造体五十六号",
"entity.blaze.16.name.1": "构造体五十六号",
"entity.skeleton.99.name.1": "构造体七十三号",
"entity.guardian.24.name.1": "构造体七十三号",