summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.12-pre6-cl.csrg
blob: b67b1e2ab92f38b4f98410ced25ac225f105cd33 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
# (c) 2017 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerCuredZombieVillager
aaa EntityParrot
aab EntityPig
aac EntityPolarBear
aad EntityRabbit
aad$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
aad$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
aad$c EntityRabbit$GroupDataRabbit
aad$d EntityRabbit$ControllerJumpRabbit
aad$e EntityRabbit$ControllerMoveRabbit
aad$f EntityRabbit$PathfinderGoalRabbitPanic
aad$g EntityRabbit$PathfinderGoalEatCarrots
aae EntitySheep
aaf EntityPerchable
aag EntitySnowman
aah EntitySquid
aah$a EntitySquid$PathfinderGoalSquid
aai EntityIronGolem
aaj EntityWaterAnimal
aak EntityWolf
aal EntityHorseChestedAbstract
aam EntityHorseAbstract
aan EntityHorseDonkey
aao EntityHorse
aap EnumHorseArmor
aaq EntityLlama
aar EntityHorseMule
aas EntityHorseSkeleton
aat PathfinderGoalHorseTrap
aau EntityHorseZombie
aay IComplex
aaz EntityComplexPart
ab CriterionConditionDamage
aba EntityEnderCrystal
abb EntityEnderDragon
abd AbstractDragonController
abe AbstractDragonControllerLanded
abf DragonControllerCharge
abg DragonControllerDying
abh DragonControllerHold
abi DragonControllerHover
abj DragonControllerLandingFly
abk DragonControllerLanding
abl IDragonController
abm DragonControllerLandedAttack
abn DragonControllerLandedFlame
abo DragonControllerLandedSearch
abp DragonControllerStrafe
abq DragonControllerFly
abr DragonControllerPhase
abs DragonControllerManager
abv EntityWither
abx EntityArmorStand
aby EntityHanging
abz EntityItemFrame
ac CriterionConditionDamageSource
aca EntityLeash
acb EntityPainting
acb$a EntityPainting$EnumArt
acd EntityFishingHook
acd$a EntityFishingHook$HookState
acf EntityWeather
acg EntityLightning
aci EntityFallingBlock
acj EntityItem
ack EntityTNTPrimed
acm EntityIllagerAbstract
acn EntitySkeletonAbstract
aco EntityBlaze
aco$a EntityBlaze$PathfinderGoalBlazeFireball
acp EntityCaveSpider
acq EntityCreeper
acr EntityGuardianElder
acs EntityEnderman
acs$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
acs$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
acs$c EntityEnderman$PathfinderGoalEndermanPickupBlock
act EntityEndermite
acu IMonster
acv EntityEvoker
acw EntityGhast
acw$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
acw$b EntityGhast$ControllerGhast
acw$c EntityGhast$PathfinderGoalGhastAttackTarget
acw$d EntityGhast$PathfinderGoalGhastIdleMove
acx EntityGiantZombie
acy EntityGuardian
acy$a EntityGuardian$PathfinderGoalGuardianAttack
acy$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
acy$c EntityGuardian$ControllerMoveGuardian
acz EntityZombieHusk
ad CriterionConditionDistance
ada EntityIllagerIllusioner
adb EntityMagmaCube
adc EntityMonster
add EntityPigZombie
add$a EntityPigZombie$PathfinderGoalAnger
add$b EntityPigZombie$PathfinderGoalAngerOther
ade IRangedEntity
adf GenericAttributes
adg EntityShulker
adh EntitySilverfish
adh$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
adh$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
adi EntitySkeleton
adj EntitySlime
adj$a EntitySlime$PathfinderGoalSlimeNearestPlayer
adj$b EntitySlime$PathfinderGoalSlimeRandomJump
adj$c EntitySlime$PathfinderGoalSlimeIdle
adj$d EntitySlime$ControllerMoveSlime
adj$e EntitySlime$PathfinderGoalSlimeRandomDirection
adk EntityIllagerWizard
adk$a EntityIllagerWizard$Spell
adl EntitySpider
adl$a EntitySpider$PathfinderGoalSpiderMeleeAttack
adl$b EntitySpider$GroupDataSpider
adl$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
adm EntitySkeletonStray
adn EntityVex
ado EntityVindicator
adp EntityWitch
adq EntitySkeletonWither
adr EntityZombie
adr$a EntityZombie$GroupDataZombie
ads EntityZombieVillager
adv NPC
adw EntityVillager
adw$a EntityVillager$MerchantRecipeOptionBuy
adw$b EntityVillager$MerchantRecipeOptionBook
adw$c EntityVillager$MerchantRecipeOptionEnchant
adw$d EntityVillager$MerchantRecipeOptionProcess
adw$e EntityVillager$MerchantRecipeOptionSell
adw$f EntityVillager$IMerchantRecipeOption
adw$g EntityVillager$MerchantOptionRandomRange
adz PlayerAbilities
ae CriterionTriggerEffectsChanged
aea PlayerInventory
aeb EntityHuman
aeb$a EntityHuman$EnumBedResult
aeb$b EntityHuman$EnumChatVisibility
aef EntityArrow
aef$a EntityArrow$PickupStatus
aeg EntityDragonFireball
aeh EntityEvokerFangs
aei EntityEnderSignal
aej EntityFireball
aek EntityFireworks
ael EntityLargeFireball
aem EntityLlamaSpit
aen IProjectile
aeo ProjectileHelper
aep EntityShulkerBullet
aeq EntitySmallFireball
aer EntitySnowball
aes EntitySpectralArrow
aet EntityProjectile
aeu EntityEgg
aev EntityEnderPearl
aew EntityThrownExpBottle
aex EntityPotion
aey EntityTippedArrow
aez EntityWitherSkull
af CriterionTriggerEnchantedItem
afb EntityBoat
afb$a EntityBoat$EnumStatus
afb$b EntityBoat$EnumBoatType
afc EntityMinecartAbstract
afc$a EntityMinecartAbstract$EnumMinecartType
afd EntityMinecartChest
afe EntityMinecartCommandBlock
aff EntityMinecartContainer
afg EntityMinecartFurnace
afh EntityMinecartHopper
afi EntityMinecartRideable
afj EntityMinecartMobSpawner
afk EntityMinecartTNT
afn FoodMetaData
afp Container
afq ContainerAnvil
afr ContainerBeacon
afr$a ContainerBeacon$SlotBeacon
afs ContainerBrewingStand
afs$b ContainerBrewingStand$SlotBrewing
afs$c ContainerBrewingStand$SlotPotionBottle
aft ContainerChest
afu InventoryClickType
afv ICrafting
afw InventoryCrafting
afx ContainerWorkbench
afy ContainerDispenser
afz ContainerEnchantTable
ag CriterionConditionEnchantments
aga SlotFurnaceFuel
agb ContainerFurnace
agc SlotFurnaceResult
agd ContainerHopper
age InventoryHorseChest
agf ContainerHorse
agg ContainerPlayer
agh InventoryMerchant
agi ContainerMerchant
agj SlotMerchantResult
agk InventoryEnderChest
agl InventoryCraftResult
agm SlotResult
agn ContainerShulkerBox
ago SlotShulkerBox
agp Slot
agr ItemAir
ags ItemAnvil
agt ItemArmor
agt$a ItemArmor$EnumArmorMaterial
agu ItemArmorStand
agv ItemArrow
agw ItemAxe
agx ItemBanner
agy ItemBed
agz ItemBlock
ah CriterionTriggerEnterBlock
aha ItemReed
ahb ItemBoat
ahc ItemBook
ahd ItemGlassBottle
ahe ItemBow
ahf ItemSoup
ahg ItemBucket
ahh ItemCarrotStick
ahi ItemChorusFruit
ahj ItemClock
ahk ItemCoal
ahl ItemCompass
ahm ItemWorldMapBase
ahn CreativeModeTab
aho ItemTool
ahp ItemDoor
ahq EnumColor
ahr ItemDye
ahs ItemCloth
aht ItemEgg
ahu ItemElytra
ahv ItemMapEmpty
ahw ItemEnchantedBook
ahx ItemEndCrystal
ahy ItemEnderEye
ahz ItemEnderPearl
ai CriterionTriggerEntityHurtPlayer
aia ItemExpBottle
aib ItemFireball
aic ItemFireworksCharge
aid ItemFireworks
aie ItemFish
aie$a ItemFish$EnumFish
aif ItemFishingRod
aig ItemFlintAndSteel
aih ItemFood
aii ItemGoldenApple
aij ItemHanging
aik ItemHoe
ail Item
ail$a Item$EnumToolMaterial
aim ItemCooldown
aim$a ItemCooldown$Info
ain ItemStack
aio IDynamicTexture
aip Items
aiq ItemKnowledgeBook
air ItemLeash
ais ItemLeaves
ait ItemLingeringPotion
aiu ItemWorldMap
aiv ItemMilkBucket
aiw ItemMinecart
aix ItemMultiTexture
aiy ItemNameTag
aiz ItemPickaxe
aj CriterionConditionEntity
aja ItemPiston
ajb ItemPotion
ajc EnumItemRarity
ajd ItemRecord
aje ItemRedstone
ajf ItemSaddle
ajg ItemSeedFood
ajh ItemSeeds
aji ItemCooldownPlayer
ajj ItemShears
ajk ItemShield
ajl ItemSpade
ajm ItemShulkerBox
ajn ItemSign
ajo ItemNetherStar
ajp ItemSkull
ajq ItemStep
ajr ItemSnow
ajs ItemSnowball
ajt ItemMonsterEgg
aju ItemSpectralArrow
ajv ItemSplashPotion
ajw ItemSword
ajx ItemWithAuxData
ajy ItemTippedArrow
ak CriterionTriggerImpossible
aka EnumAnimation
akb ItemWaterLily
akc ItemBookAndQuill
akd ItemWrittenBook
ake PotionRegistry
akf PotionBrewer
akf$a PotionBrewer$PredicatedCombination
akg PotionUtil
akh Potions
akj RecipeArmorDye
akk RecipesBanner
akk$a RecipesBanner$AddRecipe
akk$b RecipesBanner$DuplicateRecipe
akl RecipeBookClone
akm RecipeFireworks
akn RecipesFurnace
ako RecipeItemStack
akp RecipeMapClone
akq RecipeMapExtend
akr IRecipe
aks CraftingManager
akt RecipeRepair
aku ShapedRecipes
akv ShapelessRecipes
akw RecipiesShield
akw$a RecipiesShield$Decoration
akx RecipeShulkerBox
akx$a RecipeShulkerBox$Dye
aky RecipeTippedArrow
al CriterionTriggerInventoryChanged
ala EnchantmentArrowDamage
alb EnchantmentFlameArrows
alc EnchantmentInfiniteArrows
ald EnchantmentArrowKnockback
ale EnchantmentBinding
alf EnchantmentWeaponDamage
alg EnchantmentDurability
alh EnchantmentDigging
ali Enchantment
ali$a Enchantment$Rarity
alj EnchantmentSlotType
alk EnchantmentManager
alk$a EnchantmentManager$EnchantmentModifierArthropods
alk$b EnchantmentManager$EnchantmentModifierThorns
alk$c EnchantmentManager$EnchantmentModifier
alk$d EnchantmentManager$EnchantmentModifierDamage
alk$e EnchantmentManager$EnchantmentModifierProtection
all WeightedRandomEnchant
alm Enchantments
aln EnchantmentFire
alo EnchantmentLure
alp EnchantmentFrostWalker
alq EnchantmentKnockback
alr EnchantmentLootBonus
als EnchantmentMending
alt EnchantmentOxygen
alu EnchantmentProtection
alu$a EnchantmentProtection$DamageType
alv EnchantmentSweeping
alw EnchantmentThorns
alx EnchantmentSilkTouch
aly EnchantmentVanishing
alz EnchantmentDepthStrider
am CriterionTriggerItemDurabilityChanged
ama EnchantmentWaterWorker
amd IMerchant
ame MerchantRecipe
amf MerchantRecipeList
amh CommandBlockListenerAbstract
ami MobSpawnerAbstract
amj BlockActionData
aml ChunkCoordIntPair
amn Explosion
amp GameRules
amp$a GameRules$GameRuleValue
amp$b GameRules$EnumGameRuleType
amq EnumGamemode
ams World
amt ExceptionWorldConflict
amu IWorldAccess
amv WorldSettings
amw IBlockAccess
amx WorldType
amy EnumSkyBlock
amz SpawnerCreature
an CriterionConditionItem
ana PortalTravelAgent
ana$a PortalTravelAgent$ChunkCoordinatesPortal
anb ChunkCache
anc MobSpawnerData
and NextTickListEntry
ane BiomeBeach
anf BiomeBase
anf$b BiomeBase$EnumTemperature
anf$c BiomeBase$BiomeMeta
ang BiomeCache
ani BiomeDecorator
anj WorldChunkManager
ank Biomes
anm BiomeDesert
ann BiomeBigHills
ann$a BiomeBigHills$Type
ano WorldChunkManagerHell
anp BiomeForest
anp$a BiomeForest$Type
anq BiomeHell
anr BiomeDecoratorHell
ans BiomeIcePlains
ant BiomeJungle
anu BiomeMesa
anv BiomeMushrooms
anw BiomeForestMutated
anx BiomeSavannaMutated
any BiomeOcean
anz BiomePlains
ao CriterionTriggerKilled
aoa BiomeRiver
aob BiomeSavanna
aoc BiomeStoneBeach
aod BiomeSwamp
aoe BiomeTaiga
aoe$a BiomeTaiga$Type
aof BiomeTheEnd
aog BiomeTheEndDecorator
aog$a BiomeTheEndDecorator$SpikeCache
aoh BiomeVoid
aoi BiomeVoidDecorator
aok BlockAir
aol BlockAnvil
aol$a BlockAnvil$TileEntityContainerAnvil
aom BlockBanner
aom$a BlockBanner$BlockStandingBanner
aom$b BlockBanner$BlockWallBanner
aon BlockBarrier
aoo BlockTileEntity
aop BlockPressurePlateAbstract
aoq BlockMinecartTrackAbstract
aoq$a BlockMinecartTrackAbstract$MinecartTrackLogic
aoq$b BlockMinecartTrackAbstract$EnumTrackPosition
aor BlockBeacon
aos BlockBed
aos$a BlockBed$EnumBedPart
aot BlockBeetroot
aou Block
aou$a Block$EnumRandomOffset
aov Blocks
aow BlockBone
aox IBlockFragilePlantElement
aoy BlockBookshelf
aoz BlockBrewingStand
ap CriterionTriggerLevitation
apa BlockPlant
apb BlockButtonAbstract
apc BlockCactus
apd BlockCake
ape BlockCarrots
apf BlockCauldron
apg BlockChest
apg$a BlockChest$Type
aph BlockChorusFlower
api BlockChorusFruit
apj BlockClay
apk BlockCocoa
apl BlockCloth
apm BlockCommand
apn BlockRedstoneComparator
apn$a BlockRedstoneComparator$EnumComparatorMode
apo BlockConcretePowder
app BlockWorkbench
app$a BlockWorkbench$TileEntityContainerWorkbench
apq BlockCrops
apr BlockDaylightDetector
aps BlockDeadBush
apt BlockMinecartDetector
apu BlockDiodeAbstract
apv BlockDirectional
apw BlockDirt
apw$a BlockDirt$EnumDirtVariant
apx BlockDispenser
apy BlockDoor
apy$a BlockDoor$EnumDoorHalf
apy$b BlockDoor$EnumDoorHinge
apz BlockTallPlant
apz$a BlockTallPlant$EnumTallPlantHalf
apz$b BlockTallPlant$EnumTallFlowerVariants
aq CriterionConditionLocation
aqa BlockDragonEgg
aqb BlockDropper
aqc BlockFlowing
aqd BlockEnchantmentTable
aqe BlockEndGateway
aqf BlockEnderPortal
aqg BlockEnderPortalFrame
aqh BlockEndRod
aqi BlockEnderChest
aqj ITileEntity
aqk BlockFalling
aql BlockSoil
aqm BlockFence
aqn BlockFenceGate
aqo BlockFire
aqp BlockFlowers
aqp$a BlockFlowers$EnumFlowerVarient
aqp$b BlockFlowers$EnumFlowerType
aqq BlockFlowerPot
aqq$a BlockFlowerPot$EnumFlowerPotContents
aqr BlockIceFrost
aqs BlockDoubleStoneStep2
aqt BlockDoubleStep
aqu BlockDoubleWoodStep
aqv BlockFurnace
aqw BlockGlass
aqx BlockGlazedTerracotta
aqy BlockLightStone
aqz BlockGrass
ar CriterionTriggerLocation
ara BlockGrassPath
arb BlockGravel
arc BlockStoneStep2
ard BlockStepAbstract
ard$a BlockStepAbstract$EnumSlabHalf
are BlockStep
arf BlockHalfTransparent
arg BlockWoodStep
arh BlockHardenedClay
ari BlockHay
arj BlockHopper
ark BlockFacingHorizontal
arl BlockHugeMushroom
arl$a BlockHugeMushroom$EnumHugeMushroomVariant
arm BlockIce
arn BlockJukeBox
arn$a BlockJukeBox$TileEntityRecordPlayer
aro BlockLadder
arp BlockLeaves
arr BlockLever
arr$a BlockLever$EnumLeverPosition
ars BlockFluids
art BlockLogAbstract
art$a BlockLogAbstract$EnumLogRotation
aru BlockMagma
arv BlockMelon
arw EnumBlockMirror
arx BlockMobSpawner
ary BlockMonsterEggs
ary$a BlockMonsterEggs$EnumMonsterEggVarient
arz BlockMushroom
as CriterionConditionValue
asa BlockMycel
asb BlockNetherbrick
asc BlockNetherWart
asd BlockBloodStone
ase BlockLeaves2
asf BlockLog2
asg BlockDoubleStoneStepAbstract
asg$a BlockDoubleStoneStepAbstract$EnumStoneSlab2Variant
ash BlockNoDrop
asi BlockNote
asj BlockObserver
ask BlockObsidian
asl BlockLeaves1
asm BlockLog1
asn BlockOre
aso BlockPackedIce
asp BlockWood
asp$a BlockWood$EnumLogVariant
asq BlockPortal
asq$a BlockPortal$Shape
asr BlockPotatoes
ass BlockPowered
ast BlockPoweredRail
asu BlockPressurePlateBinary
asu$a BlockPressurePlateBinary$EnumMobType
asv BlockPrismarine
asv$a BlockPrismarine$EnumPrismarineVariant
asw BlockPumpkin
asx BlockPurpurSlab
asx$a BlockPurpurSlab$Default
asx$b BlockPurpurSlab$Half
asx$c BlockPurpurSlab$Type
asy BlockQuartz
asy$a BlockQuartz$EnumQuartzVariant
asz BlockMinecartTrack
at CriterionConditionMobEffect
ata BlockRedFlowers
atb BlockRedSandstone
atb$a BlockRedSandstone$EnumRedSandstoneVariant
atc BlockRedstoneOre
atd BlockRedstoneWire
atd$a BlockRedstoneWire$EnumRedstoneWireConnection
ate BlockRedstoneLamp
atf BlockRedstoneTorch
atf$a BlockRedstoneTorch$RedstoneUpdateInfo
atg BlockReed
ath EnumRenderType
ati BlockRepeater
atj BlockRotatable
atk EnumBlockRotation
atl BlockSand
atl$a BlockSand$EnumSandVariant
atm BlockSandStone
atm$a BlockSandStone$EnumSandstoneVariant
atn BlockSapling
ato BlockSeaLantern
atp BlockShulkerBox
atq BlockSign
atr BlockSkull
ats BlockSlime
att BlockSnowBlock
atu BlockSnow
atv BlockSlowSand
atw SoundEffectType
atx BlockSponge
aty BlockStainedGlass
atz BlockStainedGlassPane
au CriterionConditionNBT
aua BlockStainedHardenedClay
aub BlockStairs
aub$a BlockStairs$EnumHalf
aub$b BlockStairs$EnumStairShape
auc BlockFloorSign
aud BlockStationary
aue BlockStem
auf BlockStone
auf$a BlockStone$EnumStoneVariant
aug BlockSmoothBrick
aug$a BlockSmoothBrick$EnumStonebrickType
auh BlockStoneButton
aui BlockDoubleStepAbstract
aui$a BlockDoubleStepAbstract$EnumStoneSlabVariant
auj BlockStructure
auk BlockStructureVoid
aul BlockLongGrass
aul$a BlockLongGrass$EnumTallGrassType
aum BlockThin
aun BlockTNT
auo BlockTorch
aup BlockTrapdoor
aup$a BlockTrapdoor$EnumTrapdoorHalf
auq BlockTripwire
aur BlockTripwireHook
aus BlockVine
aut BlockCobbleWall
aut$a BlockCobbleWall$EnumCobbleVariant
auu BlockWallSign
auv BlockWaterLily
auw BlockWeb
auy BlockPressurePlateWeighted
auz BlockWoodButton
av CriterionTriggerNetherTravel
ava BlockWoodenStep
avb BlockCarpet
avc BlockYellowFlowers
avd TileEntityBanner
ave EnumBannerPatternType
avf TileEntityBeacon
avf$a TileEntityBeacon$BeaconColorTracker
avg TileEntityBed
avh TileEntity
avi TileEntityBrewingStand
avj TileEntityChest
avk TileEntityCommand
avk$a TileEntityCommand$Type
avl TileEntityComparator
avm TileEntityLightDetector
avn TileEntityDispenser
avo TileEntityDropper
avp TileEntityEnchantTable
avq TileEntityEnderChest
avr TileEntityFlowerPot
avs TileEntityFurnace
avt IHopper
avu TileEntityHopper
avv TileEntityContainer
avw TileEntityMobSpawner
avx TileEntityNote
avy TileEntityLootable
avz TileEntityShulkerBox
avz$a TileEntityShulkerBox$AnimationPhase
aw CriterionTriggerPlacedBlock
awa TileEntitySign
awb TileEntitySkull
awc TileEntityStructure
awc$a TileEntityStructure$UsageMode
awd TileEntityEndGateway
awe TileEntityEnderPortal
awh BlockPiston
awi BlockPistonExtension
awi$a BlockPistonExtension$EnumPistonType
awj BlockPistonMoving
awk TileEntityPiston
awl PistonExtendsChecker
awn BlockDataAbstract
awo IBlockPhysics
awp EnumBlockFaceShape
awq IBlockProperties
awr IBlockData
aws BlockStateList
aws$a BlockStateList$BlockData
awu ShapeDetectorBlock
awv ShapeDetector
awv$a ShapeDetector$BlockLoader
awv$b ShapeDetector$ShapeDetectorCollection
aww ShapeDetectorBuilder
awy MaterialPredicate
awz BlockPredicate
ax CriterionTriggerPlayerHurtEntity
axa BlockStatePredicate
axc BlockState
axd BlockStateBoolean
axe BlockStateDirection
axf BlockStateEnum
axg BlockStateInteger
axh IBlockState
axj IWorldBorderListener
axk EnumWorldBorderState
axl WorldBorder
axn DataPaletteBlock
axo ChunkGenerator
axp IChunkProvider
axq NibbleArray
axs DataPaletteGlobal
axt DataPaletteHash
axu Chunk
axu$a Chunk$EnumTileEntityState
axv ChunkSection
axw DataPaletteLinear
axx OldNibbleArray
axy DataPalette
axz DataPaletteExpandable
ay CriterionTriggerRecipeUnlocked
ayc ChunkRegionLoader
ayd IChunkLoader
ayg OldChunkLoader
ayg$a OldChunkLoader$OldChunk
ayh RegionFile
ayh$a RegionFile$ChunkBuffer
ayi RegionFileCache
ayk WorldProvider
ayl DimensionManager
aym WorldProviderHell
ayn WorldProviderNormal
ayo EnumDragonRespawn
ayp EnderDragonBattle
ayq WorldProviderTheEnd
ayt WorldGenCanyon
ayu ChunkSnapshot
ayv CustomWorldSettingsFinal
ayv$a CustomWorldSettingsFinal$CustomWorldSettings
ayv$b CustomWorldSettingsFinal$CustomWorldSettingsSerializer
ayw ChunkProviderDebug
ayx ChunkProviderFlat
ayy WorldGenCaves
ayz WorldGenBase
az CriterionTriggerSummonedEntity
aza WorldGenCavesHell
azb ChunkProviderHell
azc ChunkProviderGenerate
azd ChunkProviderTheEnd
aze WorldGenTreeAbstract
azf WorldGenBigTree
azf$a WorldGenBigTree$Position
azg WorldGenForest
azh WorldGenTaigaStructure
azi WorldGenBonusChest
azj WorldGenMushrooms
azk WorldGenCactus
azl WorldGenClay
azm WorldGenDeadBush
azn WorldGenDesertWell
azo WorldGenTallPlant
azp WorldGenEndGateway
azq WorldGenEndIsland
azr WorldGenEndTrophy
azs WorldGenerator
azt WorldGenFlowers
azu WorldGenFossils
azv WorldGenGroundBush
azw WorldGenFire
azx WorldGenLightStone2
azy WorldGenHellLava
azz WorldGenHugeMushroom
b CrashReport
ba CriterionTriggerTamedAnimal
baa WorldGenPackedIce1
bab WorldGenPackedIce2
bac WorldGenLakes
bad WorldGenLightStone1
bae WorldGenJungleTree
baf WorldGenMegaTree
bag WorldGenMegaTreeAbstract
bah WorldGenMelon
bai WorldGenDungeons
baj WorldGenMinable
bak WorldGenTaiga1
bal WorldGenPumpkin
bam WorldGenReed
ban WorldGenForestTree
bao WorldGenSand
bap WorldGenAcaciaTree
baq WorldGenEnder
baq$a WorldGenEnder$Spike
bar WorldGenLiquids
bas WorldGenTaiga2
bat WorldGenSwampTree
bau WorldGenGrass
bav WorldGenTrees
baw WorldGenVines
bax WorldGenWaterLily
baz WorldGenFlatInfo
bb CriterionTriggerTick
bba WorldGenFlatLayerInfo
bbe StructureBoundingBox
bbf WorldGenEndCity
bbf$a WorldGenEndCity$Start
bbg WorldGenEndCityPieces
bbg$a WorldGenEndCityPieces$Piece
bbg$b WorldGenEndCityPieces$PieceGenerator
bbh WorldGenMineshaft
bbh$a WorldGenMineshaft$Type
bbi WorldGenMineshaftPieces
bbi$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bbi$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bbi$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bbi$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bbj WorldGenMineshaftStart
bbk WorldGenNether
bbk$a WorldGenNether$WorldGenNetherStart
bbl WorldGenNetherPieces
bbl$a WorldGenNetherPieces$WorldGenNetherPiece1
bbl$b WorldGenNetherPieces$WorldGenNetherPiece2
bbl$c WorldGenNetherPieces$WorldGenNetherPiece3
bbl$d WorldGenNetherPieces$WorldGenNetherPiece4
bbl$e WorldGenNetherPieces$WorldGenNetherPiece5
bbl$f WorldGenNetherPieces$WorldGenNetherPiece6
bbl$g WorldGenNetherPieces$WorldGenNetherPiece7
bbl$h WorldGenNetherPieces$WorldGenNetherPiece8
bbl$i WorldGenNetherPieces$WorldGenNetherPiece9
bbl$j WorldGenNetherPieces$WorldGenNetherPiece10
bbl$k WorldGenNetherPieces$WorldGenNetherPiece11
bbl$l WorldGenNetherPieces$WorldGenNetherPiece12
bbl$m WorldGenNetherPieces$WorldGenNetherPiece
bbl$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bbl$o WorldGenNetherPieces$WorldGenNetherPiece13
bbl$p WorldGenNetherPieces$WorldGenNetherPiece14
bbl$q WorldGenNetherPieces$WorldGenNetherPiece15
bbm WorldGenMonument
bbm$a WorldGenMonument$WorldGenMonumentStart
bbn WorldGenMonumentPieces
bbn$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bbn$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bbn$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bbn$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bbn$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bbn$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bbn$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bbn$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bbn$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bbn$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bbn$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bbn$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bbn$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bbn$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bbn$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bbn$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bbn$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bbn$r WorldGenMonumentPieces$WorldGenMonumentPiece
bbn$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bbn$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bbn$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bbn$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bbo WorldGenLargeFeature
bbo$a WorldGenLargeFeature$WorldGenLargeFeatureStart
bbp WorldGenRegistration
bbp$a WorldGenRegistration$WorldGenPyramidPiece
bbp$c WorldGenRegistration$WorldGenJungleTemple
bbp$c$a WorldGenRegistration$WorldGenJungleTemple$WorldGenJungleTemplePiece
bbp$d WorldGenRegistration$WorldGenScatteredPiece
bbp$e WorldGenRegistration$WorldGenWitchHut
bbq WorldGenStronghold
bbq$a WorldGenStronghold$WorldGenStronghold2Start
bbr WorldGenStrongholdPieces
bbr$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bbr$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bbr$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bbr$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bbr$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bbr$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bbr$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bbr$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bbr$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bbr$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bbr$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bbr$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bbr$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bbr$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bbr$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bbr$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bbr$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bbs StructureGenerator
bbt WorldGenFactory
bbu PersistentStructure
bbv StructurePiece
bbv$a StructurePiece$StructurePieceBlockSelector
bbw StructureStart
bbx DefinedStructurePiece
bby WorldGenVillage
bby$a WorldGenVillage$WorldGenVillageStart
bbz WorldGenVillagePieces
bbz$a WorldGenVillagePieces$WorldGenVillageLibrary
bbz$b WorldGenVillagePieces$WorldGenVillageFarm2
bbz$c WorldGenVillagePieces$WorldGenVillageFarm
bbz$d WorldGenVillagePieces$WorldGenVillageLight
bbz$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bbz$f WorldGenVillagePieces$WorldGenVillageButcher
bbz$g WorldGenVillagePieces$WorldGenVillageHouse
bbz$h WorldGenVillagePieces$WorldGenVillageHut
bbz$i WorldGenVillagePieces$WorldGenVillageTemple
bbz$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bbz$k WorldGenVillagePieces$WorldGenVillageStartPiece
bbz$l WorldGenVillagePieces$WorldGenVillageRoad
bbz$m WorldGenVillagePieces$WorldGenVillageHouse2
bbz$n WorldGenVillagePieces$WorldGenVillagePiece
bbz$o WorldGenVillagePieces$WorldGenVillageRoadPiece
bbz$p WorldGenVillagePieces$WorldGenVillageWell
bc CriterionTriggerVillagerTrade
bca WorldGenWoodlandMansion
bcb WorldGenWoodlandMansionPieces
bcd DefinedStructureProcessorRotation
bce DefinedStructureManager
bcf DefinedStructureInfo
bcg DefinedStructureProcessor
bch DefinedStructure
bch$b DefinedStructure$BlockInfo
bch$c DefinedStructure$EntityInfo
bcm NoiseGeneratorPerlin
bcn NoiseGeneratorOctaves
bco NoiseGenerator3
bcr NoiseGenerator3Handler
bcs NoiseGenerator
bcu MaterialDecoration
bcv MaterialGas
bcw MaterialLiquid
bcx Material
bcy MaterialMapColor
bcz MaterialPortal
bd CriterionTriggerUsedEnderEye
bda EnumPistonReaction
bdc GenLayerDeepOcean
bdd GenLayerSpecial
bdd$a GenLayerSpecial$EnumGenLayerSpecial
bde GenLayerIsland
bdf GenLayerMushroomIsland
bdg GenLayerTopSoil
bdh GenLayerDesert
bdi GenLayerBiome
bdk GenLayerZoomFuzzy
bdm IntCache
bdn LayerIsland
bdo GenLayer
bdp GenLayerPlains
bdq GenLayerRegionHills
bdr GenLayerIcePlains
bds GenLayerCleaner
bdt GenLayerRiver
bdu GenLayerRiverMix
bdv GenLayerMushroomShore
bdw GenLayerSmooth
be CriterionTriggerUsedTotem
bea GenLayerZoomVoronoi
beb GenLayerZoom
bee Path
bef PathType
beg PathfinderFlying
beh PathPoint
bei PathfinderAbstract
bej PathEntity
bek Pathfinder
bel PathfinderWater
bem PathfinderNormal
beq RunnableSaveScoreboard
ber PersistentBase
bes MapIcon
bes$a MapIcon$Type
bet WorldMap
bet$a WorldMap$WorldMapHumanTracker
bew ServerNBTManager
bex WorldLoaderServer
bey SecondaryWorldData
bez WorldNBTStorage
bfa WorldLoader
bfb WorldData
bfc IDataManager
bfe Convertable
bfi IPlayerFileData
bfk PersistentCollection
bfl LootTables
bfm LootSelectorEmpty
bfn LootItem
bfo LootSelector
bfp LotoSelectorEntry
bfq LootTable
bfr LootTableInfo
bfr$b LootTableInfo$EntityTarget
bfs LootSelectorLootTable
bft LootTableRegistry
bfu LootValueBounds
bfv LootItemFunctionEnchant
bfw LootEnchantLevel
bfx LootItemFunction
bfy LootItemFunctions
bfz LootEnchantFunction
bga LootItemFunctionSetAttribute
bgb LootItemFunctionSetCount
bgc LootItemFunctionSetDamage
bgd LootItemFunctionSetData
bge LootItemFunctionSetTag
bgf LootItemFunctionSmelt
bgi LootItemConditionEntityScore
bgj LootItemCondition
bgk LootItemConditions
bgl LootItemConditionEntityProperty
bgm LootItemConditionKilledByPlayer
bgn LootItemConditionRandomChance
bgo LootItemConditionRandomChanceWithLooting
bgq LootEntityProperties
bgr LootEntityProperty
bgs LootEntityPropertyOnFire
bgv FileIOThread
bgw IAsyncChunkSaver
bgz AxisAlignedBB
bh ICommandDispatcher
bha MovingObjectPosition
bha$a MovingObjectPosition$EnumMovingObjectType
bhc Vec3D
bhe ScoreboardObjective
bhf ScoreboardTeam
bhg ScoreboardScore
bhi Scoreboard
bhj PersistentScoreboard
bhk ScoreboardTeamBase
bhk$a ScoreboardTeamBase$EnumTeamPush
bhk$b ScoreboardTeamBase$EnumNameTagVisibility
bhl ScoreboardCriteriaInteger
bhm ScoreboardBaseCriteria
bhn ScoreboardHealthCriteria
bho IScoreboardCriteria
bho$a IScoreboardCriteria$EnumScoreboardHealthDisplay
bhp ScoreboardReadOnlyCriteria
bhq ScoreboardStatisticCriteria
bi CommandAbstract
bi$a CommandAbstract$CommandNumber
bj CommandHandler
bk ICommand
bl ICommandHandler
bm CustomFunction
bn ICommandListener
bo CommandListenerWrapper
bp CommandObjectiveExecutor
bp$a CommandObjectiveExecutor$EnumCommandResult
bq PlayerSelector
br CommandAdvancement
br$a CommandAdvancement$Action
br$b CommandAdvancement$Filter
bs CommandBanIp
bt CommandBanList
bu CommandBan
bv CommandBlockData
bw CommandClear
bx CommandClone
bx$a CommandClone$CommandCloneStoredTileEntity
by CommandDeop
bz CommandDebug
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca CommandGamemodeDefault
cb CommandEffect
cc CommandMe
cd CommandEnchant
ce CommandEntityData
cf CommandExecute
cg CommandXp
ch CommandFill
ci CommandFunction
cj CommandDifficulty
ck CommandGamemode
cl CommandGamerule
cm CommandGive
cn CommandHelp
co CommandKick
cp CommandKill
cq CommandList
cr CommandLocate
cs CommandTell
ct CommandOp
cu CommandPardonIP
cv CommandPardon
cw CommandParticle
cx CommandPlaySound
cy CommandPublish
cz CommandRecipe
d CrashReportCallable
da CommandReload
db CommandReplaceItem
dc CommandSaveAll
dd CommandSaveOff
de CommandSaveOn
df CommandSay
dg CommandScoreboard
dh CommandDispatcher
di CommandSetBlock
dj CommandIdleTimeout
dk CommandSpawnpoint
dl CommandSetWorldSpawn
dm CommandSeed
dn CommandSpreadPlayers
dn$a CommandSpreadPlayers$Location2D
dp CommandStats
dq CommandStop
dr CommandStopSound
ds CommandSummon
dt CommandTeleport
du CommandTellRaw
dw CommandTestForBlock
dx CommandTestForBlocks
dy CommandTestFor
dz CommandTime
ea CommandTitle
eb CommandToggleDownfall
ec CommandTp
ed CommandTrigger
ee CommandWeather
ef CommandWhitelist
eg CommandWorldBorder
ei CommandException
ej ExceptionEntityNotFound
ek ExceptionInvalidBlockState
el ExceptionInvalidNumber
em ExceptionInvalidSyntax
en ExceptionPlayerNotFound
eo ExceptionUnknownCommand
ep ExceptionUsage
et BlockPosition
et$a BlockPosition$MutableBlockPosition
et$b BlockPosition$PooledBlockPosition
eu ISourceBlock
ev SourceBlock
ew IteratorUtils
ew$a IteratorUtils$ArrayToList
ew$b IteratorUtils$ClassIterable
ew$b$a IteratorUtils$ClassIterable$ClassIterator
ex DispenseBehaviorItem
ey RegistryBlocks
ez RegistryDefault
f ReportedException
fa EnumDirection
fa$a EnumDirection$EnumAxis
fa$b EnumDirection$EnumAxisDirection
fa$c EnumDirection$EnumDirectionLimit
fb IDispenseBehavior
fc Registry
fd RegistryBlockID
fe ILocationSource
ff ISource
fg MapGeneratorUtils
fh RegistryMaterials
fi NonNullList
fj EnumParticle
fk IPosition
fl Position
fm IRegistry
fn Vector3f
fo RegistrySimple
fq BaseBlockPosition
ft LocaleI18n
fu LocaleLanguage
fw NBTTagByteArray
fx NBTTagByte
fy NBTTagCompound
fz NBTTagDouble
g SharedConstants
ga NBTTagEnd
gb NBTTagFloat
gc NBTTagIntArray
gd NBTTagInt
ge NBTTagList
gf NBTTagLongArray
gg NBTTagLong
gh NBTReadLimiter
gi NBTCompressedStreamTools
gj GameProfileSerializer
gk NBTNumber
gl NBTTagShort
gm NBTTagString
gn NBTBase
go MojangsonParseException
gp MojangsonParser
gr PacketEncryptionHandler
gs PacketDecrypter
gt PacketEncrypter
gu PacketDecompressor
gv PacketCompressor
gw NetworkManager
gw$a NetworkManager$QueuedPacket
gx EnumProtocol
gy PacketDataSerializer
gz PacketDecoder
h SystemUtils
ha PacketEncoder
hb PacketListener
hc PacketSplitter
hd PacketPrepender
he ChatBaseComponent
hf ChatMessageType
hg ChatClickable
hg$a ChatClickable$EnumClickAction
hh IChatBaseComponent
hh$a IChatBaseComponent$ChatSerializer
hi ChatComponentUtils
hj ChatHoverable
hj$a ChatHoverable$EnumHoverAction
hk ChatComponentKeybind
hl ChatComponentScore
hm ChatComponentSelector
hn ChatModifier
hn$a ChatModifier$ChatModifierSerializer
ho ChatComponentText
hp ChatMessage
hq ChatMessageException
ht Packet
hu EnumProtocolDirection
hv PlayerConnectionUtils
hw PacketListenerPlayOut
hx PacketPlayOutSpawnEntity
hy PacketPlayOutSpawnEntityExperienceOrb
hz PacketPlayOutSpawnEntityWeather
i Advancement
i$a Advancement$SerializedAdvancement
ia PacketPlayOutSpawnEntityLiving
ib PacketPlayOutSpawnEntityPainting
ic PacketPlayOutNamedEntitySpawn
id PacketPlayOutAnimation
ie PacketPlayOutStatistic
ig PacketPlayOutBlockBreakAnimation
ih PacketPlayOutTileEntityData
ii PacketPlayOutBlockAction
ij PacketPlayOutBlockChange
ik PacketPlayOutBoss
ik$a PacketPlayOutBoss$Action
il PacketPlayOutServerDifficulty
im PacketPlayOutTabComplete
in PacketPlayOutChat
io PacketPlayOutMultiBlockChange
io$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
ip PacketPlayOutTransaction
iq PacketPlayOutCloseWindow
ir PacketPlayOutOpenWindow
is PacketPlayOutWindowItems
it PacketPlayOutWindowData
iu PacketPlayOutSetSlot
iv PacketPlayOutSetCooldown
iw PacketPlayOutCustomPayload
ix PacketPlayOutCustomSoundEffect
iy PacketPlayOutKickDisconnect
iz PacketPlayOutEntityStatus
j Advancements
ja PacketPlayOutExplosion
jb PacketPlayOutUnloadChunk
jc PacketPlayOutGameStateChange
jd PacketPlayOutKeepAlive
je PacketPlayOutMapChunk
jf PacketPlayOutWorldEvent
jg PacketPlayOutWorldParticles
jh PacketPlayOutLogin
ji PacketPlayOutMap
jj PacketPlayOutEntity
jj$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
jj$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
jj$c PacketPlayOutEntity$PacketPlayOutEntityLook
jk PacketPlayOutVehicleMove
jl PacketPlayOutOpenSignEditor
jm PacketPlayOutAbilities
jn PacketPlayOutCombatEvent
jn$a PacketPlayOutCombatEvent$EnumCombatEventType
jo PacketPlayOutPlayerInfo
jo$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
jo$b PacketPlayOutPlayerInfo$PlayerInfoData
jp PacketPlayOutPosition
jp$a PacketPlayOutPosition$EnumPlayerTeleportFlags
jq PacketPlayOutBed
jr PacketPlayOutRecipes
js PacketPlayOutEntityDestroy
jt PacketPlayOutRemoveEntityEffect
ju PacketPlayOutResourcePackSend
jv PacketPlayOutRespawn
jw PacketPlayOutEntityHeadRotation
jx PacketPlayOutSelectAdvancementTab
jy PacketPlayOutWorldBorder
jy$a PacketPlayOutWorldBorder$EnumWorldBorderAction
jz PacketPlayOutCamera
k AdvancementProgress
ka PacketPlayOutHeldItemSlot
kb PacketPlayOutScoreboardDisplayObjective
kc PacketPlayOutEntityMetadata
kd PacketPlayOutAttachEntity
ke PacketPlayOutEntityVelocity
kf PacketPlayOutEntityEquipment
kg PacketPlayOutExperience
kh PacketPlayOutUpdateHealth
ki PacketPlayOutScoreboardObjective
kj PacketPlayOutMount
kk PacketPlayOutScoreboardTeam
kl PacketPlayOutScoreboardScore
kl$a PacketPlayOutScoreboardScore$EnumScoreboardAction
km PacketPlayOutSpawnPosition
kn PacketPlayOutUpdateTime
ko PacketPlayOutTitle
ko$a PacketPlayOutTitle$EnumTitleAction
kp PacketPlayOutNamedSoundEffect
kq PacketPlayOutPlayerListHeaderFooter
kr PacketPlayOutCollect
ks PacketPlayOutEntityTeleport
kt PacketPlayOutAdvancements
ku PacketPlayOutUpdateAttributes
ku$a PacketPlayOutUpdateAttributes$AttributeSnapshot
kv PacketPlayOutEntityEffect
kw PacketListenerPlayIn
kx PacketPlayInTeleportAccept
ky PacketPlayInAutoRecipe
kz PacketPlayInTabComplete
l AdvancementRewards
la PacketPlayInChat
lb PacketPlayInClientCommand
lb$a PacketPlayInClientCommand$EnumClientCommand
lc PacketPlayInSettings
ld PacketPlayInTransaction
le PacketPlayInEnchantItem
lf PacketPlayInWindowClick
lg PacketPlayInCloseWindow
lh PacketPlayInCustomPayload
li PacketPlayInUseEntity
li$a PacketPlayInUseEntity$EnumEntityUseAction
lj PacketPlayInKeepAlive
lk PacketPlayInFlying
lk$a PacketPlayInFlying$PacketPlayInPosition
lk$b PacketPlayInFlying$PacketPlayInPositionLook
lk$c PacketPlayInFlying$PacketPlayInLook
ll PacketPlayInVehicleMove
lm PacketPlayInBoatMove
ln PacketPlayInAbilities
lo PacketPlayInBlockDig
lo$a PacketPlayInBlockDig$EnumPlayerDigType
lp PacketPlayInEntityAction
lp$a PacketPlayInEntityAction$EnumPlayerAction
lq PacketPlayInSteerVehicle
lr PacketPlayInRecipeDisplayed
ls PacketPlayInResourcePackStatus
ls$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
lt PacketPlayInAdvancements
lt$a PacketPlayInAdvancements$Status
lu PacketPlayInHeldItemSlot
lv PacketPlayInSetCreativeSlot
lw PacketPlayInUpdateSign
lx PacketPlayInArmAnimation
ly PacketPlayInSpectate
lz PacketPlayInUseItem
m CriterionTriggers
ma PacketPlayInBlockPlace
mc PacketHandshakingInSetProtocol
md PacketHandshakingInListener
mf PacketLoginOutListener
mg PacketLoginOutSuccess
mh PacketLoginOutEncryptionBegin
mi PacketLoginOutSetCompression
mj PacketLoginOutDisconnect
mk PacketLoginInListener
ml PacketLoginInStart
mm PacketLoginInEncryptionBegin
mp PacketStatusOutListener
mq PacketStatusOutPong
mr PacketStatusOutServerInfo
ms ServerPing
ms$a ServerPing$ServerPingPlayerSample
ms$a$a ServerPing$ServerPingPlayerSample$Serializer
ms$b ServerPing$Serializer
ms$c ServerPing$ServerData
ms$c$a ServerPing$ServerData$Serializer
mt PacketStatusInListener
mu PacketStatusInPing
mv PacketStatusInStart
mx DataWatcherObject
my DataWatcherSerializer
mz DataWatcherRegistry
n Criterion
na DataWatcher
na$a DataWatcher$Item
nd MinecraftKey
nf DispenseBehaviorProjectile
ng DispenserRegistry
ni ServerCommand
nk DebugOutputStream
nl EULA
nm RedirectStream
nn AdvancementDataPlayer
np CancelledPacketHandleException
nq AdvancementDataWorld
nr CustomFunctionData
ns IMinecraftServer
nt ScoreboardServer
nu PropertyManager
nv ITickable
nw DedicatedPlayerList
nx DedicatedServer
ny ThreadWatchdog
o CriterionProgress
oa ServerGUI
ob PlayerListBox
oc GuiStatsComponent
og DemoWorldServer
oh DemoPlayerInteractManager
oi SecondaryWorldServer
oj EntityTracker
ok BossBattleServer
ol ChunkProviderServer
om WorldServer
om$a WorldServer$BlockActionDataList
on WorldManager
oo EntityPlayer
op PlayerInteractManager
oq EntityTrackerEntry
or PlayerChunk
os PlayerChunkMap
ov LegacyPingHandler
ox ServerConnection
oy PlayerConnection
oz HandshakeListener
p CriterionTrigger
pa LoginListener
pa$a LoginListener$EnumProtocolState
pb PacketStatusListener
pe ExpirableListEntry
pf UserCache
pf$a UserCache$UserCacheEntry
pf$b UserCache$BanEntrySerializer
pg IpBanList
ph IpBanEntry
pi NameReferencingFileConverter
pi$a NameReferencingFileConverter$FileConversionException
pj PlayerList
pk OpList
pl OpListEntry
pm JsonListEntry
pn JsonList
pn$a JsonList$JsonListEntrySerializer
po GameProfileBanList
pp GameProfileBanEntry
pq WhiteList
pr WhiteListEntry
pt RemoteStatusReply
pu StatusChallengeUtils
pv RemoteControlCommandListener
px RemoteConnectionThread
py RemoteStatusListener
py$a RemoteStatusListener$RemoteStatusChallenge
pz RemoteControlSession
q CriterionInstance
qa RemoteControlListener
qc SoundEffect
qd SoundEffects
qe SoundCategory
qh CounterStatistic
qi CraftingStatistic
qj RecipeBook
qk RecipeBookServer
ql ServerStatisticManager
ql ServerStatisticManager#
qm Statistic
qn Counter
qo StatisticWrapper
qp IJsonStatistic
qq StatisticList
qr StatisticManager
qu DataBits
qv EntitySlice
qx RegistryID
qy MinecraftEncryption
r AdvancementDisplay
ra ChatDeserializer
rb HttpUtilities
rc InsensitiveStringMap
re IntHashMap
re$a IntHashMap$IntHashMapEntry
rf LazyInitVar
rh ChatTypeAdapterFactory
ri MathHelper
rj MethodProfiler
rj$a MethodProfiler$ProfilerInfo
rk IProgressUpdate
rm INamable
rn UtilColor
rp Tuple
rq WeightedRandom
rq$a WeightedRandom$WeightedRandomChoice
rs IDataConverter
rt DataConverterType
ru DataConverterTypes
rv DataConverter
rw DataConverterManager
rx DataConverterRegistry
ry DataInspector
rz DataConverterBedBlock
s AdvancementFrameType
sa DataConverterBedItem
sb DataConverterTileEntity
sc DataConverterMobSpawner
sd DataConverterShulkerBoxBlock
se DataConverterSignText
sf DataConverterArmorStand
sg DataConverterGuardian
sh DataConverterEquipment
si DataConverterHealth
sj DataConverterSaddle
sk DataConverterHorse
sl DataConverterEntity
sm DataConverterMinecart
sn DataConverterHanging
so DataConverterDropChances
sp DataConverterRiding
sq DataConverterShulker
sr DataConverterSkeleton
ss DataConverterUUID
st DataConverterZombieType
su DataConverterZombie
sv DataConverterBanner
sw DataConverterCookedFish
sx DataConverterMaterialId
sy DataConverterPotionId
sz DataConverterShulkerBoxItem
t AdvancementTree
ta DataConverterSpawnEgg
tb DataConverterTotem
tc DataConverterPotionWater
td DataConverterBook
te DataConverterVBO
tf DataConverterLang
ti DataInspectorItem
tj DataInspectorBlockEntity
tk DataInspectorEntity
tl DataInspectorItemList
tm DataInspectorTagged
tp IAsyncTaskHandler
tr BossBattle
tr$a BossBattle$BarColor
tr$b BossBattle$BarStyle
ts InventoryLargeChest
tt IInventory
tu ContainerUtil
tv IInventoryListener
tw InventoryUtils
tx EnumDifficulty
ty DifficultyDamageScaler
tz EnumHand
u CriterionInstanceAbstract
ua ITileEntityContainer
ub EnumInteractionResult
uc InteractionResultWrapper
ue ChestLock
uf ITileInventory
ug INamableTileEntity
uh ILootable
ui InventorySubcontainer
uj MojangStatisticsGenerator
uk IMojangStatistics
ul IWorldInventory
um CombatEntry
un CombatMath
uo CombatTracker
up DamageSource
uq EntityDamageSource
ur EntityDamageSourceIndirect
ut MobEffectAbsorption
uu MobEffectAttackDamage
uv MobEffectHealthBoost
uw InstantMobEffect
ux MobEffectList
uy MobEffect
uz MobEffects
v CriterionTriggerBredAnimals
vb EntityAgeable
vc EntityAreaEffectCloud
vd IAnimal
ve Entity
vg EntityTypes
vg$a EntityTypes$MonsterEggInfo
vi IEntitySelector
vi$a IEntitySelector$EntitySelectorEquipable
vj EnumItemSlot
vj$a EnumItemSlot$Function
vk EntityExperienceOrb
vl EntityFlying
vm EnumMainHand
vn EntityLiving
vo EntityInsentient
vo$a EntityInsentient$EnumEntityPositionType
vp EnumCreatureType
vq GroupDataEntity
vr EntityPositionTypes
vs EnumMonsterType
vt EnumMoveType
vu EntityOwnable
vv EntityCreature
vx IJumpable
vz EntityTameableAnimal
w CriterionTriggerBrewedPotion
wa IAttribute
wb AttributeInstance
wc AttributeModifier
wd AttributeBase
we AttributeMapBase
wf AttributeModifiable
wg AttributeMapServer
wh AttributeRanged
wj EntityAIBodyControl
wl ControllerMoveFlying
wm ControllerJump
wn ControllerLook
wo ControllerMove
wo$a ControllerMove$Operation
wq PathfinderGoalAvoidTarget
wr PathfinderGoalBeg
ws PathfinderGoalBreakDoor
wt PathfinderGoalBreed
wu PathfinderGoalDoorInteract
wv PathfinderGoalEatTile
ww PathfinderGoalFleeSun
wx PathfinderGoalFloat
wy PathfinderGoalFollowEntity
wz PathfinderGoalFollowOwnerParrot
x CriterionTriggerChangedDimension
xa PathfinderGoalFollowOwner
xb PathfinderGoalFollowParent
xc PathfinderGoal
xd PathfinderGoalSelector
xd$a PathfinderGoalSelector$PathfinderGoalSelectorItem
xe PathfinderGoalVillagerFarm
xf PathfinderGoalInteract
xg PathfinderGoalPerch
xh PathfinderGoalLeapAtTarget
xi PathfinderGoalLlamaFollow
xj PathfinderGoalLookAtPlayer
xk PathfinderGoalLookAtTradingPlayer
xl PathfinderGoalMakeLove
xm PathfinderGoalMeleeAttack
xn PathfinderGoalMoveIndoors
xo PathfinderGoalMoveThroughVillage
xp PathfinderGoalGotoTarget
xq PathfinderGoalMoveTowardsRestriction
xr PathfinderGoalMoveTowardsTarget
xs PathfinderGoalOcelotAttack
xt PathfinderGoalJumpOnBlock
xu PathfinderGoalOfferFlower
xv PathfinderGoalOpenDoor
xw PathfinderGoalPanic
xx PathfinderGoalPlay
xz PathfinderGoalRandomLookaround
y CriterionTriggerConstructBeacon
ya PathfinderGoalRandomStroll
yb PathfinderGoalArrowAttack
yc PathfinderGoalBowShoot
yd PathfinderGoalRestrictOpenDoor
ye PathfinderGoalRestrictSun
yf PathfinderGoalTame
yg PathfinderGoalSit
yh PathfinderGoalSwell
yi PathfinderGoalTakeFlower
yj PathfinderGoalTempt
yk PathfinderGoalTradeWithPlayer
yl PathfinderGoalInteractVillagers
ym PathfinderGoalRandomFly
yn PathfinderGoalRandomStrollLand
yo PathfinderGoalZombieAttack
yq PathfinderGoalDefendVillage
yr PathfinderGoalHurtByTarget
ys PathfinderGoalNearestAttackableTargetInsentient
yt PathfinderGoalTargetNearestPlayer
yu PathfinderGoalNearestAttackableTarget
yu$a PathfinderGoalNearestAttackableTarget$DistanceComparator
yv PathfinderGoalRandomTargetNonTamed
yw PathfinderGoalOwnerHurtByTarget
yx PathfinderGoalOwnerHurtTarget
yy PathfinderGoalTarget
z CriterionTriggerConsumeItem
za NavigationFlying
zb Navigation
zc NavigationAbstract
zd NavigationListener
ze NavigationSpider
zf NavigationGuardian
zh EntitySenses
zj RandomPositionGenerator
zl VillageDoor
zm Village
zm$a Village$Aggressor
zn VillageSiege
zo PersistentVillage
zq EntityAmbient
zr EntityBat
zt EntityAnimal
zu EntityChicken
zv EntityCow
zw EntityBird
zx EntityGolem
zy EntityMushroomCow
zz EntityOcelot