-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkor.js
1809 lines (1700 loc) · 87.2 KB
/
kor.js
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
var ttLang='ko';
function mkLL(cssClass, label){
return "<span class='"+cssClass+"'>"+label+":</span>";
}
function mkTT(tip){
return " title=\"" +tip+"\"";
}
var specialTiles=new Array(["flowing_water","물"],
["water","정지된 물"],
["flowing_lava","용암"],
["lava","정지된 용암"],
["fire","불"]);
var items=new Array(["0","None"],
["stone","돌"],
["stone:1","화강암"],
["stone:2","부드러운 화강암"],
["stone:3","섬록암"],
["stone:4","부드러운 섬록암"],
["stone:5","안산암"],
["stone:6","부드러운 안산암"],
["grass","잔디 블록"],
["dirt","흙"],
["dirt:1","거친 흙"],
["dirt:2","회백토"],
["cobblestone","조약돌"],
["planks","참나무 목재"],
["planks:1","가문비나무 목재"],
["planks:2","자작나무 목재"],
["planks:3","정글 나무 목재"],
["planks:4","아카시아 나무 목재"],
["planks:5","짙은 참나무 목재"],
["sapling","참나무 묘목"],
["sapling:1","가문비나무 묘목"],
["sapling:2","자작나무 묘목"],
["sapling:3","정글 나무 묘목"],
["sapling:4","아카시아 나무 묘목"],
["sapling:5","짙은 참나무 묘목"],
["bedrock","기반암"],
["sand","모래"],
["sand:1","붉은 모래"],
["gravel","자갈"],
["gold_ore","금광석"],
["iron_ore","철광석"],
["coal_ore","석탄 광석"],
["log","참나무"],
["log:1","가문비나무"],
["log:2","자작나무"],
["log:3","정글 나무"],
["log:4","참나무 4"],
["log:5","참나무 5"],
["leaves","참나무 잎"],
["leaves:1","가문비나무 잎"],
["leaves:2","자작나무 잎"],
["leaves:3","정글 나무 잎"],
["leaves2","아카시아 잎"],
["leaves2:1","짙은 참나무 잎"],
["sponge","스펀지"],
["sponge:1","젖은 스펀지"],
["glass","유리"],
["stained_glass","하얀색 염색된 유리"],
["stained_glass:1","주황색 염색된 유리"],
["stained_glass:2","자홍색 염색된 유리"],
["stained_glass:3","하늘색 염색된 유리"],
["stained_glass:4","노란색 염색된 유리"],
["stained_glass:5","연두색 염색된 유리"],
["stained_glass:6","분홍색 염색된 유리"],
["stained_glass:7","회색 염색된 유리"],
["stained_glass:8","밝은 회색 염색된 유리"],
["stained_glass:9","청록색 염색된 유리"],
["stained_glass:10","보라색 염색된 유리"],
["stained_glass:11","파란색 염색된 유리"],
["stained_glass:12","갈색 염색된 유리"],
["stained_glass:13","초록색 염색된 유리"],
["stained_glass:14","빨간색 염색된 유리"],
["stained_glass:15","검정색 염색된 유리"],
["stained_glass_pane","하얀색 염색된 유리판"],
["stained_glass_pane:1","주황색 염색된 유리판"],
["stained_glass_pane:2","자홍색 염색된 유리판"],
["stained_glass_pane:3","하늘색 염색된 유리판"],
["stained_glass_pane:4","노란색 염색된 유리판"],
["stained_glass_pane:5","연두색 염색된 유리판"],
["stained_glass_pane:6","분홍색 염색된 유리판"],
["stained_glass_pane:7","회색 염색된 유리판"],
["stained_glass_pane:8","밝은 회색 염색된 유리판"],
["stained_glass_pane:9","청록색 염색된 유리판"],
["stained_glass_pane:10","보라색 염색된 유리판"],
["stained_glass_pane:11","파란색 염색된 유리판"],
["stained_glass_pane:12","갈색 염색된 유리판"],
["stained_glass_pane:13","초록색 염색된 유리판"],
["stained_glass_pane:14","빨간색 염색된 유리판"],
["stained_glass_pane:15","검정색 염색된 유리판"],
["lapis_ore","청금석 원석"],
["lapis_block","청금석 블록"],
["dispenser","발사기"],
["sandstone","사암"],
["sandstone:1","조각된 사암"],
["sandstone:2","부드러운 사암"],
["noteblock","노트 블록"],
["golden_rail","파워 레일"],
["detector_rail","디텍터 레일"],
["sticky_piston","끈끈이 피스톤"],
["web","거미줄"],
["tallgrass","키가 큰 풀 (마른 덤불)"],
["tallgrass:1","잔디"],
["tallgrass:2","고사리"],
["deadbush","마른 덤불"],
["piston","피스톤"],
["wool","양털"],
["wool:1","주황색 양털"],
["wool:2","자홍색 양털"],
["wool:3","하늘색 양털"],
["wool:4","노란색 양털"],
["wool:5","연두색 양털"],
["wool:6","분홍색 양털"],
["wool:7","회색 양털"],
["wool:8","밝은 회색 양털"],
["wool:9","청록색 양털"],
["wool:10","보라색 양털"],
["wool:11","파란색 양털"],
["wool:12","갈색 양털"],
["wool:13","초록색 양털"],
["wool:14","빨간색 양털"],
["wool:15","검정색 양털"],
["carpet","양탄자"],
["carpet:1","주황색 양탄자"],
["carpet:2","자홍색 양탄자"],
["carpet:3","하늘색 양탄자"],
["carpet:4","노란색 양탄자"],
["carpet:5","연두색 양탄자"],
["carpet:6","분홍색 양탄자"],
["carpet:7","회색 양탄자"],
["carpet:8","밝은 회색 양탄자"],
["carpet:9","청록색 양탄자"],
["carpet:10","보라색 양탄자"],
["carpet:11","파란색 양탄자"],
["carpet:12","갈색 양탄자"],
["carpet:13","초록색 양탄자"],
["carpet:14","빨간색 양탄자"],
["carpet:15","검정색 양탄자"],
["yellow_flower","민들레"],
["red_flower","양귀비"],
["red_flower:1","파란 난초"],
["red_flower:2","파꽃"],
["red_flower:3","푸른 삼백초"],
["red_flower:4","빨간색 튤립"],
["red_flower:5","주황색 튤립"],
["red_flower:6","하얀색 튤립"],
["red_flower:7","분황색 튤립"],
["red_flower:8","데이지"],
["brown_mushroom","갈색 버섯"],
["red_mushroom","빨간색 버섯"],
["gold_block","금 블록"],
["iron_block","철 블록"],
["double_stone_slab","더블 돌 반 블록"],
["double_stone_slab:1","더블 사암 반 블록"],
["double_stone_slab:2","더블 목재 반 블록"],
["double_stone_slab:3","더블 조약돌 반 블록"],
["double_stone_slab:4","더블 벽돌 반 블록"],
["double_stone_slab:5","더블 석재 벽돌 반 블록"],
["double_stone_slab:6","더블 네더 벽돌 반 블록"],
["double_stone_slab:7","더블 석영 반 블록"],
["double_stone_slab:8","더블 부드러운 돌 반 블록"],
["double_stone_slab:9","더블 부드러운 사암 반 블록"],
["stone_slab","돌 반 블록"],
["stone_slab:1","사암 반 블록"],
["stone_slab:2","목재 반 블록"],
["stone_slab:3","조약돌 반 블록b"],
["stone_slab:4","벽돌 반 블록"],
["stone_slab:5","석재 벽돌 반 블록"],
["stone_slab:6","네더 벽돌 반 블록"],
["stone_slab:7","석영 반 블록"],
["brick_block","벽돌"],
["tnt","TNT"],
["bookshelf","책장"],
["mossy_cobblestone","이끼 낀 돌"],
["obsidian","흑요석"],
["torch","횃불"],
["mob_spawner","몬스터 스포너"],
["oak_stairs","참나무 계단"],
["chest","상자"],
["diamond_ore","다이아몬드 원석"],
["diamond_block","다이아몬드 블록"],
["crafting_table","작업대"],
["farmland","경작지"],
["furnace","화로"],
["lit_furnace","불 켜진 화로"],
["ladder","사다리"],
["rail","레일"],
["stone_stairs","석재 계단"],
["lever","레버"],
["stone_pressure_plate","돌 감압판"],
["wooden_pressure_plate","나무 감압판"],
["redstone_ore","레드스폰 광석"],
["redstone_torch","레드스톤 횃불 (켜짐)"],
["stone_button","돌 버튼"],
["snow_layer","눈"],
["ice","얼음"],
["snow","눈 블록"],
["cactus","선인장"],
["clay","점토"],
["jukebox","주크박스"],
["fence","참나무 울타리"],
["spruce_fence","가문비나무 울타리"],
["birch_fence","자작나무 울타리"],
["jungle_fence","정글 나무 울타리"],
["dark_oak_fence","짙은 참나무 울타리"],
["acacia_fence","아카시아 나무 울타리"],
["pumpkin","호박"],
["netherrack","네더랙"],
["soul_sand","소울 샌드"],
["glowstone","발광석"],
["portal","포탈"],
["lit_pumpkin","잭 오 랜턴"],
["trapdoor","다락문"],
["monster_egg","돌 몬스터 알"],
["monster_egg:1","조약돌 몬스터 알"],
["monster_egg:2","석재 벽돌 몬스터 알"],
["monster_egg:3","이끼 낀 석재 벽돌 몬스터 알"],
["monster_egg:4","금 간 석재 벽돌 몬스터 알"],
["monster_egg:5","조각된 석재 벽돌 몬스터 알"],
["stonebrick","석재 벽돌"],
["stonebrick:1","이끼 낀 석재 벽돌"],
["stonebrick:2","금 간 석재 벽돌"],
["stonebrick:3","조각된 석재 벽돌"],
["brown_mushroom_block","갈색 버섯 블록"],
["red_mushroom_block","빨간색 버섯 블록"],
["iron_bars","철창"],
["glass_pane","유리판"],
["melon_block","수박 블록"],
["vine","덩쿨"],
["fence_gate","참나무 울타리 문"],
["spruce_fence_gate","가문비나무 울타리 문"],
["birch_fence_gate","자작나무 울타리 문"],
["jungle_fence_gate","정글 나무 울타리 문"],
["dark_oak_fence_gate","짙은 참나무 울타리 문"],
["acacia_fence_gate","아카시아 나무 울타리 문"],
["brick_stairs","벽돌 계단"],
["stone_brick_stairs","석재 벽돌 계단"],
["mycelium","균사체"],
["waterlily","연꽃잎"],
["nether_brick","네더 벽돌"],
["nether_brick_fence","네더 벽돌 울타리"],
["nether_brick_stairs","네더 벽돌 계단"],
["enchanting_table","마법부여대"],
["end_portal","엔더 포탈"],
["end_portal_frame","엔더 포탈 프레임"],
["end_stone","엔드 스톤"],
["dragon_egg","드래곤 알"],
["redstone_lamp","레드스톤 조명 (꺼짐)"],
["double_wooden_slab","더블 참나무 반 블록"],
["double_wooden_slab:1","더블 가문비나무 반 블록"],
["double_wooden_slab:2","더블 자작나무 반 블록"],
["double_wooden_slab:3","더블 정글 나무 반 블록"],
["double_wooden_slab:4","더블 아카시아 나무 반 블록"],
["double_wooden_slab:5","더블 짙은 참나무 반 블록"],
["wooden_slab","참나무 반 블록"],
["wooden_slab:1","가문비나무 반 블록"],
["wooden_slab:2","자작나무 반 블록"],
["wooden_slab:3","정글 나무 반 블록"],
["wooden_slab:4","아카시아 나무 반 블록"],
["wooden_slab:5","짙은 참나무 반 블록"],
["cocoa","코코아 열매"],
["sandstone_stairs","사암 계단"],
["emerald_ore","에메랄드 원석"],
["ender_chest","엔더 상자"],
["tripwire_hook","철사덫 갈고리"],
["emerald_block","에메랄드 블록"],
["spruce_stairs","가문비나무 계단"],
["birch_stairs","자작나무 계단"],
["jungle_stairs","정글 나무 계단"],
["command_block","명령 블록"],
["beacon","신호기"],
["cobblestone_wall","조약돌 담장"],
["cobblestone_wall:1","이끼 낀 조약돌 담장"],
["wooden_button","나무 버튼"],
["anvil","모루"],
["anvil:1","약간 손상된 모루"],
["anvil:2","심각하게 손상된 모루"],
["trapped_chest","덫 상자"],
["light_weighted_pressure_plate","무게 감압판 (경형)"],
["heavy_weighted_pressure_plate","무게 감압판 (중형)"],
["daylight_detector","햇빛 감지기"],
["redstone_block","레드스톤 블록"],
["quartz_ore","네더 석영 원석"],
["hopper","깔때기"],
["quartz_block","석영 블록"],
["quartz_block:1","조각된 석영 블록"],
["quartz_block:2","석영 기둥 블록"],
["quartz_stairs","석영 계단"],
["activator_rail","활성화 레일"],
["dropper","공급기"],
["stained_hardened_clay","하얀색 염색된 점토"],
["stained_hardened_clay:1","주황색 염색된 점토"],
["stained_hardened_clay:2","자홍색 염색된 점토"],
["stained_hardened_clay:3","하늘색 염색된 점토"],
["stained_hardened_clay:4","노란색 염색된 점토"],
["stained_hardened_clay:5","연두색 염색된 점토"],
["stained_hardened_clay:6","분홍색 염색된 점토"],
["stained_hardened_clay:7","회색 염색된 점토"],
["stained_hardened_clay:8","밝은 회색 염색된 점토"],
["stained_hardened_clay:9","청록색 염색된 점토"],
["stained_hardened_clay:10","보라색 염색된 점토"],
["stained_hardened_clay:11","파란색 염색된 점토"],
["stained_hardened_clay:12","갈색 염색된 점토"],
["stained_hardened_clay:13","초록색 염색된 점토"],
["stained_hardened_clay:14","빨간색 염색된 점토"],
["stained_hardened_clay:15","검정색 염색된 점토"],
["log2","아카시아 나무"],
["log2:1","짙은 참나무"],
["acacia_stairs","아카시아 나무 계단"],
["dark_oak_stairs","짙은 참나무 계단"],
["slime","슬라임 블록"],
["barrier","방벽"],
["iron_trapdoor","철 다락문"],
["prismarine","프리즈마린"],
["prismarine:1","프리즈마린 벽돌"],
["prismarine:2","어두운 프리즈마린"],
[" sea_lantern","바다 랜턴"],
["hay_block","건초 더미"],
["hardened_clay","굳은 점토"],
["coal_block","석탄 블록"],
["packed_ice","단단한 얼음"],
["double_plant","해바라기"],
["double_plant:1","라일락"],
["double_plant:2","큰 잔디"],
["double_plant:3","큰 고사리"],
["double_plant:4","장미 덤불"],
["double_plant:5","모란"],
["red_sandstone","붉은 사암"],
["red_sandstone:1","조각된 붉은 사암"],
["red_sandstone:2","부드러운 붉은 사암"],
["red_sandstone_stairs","붉은 사암 계단"],
["double_stone_slab2","더블 붉은 사암 반 블록"],
["stone_slab2","붉은 사암 반 블록"],
["iron_shovel","철 삽"],
["iron_pickaxe","철 곡괭이"],
["iron_axe","철 도끼"],
["flint_and_steel","라이터"],
["apple","사과"],
["bow","활"],
["arrow","화살"],
["coal","석탄"],
["coal:1","목탄"],
["diamond","다이아몬드"],
["iron_ingot","철괴"],
["gold_ingot","금괴"],
["iron_sword","철 곰"],
["wooden_sword","나무 검"],
["wooden_shovel","나무 삽"],
["wooden_pickaxe","나무 곡괭이"],
["wooden_axe","나무 도끼"],
["stone_sword","돌 검"],
["stone_shovel","돌 삽"],
["stone_pickaxe","돌 곡괭이"],
["stone_axe","돌 도끼"],
["diamond_sword","다이아몬드 검"],
["diamond_shovel","다이아몬드 삽"],
["diamond_pickaxe","다이아몬드 곡괭이"],
["diamond_axe","다이아몬드 도끼"],
["stick","막대기"],
["bowl","그릇"],
["mushroom_stew","버섯 스튜"],
["golden_sword","금 검"],
["golden_shovel","금 삽"],
["golden_pickaxe","금 곡괭이"],
["golden_axe","금 도끼"],
["string","실"],
["feather","깃털"],
["gunpowder","화약"],
["wooden_hoe","나무 괭이"],
["stone_hoe","돌 괭이"],
["iron_hoe","철 괭이"],
["diamond_hoe","다이아몬드 괭이"],
["golden_hoe","금 괭이"],
["wheat_seeds","씨앗"],
["wheat","밀"],
["bread","빵"],
["leather_helmet","가죽 모자"],
["leather_chestplate","가죽 튜닉"],
["leather_leggings","가죽 바지"],
["leather_boots","가죽 장화"],
["chainmail_helmet","사슬 투구"],
["chainmail_chestplate","사슬 갑옷"],
["chainmail_leggings","사슬 레깅스"],
["chainmail_boots","사슬 부츠"],
["iron_helmet","철 투구"],
["iron_chestplate","철 갑옷"],
["iron_leggings","철 레깅스"],
["iron_boots","사슬 부츠"],
["diamond_helmet","다이아몬드 투구"],
["diamond_chestplate","다이아몬드 갑옷"],
["diamond_leggings","다이아몬드 레깅스"],
["diamond_boots","다이아몬드 부츠"],
["golden_helmet","금 투구"],
["golden_chestplate","금 갑옷"],
["golden_leggings","금 레깅스"],
["golden_boots","금 부츠"],
["flint","부싯돌"],
["porkchop","익히지 않은 돼지고기"],
["cooked_porkchop","구운 돼지고기"],
["painting","그림"],
["golden_apple","황금 사과"],
["golden_apple:1","마법의 황금 사과"],
["sign","표지판"],
["wooden_door","참나무 문"],
["spruce_door","가문비나무 문"],
["birch_door","자작나무 문"],
["jungle_door","정글 나무 문"],
["acacia_door","아카시아 나무 문"],
["dark_oak_door","짙은 참나무 문"],
["bucket","Bucket"],
["water_bucket","Water Bucket"],
["lava_bucket","Lava Bucket"],
["minecart","Minecart"],
["saddle","Saddle"],
["iron_door","Iron Door"],
["redstone","Redstone"],
["snowball","Snowball"],
["boat","Boat"],
["leather","Leather"],
["milk_bucket","Milk Bucket"],
["brick","Clay Brick"],
["clay_ball","Clay Balls"],
["reeds","Sugarcane"],
["paper","Paper"],
["book","Book"],
["slime_ball","Slimeball"],
["chest_minecart","Storage Minecart"],
["furnace_minecart","Powered Minecart"],
["egg","Egg"],
["compass","Compass"],
["fishing_rod","Fishing Rod"],
["clock","Clock"],
["glowstone_dust","Glowstone Dust"],
["fish","Raw Fish"],
["fish:1","Raw Salmon"],
["fish:2","Raw Clownfish"],
["fish:3","Raw Pufferish"],
["cooked_fish","Cooked Fish"],
["cooked_fish:1","Cooked Salmon"],
["dye","Ink Sack"],
["dye:1","Rose Red"],
["dye:2","Cactus Green"],
["dye:3","Coco Beans"],
["dye:4","Lapis Lazuli"],
["dye:5","Purple Dye"],
["dye:6","Cyan Dye"],
["dye:7","Light Gray Dye"],
["dye:8","Gray Dye"],
["dye:9","Pink Dye"],
["dye:10","Lime Dye"],
["dye:11","Dandelion Yellow"],
["dye:12","Light Blue Dye"],
["dye:13","Magenta Dye"],
["dye:14","Orange Dye"],
["dye:15","Bone Meal"],
["bone","Bone"],
["sugar","Sugar"],
["cake","Cake"],
["bed","Bed"],
["repeater","Redstone Repeater"],
["cookie","Cookie"],
["filled_map","Map"],
["shears","Shears"],
["melon","Melon"],
["pumpkin_seeds","Pumpkin Seeds"],
["melon_seeds","Melon Seeds"],
["beef","Raw Beef"],
["cooked_beef","Steak"],
["chicken","Raw Chicken"],
["cooked_chicken","Cooked Chicken"],
["rotten_flesh","Rotten Flesh"],
["ender_pearl","Ender Pearl"],
["blaze_rod","Blaze Rod"],
["ghast_tear","Ghast Tear"],
["gold_nugget","Gold Nugget"],
["nether_wart","네더 와트"],
["potion","물병"],
["potion:16","이상한 포션"],
["potion:32","진한 포션"],
["potion:64","평범한 포션"],
["potion:8193","재생 포션 (0:45)"],
["potion:8194","신속의 포션 (3:00)"],
["potion:8195","화염 저항 포션 (3:00)"],
["potion:8196","독 포션 (0:45)"],
["potion:8197","회복 포션"],
["potion:8198","야간 투시 포션 (3:00)"],
["potion:8200","나약의 포션 (1:30)"],
["potion:8201","힘의 포션 (3:00)"],
["potion:8202","구속의 포션 (1:30)"],
["potion:8203","도약의 포션 (3:00)"],
["potion:8204","고통의 포션"],
["potion:8205","수중 호흡 포션 (3:00)"],
["potion:8206","투명화 포션 (3:00)"],
["potion:8225","재생 포션 II (0:22)"],
["potion:8226","신속의 포션 II (1:30)"],
["potion:8228","독 포션 II (0:22)"],
["potion:8229","회복 포션 II"],
["potion:8233","힘의 포션 II (1:30)"],
["potion:8235","도약 포션 II (1:30)"],
["potion:8236","고통의 포션 II"],
["potion:8257","재생 포션 (2:00)"],
["potion:8258","신속의 포션 (8:00)"],
["potion:8259","화염 저항 포션 (8:00)"],
["potion:8260","독 포션 (2:00)"],
["potion:8262","야간 투시 포션 (8:00)"],
["potion:8264","나약의 포션 (4:00)"],
["potion:8265","힘의 포션 (8:00)"],
["potion:8266","구속의 포션 (4:00)"],
["potion:8269","수중 호흡 포션 (8:00)"],
["potion:8270","투명화 포션 (8:00)"],
["potion:8289","재생 포션 II (1:00)"],
["potion:8290","신속의 포션 포션 II (4:00)"],
["potion:8292","독 포션 II (1:00)"],
["potion:8297","힘의 포션 II (4:00)"],
["potion:16385","투척용 재생 포션 (0:33)"],
["potion:16386","투척용 신속의 포션 (2:15)"],
["potion:16387","투척용 화염 저항 포션 (2:15)"],
["potion:16388","투척용 독 포션 (0:33)"],
["potion:16389","투척용 회복 포션"],
["potion:16390","투척용 야간 투시 포션 (2:15)"],
["potion:16392","투척용 나약의 포션 (1:07)"],
["potion:16393","투척용 힘의 포션 (2:15)"],
["potion:16394","투척용 구속의 포션 (1:07)"],
["potion:16396","투척용 고통의 포션"],
["potion:16397","투척용 수중 호흡 포션 (2:15)"],
["potion:16398","투척용 투명화 포션 (2:15)"],
["potion:16417","투척용 재생 포션 II (0:16)"],
["potion:16418","투척용 신속의 포션 II (1:07)"],
["potion:16420","투척용 독 포션 II (0:16)"],
["potion:16421","투척용 회복 포션 II"],
["potion:16425","투척용 힘의 포션 II (1:07)"],
["potion:16428","투척용 고통의 포션 II"],
["potion:16449","투척용 재생 포션 (1:30)"],
["potion:16450","투척용 신속의 포션 (6:00)"],
["potion:16451","투척용 화염 저항 포션 (6:00)"],
["potion:16452","투척용 독 포션 (1:30)"],
["potion:16454","투척용 야간 투시 포션 (6:00)"],
["potion:16456","투척용 나약의 포션 (3:00)"],
["potion:16457","투척용 힘의 포션 (6:00)"],
["potion:16458","투척용 구속의 포션 (3:00)"],
["potion:16461","투척용 수중 호흡 포션 (6:00)"],
["potion:16462","투척용 투명화 포션 (6:00)"],
["potion:16481","투척용 재생 포션 II (0:45)"],
["potion:16482","투척용 신속의 포션 II (3:00)"],
["potion:16484","투척용 독 포션 II (0:45)"],
["potion:16489","투척용 힘의 포션 II (3:00)"],
["potion:7","맑은 포션 (미사용)"],
["potion:15","묽은 포션 (미사용)"],
["potion:23","어설픈 포션 (미사용)"],
["potion:31","유쾌한 포션 (미사용)"],
["potion:39","매력적인 포션 (미사용)"],
["potion:47","반짝이는 포션 (미사용)"],
["potion:55","등급 포션 (미사용)"],
["potion:63","지독한 포션 (미사용)"],
["potion:16391","투척용 맑은 포션 (미사용)"],
["potion:16399","투척용 묽은 포션 (미사용)"],
["potion:16407","투척용 어설픈 포션 (미사용)"],
["potion:16415","투척용 유쾌한 포션 (미사용)"],
["potion:16423","투척용 매력적인 포션 (미사용)"],
["potion:16431","투척용 반짝이는 포션 (미사용)"],
["potion:16439","투척용 등급 포션 (미사용)"],
["potion:16447","투척용 지독한 포션 (미사용)"],
["glass_bottle","유리병"],
["spider_eye","거미 눈"],
["fermented_spider_eye","발효된 거미 눈"],
["blaze_powder","블레이즈 가루"],
["magma_cream","마그마 크림"],
["brewing_stand","양조기"],
["cauldron","가마솥"],
["ender_eye","엔더의 눈"],
["speckled_melon","반짝이는 수박"],
["spawn_egg:50","스폰 크리퍼"],
["spawn_egg:51","스폰 스켈레톤"],
["spawn_egg:52","스폰 거미"],
["spawn_egg:54","스폰 좀비"],
["spawn_egg:55","스폰 슬라임"],
["spawn_egg:56","스폰 가스트"],
["spawn_egg:57","스폰 좀비 피그맨"],
["spawn_egg:58","스폰 엔더맨"],
["spawn_egg:59","스폰 동굴 거미"],
["spawn_egg:60","스폰 좀벌레"],
["spawn_egg:61","스폰 블레이즈"],
["spawn_egg:62","스폰 마그마 큐브"],
["spawn_egg:65","스폰 박쥐"],
["spawn_egg:66","스폰 마녀"],
["spawn_egg:67","스폰 엔더 진드기"],
["spawn_egg:68","스폰 수호자"],
["spawn_egg:90","스폰 돼지"],
["spawn_egg:91","스폰 양"],
["spawn_egg:92","스폰 소"],
["spawn_egg:93","스폰 닭"],
["spawn_egg:94","스폰 오징어"],
["spawn_egg:95","스폰 늑대"],
["spawn_egg:96","스폰 버섯소"],
["spawn_egg:98","스폰 오셀롯"],
["spawn_egg:100","스폰 말"],
["spawn_egg:101","스폰 토끼"],
["spawn_egg:120","스폰 주민"],
["experience_bottle","경험치 병"],
["fire_charge","화염구"],
["writable_book","책과 깃펜"],
["written_book","쓰여진 책"],
["emerald","에메랄드"],
["item_frame","아이템 액자"],
["flower_pot","화분"],
["carrot","Carrots"],
["potato","Potato"],
["baked_potato","Baked Potato"],
["poisonous_potato","Poisonous Potato"],
["map","Map"],
["golden_carrot","Golden Carrot"],
["skull","Mob Head (Skeleton)"],
["skull:1","Mob Head (Wither Skeleton)"],
["skull:2","Mob Head (Zombie)"],
["skull:3","Mob Head (Human)"],
["skull:4","Mob Head (Creeper)"],
["carrot_on_a_stick","Carrot on a Stick"],
["nether_star","Nether Star"],
["pumpkin_pie","Pumpkin Pie"],
["fireworks","Firework Rocket"],
["firework_charge","Firework Star"],
["enchanted_book","Enchanted Book"],
["comparator","Redstone Comparator"],
["netherbrick","Nether Brick"],
["quartz","Nether Quartz"],
["tnt_minecart","Minecart with TNT"],
["hopper_minecart","Minecart with Hopper"],
["prismarine_shard","Prismarine Shard"],
["prismarine_crystals","Prismarine Crystals"],
["rabbit","Raw Rabbit"],
["cooked_rabbit","Cooked Rabbit"],
["rabbit_stew","Rabbit Stew"],
["rabbit_foot","Rabbit's Foot"],
["rabbit_hide","Rabbit Hide"],
["armor_stand","Armor Stand"],
["iron_horse_armor","Iron Horse Armor"],
["golden_horse_armor","Gold Horse Armor"],
["diamond_horse_armor","Diamond Horse Armor"],
["lead","Lead"],
["name_tag","Name Tag"],
["command_block_minecart","Command Block Minecart"],
["mutton","Raw Mutton"],
["cooked_mutton","Cooked Mutton"],
["banner","Banner"],
["record_13","13 음반"],
["record_cat","Cat 음반"],
["record_blocks","Blocks 음반"],
["record_chirp","Chirp 음반"],
["record_far","Far 음반"],
["record_mall","Mall 음반"],
["record_mellohi","Mellohi 음반"],
["record_stal","Stal 음반"],
["record_strad","Strad 음반"],
["record_ward","Ward 음반"],
["record_11","11 음반"],
["record_wait","Wait 음반"]);
var tileIDs=new Array(["air","Air"],
["stone","Stone","SB"],
["grass","Grass Block"],
["dirt","Dirt","SB"],
["cobblestone","Cobblestone"],
["planks","Wood Planks","SB"],
["sapling","Sapling","SB"],
["bedrock","Bedrock"],
["flowing_water","Water","S"],
["water","Stationary Water","S"],
["flowing_lava","Lava","S"],
["lava","Stationary Lava","S"],
["sand","Sand","SB"],
["gravel","Gravel"],
["gold_ore","Gold Ore"],
["iron_ore","Iron Ore"],
["coal_ore","Coal Ore"],
["log","Wood","SB"],
["leaves","Leaves","SB"],
["sponge","Sponge","SB"],
["glass","Glass"],
["lapis_ore","Lapis Lazuli Ore"],
["lapis_block","Lapis Lazuli Block"],
["dispenser","Dispenser","SE"],
["sandstone","Sandstone","SB"],
["noteblock","Note Block","E"],
//["bed","Bed","S"],
["golden_rail","Powered Rail","S"],
["detector_rail","Detector Rail","S"],
["sticky_piston","Sticky Piston","S"],
["web","Cobweb"],
["tallgrass","Grass","SB"],
["deadbush","Dead Bush"],
["piston","Piston","S"],
["piston_head","Piston Extension","S"],
["wool","Wool","SB"],
//["piston_extension","Block moved by Piston","E"],
["yellow_flower","Dandelion"],
["red_flower","Poppy","SB"],
["brown_mushroom","Brown Mushroom"],
["red_mushroom","Red Mushroom"],
["gold_block","Block of Gold"],
["iron_block","Block of Iron"],
["double_stone_slab","Double Stone Slab","SB"],
["stone_slab","Stone Slab","SB"],
["brick_block","Bricks"],
["tnt","TNT"],
["bookshelf","Bookshelf"],
["mossy_cobblestone","Moss Stone"],
["obsidian","Obsidian"],
["torch","Torch","S"],
["fire","Fire","S"],
["mob_spawner","Monster Spawner","E"],
["oak_stairs","Oak Wood Stairs","S"],
["chest","Chest","SE"],
["redstone_wire","Redstone Wire","S"],
["diamond_ore","Diamond Ore"],
["diamond_block","Block of Diamond"],
["crafting_table","Crafting Table"],
["wheat","Wheat","S"],
["farmland","Farmland","S"],
["furnace","Furnace","SE"],
["lit_furnace","Burning Furnace","SE"],
["standing_sign","Standing Sign", "SE"],
["wooden_door","Oak Door","S"],
["ladder","Ladder","S"],
["rail","Rail","S"],
["stone_stairs","Cobblestone Stairs","S"],
["wall_sign","Wall Sign","SE"],
["lever","Lever","S"],
["stone_pressure_plate","Stone Pressure Plate","S"],
["iron_door","Iron Door","S"],
["wooden_pressure_plate","Wooden Pressure Plate","S"],
["redstone_ore","Redstone Ore"],
["lit_redstone_ore","Glowing Redstone Ore"],
["unlit_redstone_torch","Redstone Torch (inactive)","S"],
["redstone_torch","Redstone Torch (active)","S"],
["stone_button","Stone Button","S"],
["snow_layer","Snow Layer","SB"],
["ice", "Ice"],
["snow","Snow"],
["cactus","Cactus","S"],
["clay","Clay"],
["reeds","Sugar Cane","S"],
["jukebox","Jukebox","SE"],
["fence","Fence"],
["pumpkin","Pumpkin","S"],
["netherrack","Netherrack"],
["soul_sand","Soul Sand"],
["glowstone","Glowstone"],
["portal","Nether Portal"],
["lit_pumpkin","Jack o'Lantern","S"],
["cake","Cake","S"],
["unpowered_repeater","Redstone Repeater (inactive)","S"],
["powered_repeater","Redstone Repeater (active)","S"],
["stained_glass","Stained Glass","SB"],
["trapdoor","Trapdoor","S"],
["monster_egg","Monster Egg","SB"],
["stonebrick","Stone Bricks","SB"],
["brown_mushroom_block","Brown Mushroom (block)","S"],
["red_mushroom_block","Red Mushroom (block)","S"],
["iron_bars","Iron Bars"],
["glass_pane","Glass Pane"],
["melon_block","Melon"],
["pumpkin_stem","Pumpkin Stem","S"],
["melon_stem","Melon Stem","S"],
["vine","Vines","S"],
["fence_gate","Fence Gate","S"],
["brick_stairs","Brick Stairs","S"],
["stone_brick_stairs","Stone Brick Stairs","S"],
["mycelium","Mycelium"],
["waterlily", "Lily Pad"],
["nether_brick","Nether Brick"],
["nether_brick_fence","Nether Brick Fence"],
["nether_brick_stairs","Nether Brick Stairs","S"],
["nether_wart","Nether Wart","S"],
["enchanting_table","Enchantment Table","E"],
["brewing_stand","Brewing Stand","SE"],
["cauldron","Cauldron","S"],
["end_portal","End Portal"],//,"E"], not implmented,"E"],
["end_portal_frame","End Portal Block"],//,"E"], not implmented,"E"],
["end_stone","End Stone"],
["dragon_egg","Dragon Egg"],
["redstone_lamp","Redstone Lamp (inactive)"],
["lit_redstone_lamp","Redstone Lamp (active)"],
["double_wooden_slab","Double Wooden Slab","SB"],
["wooden_slab","Wooden Slab","SB"],
["cocoa", "Cocoa", "S"],
["sandstone_stairs","Sandstone Stairs","S"],
["emerald_ore","Emerald Ore"],
["ender_chest","Ender Chest","S"], ////,"E"], not implmented
["tripwire_hook","Tripwire Hook","S"],
["tripwire","Tripwire","S"],
["emerald_block","Block of Emerald"],
["spruce_stairs","Spruce Wood Stairs","S"],
["birch_stairs","Birch Wood Stairs","S"],
["jungle_stairs","Jungle Wood Stairs","S"],
["command_block","Command Block","E"],
["beacon","Beacon","E"],
["cobblestone_wall","Cobblestone Wall","SB"],
["flower_pot","Flower Pot","SE"],
["carrots","Carrot","S"],
["potatoes","Potato","S"],
["wooden_button Wooden","Button","S"],
["skull","Mob head","SE"],
["anvil","Anvil","SB"],
["trapped_chest","Trapped Chest","SE"],
["light_weighted_pressure_plate","Light Weighted Pressure Plate","S"],
["heavy_weighted_pressure_plate","Heavy Weighted Pressure Plate","S"],
["unpowered_comparator","Redstone Comparator (unpowered)","S"],
["powered_comparator","Redstone Comparator (powered)","S"],
["daylight_detector","Daylight Sensor"], //,"E"], not implmented
["redstone_block","Block of Redstone"],
["quartz_ore","Nether Quartz Ore"],
["hopper","Hopper","SE"],
["quartz_block","Block of Quartz","SB"],
["quartz_stairs","Quartz Stairs","S"],
["activator_rail","Activator Rail","S"],
["dropper","Dropper","SE"],
["stained_hardened_clay","Stained Clay"],
["stained_glass_pane","Stained Glass Pane","SB"],
["leaves2","Leaves (Acacia/Dark Oak)","SB"],
["log2","Wood (Acacia/Dark Oak)","SB"],
["acacia_stairs","Acacia Wood Stairs S"],
["dark_oak_stairs","Dark Oak Wood Stairs","S"],
["slime","Slime Block"],
["barrier","Barrier"],
["iron_trapdoor","Iron Trapdoor","S"],
["prismarine","Prismarine","SB"],
["sea_lantern","Sea Lantern"],
["hay_block","Hay Bale","S"],
["carpet","Carpet","SB"],
["hardened_clay","Hardened Clay"],
["coal_block","Block of Coal"],
["packed_ice","Packed Ice"],
["double_plant","Large Flowers","SB"],
["standing_banner","Standing Banner","SE"],
["wall_banner","Wall Banner","SE"],
["daylight_detector_inverted","Inverted Daylight Sensor"],//,"E"], not implmented
["red_sandstone","Red Sandstone","SB"],
["red_sandstone_stairs","Red Sandstone Stairs","S"],
["double_stone_slab2","Double Red Sandstone Slab","S"],
["stone_slab2","Red Sandstone Slab","S"],
["spruce_fence_gate","Spruce Fence Gate"],
["birch_fence_gate","Birch Fence Gate"],
["jungle_fence_gate","Jungle Fence Gate"],
["dark_oak_fence_gate","Dark Oak Fence Gate"],
["acacia_fence_gate","Acacia Fence Gate"],
["spruce_fence","Spruce Fence"],
["birch_fence","Birch Fence"],
["jungle_fence","Jungle Fence"],
["dark_oak_fence","Dark Oak Fence"],
["acacia_fence","Acacia Fence"],
["spruce_door","Spruce Door","S"],
["birch_door","Birch Door","S"],
["jungle_door","Jungle Door","S"],
["acacia_door","Acacia Door","S"],
["dark_oak_door","Dark Oak Door","S"]);
var llCommandType="멍령어 종류";
var ttCommandType="생성하고자 하는 명령어의 종류를 선택하세요.";
var llResetForm="양식 초기화";
var ttResetForm="모든 설정을 기본값으로 되돌립니다.";
var llSaveAs="새 명령어로 저장";
var ttSaveAs="현재 설정을 파생 관계 없는 새 명령어로 저장합니다.";
var llEnchantAll="인챈트 불가 아이템도 표시 (모든 아이템에 인챈트 옵션을 표시합니다.)";
var ttEnchantAll="모든 아이템에 인챈트 옵션을 사용할 수 있게 됩니다. 인챈트 옵션을 표시하거나 숨기려면 아이템을 다시 선택해야합니다.";
var llAddEntity="엔티티 추가";
var ttAddEntity="스택 맨 아래에 엔티티를 추가합니다.";
var llSummonCoords="소환 좌표";
var llRelativeCoords="상대 좌표";
var ttRelativeCoords="엔티티를 상대 좌표에 소환하려면 체크하세요. 엔티티를 절대 좌표에 소환하려면 체크를 해제하세요.";
var ttSummonX="엔티티를 소환하고자 하는 X 좌표.";
var ttSummonY="엔티티를 소환하고자 하는 Y 좌표.";
var ttSummonZ="엔티티를 소환하고자 하는 Z 좌표.";
var llSpawnCount="스폰 카운트";
var ttSpawnCount="스포너가 한번에 소환할 엔티티의 개수.";
var llSpawnRange="스폰 범위";
var ttSpawnRange="엔티티가 소환될 범위.";
var llRequiredPlayerRange="필요 플레이어 범위";
var ttRequiredPlayerRange="스포너가 엔티티 소환을 시작하기 위해 플레이어가 접근해야 하는 범위.";
var llDelay="딜레이";
var ttDelay="플레이어가 처음 감지되고부터 엔티티가 소환되기까지의 틱.";
var llMinSpawnDelay="최소 스폰 딜레이";
var ttMinSpawnDelay="첫 스폰 후, 다음 스폰까지의 최소 틱.";
var llMaxSpawnDelay="최대 스폰 딜레이";
var ttMaxSpawnDelay="첫 스폰 후, 다음 스폰까지의 최대 틱.";
var llMaxNearbyEntities="최대 인근 엔티티";
var ttMaxNearbyEntities="Checks the number of entities within the spawn range ('SpawnRange' tag). If the number of entities it detects is over the set MaxNearbyEntities number, it will not spawn more entities unless the amount of entities within the spawn range is decreased.";
var llPlayerName="플레이어 이름";
var ttPlayerName="특정 플레이어의 이름을 입력하세요.";
var llItemSelect="아이템";
var ttItemSelect="아이템을 선택하세요.";
var ttSearchFilter="검색/필터";
var llEntity="Entity";
var ttEntity="Choose your Minecraft entity.";
var ttRemoveFromStack="Remove this entity from the stack. You need to keep at least one entity in the stack.";
var ttMoveUpStack="Move this entity up the stack.";
var ttMoveDownStack="Move this entity down the stack.";
var eeKeepOneEntity="You need to keep at least one entity";
var llCustomNameEntity="Name";
var ttCustomNameEntity="The custom name of this entity. Appears in player death messages and villager trading interfaces, as well as above the entity when your cursor is over it.";
var llUUIDLeast="UUIDLeast";
var ttUUIDLeast="The least significant bits of this entity's Universally Unique IDentifier. This is used for leashing mobs to this entity. Set both UUIDLeast and UUIDMost or none at all.";
var llUUIDMost="UUIDMost";
var ttUUIDMost="The most significant bits of this entity's Universally Unique IDentifier. This is used for leashing mobs to this entity. Set both UUIDLeast and UUIDMost or none at all.";
var llInvulnerable="Invulnerable";
var ttInvulnerable="Check if the entity should not take damage. This applies to living and nonliving entities alike: mobs will not take damage from any source (including potion effects), and cannot be moved by fishing rods, attacks, explosions, or projectiles, and objects such as vehicles and item frames cannot be destroyed unless their supports are removed. Note that these entities can be damaged by players in Creative mode.";
var llInLove="In Love";
var ttInLove="Ticks until the mob loses its breeding hearts and stops searching for a mate. Leave blank when not searching for a mate.";
var llAge="Age";
var ttAge="The age of the mob in ticks. Set to a negative number if it is a baby. Set to 0 or above if the mob is an adult. Values above 0 are the number of ticks before this mob can breed again.";
var llForcedlAge="Forced Age";
var ttForcedlAge="A value of age which will be assigned to this mob when it grows up. Incremented when a baby mob is fed.";
var llOwner="Owner";
var ttOwner="Name of the player that owns this mob. Empty string if no owner.";
var llOwnerUUID="Owner UUID";
var ttOwnerUUID="UUID of the player that owns this mob.";
var llSitting="Sitting";
var ttSitting="Check this if the mob is sitting.";
var llInGround="In Ground";
var ttInGround="If the Projectile is in the ground or hit the ground already. Flying arrows can't be picked up.";
var llPickup="Pickup";
var llPickup0="cannot be picked up";
var llPickup1="can be picked up by players in survival or creative";
var llPickup2="can only be picked up by players in creative";
var ttPickup="Options regarding if the arrow can be picked up.";
var llPlayerPickup="Player Pickup";
var ttPlayerPickup="If pickup is not used, and this is checked, the arrow can be picked up by players.";
var llArrowLife="Life";
var ttArrowLife="Increments each tick when an arrow is not moving; resets to 0 if it moves. When it ticks to 1200, the arrow despawns.";
var llArrowDamage="Damage";
var ttArrowDamage="Damage dealt by the arrow, in half-hearts.";
var llExplosionPower="Explosion Power";
var ttExplosionPower="The power and size of the explosion created by the fireball upon impact. Default value 1.";
var llOwnerName="Owner Name";
var ttOwnerName="The name of the player this projectile was thrown by.";
var llPotionAppearance="Potion";
var ttPotionAppearance="The appearance of the potion that was thrown. Click the Status Effects check box to make a custom potion effect.";
var llArmorBody="Body";
var llArmorLeftArm="Left Arm";
var llArmorRightArm="Right Arm";
var llArmorLeftLeg="Left Leg";
var llArmorRightLeg="Right Leg";
var llArmorHead="Head";
var llPose="Pose";
var llArmorRotation="Rotation";
var llDisabledSlots="Disabled Slots";
/*var llArmorDisableHand="Hand";
var llArmorDisableBoot="Boot";
var llArmorDisableLeg="Leg";
var llArmorDisableChest="Chest";
var llArmorDisableHead="Head";*/
var disabledSlots=new Array("Hand","Boot","Leg","Chest","Head");
var llArmorOperationRemove="Remove";
var llArmorOperationReplace="Replace";
var llArmorOperationPlace="Place";
var llDisabledFor=" disabled for "; //forms a sentence like 'Replace disabled for Leg'
var llShowArms="Show Arms";
var ttShowArms="Shows wooden arms on the ArmorStand.";
var llSmall="Small";
var ttSmall="A small ArmorStand the size of a baby zombie.";
var llMarker="Marker";
var ttMarker="ArmorStand's size will be set to 0, making it invisible and have a tiny hitbox.";
var llInvisible="Invisible";
var ttInvisible="The armour stand is invisible, but the armor on it is not.";
var llNoBasePlate="No Base Place";
var ttNoBasePlate="ArmorStand will not display the base beneath it.";
var llNoGravity="No Gravity";
var ttNoGravity="If checked the ArmorStand will not fall if summoned up in the air.";
var llBaseRotation="Base Rotation";
var ttBaseRotation="The rotation angle of the entire ArmorStand.";
var llPersistence="Persistence Required";
var ttPersistence="Check to prevent the entity from despawning.";
var llHangUpsideDown="Hang Upside";
var ttHangUpsideDown="The bat is summoned upside down. This has no effect if the player is too close or the bat is not under a block.";
var llChickenJockey="Chicken Jockey";
var ttChickenJockey="Whether or not the chicken is a jockey for a baby zombie. Set if the chicken can naturally despawn. Other effects are unknown. Baby zombies can still control a ridden chicken even if this is not checked.";
var llPowered="Powered";
var ttPowered="Set if the creeper is charged from being struck by lightning. Creates a blue aura surrounding the creeper. Charged creepers have a bigger explosion radius, but this can be overridden buy the Explosion Radius setting.";
var llIgnited="Ignited";
var ttIgnited="Check if the creeper has been ignited by a Flint and Steel.";
var llExplosionRadius="Explosion Radius";