-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang.js
1610 lines (1501 loc) · 78.5 KB
/
lang.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='en';
function mkLL(cssClass, label){
return "<span class='"+cssClass+"'>"+label+":</span>";
}
function mkTT(tip){
return " title=\"" +tip+"\"";
}
var specialTiles=new Array(["flowing_water","Water"],
["water","Stationary Water"],
["flowing_lava","Lava"],
["lava","Stationary Lava"],
["fire","Fire"]);
var items=new Array(["0","None"],
["stone","Stone"],
["stone:1","Granite"],
["stone:2","Polished Granite"],
["stone:3","Diorite"],
["stone:4","Polished Diorite"],
["stone:5","Andesite"],
["stone:6","Polished Andesite"],
["grass","Grass"],
["dirt","Dirt"],
["dirt:1","Coarse Dirt"],
["dirt:2","Podzol"],
["cobblestone","Cobblestone"],
["planks","Oak Wood Plank"],
["planks:1","Spruce Wood Plank"],
["planks:2","Birch Wood Plank"],
["planks:3","Jungle Wood Plank"],
["planks:4","Acacia Wood Plank"],
["planks:5","Dark Oak Wood Plank"],
["sapling","Oak Sapling"],
["sapling:1","Spruce Sapling"],
["sapling:2","Birch Sapling"],
["sapling:3","Jungle Sapling"],
["sapling:4","Acacia Sapling"],
["sapling:5","Dark Oak Sapling"],
["bedrock","Bedrock"],
["sand","Sand"],
["sand:1","Red Sand"],
["gravel","Gravel"],
["gold_ore","Gold Ore"],
["iron_ore","Iron Ore"],
["coal_ore","Coal Ore"],
["log","Oak Wood"],
["log:1","Spruce Wood"],
["log:2","Birch Wood"],
["log:3","Jungle Wood"],
["log:4","Oak Wood 4"],
["log:5","Oak Wood 5"],
["leaves","Oak Leaves"],
["leaves:1","Spruce Leaves"],
["leaves:2","Birch Leaves"],
["leaves:3","Jungle Leaves"],
["leaves2","Acacia Leaves"],
["leaves2:1","Dark Oak Leaves"],
["sponge","Sponge"],
["sponge:1","Wet Sponge"],
["glass","Glass"],
["stained_glass","Stained Glass (white)"],
["stained_glass:1","Stained Glass (Orange)"],
["stained_glass:2","Stained Glass (Magenta)"],
["stained_glass:3","Stained Glass (Light Blue)"],
["stained_glass:4","Stained Glass (Yellow)"],
["stained_glass:5","Stained Glass (Lime)"],
["stained_glass:6","Stained Glass (Pink)"],
["stained_glass:7","Stained Glass (Gray)"],
["stained_glass:8","Stained Glass (Light Gray)"],
["stained_glass:9","Stained Glass (Cyan)"],
["stained_glass:10","Stained Glass (Purple)"],
["stained_glass:11","Stained Glass (Blue)"],
["stained_glass:12","Stained Glass (Brown)"],
["stained_glass:13","Stained Glass (Green)"],
["stained_glass:14","Stained Glass (Red)"],
["stained_glass:15","Stained Glass (Black)"],
["stained_glass_pane","Stained Glass Pane (white)"],
["stained_glass_pane:1","Stained Glass Pane (Orange)"],
["stained_glass_pane:2","Stained Glass Pane (Magenta)"],
["stained_glass_pane:3","Stained Glass Pane (Light Blue)"],
["stained_glass_pane:4","Stained Glass Pane (Yellow)"],
["stained_glass_pane:5","Stained Glass Pane (Lime)"],
["stained_glass_pane:6","Stained Glass Pane (Pink)"],
["stained_glass_pane:7","Stained Glass Pane (Gray)"],
["stained_glass_pane:8","Stained Glass Pane (Light Gray)"],
["stained_glass_pane:9","Stained Glass Pane (Cyan)"],
["stained_glass_pane:10","Stained Glass Pane (Purple)"],
["stained_glass_pane:11","Stained Glass Pane (Blue)"],
["stained_glass_pane:12","Stained Glass Pane (Brown)"],
["stained_glass_pane:13","Stained Glass Pane (Green)"],
["stained_glass_pane:14","Stained Glass Pane (Red)"],
["stained_glass_pane:15","Stained Glass Pane (Black)"],
["lapis_ore","Lapis Lazuli Ore"],
["lapis_block","Lapis Lazuli Block"],
["dispenser","Dispenser"],
["sandstone","Sandstone"],
["sandstone:1","Chiseled Sandstone"],
["sandstone:2","Smooth Sandstone"],
["noteblock","Note Block"],
["golden_rail","Powered Rail"],
["detector_rail","Detector Rail"],
["sticky_piston","Sticky Piston"],
["web","Web"],
["tallgrass","Tall Grass (Dead Shrub)"],
["tallgrass:1","Grass"],
["tallgrass:2","Fern"],
["deadbush","Dead Shrub"],
["piston","Piston"],
["wool","White Wool"],
["wool:1","Orange Wool"],
["wool:2","Magenta Wool"],
["wool:3","Light Blue Wool"],
["wool:4","Yellow Wool"],
["wool:5","Lime Wool"],
["wool:6","Pink Wool"],
["wool:7","Gray Wool"],
["wool:8","Light Gray Wool"],
["wool:9","Cyan Wool"],
["wool:10","Purple Wool"],
["wool:11","Blue Wool"],
["wool:12","Brown Wool"],
["wool:13","Green Wool"],
["wool:14","Red Wool"],
["wool:15","Black Wool"],
["carpet","White Carpet"],
["carpet:1","Orange Carpet"],
["carpet:2","Magenta Carpet"],
["carpet:3","Light Blue Carpet"],
["carpet:4","Yellow Carpet"],
["carpet:5","Lime Carpet"],
["carpet:6","Pink Carpet"],
["carpet:7","Gray Carpet"],
["carpet:8","Light Gray Carpet"],
["carpet:9","Cyan Carpet"],
["carpet:10","Purple Carpet"],
["carpet:11","Blue Carpet"],
["carpet:12","Brown Carpet"],
["carpet:13","Green Carpet"],
["carpet:14","Red Carpet"],
["carpet:15","Black Carpet"],
["yellow_flower","Dandelion"],
["red_flower","Poppy"],
["red_flower:1","Blue Orchid"],
["red_flower:2","Allium"],
["red_flower:4","Red Tulip"],
["red_flower:5","Orange Tulip"],
["red_flower:6","White Tulip"],
["red_flower:7","Pink Tulip"],
["red_flower:8","Oxeye Daisy"],
["brown_mushroom","Brown Mushroom"],
["red_mushroom","Red Mushroom"],
["gold_block","Gold Block"],
["iron_block","Iron Block"],
["double_stone_slab","Double Stone Slab"],
["double_stone_slab:1","Double Sandstone Slab"],
["double_stone_slab:2","Double Wooden Slab"],
["double_stone_slab:3","Double Cobblestone Slab"],
["double_stone_slab:4","Double Brick Slab"],
["double_stone_slab:5","Double Stone Brick Slab"],
["double_stone_slab:6","Double Nether Brick Slab"],
["double_stone_slab:7","Double Quartz Slab"],
["double_stone_slab:8","Double Smooth Stone Slab"],
["double_stone_slab:9","Double Smooth Sandstone Slab"],
["stone_slab","Stone Slab"],
["stone_slab:1","Sandstone Slab"],
["stone_slab:2","Wooden Slab"],
["stone_slab:3","Cobblestone Slab"],
["stone_slab:4","Brick Slab"],
["stone_slab:5","Stone Brick Slab"],
["stone_slab:6","Nether Brick Slab"],
["stone_slab:7","Quartz Slab"],
["brick_block","Brick"],
["tnt","TNT"],
["bookshelf","Bookshelf"],
["mossy_cobblestone","Mossy Cobblestone"],
["obsidian","Obsidian"],
["torch","Torch"],
["mob_spawner","Monster Spawner"],
["oak_stairs","Oak Wood Stairs"],
["chest","Chest"],
["diamond_ore","Diamond Ore"],
["diamond_block","Diamond Block"],
["crafting_table","Workbench"],
["farmland","Soil"],
["furnace","Furnace"],
["lit_furnace","Burning Furnace"],
["ladder","Ladder"],
["rail","Rails"],
["stone_stairs","Cobblestone Stairs"],
["lever","Lever"],
["stone_pressure_plate","Stone Pressure Plate"],
["wooden_pressure_plate","Wooden Pressure Plate"],
["redstone_ore","Redstone Ore"],
["redstone_torch","Redstone Torch (on)"],
["stone_button","Stone Button"],
["snow_layer","Snow"],
["ice","Ice"],
["snow","Snow Block"],
["cactus","Cactus"],
["clay","Clay"],
["jukebox","Jukebox"],
["fence","0ak Fence"],
["spruce_fence","Spruce Fence"],
["birch_fence","Birch Fence"],
["jungle_fence","Jungle Fence"],
["dark_oak_fence","Dark Oak Fence"],
["acacia_fence","Acacia Fence"],
["pumpkin","Pumpkin"],
["netherrack","Netherrack"],
["soul_sand","Soul Sand"],
["glowstone","Glowstone"],
["portal","Portal"],
["lit_pumpkin","Jack-O-Lantern"],
["trapdoor","Trapdoor"],
["monster_egg","Stone (Silverfish)"],
["monster_egg:1","Cobblestone (Silverfish)"],
["monster_egg:2","Stone Brick (Silverfish)"],
["monster_egg:3","Mossey Stone Brick (Silverfish)"],
["monster_egg:4","Cracked Stone (Silverfish)"],
["monster_egg:5","Chiseled Stone (Silverfish)"],
["stonebrick","Stone Brick"],
["stonebrick:1","Mossy Stone Brick"],
["stonebrick:2","Cracked Stone Brick"],
["stonebrick:3","Chiseled Stone Brick"],
["brown_mushroom_block","Brown Mushroom Cap"],
["red_mushroom_block","Red Mushroom Cap"],
["iron_bars","Iron Bars"],
["glass_pane","Glass Pane"],
["melon_block","Melon Block"],
["vine","Vines"],
["fence_gate","Oak Fence Gate"],
["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"],
["brick_stairs","Brick Stairs"],
["stone_brick_stairs","Stone Brick Stairs"],
["mycelium","Mycelium"],
["waterlily","Lily Pad"],
["nether_brick","Nether Brick"],
["nether_brick_fence","Nether Brick Fence"],
["nether_brick_stairs","Nether Brick Stairs"],
["enchanting_table","Enchantment Table"],
["end_portal","End Portal"],
["end_portal_frame","End Portal Frame"],
["end_stone","End Stone"],
["dragon_egg","Dragon Egg"],
["redstone_lamp","Redstone Lamp (inactive)"],
["double_wooden_slab","Double Oak Wood Slab"],
["double_wooden_slab:1","Double Spruce Wood Slab"],
["double_wooden_slab:2","Double Birch Wood Slab"],
["double_wooden_slab:3","Double Jungle Wood Slab"],
["double_wooden_slab:4","Double Acacia Wood Slab"],
["double_wooden_slab:5","Double Dark Oak Wood Slab"],
["wooden_slab","Oak Wood Slab"],
["wooden_slab:1","Spruce Wood Slab"],
["wooden_slab:2","Birch Wood Slab"],
["wooden_slab:3","Jungle Wood Slab"],
["wooden_slab:4","Acacia Wood Slab"],
["wooden_slab:5","Dark Oak Wood Slab"],
["cocoa","Cocoa Plant"],
["sandstone_stairs","Sandstone Stairs"],
["emerald_ore","Emerald Ore"],
["ender_chest","Ender Chest"],
["tripwire_hook","Tripwire Hook"],
["emerald_block","Emerald Block"],
["spruce_stairs","Spruce Wood Stairs"],
["birch_stairs","Birch Wood Stairs"],
["jungle_stairs","Jungle Wood Stairs"],
["command_block","Command Block"],
["beacon","Beacon Block"],
["cobblestone_wall","Cobblestone Wall"],
["cobblestone_wall:1","Mossy Cobblestone Wall"],
["wooden_button","Wooden Button"],
["anvil","Anvil"],
["anvil:1","Anvil (Slightly Damaged)"],
["anvil:2","Anvil (Very Damaged)"],
["trapped_chest","Trapped Chest"],
["light_weighted_pressure_plate","Weighted Pressure Plate (light)"],
["heavy_weighted_pressure_plate","Weighted Pressure Plate (heavy)"],
["daylight_detector","Daylight Sensor"],
["redstone_block","Redstone Block"],
["quartz_ore","Nether Quartz Ore"],
["hopper","Hopper"],
["quartz_block","Quartz Block"],
["quartz_block:1","Chiseled Quartz Block"],
["quartz_block:2","Pillar Quartz Block"],
["quartz_stairs","Quartz Stairs"],
["activator_rail","Activator Rail"],
["dropper","Dropper"],
["stained_hardened_clay","Stained Clay (white)"],
["stained_hardened_clay:1","Stained Clay (Orange)"],
["stained_hardened_clay:2","Stained Clay (Magenta)"],
["stained_hardened_clay:3","Stained Clay (Light Blue)"],
["stained_hardened_clay:4","Stained Clay (Yellow)"],
["stained_hardened_clay:5","Stained Clay (Lime)"],
["stained_hardened_clay:6","Stained Clay (Pink)"],
["stained_hardened_clay:7","Stained Clay (Gray)"],
["stained_hardened_clay:8","Stained Clay (Light Gray)"],
["stained_hardened_clay:9","Stained Clay (Cyan)"],
["stained_hardened_clay:10","Stained Clay (Purple)"],
["stained_hardened_clay:11","Stained Clay (Blue)"],
["stained_hardened_clay:12","Stained Clay (Brown)"],
["stained_hardened_clay:13","Stained Clay (Green)"],
["stained_hardened_clay:14","Stained Clay (Red)"],
["stained_hardened_clay:15","Stained Clay (Black)"],
["log2","Wood (Acacia Oak)"],
["log2:1","Wood (Dark Oak)"],
["acacia_stairs","Wooden Stairs (Acacia)"],
["dark_oak_stairs","Wooden Stairs (Dark Oak)"],
["slime","Slime Block"],
["barrier","Barrier"],
["iron_trapdoor","Iron Trap Door"],
["prismarine","Prismarine"],
["prismarine:1","Prismarine Bricks"],
["prismarine:2","Dark Prismarine"],
[" sea_lantern","Sea Lantern"],
["hay_block","Hay Bale"],
["hardened_clay","Hardened Clay"],
["coal_block","Block of Coal"],
["packed_ice","Packed Ice"],
["double_plant","Sunflower"],
["double_plant:1","Lilac"],
["double_plant:2","Double Tall Grass"],
["double_plant:3","Large Fern"],
["double_plant:4","Rose Bush"],
["double_plant:5","Peony"],
["red_sandstone","Red Sandstone"],
["red_sandstone:1","Red Sandstone (Chiseled)"],
["red_sandstone:2","Red Sandstone (Smooth)"],
["red_sandstone_stairs","Red Sandstone Stairs"],
["double_stone_slab2","Red Sandstone Slab (Double)"],
["stone_slab2","Red Sandstone Slab"],
["iron_shovel","Iron Shovel"],
["iron_pickaxe","Iron Pickaxe"],
["iron_axe","Iron Axe"],
["flint_and_steel","Flint and Steel"],
["apple","Apple"],
["bow","Bow"],
["arrow","Arrow"],
["coal","Coal"],
["coal:1","Charcoal"],
["diamond","Diamond"],
["iron_ingot","Iron Ingot"],
["gold_ingot","Gold Ingot"],
["iron_sword","Iron Sword"],
["wooden_sword","Wooden Sword"],
["wooden_shovel","Wooden Shovel"],
["wooden_pickaxe","Wooden Pickaxe"],
["wooden_axe","Wooden Axe"],
["stone_sword","Stone Sword"],
["stone_shovel","Stone Shovel"],
["stone_pickaxe","Stone Pickaxe"],
["stone_axe","Stone Axe"],
["diamond_sword","Diamond Sword"],
["diamond_shovel","Diamond Shovel"],
["diamond_pickaxe","Diamond Pickaxe"],
["diamond_axe","Diamond Axe"],
["stick","Stick"],
["bowl","Bowl"],
["mushroom_stew","Mushroom Soup"],
["golden_sword","Gold Sword"],
["golden_shovel","Gold Shovel"],
["golden_pickaxe","Gold Pickaxe"],
["golden_axe","Gold Axe"],
["string","String"],
["feather","Feather"],
["gunpowder","Sulphur"],
["wooden_hoe","Wooden Hoe"],
["stone_hoe","Stone Hoe"],
["iron_hoe","Iron Hoe"],
["diamond_hoe","Diamond Hoe"],
["golden_hoe","Gold Hoe"],
["wheat_seeds","Wheat Seeds"],
["wheat","Wheat"],
["bread","Bread"],
["leather_helmet","Leather Helmet"],
["leather_chestplate","Leather Chestplate"],
["leather_leggings","Leather Leggings"],
["leather_boots","Leather Boots"],
["chainmail_helmet","Chainmail Helmet"],
["chainmail_chestplate","Chainmail Chestplate"],
["chainmail_leggings","Chainmail Leggings"],
["chainmail_boots","Chainmail Boots"],
["iron_helmet","Iron Helmet"],
["iron_chestplate","Iron Chestplate"],
["iron_leggings","Iron Leggings"],
["iron_boots","Iron Boots"],
["diamond_helmet","Diamond Helmet"],
["diamond_chestplate","Diamond Chestplate"],
["diamond_leggings","Diamond Leggings"],
["diamond_boots","Diamond Boots"],
["golden_helmet","Gold Helmet"],
["golden_chestplate","Gold Chestplate"],
["golden_leggings","Gold Leggings"],
["golden_boots","Gold Boots"],
["flint","Flint"],
["porkchop","Raw Porkchop"],
["cooked_porkchop","Cooked Porkchop"],
["painting","Painting"],
["golden_apple","Golden Apple"],
["golden_apple:1","Enchanted Golden Apple"],
["sign","Sign"],
["wooden_door","Wooden Door"],
["spruce_door","Spruce Door"],
["birch_door","Birch Door"],
["jungle_door","Jungle Door"],
["acacia_door","Acacia Door"],
["dark_oak_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","Nether Wart Seeds"],
["potion","Water Bottle"],
["potion:16","Awkward Potion"],
["potion:32","Thick Potion"],
["potion:64","Mundane Potion"],
["potion:8193","Regeneration Potion (0:45)"],
["potion:8194","Swiftness Potion (3:00)"],
["potion:8195","Fire Resistance Potion (3:00)"],
["potion:8196","Poison Potion (0:45)"],
["potion:8197","Healing Potion"],
["potion:8198","Night Vision Potion (3:00)"],
["potion:8200","Weakness Potion (1:30)"],
["potion:8201","Strength Potion (3:00)"],
["potion:8202","Slowness Potion (1:30)"],
["potion:8203","Leaping Potion (3:00)"],
["potion:8204","Harming Potion"],
["potion:8205","Water Breathing Potion (3:00)"],
["potion:8206","Invisibility Potion (3:00)"],
["potion:8225","Regeneration Potion II (0:22)"],
["potion:8226","Swiftness Potion II (1:30)"],
["potion:8228","Poison Potion II (0:22)"],
["potion:8229","Healing Potion II"],
["potion:8233","Strength Potion II (1:30)"],
["potion:8235","Leaping Potion II (1:30)"],
["potion:8236","Harming Potion II"],
["potion:8257","Regeneration Potion (2:00)"],
["potion:8258","Swiftness Potion (8:00)"],
["potion:8259","Fire Resistance Potion (8:00)"],
["potion:8260","Poison Potion (2:00)"],
["potion:8262","Night Vision Potion (8:00)"],
["potion:8264","Weakness Potion (4:00)"],
["potion:8265","Strength Potion (8:00)"],
["potion:8266","Slowness Potion (4:00)"],
["potion:8269","Water Breathing Potion (8:00)"],
["potion:8270","Invisibility Potion (8:00)"],
["potion:8289","Regeneration Potion II (1:00)"],
["potion:8290","Swiftness Potion II (4:00)"],
["potion:8292","Poison Potion II (1:00)"],
["potion:8297","Strength Potion II (4:00)"],
["potion:16385","Regeneration Splash (0:33)"],
["potion:16386","Swiftness Splash (2:15)"],
["potion:16387","Fire Resistance Splash (2:15)"],
["potion:16388","Poison Splash (0:33)"],
["potion:16389","Healing Splash"],
["potion:16390","Night Vision Splash (2:15)"],
["potion:16392","Weakness Splash (1:07)"],
["potion:16393","Strength Splash (2:15)"],
["potion:16394","Slowness Splash (1:07)"],
["potion:16396","Harming Splash"],
["potion:16397","Breathing Splash (2:15)"],
["potion:16398","Invisibility Splash (2:15)"],
["potion:16417","Regeneration Splash II (0:16)"],
["potion:16418","Swiftness Splash II (1:07)"],
["potion:16420","Poison Splash II (0:16)"],
["potion:16421","Healing Splash II"],
["potion:16425","Strength Splash II (1:07)"],
["potion:16428","Harming Splash II"],
["potion:16449","Regeneration Splash (1:30)"],
["potion:16450","Swiftness Splash (6:00)"],
["potion:16451","Fire Resistance Splash (6:00)"],
["potion:16452","Poison Splash (1:30)"],
["potion:16454","Night Vision Splash (6:00)"],
["potion:16456","Weakness Splash (3:00)"],
["potion:16457","Strength Splash (6:00)"],
["potion:16458","Slowness Splash (3:00)"],
["potion:16461","Breathing Splash (6:00)"],
["potion:16462","Invisibility Splash (6:00)"],
["potion:16481","Regeneration Splash II (0:45)"],
["potion:16482","Swiftness Splash II (3:00)"],
["potion:16484","Poison Splash II (0:45)"],
["potion:16489","Strength Splash II (3:00)"],
["potion:7","Clear Potion (Unused)"],
["potion:15","Thin Potion (Unused)"],
["potion:23","Bungling Potion (Unused)"],
["potion:31","Debonair Potion (Unused)"],
["potion:39","Charming Potion (Unused)"],
["potion:47","Sparkling Potion (Unused)"],
["potion:55","Rank Potion (Unused)"],
["potion:63","Stinky Potion (Unused)"],
["potion:16391","Clear Splash (Unused)"],
["potion:16399","Thin Splash (Unused)"],
["potion:16407","Bungling Splash (Unused)"],
["potion:16415","Debonair Splash (Unused)"],
["potion:16423","Charming Splash (Unused)"],
["potion:16431","Sparkling Splash (Unused)"],
["potion:16439","Rank Splash (Unused)"],
["potion:16447","Stinky Splash (Unused)"],
["glass_bottle","Glass Bottle"],
["spider_eye","Spider Eye"],
["fermented_spider_eye","Fermented Spider Eye"],
["blaze_powder","Blaze Powder"],
["magma_cream","Magma Cream"],
["brewing_stand","Brewing Stand"],
["cauldron","Cauldron"],
["ender_eye","Eye of Ender"],
["speckled_melon","Glistering Melon"],
["spawn_egg:50","Spawn Egg Creeper"],
["spawn_egg:51","Spawn Egg Skeleton"],
["spawn_egg:52","Spawn Egg Spider"],
["spawn_egg:54","Spawn Egg Zombie"],
["spawn_egg:55","Spawn Egg Slime"],
["spawn_egg:56","Spawn Egg Ghast"],
["spawn_egg:57","Spawn Egg Pigman"],
["spawn_egg:58","Spawn Egg Enderman"],
["spawn_egg:59","Spawn Egg Cave Spider"],
["spawn_egg:60","Spawn Egg Silverfish"],
["spawn_egg:61","Spawn Egg Blaze"],
["spawn_egg:62","Spawn Egg Magma Cube"],
["spawn_egg:65","Spawn Egg Bat"],
["spawn_egg:66","Spawn Egg Witch"],
["spawn_egg:67","Spawn Egg Endermite"],
["spawn_egg:68","Spawn Egg Guardian"],
["spawn_egg:90","Spawn Egg Pig"],
["spawn_egg:91","Spawn Egg Sheep"],
["spawn_egg:92","Spawn Egg Cow"],
["spawn_egg:93","Spawn Egg Chicken"],
["spawn_egg:94","Spawn Egg Squid"],
["spawn_egg:95","Spawn Egg Wolf"],
["spawn_egg:96","Spawn Egg Mooshroom"],
["spawn_egg:98","Spawn Egg Ocelot"],
["spawn_egg:100","Spawn Egg Horse"],
["spawn_egg:101","Spawn Egg Rabbit"],
["spawn_egg:120","Spawn Egg Villager"],
["experience_bottle","Bottle o' Enchanting"],
["fire_charge","Fire Charge"],
["writable_book","Book and Quill"],
["written_book","Written Book"],
["emerald","Emerald"],
["item_frame","Item Frame"],
["flower_pot","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 Disc"],
["record_cat","Cat Disc"],
["record_blocks","Blocks Disc"],
["record_chirp","Chirp Disc"],
["record_far","Far Disc"],
["record_mall","Mall Disc"],
["record_mellohi","Mellohi Disc"],
["record_stal","Stal Disc"],
["record_strad","Strad Disc"],
["record_ward","Ward Disc"],
["record_11","11 Disc"],
["record_wait","Wait Disc"]);
var llCommandType="Command Type";
var ttCommandType="Choose which kind of command you wish to generate.";
var llResetForm="Reset Form";
var ttResetForm="These settings will be reset to the default.";
var llSaveAs="Save As New Command";
var ttSaveAs="These settings will be saved as a new command with no derivative relationship created.";
var llEnchantAll="Enchant Non-enchantables (Shows enchant options for all items)";
var ttEnchantAll="All item selections will allow enchantment options. You may need to reselect the item to show/hide the enchantment options.";
var llAddEntity="Add Entity";
var ttAddEntity="Add an entity to the bottom of the stack.";
var llSummonCoords="Summon Co-ordinates";
var llRelativeCoords="Relative Co-ordinates";
var ttRelativeCoords="Check if the entity is summoned at a location relative to the command block. Uncheck to summon the entity at a specific co-ordinate.";
var ttSummonX="The X position to summon the entity at.";
var ttSummonY="The Y position to summon the entity at.";
var ttSummonZ="The Z position to summon the entity at.";
var llSpawnCount="Spawn Count";
var ttSpawnCount="How many entities the spawner will spawn at one time.";
var llSpawnRange="Spawn Range";
var ttSpawnRange="The range of which the entities can spawn.";
var llRequiredPlayerRange="Required Player Range";
var ttRequiredPlayerRange="The range of which a player must be in for the spawner to start spawning entities.";
var llDelay="Delay";
var ttDelay="The number of ticks before entities spawn when a player is first detected.";
var llMinSpawnDelay="Min Spawn Delay";
var ttMinSpawnDelay="After the first spawn, this is the minimum amount of ticks before more entities can spawn.";
var llMaxSpawnDelay="Max Spawn Delay";
var ttMaxSpawnDelay="Similar to MinSpawnDelay. After the first spawn, this is the maximum amount of ticks before more entities can spawn.";
var llMaxNearbyEntities="Max Nearby Entities";
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="Player Name";
var ttPlayerName="Enter a specific player's name.";
var llItemSelect="Item";
var ttItemSelect="Select the Item.";
var ttSearchFilter="Search/Filter";
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";
var ttExplosionRadius="The radius of the explosion. The default 3.";
var llFuse="Fuse";
var ttFuse="The number of ticks before the creeper will explode (does not affect creepers that fall and explode upon impacting their victim). The default is 30.";
var llCarried="Carried";
var ttCarried="Item the Enderman is carrying.";
var llLifeTime="Life Time";
var ttLifeTime="How long the Endermite has existed in ticks. Disappears when this reaches around 2400.";
var llBlock="Block";
var ttBlock="The Block that is falling.";
var llTileEntityData="Tile Entity Data";
var ttTileEntityData="Optional. The tags of the tile entity for this block.";
var llTime="Time";
var ttTime="The number of ticks the entity has existed. If set to 0, the moment it ticks to 1, it will vanish if the block at its location has a different ID than the entity's TileID. If the block at its location has the same ID as its TileID when Time ticks from 0 to 1, the block will instead be deleted, and the entity will continue to fall, having overwritten it.";
var llDropItem="Drop Item";
var ttDropItem="Check if the block should drop an item that can be picked up when it breaks.";
var llHurtEntities="Hurt Entities";
var ttHurtEntities="Check if the block should hurt entities it falls on.";
var llFallHurtMax="Fall Hurt Max";
var ttFallHurtMax="The maximum number of hit points of damage to inflict on entities that intersect this FallingSand. For vanilla FallingSand, always 40 (20 hearts).";
var llFallHurtAmount="Fall Hurt Amount";
var ttFallHurtAmount="Multiplied by the FallDistance to calculate the amount of damage to inflict. For vanilla FallingSand, always 2.";
var llFWLifeTime="Life Time";
var ttFWLifeTime="The number of ticks before this fireworks rocket explodes.";
var llElder="Elder";
var ttElder="Check if the Guardian is an Elder Guardian.";
var llExplosionPower="Explosion Power";
var ttExplosionPower="The radius of the explosion created by the fireballs this Ghast fires. 1 is the default.";
var llItemAge="Age";
var ttItemAge="The number of ticks the item has been 'untouched'. After 6000 ticks (5 minutes) the item is destroyed. If set to -32768, the Age will not decrease, thus the item will not automatically despawn.";
var llItemHealth="Health";
var ttItemHealth="The health of the item, which starts at 5. Items take damage from fire, lava, falling anvils, and explosions. The item is destroyed when its health reaches 0.";
var llItemPickupDelay="Pickup Delay";
var ttItemPickupDelay="The number of ticks the item cannot be picked up. Decreases by 1 per tick. If set to 32767, the PickupDelay will not decrease, thus the item can never be picked up.";
var llItemOwner="Owner";
var ttItemOwner="If not an empty string, only the named player will be able to pick up this item, until it is within 10 seconds of despawning. Used to prevent the wrong player from picking up the spawned item entity.";
var llItemThrower="Thrower";
var ttItemThrower="Set to the name of the player who dropped the item, if dropped by a player. Used by the 'Diamonds to you!' achievement.";
var llSlimeSize="Size";
var ttSlimeSize="The size of the slime/magmacube. Note that this value is zero-based, so 0 is the smallest slime, 1 is the next larger, etc. The sizes that spawn naturally are 0, 1, and 3.";
var llWasOnGround="Was On Ground";
var ttWasOnGround="Check if slime is touching the ground.";
var llCatType="Cat Type";
var ttCatType="The type of ocelot/cat this is.";
var llBaby="Baby";
var ttBaby="Check if this is a baby.";
var llAnger="Anger";
var ttAnger="Ticks until the Zombie Pigman becomes neutral. -32,768 to 0 for neutral Zombie Pigmen; 1 to 32,767 for angry Zombie Pigmen.";
var llSaddle="Saddle";
var ttSaddle="Check if the pig has a saddle.";
var llPrimedTNTFuse="Fuse";
var ttPrimedTNTFuse="Ticks until explosion. Default and maximum is 80 (4 seconds).";
var llRabbitType="Rabbit Type";
var ttRabbitType="Determines the skin of the rabbit. Also determines if rabbit should be hostile.";
var llMoreCarrotTicks="More Carrot Ticks";
var ttMoreCarrotTicks="Formerly used for the ticks until the rabbit will 'eat' planted carrots. Depletes every tick until it reaches 0. Was set to a certain value upon eating planted carrots. (UNTESTED)";
var llSaltAndPepper="Salt & Pepper";
var llBlackAndWhite="Black & White";
var llKillerRabbit="Killer Rabbit";
var llSheared="Sheared";
var ttSheared="Check if the sheep has been shorn.";
var llSheepColor="Color";
var ttSheepColor="The color of the sheep.";
var llSkeletonType="Skeleton Type";
var ttSkeletonType="The type of Skeleton.";
var llProfession="Profession";
var ttProfession="The texture used for this villager. This also influences trading options.";
var llCareer="Career";
var ttCareer="The ID of this villager's career. This also influences trading options and the villager's name in the GUI (if it does not have a CustomName). If 0, the next time offers are refreshed, the game will assign a new Career and reset CareerLevel to 1.";
var llCareerLevel="Career Level";
var ttCareerLevel="The current level of this villager's trading options. Influences the trading options generated by the villager; if it is greater than their career's maximum level, no new offers are generated. Increments when a trade causes offers to be refreshed. If 0, the next trade to do this will assign a new Career and set CareerLevel to 1. Set to a high enough level and there will be no new trades to release (Career must be set to 1 or above).";
var llWilling="Willing";
var ttWilling="Check if the villager is willing to mate. Becomes true after certain trades (those which would cause offers to be refreshed), and false after mating.";
var llFarmer="Farmer";
var llLibrarian="Librarian";
var llPriest="Priest";
var llBlacksmith="Blacksmith";
var llButcher="Butcher";
var llGeneric="Generic";
var llNotSet="Not Set";
var llFletcher="Fletcher";
var llFisherman="Fisherman";
var llShepherd="Shepherd";
var llCleric="Cleric";
var llToolSmith="Tool Smith";
var llArmorer="Armorer";
var llWeaponSmith="Weapon Smith";
var llLeatherworker="Leatherworker";
var llRecipes="Recipes";
var llMakeOffer="Make Offer";
var ttMakeOffer="Create a trade for this Villager.";
var llRewardXP="Reward XP";
var ttRewardXP="Check if this trade will provide XP orb drops.";
var llMaxUses="Max Uses";
var ttMaxUses="The maximum number of times this trade can be used before it is disabled. Increases by a random amount from 2 to 12 when offers are refreshed.";
var llUses="Uses";
var ttUses="The number of times this trade has been used. The trade becomes disabled when this is greater or equal to maxUses.";
var llBuyA="Buy A (cost)";
var llBuyB="Buy B (cost)";
var ttBuy="The Item the Player will give to the Villager";
var llBuyCount="Count";
var ttBuyCount="Number of items the player has to give to the Villager.";
var ttSecondaryTrade="The secondary trade item is optional.";
var llSell="Sell";
var ttSell="The Item the Villager will give to the player";
var llRemoveOffer="Remove Offer";
var ttRemoveOffer="Remove this a trade from the Villager.";
var llCustomDisplayTile="Custom Display Tile";
var ttCustomDisplayTile="Check to display the custom tile in this minecart.";
var llDisplayTile="Display Tile";
var ttDisplayTile="The custom display tile.";
var llDisplayOffset="Display Offset";
var ttDisplayOffset="The offset of the block displayed in the minecart. Positive values move the block upwards, while negative values move it downwards. A value of 16 will move the block up by exactly one multiple of its height.";
var llPushX="Push X";
var ttPushX="Force along X axis, used for smooth acceleration/deceleration.";
var llPushZ="Push Z";
var ttPushZ="Force along Z axis, used for smooth acceleration/deceleration.";
var llFuel="Fuel";
var ttFuel="The number of ticks until the minecart runs out of fuel.";
var llTransferCooldown="Transfer Cooldown";
var ttTransferCooldown="Time until the next transfer, between 1 and 8, or 0 if there is no transfer.";
var llMinecartTNTFuse="TNT Fuse";
var ttMinecartTNTFuse="Ticks until explosion or -1 if deactivated.";
var llCommand="Command";
var ttCommand="The command entered into the command block.";
var llMineCartSpawnerInstructions="<b>Instructions</b>" //Contains HTML tags
+"<ol><li>Open <a href='./' target='_blank'>MCStacker</a> in a new tab in your browser</li>"
+"<li>Choose Spawner for the Command Type</li>"
+"<li>Change the spawn settings to suit your needs</li>"
+"<li>Create the thing you want the MinecartSpawner to spawn</li>"
+"<li>Copy and paste the command from the other tab into the field below.</li></ol>";
var llSpawnDataTag="Spawn Data Tag";
var ttSpawnDataTag="Enter an MCStacker Spawner command unedited into this field.";
var llPlayerCreated="Player Created";
var ttPlayerCreated="Check if this golem was created by a player.";
var llInvulTime="Invulnerable Time";
var ttInvulTime="The number of ticks of invulnerability left after being initially created. 0 once invulnerability has expired.";
var llAngry="Angry";
var ttAngry="Check if the wolf is angry.";
var llCollarColor="Collar Color";
var ttCollarColor="The dye color of this wolf's collar. Present even for wild wolves (but does not render); default value is 14.";
var llXPValue="XP Value";
var ttXPValue="The amount of experience the orb gives when picked up.";
var llXPHealth="XP Health";
var ttXPHealth="The health of the orb, which starts at 5. Orbs take damage from fire, lava, falling anvils, and explosions. The orb is destroyed when its health reaches 0.";
var llIsVillager="Villager Zombie";
var ttIsVillager="Check if this zombie is an infected villager.";
var llConversionTime="Conversion Time";
var ttConversionTime="-1 when not being converted back to a villager, positive for the number of ticks until conversion back into a villager. The regeneration effect will parallel this.";
var llCanBreakDoors="Can Break Doors";
var ttCanBreakDoors="Check if the zombie can break doors.";
var llReinforcementChance="Reinforcement Chance";
var ttReinforcementChance="Chance that a zombie will spawn another zombie when attacked.";
var llXMotion="X Motion";
var llYMotion="Y Motion";
var llZMotion="Z Motion";
var ttMotion="X,Y,Z motion values must be formatted as decimals. Examples 0.0, -0.9, 1.0 -1.0. You should set all 3 values or none at all.";
var llCopyMotion="Copy XYZ to all other entities";
var ttCopyMotion="This button will copy these motion values into the motion values for the rest of the stack. This is required so that the entire stack moves in the same direction.";
var llCanPlaceOn="Can Place On";
var ttCanPlaceOn="For Adventure Mode. Select which blocks this item can be placed on. Note: block subtypes are not available.";
var ttCanPlaceAdd="Add a block this item can be placed on.";
var ttCanPlaceChoose="Choose which blocks this item can be placed on";
var llCanDestroy="Can Destroy";
var ttCanDestroy="For Adventure Mode. Select which blocks this item can destroy. Note: block subtypes are not available.";
var ttCanDestroyAdd="Add a block this item can destroy.";
var ttCanDestroyChoose="Choose which blocks this item can destroy.";
var llHideFlags="Hide Flags";
var ttHideFlags="Choose which attributes to hide for this item.";
var llEnchantments="Enchantments";
var llModifiers="Modifiers";
var llUnbreakable="Unbreakable";
var ttHideEnchants="Hide the Enchantments tooltip for this item.";
var ttHideModifiers="Hide the Attribute Modifiers tooltip for this item.";
var ttHideUnbreakable="Hide the Unbreakable tooltip for this item.";
var ttHideCanDestroy="Hide the 'Can Destroy' tooltip for this item.";