-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaliases-english.sk
1555 lines (1309 loc) · 49.3 KB
/
aliases-english.sk
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
#! VERSION: 2.0.8!
#Clean up, ID order and updated by tim740, I will be updating this from now on!
#Check out my other content here: https://tim740.github.io/
#Download at: https://forums.skunity.com/t/latest-aliases-v1-9-9-id-order-full-1-11-support/40?u=tim740
item = item¦s
block = block¦s
# List of alias groups. Only groups listed here are allowed below,
# but you can easily define your own by adding it to this list.
# The groups will be loaded in this order,
# e.g. if 'custom aliases' is loaded after 'default aliases' you can use all default aliases to define your own aliases.
aliases = default aliases, collections, custom aliases
custom aliases:
# === Custom Aliases ===
# I recommend putting your own aliases here.
# You do not have to create an alias if you intend to use it in only one script,
# but you can put it at the beginning of the script like this:
# aliases:
# admin blocks = bedrock, TNT, 52, 56
# wand = blaze rod
# This also has the advantage that your script can be used by other people without having to add the aliases to their config.
# If you want to edit a default alias, you should copy & paste it here to edit it.
# This will make it easier for you if you choose to update Minecraft and more blocks & items are added, in which case
# you can then simply download the updated config and copy & paste this section into it.
#
# The default aliases are loaded before these, so you can use them here.
# You can also override them by creating an alias with the same name.
#example: shorten names
# ss = sandstone
# llb = lapis lazuli block
# ms = monster spawner
#etc.
collections:
# === Collections ===
# all ores
ore¦s = coal ore, iron ore, gold ore, diamond ore, lapis ore, quartz ore, any redstone ore
# fuels, i.e. items which can be burned in the furnace
fuel¦s = lava bucket, blaze rod, any coal, any wood plank, log, huge mushroom, workbench, fence, wooden stairs, oak trapdoor, sapling, stick, chest, jukebox, note block
# note: the above aliases are used in 'furnace automatisation.cfg'
# all food which can be eaten by rightclicking, i.e. doesn't include cake.
food¦s = any apple, mushroom soup, bread, any porkchop, any fish, cookie, melon slice, any beef, any chicken, rotten flesh, any carrot, any potato, pumpkin pie
# the same list but without raw food & rotten flesh
healthy(_| )food¦s = any apple, mushroom soup, bread, cooked porkchop, cooked fish, cookie, melon slice, steak, cooked chicken, any carrot, potato, baked potato, pumpkin pie
# all vehicles, i.e. all minecarts and the boat
vehicle¦s = any minecart, boat
# all plants. By default this does not include pumpkins and melons, but their stems.
plant¦s = leaves, any tall grass, dead bush, any flower, any mushroom, lily pad, vines, melon stem, pumpkin stem, nether wart
default aliases:
# === Default Aliases ===
# -- special --
anything @- = :
something @- = :
everything @- = *
#VARIABLES TYPES
<any> map¦s = 358:0-32767
# -- minecart rails --
{minerail}:
straight = :0-5
straight flat = :0-1
flat straight = :0-1
curved = :6-9
flat = :0-1, :6-9
inclined = :2-5
{minerail straight}:
flat = :0-1, :8-9
inclined = :2-5, :10-13
# normal rail
[any](_| ){minerail}(_| )[minecart(_| )](rail|track)[s] = 27, 28, 66
{minerail}(_| )[minecart(_| )](rail|track)[s](_| )(item|block) = 66
# powered rail
{minerail straight}(_| )powered(_| )[minecart(_| )](rail|track)¦s = 27
{minerail straight}(_| )[minecart(_| )]booster¦s = 27
{minerail straight}(_| )[minecart(_| )]booster(_| )(rail|track)¦s = 27
{minerail straight}(_| )powered(_| )[minecart(_| )](rail[s]|track[s])(_| )on = 27:8-15
{minerail straight}(_| )powered(_| )[minecart(_| )](rail[s]|track[s])(_| )off = 27:0-7
{minerail straight}(_| )active(_| )powered(_| )[minecart(_| )](rail|track)¦s = 27:8-15
{minerail straight}(_| )inactive(_| )powered(_| )[minecart(_| )](rail|track)¦s = 27:0-7
{minerail straight}(_| )[minecart(_| )]booster(_| )on = 27:8-15
{minerail straight}(_| )[minecart(_| )]booster(_| )off = 27:0-7
{minerail straight}(_| )[minecart(_| )]booster(_| )(rail[s]|track[s])(_| )on = 27:8-15
{minerail straight}(_| )[minecart(_| )]booster(_| )(rail[s]|track[s])(_| )off = 27:0-7
{minerail straight}(_| )(active|powered)(_| )[minecart(_| )]booster¦s = 27:8-15
{minerail straight}(_| )(inactive|unpowered)(_| )[minecart(_| )]booster¦s = 27:0-7
{minerail straight}(_| )(active|powered)(_| )[minecart(_| )]booster (rail|track)¦s = 27:8-15
{minerail straight}(_| )(inactive|unpowered)(_| )[minecart(_| )]booster (rail|track)¦s = 27:0-7
# detector rail flat minecart booster rail ons on
{minerail straight}(_| )detector(_| )[minecart(_| )](rail|track)¦s = 28
{minerail straight}(_| )detector(_| )[minecart(_| )](rail[s]|track[s]) on = 28:8-15
{minerail straight}(_| )detector(_| )[minecart(_| )](rail[s]|track[s]) off = 28:0-7
{minerail straight}(_| )active(_| )detector(_| )[minecart(_| )](rail|track)¦s = 28:8-15
{minerail straight}(_| )inactive(_| )detector(_| )[minecart(_| )](rail|track)¦s = 28:0-7
# activator rail
{minerail straight}(_| )activator(_| )[minecart(_| )](rail|track)¦s = 157
{huge mushroom type}:
{default} = 99, 100
brown = 99
red = 100
huge(_| ){huge mushroom type}(_| )mushroom¦s = :
huge(_| ){huge mushroom type}(_| )mushroom cap¦s = :1-9 #0 is not a real cap piece
mushroom(_| )stem4(_| )block = 99:10
mushroom(_| )stem6(_| )block = 99:15
mushroom(_| )plain(_| )block = 99:0
{flower pot}:
(empty|nothing) = :0
(rose|red flower) = :1
(dandelion|yellow flower) = :2
flower = :1-2
(normal|regular|oak)(_| )sapling = :3
(pine|redwood|fir|spruce)(_| )sapling = :4
birch(_| )sapling = :5
jungle(_| )[tree](_| )sapling = :6
sapling = :3-6
red(_| )mushroom = :7
brown(_| )mushroom = :8
mushroom = :7-8
cactus = :9
dead(_| )bush = :10
fern = :11
red(_| )sandstone(_| )double(_| )slab¦s = 181
red(_| )sandstone(_| )slab¦s = 182
nether(_| )brick(_| )slab¦s = 44:6
nether(_| )quartz(_| )slab¦s = 44:7
oak(_| )stair¦s= 126:0
spruce(_| )stair¦= 126:1
birch(_| )stair¦= 126:2
jungle(_| )stair¦= 126:3
acacia(_| )stair¦= 126:4
dark(_| )oak(_| )stair¦= 126:5
# -- single & double steps / slabs --
{any slab}:
{default} = 44, 126, 181, 182
single = 44, 126, 182
double = 43, 125, 181
{stone slab}:
{default} = 44
single = 44
double = 43
{wooden slab}:
{default} = 126
single = 126
double = 125
{red sandstone slab}:
{default} = 182
single = 182
double = 181
{slab facing}:
{default} = :0-7
regular = :0-7
default = :0-7
upside-down = :8-15
any = :0-15
{slab facing no default}:
regular = :0-7
default = :0-7
upside-down = :8-15
any = :0-15
{wooden slab type}:
{default} = :0-5, :8-13
<any> = :0-5, :8-13
(oak|regular|normal) = :0, :8
(spruce|fir|redwood|pine) = :1, :9
birch = :2, :10
jungle = :3, :11
acacia = :4, :12
dark(_| )oak = :5, :13
{stone slab type}:
{default} = :0-1, :3-5, :8-9, :11-13
<any> = :0-1, :3-5, :8-9, :11-13
stone = :0, :8
sandstone = :1, :9
cobble[[(_| )]stone] = :3, :11
brick = :4, :12
stone(_| )brick[s] = :5, :13
{stone slab type no default}:
<any> = :0-1, :3-5, :8-9, :11-13
stone = :0, :8
sandstone = :1, :9
cobble[[(_| )]stone] = :3, :11
brick = :4, :12
stone(_| )brick[s] = :5, :13
{slab facing no default}(_| ){stone slab}(_| ){stone slab type no default}(_| )(step|slab)¦s = :
{slab facing}(_| ){stone slab}(_| ){stone slab type}(_| )(step|slab)(_| )(block|item)¦s = :
{slab facing no default}(_| ){wooden slab}(_| ){wooden slab type}(_| )[wood[en]](_| )(step|slab)¦s = :
{slab facing}(_| ){wooden slab}(_| ){wooden slab type} (step|slab)(_| )(block|item)¦s = :
{slab facing no default}(_| ){any slab}(_| )(step|slab)¦s = :
{slab facing}(_| ){any slab}(_| )(step|slab)(_| )(block|item)¦s = :
# -- stairs --
{stairs}:
{default} = 53, 134, 135, 136, 67, 108, 109, 114, 128, 156, 180
(oak|regular|normal)(_| )[wood] = 53
(spruce|fir|redwood|pine)(_| )[wood] = 134
birch(_| )[wood] = 135
jungle(_| )[wood] = 136
[any](_| )wood[en] = 53, 134, 135, 136
cobble[[(_| )]stone] = 67
[clay](_| )brick[s] = 108
stone(_| )brick[s] = 109
nether(_| )[brick[s]] = 114
sand[(_| )]stone = 128
red(_| )sand[(_| )]stone = 180
[nether](_| )quartz = 156
acacia(_| )[wood] = 163
dark(_| )oak(_| )[wood] = 164
{stairs direction}:
{default} = :0-3
any = :0-7
upside-down = :4-7
{stairs direction no default}:
any = :0-7
upside-down = :4-7
{stairs direction no default}(_| ){stairs}(_| )stair[s] = :
{stairs direction}(_| ){stairs}(_| )stair[s](_| )(block|item)¦s = :
# -- doors, trapdoors and fence(_| )gates --
# I currently discourage from creating aliases like 'open door' or doors with specific facings
# as any 'block is <alias>' condition will fail if you click the wrong part of the door.
# 'set <block> to door:1' will correctly place an open door though.
{button}:
{default} = 77, 143
stone = 77
wood[en] = 143
{button}(_| )button¦s = :
{button}(_| )button(_| )on = :8-15
pressed(_| ){button}(_| )button¦s = :8-15
active(_| ){button}(_| )button¦s = :8-15
{button}(_| )button(_| )off = :0-7
unpressed(_| ){button}(_| )button¦s = :0-7
inactive(_| ){button}(_| )button¦s = :0-7
# -- mob head --
{mob head direction}:
floor = :1
wall = :2-5
{mob head type}:
skeleton = :0
wither(_| )skeleton = :1
zombie = :2
(human|player) = :3
creeper = :4
ender[(_| )]dragon = :5
# -- fish --
{fish}:
{default} = #-#
fish¦es = :0
salmon¦s = :1
clownfish¦es = :2
pufferfish¦es = :3
#End
# -- 1.12 --
[white(_| )]glazed(_| )terracotta¦s = 235
orange(_| )glazed(_| )terracotta¦s = 236
magenta(_| )glazed(_| )terracotta¦s = 237
light(_| )blue(_| )glazed(_| )terracotta¦s = 238
yellow(_| )glazed(_| )terracotta¦s = 239
(lime|light(_| )green)(_| )glazed(_| )terracotta¦s = 240
pink(_| )glazed(_| )terracotta¦s = 241
gray(_| )glazed(_| )terracotta¦s = 242
light(_| )gray(_| )glazed(_| )terracotta¦s = 243
cyan(_| )glazed(_| )terracotta¦s = 244
purple(_| )glazed(_| )terracotta¦s = 245
blue(_| )glazed(_| )terracotta¦s = 246
brown(_| )glazed(_| )terracotta¦s = 247
green(_| )glazed(_| )terracotta¦s = 248
red(_| )glazed(_| )terracotta¦s = 249
black(_| )glazed(_| )terracotta¦s = 250
[<any>](_| )glazed(_| )terracotta¦s = 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250
[white(_| )]concrete¦s = 251
orange(_| )concrete¦s = 251:1
magenta(_| )concrete¦s = 251:2
light(_| )blue(_| )concrete¦s = 251:3
yellow(_| )concrete¦s = 251:4
(lime|light(_| )green)(_| )concrete¦s = 251:5
pink(_| )concrete¦s = 251:6
gray(_| )concrete¦s = 251:7
light(_| )gray(_| )concrete¦s = 251:8
cyan(_| )concrete¦s = 251:9
purple(_| )concrete¦s = 251:10
blue(_| )concrete¦s = 251:11
brown(_| )concrete¦s = 251:12
green(_| )concrete¦s = 251:13
red(_| )concrete¦s = 251:14
black(_| )concrete¦s = 251:15
[<any>](_| )concrete¦s = 251, 251:1, 251:2, 251:3, 251:4, 251:5, 251:6, 251:7, 251:8, 251:9, 251:10, 251:11, 251:12, 251:13, 251:14, 251:15
[white(_| )]concrete(_| )powder¦s = 252
orange(_| )concrete(_| )powder¦s = 252:1
magenta(_| )concrete(_| )powder¦s = 252:2
light(_| )blue(_| )concrete(_| )powder¦s = 252:3
yellow(_| )concrete(_| )powder¦s = 252:4
(lime|light(_| )green)(_| )concrete(_| )powder¦s = 252:5
pink(_| )concrete(_| )powder¦s = 252:6
gray(_| )concrete(_| )powder¦s = 252:7
light(_| )gray(_| )concrete(_| )powder¦s = 252:8
cyan(_| )concrete(_| )powder¦s = 252:9
purple(_| )concrete(_| )powder¦s = 252:10
blue(_| )concrete(_| )powder¦s = 252:11
brown(_| )concrete(_| )powder¦s = 252:12
green(_| )concrete(_| )powder¦s = 252:13
red(_| )concrete(_| )powder¦s = 252:14
black(_| )concrete(_| )powder¦s = 252:15
[<any>](_| )concrete(_| )powder¦s = 252, 252:1, 252:2, 252:3, 252:4, 252:5, 252:6, 252:7, 252:8, 252:9, 252:10, 252:11, 252:12, 252:13, 252:14, 252:15
[white(_| )]bed(_| )item¦s = 252
orange(_| )bed(_| )item¦s = 355:1
magenta(_| )bed(_| )item¦s = 355:2
light(_| )blue(_| )bed(_| )item¦s = 355:3
yellow(_| )bed(_| )item¦s = 355:4
(lime|light(_| )green)(_| )bed(_| )item¦s = 355:5
pink(_| )bed(_| )item¦s = 355:6
gray(_| )bed(_| )item¦s = 355:7
light(_| )gray(_| )bed(_| )item¦s = 355:8
cyan(_| )bed(_| )item¦s = 355:9
purple(_| )bed(_| )item¦s = 355:10
blue(_| )bed(_| )item¦s = 355:11
brown(_| )bed(_| )item¦s = 355:12
green(_| )bed(_| )item¦s = 355:13
red(_| )bed(_| )item¦s = 355:14
black(_| )bed(_| )item¦s = 355:15
[<any>](_| )bed(_| )item¦s = 355, 355:1, 355:2, 355:3, 355:4, 355:5, 355:6, 355:7, 355:8, 355:9, 355:10, 355:11, 355:12, 355:13, 355:14, 355:15
knowledge(_| )book¦s = 453
# -- 1.11 --
observer¦s = 218
white(_| )shulker(_| )(box|chest)¦s = 219
orange(_| )shulker(_| )(box|chest)¦s = 220
magenta(_| )shulker(_| )(box|chest)¦s = 221
light(_| )blue(_| )shulker(_| )(box|chest)¦s = 222
yellow(_| )shulker(_| )(box|chest)¦s = 223
(lime|light(_| )green)(_| )shulker(_| )(box|chest)¦s = 224
pink(_| )shulker(_| )(box|chest)¦s = 225
gray(_| )shulker(_| )(box|chest)¦s = 226
light(_| )gray(_| )shulker(_| )(box|chest)¦s = 227
cyan(_| )shulker(_| )(box|chest)¦s = 228
[purple(_| )]shulker(_| )(box|chest)¦s = 229
blue(_| )shulker(_| )(box|chest)¦s = 230
brown(_| )shulker(_| )(box|chest)¦s = 231
green(_| )shulker(_| )(box|chest)¦s = 232
red(_| )shulker(_| )(box|chest)¦s = 233
black(_| )shulker(_| )(box|chest)¦s = 234
[<any>](_| )shulker(_| )(box|chest)¦s = 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234
treasure(_| )map¦s = 358
totem(_| )of(_| )undying¦s = 449
shulker(_| )shell¦s = 450
iron(_| )nugget¦s = 452
# -- 1.10 --
magma(_| )block¦s = 213
nether(_| )wart(_| )block¦s = 214
red(_| )nether(_| )brick¦s = 215
bone(_| )block¦s = 216
structure(_| )void¦s = 217
# -- 1.9 --
end[er](_| )rod¦s = 198
chorus(_| )plant¦s = 199
chorus(_| )flower¦s = 200
purpur(_| )block¦s = 201
purpur(_| )pillar¦s = 202
purpur(_| )stairs = 203
purpur(_| )double(_| )slab¦s = 204
purpur(_| )slab¦s = 205
endstone(_| )bricks = 206
beetroot(_| )block¦s = 207
grass(_| )path¦s = 208
ender(_| )gateway¦s = 209
repeating(_| )command(_| )block¦s = 210
chain(_| )command(_| )block¦s = 211
frosted(_| )ice¦s = 212
structure(_| )block¦s = 255
dragon(_| )head¦s = 397:5
ender(_| )crystal¦s = 426
chorus(_| )fruit¦s = 432
popped(_| )chorus(_| )fruit¦s = 433
beetroot¦s = 434
beetroot(_| )seeds = 435
beetroot(_| )soup¦s = 436
dragon(_| )breath¦s = 437
splash(_| )water(_| )bottle¦s = 438
spectral(_| )arrow¦s = 439
tipped(_| )arrow¦s = 440
lingering(_| )water(_| )bottle¦s = 441
shield¦s = 442
elytra¦s = 443
spruce(_| )boat¦s = 444
birch(_| )boat¦s = 445
jungle(_| )boat¦s = 446
acacia(_| )boat¦s = 447
dark(_| )oak(_| )boat¦s = 448
#Armor Sets
leather(_| )armo[u]r¦s = 298, 299, 300, 301
chain[mail](_| )armo[u]r¦s = 302, 303, 304, 305
iron(_| )armo[u]r¦s = 306, 307, 308, 309
diamond(_| )armo[u]r¦s = 310, 311, 312, 313
gold(_| )armo[u]r¦s= 314, 315, 316, 317
[<any>](_| )helmet = 298, 302, 306, 310, 314
[<any>](_| )chestplate = 299, 303, 307, 311, 315
[<any>](_| )leggings = 300, 304, 308, 312, 316
[<any>](_| )boots = 301, 305, 309, 313, 317
[<any>](_| )sword = 268, 272, 283, 267, 276
[<any>](_| )pickaxe = 257, 270, 274, 278, 285
[<any>](_| )axe = 258, 271, 275, 279, 286
[<any>](_| )shovel = 256, 269, 273, 277, 284
[<any>](_| )hoe = 290, 291, 292, 293, 294
[<any>](_| )fence(_| )gate¦s = 107, 183, 184, 185, 186, 187
[<any>](_| )trapdoor¦s = 96, 167
[<any>](_| )normal(_| )pressure(_| )plate¦s = 70, 72
[<any>](_| )weight(_| )pressure(_| )plate¦s = 147, 148
[<any>](_| )pressure(_| )plate¦s = 70, 72, 147, 148
# IN ID ORDER STARTING NOW
(air|nothing|none|empty) @- = 0
(empty|bare)(_| )(hand|fist)¦s = 0
stone¦s = 1
granite = 1:1
polished(_| )granite = 1:2
diorite = 1:3
polished(_| )diorite = 1:4
andesite = 1:5
polished(_| )andesite = 1:6
grass(_| )[block] = 2
dirt = 3
coarse(_| )dirt = 3:1
podzol = 3:2
cobble[[(_| )]stone] = 4
oak(_| )[wood[en](_| )]plank¦s = 5
spruce(_| )[wood[en](_| )]plank¦s = 5:1
birch(_| )[wood[en](_| )]plank¦s = 5:2
jungle(_| )[wood[en](_| )]plank¦s = 5:3
acacia(_| )[wood[en](_| )]plank¦s = 5:4
dark(_| )oak(_| )[wood[en](_| )]plank¦s = 5:5
[<any>](_| )wood[en](_| )plank = 5:0-5
oak(_| )sapling¦s = 6
spruce(_| )sapling¦s = 6:1
birch(_| )sapling¦s = 6:2
jungle(_| )sapling¦s = 6:3
acacia(_| )sapling¦s = 6:4
dark(_| )[oak(_| )]sapling¦s = 6:5
[<any>](_| )sapling = 6:0-5
bedrock = 7
water = 8
water = 9
stationary(_| )water = 8:0, 9:0
water(_| )source = 8:0, 9:0
flowing(_| )water = 8:1-8, 9:1-8 # change to ':1-7' if you want to exclude falling water
falling(_| )water = 8:8, 9:8
moving(_| )water = 8:1-8, 9:1-8
lava = 10
lava = 11
stationary(_| )lava = 10:0, 11:0
lava(_| )source = 10:0, 11:0
flowing(_| )lava = 10:1-8, 11:1-8 # change to ':1-7' if you want to exclude falling lava
falling(_| )lava = 10:8, 11:8
moving(_| )lava = 10:1-8, 11:1-8
[<any>](_| )sand = 12:0-1
sand = 12
normal(_| )sand = 12:0
redsand(_| )= 12:1
gravel(_| )= 13
gold(_| )ore¦s = 14
iron(_| )ore¦s @an = 15
coal(_| )ore¦s = 16
#---
[<any>](_| )oak(_| )[wood[en](_| )]log[s](_| )[item¦s] = 17
[<any>](_| )oak(_| )[wood[en](_| )]log(_| )block¦s = 17:0, 17:4, 17:8
[<any>]spruce(_| )[wood[en](_| )]log[s](_| )[item¦s] = 17:1
[<any>](_| )spruce(_| )[wood[en](_| )]log(_| )block¦s = 17:1, 17:5, 17:9
[<any>]birch(_| )[wood[en](_| )]log[s](_| )[item¦s] = 17:2
[<any>](_| )birch(_| )[wood[en](_| )]log(_| )block¦s = 17:2, 17:6, 17:10
[<any>]jungle(_| )[wood[en](_| )]log[s](_| )[item¦s] = 17:3
[<any>](_| )jungle(_| )[wood[en](_| )]log(_| )block¦s = 17:3, 17:7, 17:11
[<any>]acacia(_| )[wood[en](_| )]log[s](_| )[item¦s] = 162
[<any>](_| )acacia(_| )[wood[en](_| )]log(_| )block¦s = 162:0, 162:4, 162:8
[<any>]dark(_| )oak(_| )[wood[en](_| )]log[s](_| )[item¦s] = 162:1
[<any>](_| )dark(_| )oak(_| )[wood[en](_| )]log(_| )block¦s = 162:1, 162:5, 162:9
oak(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 17:8
spruce(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 17:9
birch(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 17:10
jungle(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 17:11
acacia(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 162:8
dark(_| )oak(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 162:9
[<any>](_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(north-south|south-north) = 17:8-11, 162:8-9
oak(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 17:4
spruce(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 17:5
birch(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 17:6
jungle(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 17:7
acacia(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 162:4
dark(_| )oak(_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 162:5
[<any>](_| )[wood[en](_| )]log[s][(_| )block[s]](_| )(east-west|west-east) = 17:4-7, 162:4-5
[<any>](_| )[wood[en](_| )]log[s](_| )[item¦s] = 17:0-3, 162:0-1
[<any>](_| )[wood[en](_| )]log(_| )block¦s = 17:0-11, 162:0-1, 162:4-5, 162:8-9
# ---
oak(_| )leaves = 18
spruce(_| )leaves = 18:1
birch(_| )leaves = 18:2
jungle(_| )leaves = 18:3
acacia(_| )leaves = 161
dark(_| )oak(_| )leaves = 161:1
undecaying(_| )oak(_| )leaves = 18:4
undecaying(_| )spruce(_| )leaves = 18:5
undecaying(_| )birch(_| )leaves = 18:6
undecaying(_| )jungle(_| )leaves = 18:7
undecaying(_| )acacia(_| )leaves = 161:4
undecaying(_| )dark(_| )oak(_| )leaves = 161:5
decaying(_| )oak(_| )leaves = 18:8
decaying(_| )spruce(_| )leaves = 18:9
decaying(_| )birch(_| )leaves = 18:10
decaying(_| )jungle(_| )leaves = 18:11
decaying(_| )acacia(_| )leaves = 161:8
decaying(_| )dark(_| )oak(_| )leaves = 161:9
decaying(_| )undecaying(_| )oak(_| )leaves = 18:12
decaying(_| )undecaying(_| )spruce(_| )leaves = 18:13
decaying(_| )undecaying(_| )birch(_| )leaves = 18:14
decaying(_| )undecaying(_| )jungle(_| )leaves = 18:15
decaying(_| )undecaying(_| )acacia(_| )leaves = 161:12
decaying(_| )undecaying(_| )dark(_| )oak(_| )leaves = 161:13
[<any>](_| )oak(_| )leaves = 18, 18:4, 18:8, 18:12
[<any>](_| )spruce(_| )leaves = 18:1, 18:5, 18:9, 18:13
[<any>](_| )birch(_| )leaves = 18:2, 18:6, 18:10, 18:14
[<any>](_| )jungle(_| )leaves = 18:3, 18:7, 18:11, 18:15
[<any>](_| )acacia(_| )leaves = 161, 161:4, 161:8, 161:12
[<any>](_| )dark(_| )oak(_| )leaves = 161:1, 161:5, 161:9, 161:13
[<any>](_| )leaves = 18:0-15, 161:0-1, 161:4-5, 161:8-9, 161:12-13
[<any>](_| )normal(_| )leaves = 18:0-3, 161:0-1
[<any>](_| )undecaying(_| )leaves = 18:4-7, 161:4-5
[<any>](_| )decaying(_| )leaves = 18:8-11, 161:8-9
[<any>](_| )decaying(_| )undecaying(_| )leaves = 18:12-15, 161:12-13
#---
sponge¦s = 19
wet(_| )sponge¦s = 19:1
[plain(_| )]glass(_| )block¦s = 20
lapis(_| )[lazuli(_| )]ore¦s = 21
lapis(_| )[lazuli(_| )]block¦s = 22
dispenser¦s = 23
sand[ ]stone¦s = 24
chiseled(_| )sand[ ]stone¦s = 24:1
smooth(_| )sand[ ]stone¦s = 24:2
note(_| )block¦s = 25
bed(_| )block¦s = 26
(head|top)(_| )bed(_| )block = 26:8-15
(foot|bottom)(_| )bed(_| )block = 26:0-7
[<any>](_| )bed¦s = 26, 355
#power rail=27 detector rail=28
sticky(_| )piston(_| )base¦s = 29
retracted(_| )sticky(_| )piston¦s = 29:0-5
extended(_| )sticky(_| )piston(_| )base¦s = 29:8-13
cobweb¦s = 30
[<any>](_| )tall(_| )grass = 31:1-2
dead(_| )grass = 31:0
(tall|long)(_| )grass = 31:1
fern¦s = 31:2
dead(_| )(shrub¦s|bush¦es) = 32
piston(_| )base¦s = 33
extended(_| )piston(_| )base¦s = 33:8-13
[<any>](_| )piston(_| )base¦s = 33, 29
[<any>](_| )piston¦s = 29, 33, 34
retracted(_| )piston¦s = 33:0-5
piston(_| )extension¦s = 34:0-5
sticky(_| )piston(_| )extension¦s = 34:8-13
[<any>](_| )piston(_| )extension¦s = 34
white(_| )wool[(_| )block]¦s = 35
orange(_| )wool[(_| )block]¦s = 35:1
magenta(_| )wool[(_| )block]¦s = 35:2
light(_| )blue(_| )wool[(_| )block]¦s = 35:3
yellow(_| )wool[(_| )block]¦s = 35:4
light(_| )green(_| )wool[(_| )block]¦s = 35:5
pink(_| )wool[(_| )block]¦s = 35:6
gray(_| )wool[(_| )block]¦s = 35:7
light(_| )gray(_| )wool[(_| )block]¦s = 35:8
cyan(_| )wool[(_| )block]¦s = 35:9
purple(_| )wool[(_| )block]¦s = 35:10
blue(_| )wool[(_| )block]¦s = 35:11
brown(_| )wool[(_| )block]¦s = 35:12
[dark(_| )]green(_| )wool[(_| )block]¦s = 35:13
red(_| )wool[(_| )block]¦s = 35:14
black(_| )wool[(_| )block]¦s = 35:15
[<any>](_| )wool[(_| )block]¦s = 35:0-15
block(_| )moved(_| )by(_| )piston = 36
moving(_| )block¦s = 36
dandelion¦s = 37
yellow(_| )flower¦s = 37
rose¦s = 38:0
red(_| )(rose¦s|flower¦s|popp¦y¦ies) = 38:0
[blue](_| )orchid¦s = 38:1
allium¦s @an = 38:2
azure(_| )bluet¦s @an = 38:3
red(_| )tulip¦s = 38:4
orange(_| )tulip¦s @an = 38:5
white(_| )tulip¦s = 38:6
pink(_| )tulip¦s = 38:7
ox[-]eye(_| )dais¦y¦ies @an = 38:8
ox[-]eye¦s @an = 38:8
dais¦y¦ies = 38:8
[<any>](_| )small(_| )flower¦s = 37, 38:0-8
mushroom¦s = 39, 40
brown(_| )mushroom¦s = 39
red(_| )mushroom¦s = 40
gold(_| )block¦s = 41
iron(_| )block¦s @an = 42
#double stone slab=43 slab=44
[clay](_| )brick¦s = 45, 336
[clay](_| )brick[s](_| )block = 45
(TNT|dynamite)¦s = 46
book[s][(_| )]shel¦f¦ves = 47
moss[y](_| )cobble[[(_| )]stone] = 48
obsidian = 49
torch¦es = 50
(ground|floor)(_| )torch = 50:5
wall(_| )torch = 50:1-4
fire¦s = 51
(eternal|infinite)(_| )fire¦s = 51:15 #never tested this myself
finite(_| )fire¦s = 51:0-14
(new|fresh)(_| )fire¦s = 51:0
[mob(_| )]spawner¦s = 52
#oak stairs=53
chest¦s = 54
[redstone](_| )wire¦s = 55
[redstone](_| )wire¦(_| )on¦s(_| )on = 55:1-15
[redstone](_| )wire¦(_| )off¦s(_| )off = 55:0
diamond(_| )ore¦s = 56
diamond(_| )block¦s = 57
block[s](_| )of(_| )diamond = 57
crafting(_| )table¦s = 58
workbench¦es = 58
crops = 59
wheat(_| )block¦s = 59
wheat = 59, 296
freshly(_| )planted(_| )(crops|wheat) = 59:0
ripe(_| )(crops|wheat) = 59:7
(farmland|soil) = 60
dry(_| )(farmland|soil) = 60:0
wet(_| )(farmland|soil) = 60:1-8
(non-burning|unlighted|unlit|extinguished)(_| )furnace¦s = 61
furnace¦(_| )off¦s(_| )off = 61
furnace¦(_| )on¦s(_| )on = 62
furnace¦s = 61, 62
(burning|lighted|lit)(_| )furnace¦s = 62
sign(_| )post¦s = 63
sign(_| )block¦s = 63, 68
oak(_| )door = 64
oak(_| )door(_| )top = 64:8-9
oak(_| )door(_| )bottom = 64:0-7
ladder¦s = 65
#rail=66 cobble stairs=67
wall(_| )sign¦s = 68
[<any>](_| )sign¦s = 63, 68, 323
lever¦s = 69
(unpulled|unthrown|inactive)(_| )lever¦s = 69:0-7
(pulled|thrown|active)(_| )lever = 69:8-15
(unpulled|unthrown|inactive)(_| )wall(_| )lever¦s = 69:1-4
(pulled|thrown|active)(_| )wall(_| )lever = 69:9-12
(unpulled|unthrown|inactive)(_| )wall(_| )lever¦s = 69:5-6
(pulled|thrown|active)(_| )ground(_| )lever = 69:13-14
[inactive(_| )]stone(_| )pressure(_| )plate = 70
active(_| )stone(_| )pressure(_| )plate = 70:1
iron(_| )door = 71
iron(_| )door(_| )top = 71:8-9
iron(_| )door(_| )bottom = 71:0-7
[inactive(_| )]wood[en](_| )pressure(_| )plate = 72
active(_| )wood[en](_| )pressure(_| )plate = 72:1
redstone(_| )ore¦(_| )off¦s(_| )off = 73
(inactive|non-glowing)(_| )redstone(_| )ore¦s = 73
redstone(_| )ore¦s = 73, 74
(active|glowing)(_| )redstone(_| )ore¦s = 74
redstone(_| )ore¦(_| )on¦s(_| )on = 74
redstone(_| )torch(_| )off = 75
inactive(_| )redstone(_| )torch = 75
(ground|floor)(_| )redstone(_| )torch(_| )off = 75:5
(ground|floor)inactive(_| )redstone(_| )torch = 75:5
wall(_| )redstone(_| )torch(_| )off = 75:1-4
wall(_| )inactive(_| )redstone(_| )torch = 75:1-4
redstone(_| )torch(_| )on = 76
active(_| )redstone(_| )torch = 76
(ground|floor)(_| )redstone(_| )torch(_| )on = 76:5
(ground|floor)active(_| )redstone(_| )torch = 76:5
wall(_| )active(_| )redstone(_| )torch = 76:1-4
wall(_| )redstone(_| )torch(_| )on = 76:1-4
#stone button=77
snow(_| )layer¦s = 78
ice = 79
ice(_| )block(_| ) = 79
snow = 80
snow(_| )block = 80
cact¦us¦i = 81
clay = 82, 337
clay(_| )block = 82
[sugar](_| )cane(_| )block¦s = 83
[sugar](_| )cane¦s = 83, 338
jukebox¦es = 84
oak(_| )fence¦s = 85
[<any>](_| )[wood[en](_| )]fence¦s = 85, 189, 190, 191, 192
pumpkin¦s = 86
netherrack¦s = 87
soul[(_| )]sand¦s = 88
glowstone¦s = 89
[nether](_| )portal¦s = 90
jack(-| )o['](-| )lantern¦s = 91
glowing(_| )pumpkin¦s = 91
cake(_| )block¦s = 92
cake¦s = 92, 354
[1-tick[-delay](_| )]redstone(_| )repeater(_| )off = 93:0-3
2-tick[-delay](_| )redstone(_| )repeater(_| )off = 93:4-7
3-tick[-delay](_| )redstone(_| )repeater(_| )off = 93:8-11
4-tick[-delay](_| )redstone(_| )repeater(_| )off = 93:12-15
[1-tick[-delay](_| )]redstone(_| )repeater(_| )on = 94:0-3
2-tick[-delay](_| )redstone(_| )repeater(_| )on = 94:4-7
3-tick[-delay](_| )redstone(_| )repeater(_| )on = 94:8-11
4-tick[-delay](_| )redstone(_| )repeater(_| )on = 94:12-15
redstone(_| )repeater(_| )item = 356
[<any>](_| )redstone(_| )repeater = 356, 93, 94
white(_| )glass(_| )block = 95
orange(_| )glass(_| )block = 95:1
magenta(_| )glass(_| )block = 95:2
light(_| )blue(_| )glass(_| )block = 95:3
yellow(_| )glass(_| )block = 95:4
light(_| )green(_| )glass(_| )block = 95:5
pink(_| )glass(_| )block = 95:6
gray(_| )glass(_| )block = 95:7
light(_| )gray(_| )glass(_| )block = 95:8
cyan(_| )glass(_| )block = 95:9
purple(_| )glass(_| )block = 95:10
blue(_| )glass(_| )block = 95:11
brown(_| )glass(_| )block = 95:12
[dark(_| )]green(_| )glass(_| )block = 95:13
red(_| )glass(_| )block = 95:14
black(_| )glass(_| )block = 95:15
[<any>](_| )glass(_| )block = 95:0-15
oak(_| )trapdoor¦s = 96
open[ed](_| )oak(_| )trapdoor¦s = 96:4-7
closed(_| )oak(_| )trapdoor¦s = 96:0-3
silverfish(_| )block¦s = 97:0-2
hidden(_| )silverfish¦es = 97:0-2
[hidden](_| )[smooth](_| )stone(_| )silverfish¦es = 97:0
[hidden](_| )cobble[[(_| )]stone](_| )silverfish¦es = 97:1
[hidden](_| )stone(_| )brick[s](_| )silverfish¦es = 97:2
stone(_| )brick¦s = 98:0-3
[<any>](_| )stone(_| )brick¦s = 98:0-3
stone(_| )brick[s](_| )(item|block)¦s = 98:0
smooth(_| )[stone](_| )brick¦s = 98:0
mossy(_| )[stone](_| )brick¦s = 98:1
cracked(_| )[stone](_| )brick¦s = 98:2
(circle|fancy|decorated)(_| )[stone](_| )brick¦s = 98:3
#brown mushroom block=99/red=100
[iron](_| )bar[s](_| )block¦s = 101
iron(_| )(fence|wall) = 101
[plain(_| )]glass(_| )pane¦s = 102
melon¦s = 103
melon(_| )block¦s = 103
pumpkin(_| )stem¦s = 104
melon(_| )stem¦s = 105
vine¦s = 106
single(_| )vine = 106:1, 106:2, 106:4, 106:8
double(_| )vine[s] = 106:3, 106:5, 106:9, 106:6, 106:10, 106:12
triple(_| )vine[s] = 106:7, 106:11, 106:13, 106:14
quadruple(_| )vine[s] = 106:15
#oak
oak(_| )fence(_| )gate¦s = 107
open[ed](_| )oak(_| )fence(_| )gate¦s = 107:4-7
closed(_| )oak(_| )fence(_| )gate¦s = 107:0-3
#brick stairs=108 stone brick stairs=109
mycelium = 110
mushroom(_| )(floor|ground|grass) = 110
lily(_| )pad¦s = 111
nether(_| )brick(_| )block¦s = 112
nether(_| )brick¦s = 112, 405
nether(_| )[brick[s]](_| )fence¦s = 113
#nether brick stairs=114
nether(_| )wart(_| )plant[(_| )block]¦s = 115
[freshly](_| )planted(_| )nether(_| )wart[(_| )block]¦s = 115
ripe(_| )nether(_| )wart¦s = 115:3
nether(_| )wart¦s = 115, 372
enchantment(_| )table¦s = 116
brewing(_| )stand(_| )block¦s = 117
empty(_| )brewing(_| )stand¦s(_| )@an = 117:0
full(_| )brewing(_| )stand¦s = 117:7
brewing(_| )stand¦s = 117, 379
cauldron(_| )block¦s = 118
empty(_| )cauldron¦s(_| )@an = 118:0
full(_| )cauldron¦s = 118:3
cauldron¦s = 118, 380
end[er](_| )portal¦s(_| )@an = 119
end[er](_| )portal(_| )frame¦s(_| )@an = 120
empty(_| )end[er](_| )portal(_| )frame¦s @an = 120:0-3
filled(_| )end[er](_| )portal(_| )frame¦s = 120:4-7
end[er](_| )stone¦s @an = 121
dragon(_| )egg¦s = 122
ender[(_| )]dragon(_| )egg¦s(_| )@an = 122
(inactive|unpowered|unlit)(_| )restone(_| )lamp¦s = 123
restone(_| )lamp¦(_| )off¦s(_| )off = 123
redstone(_| )lamp¦s = 123, 124
(active|glowing|powered|lit)(_| )redstone(_| )lamp¦s = 124
redstone(_| )lamp¦(_| )on¦s(_| )on = 124
#double slab=125 normal slab=126
cocoa = 127
cocoa(_| )plant¦s = 127
(freshly(_| )planted|small)(_| )cocoa(_| )[plant¦s] = 127:0-3
medium(_| )cocoa(_| )[plant¦s] = 127:4-7
(ripe|big|large)(_| )cocoa(_| )[plant¦s] = 127:8-11
#sandstone stairs=128
emerald(_| )ore¦s @an = 129
ender(_| )chest¦s @an = 130
[tripwire](_| )hook¦s = 131
tripwire¦s = 132
emerald(_| )block¦s @an = 133
block[s](_| )of(_| )emerald¦s = 133
#spruce wood(_| )stairs=134/birch=135/jungle=136
command(_| )block¦s = 137
beacon¦s = 138
cobble[[(_| )]stone](_| )wall¦s = 139:0-1
cobble[[(_| )]stone](_| )wall(_| )(item|block)¦s = 139:0
(normal|regular)(_| )cobble[[(_| )]stone](_| )wall¦s = 139:0
moss[y](_| )cobble[[(_| )]stone](_| )wall¦s = 139:1
{flower pot}(_| )flower(_| )pot¦s = 140
{flower pot}(_| )flower(_| )pot(_| )block¦s = 140
flower(_| )pot(_| )(holding|containing|with)(_| )[a[n]](_| ){flower pot} = 140
flower(_| )pot = 140
flower(_| )pot(_| )item = 390
[<any>](_| )flower(_| )pot¦s = 140, 390
carrot(_| )plant¦s = 141
carrot[s](_| )block¦s = 141
potato(_| )plant¦s = 142