summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.12-pre2-cl.csrg
blob: ad6dd3bc5bf64399b8b99f827e30dd1cf66fa75b (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
# (c) 2017 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerCuredZombieVillager
aaa EntityPolarBear
aab EntityRabbit
aab$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
aab$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
aab$c EntityRabbit$GroupDataRabbit
aab$d EntityRabbit$ControllerJumpRabbit
aab$e EntityRabbit$ControllerMoveRabbit
aab$f EntityRabbit$PathfinderGoalRabbitPanic
aab$g EntityRabbit$PathfinderGoalEatCarrots
aac EntitySheep
aad EntityPerchable
aae EntitySnowman
aaf EntitySquid
aaf$a EntitySquid$PathfinderGoalSquid
aag EntityIronGolem
aah EntityWaterAnimal
aai EntityWolf
aaj EntityHorseChestedAbstract
aak EntityHorseAbstract
aal EntityHorseDonkey
aam EntityHorse
aan EnumHorseArmor
aao EntityLlama
aap EntityHorseMule
aaq EntityHorseSkeleton
aar PathfinderGoalHorseTrap
aas EntityHorseZombie
aaw IComplex
aax EntityComplexPart
aay EntityEnderCrystal
aaz EntityEnderDragon
ab CriterionConditionDamage
abb AbstractDragonController
abc AbstractDragonControllerLanded
abd DragonControllerCharge
abe DragonControllerDying
abf DragonControllerHold
abg DragonControllerHover
abh DragonControllerLandingFly
abi DragonControllerLanding
abj IDragonController
abk DragonControllerLandedAttack
abl DragonControllerLandedFlame
abm DragonControllerLandedSearch
abn DragonControllerStrafe
abo DragonControllerFly
abp DragonControllerPhase
abq DragonControllerManager
abt EntityWither
abv EntityArmorStand
abw EntityHanging
abx EntityItemFrame
aby EntityLeash
abz EntityPainting
abz$a EntityPainting$EnumArt
ac CriterionConditionDamageSource
acb EntityFishingHook
acb$a EntityFishingHook$HookState
acd EntityWeather
ace EntityLightning
acg EntityFallingBlock
ach EntityItem
aci EntityTNTPrimed
ack EntityIllagerAbstract
acl EntitySkeletonAbstract
acm EntityBlaze
acm$a EntityBlaze$PathfinderGoalBlazeFireball
acn EntityCaveSpider
aco EntityCreeper
acp EntityGuardianElder
acq EntityEnderman
acq$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
acq$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
acq$c EntityEnderman$PathfinderGoalEndermanPickupBlock
acr EntityEndermite
acs IMonster
act EntityEvoker
acu EntityGhast
acu$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
acu$b EntityGhast$ControllerGhast
acu$c EntityGhast$PathfinderGoalGhastAttackTarget
acu$d EntityGhast$PathfinderGoalGhastIdleMove
acv EntityGiantZombie
acw EntityGuardian
acw$a EntityGuardian$PathfinderGoalGuardianAttack
acw$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
acw$c EntityGuardian$ControllerMoveGuardian
acx EntityZombieHusk
acy EntityIllagerIllusioner
acz EntityMagmaCube
ad CriterionConditionDistance
ada EntityMonster
adb EntityPigZombie
adb$a EntityPigZombie$PathfinderGoalAnger
adb$b EntityPigZombie$PathfinderGoalAngerOther
adc IRangedEntity
add GenericAttributes
ade EntityShulker
adf EntitySilverfish
adf$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
adf$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
adg EntitySkeleton
adh EntitySlime
adh$a EntitySlime$PathfinderGoalSlimeNearestPlayer
adh$b EntitySlime$PathfinderGoalSlimeRandomJump
adh$c EntitySlime$PathfinderGoalSlimeIdle
adh$d EntitySlime$ControllerMoveSlime
adh$e EntitySlime$PathfinderGoalSlimeRandomDirection
adi EntityIllagerWizard
adi$a EntityIllagerWizard$Spell
adj EntitySpider
adj$a EntitySpider$PathfinderGoalSpiderMeleeAttack
adj$b EntitySpider$GroupDataSpider
adj$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
adk EntitySkeletonStray
adl EntityVex
adm EntityVindicator
adn EntityWitch
ado EntitySkeletonWither
adp EntityZombie
adp$a EntityZombie$GroupDataZombie
adq EntityZombieVillager
adt NPC
adu EntityVillager
adu$a EntityVillager$MerchantRecipeOptionBuy
adu$b EntityVillager$MerchantRecipeOptionBook
adu$c EntityVillager$MerchantRecipeOptionEnchant
adu$d EntityVillager$MerchantRecipeOptionProcess
adu$e EntityVillager$MerchantRecipeOptionSell
adu$f EntityVillager$IMerchantRecipeOption
adu$g EntityVillager$MerchantOptionRandomRange
adx PlayerAbilities
ady PlayerInventory
adz EntityHuman
adz$a EntityHuman$EnumBedResult
adz$b EntityHuman$EnumChatVisibility
ae CriterionTriggerEffectsChanged
aec EntityArrow
aec$a EntityArrow$PickupStatus
aed EntityDragonFireball
aee EntityEvokerFangs
aef EntityEnderSignal
aeg EntityFireball
aeh EntityFireworks
aei EntityLargeFireball
aej EntityLlamaSpit
aek IProjectile
ael ProjectileHelper
aem EntityShulkerBullet
aen EntitySmallFireball
aeo EntitySnowball
aep EntitySpectralArrow
aeq EntityProjectile
aer EntityEgg
aes EntityEnderPearl
aet EntityThrownExpBottle
aeu EntityPotion
aev EntityTippedArrow
aew EntityWitherSkull
aey EntityBoat
aey$a EntityBoat$EnumStatus
aey$b EntityBoat$EnumBoatType
aez EntityMinecartAbstract
aez$a EntityMinecartAbstract$EnumMinecartType
af CriterionTriggerEnchantedItem
afa EntityMinecartChest
afb EntityMinecartCommandBlock
afc EntityMinecartContainer
afd EntityMinecartFurnace
afe EntityMinecartHopper
aff EntityMinecartRideable
afg EntityMinecartMobSpawner
afh EntityMinecartTNT
afk FoodMetaData
afm Container
afn ContainerAnvil
afo ContainerBeacon
afo$a ContainerBeacon$SlotBeacon
afp ContainerBrewingStand
afp$b ContainerBrewingStand$SlotBrewing
afp$c ContainerBrewingStand$SlotPotionBottle
afq ContainerChest
afr InventoryClickType
afs ICrafting
aft InventoryCrafting
afu ContainerWorkbench
afv ContainerDispenser
afw ContainerEnchantTable
afx SlotFurnaceFuel
afy ContainerFurnace
afz SlotFurnaceResult
ag CriterionConditionEnchantments
aga ContainerHopper
agb InventoryHorseChest
agc ContainerHorse
agd ContainerPlayer
age InventoryMerchant
agf ContainerMerchant
agg SlotMerchantResult
agh InventoryEnderChest
agi InventoryCraftResult
agj SlotResult
agk ContainerShulkerBox
agl SlotShulkerBox
agm Slot
ago ItemAir
agp ItemAnvil
agq ItemArmor
agq$a ItemArmor$EnumArmorMaterial
agr ItemArmorStand
ags ItemArrow
agt ItemAxe
agu ItemBanner
agv ItemBed
agw ItemBlock
agx ItemReed
agy ItemBoat
agz ItemBook
ah CriterionTriggerEnterBlock
aha ItemGlassBottle
ahb ItemBow
ahc ItemSoup
ahd ItemBucket
ahe ItemCarrotStick
ahf ItemChorusFruit
ahg ItemClock
ahh ItemCoal
ahi ItemCompass
ahj ItemWorldMapBase
ahk CreativeModeTab
ahl ItemTool
ahm ItemDoor
ahn EnumColor
aho ItemDye
ahp ItemCloth
ahq ItemEgg
ahr ItemElytra
ahs ItemMapEmpty
aht ItemEnchantedBook
ahu ItemEndCrystal
ahv ItemEnderEye
ahw ItemEnderPearl
ahx ItemExpBottle
ahy ItemFireball
ahz ItemFireworksCharge
ai CriterionTriggerEntityHurtPlayer
aia ItemFireworks
aib ItemFish
aib$a ItemFish$EnumFish
aic ItemFishingRod
aid ItemFlintAndSteel
aie ItemFood
aif ItemGoldenApple
aig ItemHanging
aih ItemHoe
aii Item
aii$a Item$EnumToolMaterial
aij ItemCooldown
aij$a ItemCooldown$Info
aik ItemStack
ail IDynamicTexture
aim Items
ain ItemKnowledgeBook
aio ItemLeash
aip ItemLeaves
aiq ItemLingeringPotion
air ItemWorldMap
ais ItemMilkBucket
ait ItemMinecart
aiu ItemMultiTexture
aiv ItemNameTag
aiw ItemPickaxe
aix ItemPiston
aiy ItemPotion
aiz EnumItemRarity
aj CriterionConditionEntity
aja ItemRecord
ajb ItemRedstone
ajc ItemSaddle
ajd ItemSeedFood
aje ItemSeeds
ajf ItemCooldownPlayer
ajg ItemShears
ajh ItemShield
aji ItemSpade
ajj ItemShulkerBox
ajk ItemSign
ajl ItemNetherStar
ajm ItemSkull
ajn ItemStep
ajo ItemSnow
ajp ItemSnowball
ajq ItemMonsterEgg
ajr ItemSpectralArrow
ajs ItemSplashPotion
ajt ItemSword
aju ItemWithAuxData
ajv ItemTippedArrow
ajw EnumAnimation
ajx ItemWaterLily
ajy ItemBookAndQuill
ajz ItemWrittenBook
ak CriterionTriggerImpossible
aka PotionRegistry
akb PotionBrewer
akb$a PotionBrewer$PredicatedCombination
akc PotionUtil
akd Potions
akf RecipeArmorDye
akg RecipesBanner
akg$a RecipesBanner$AddRecipe
akg$b RecipesBanner$DuplicateRecipe
akh RecipeBookClone
aki RecipeFireworks
akj RecipesFurnace
akk RecipeItemStack
akl RecipeMapClone
akm RecipeMapExtend
akn IRecipe
ako CraftingManager
akp RecipeRepair
akq ShapedRecipes
akr ShapelessRecipes
aks RecipiesShield
aks$a RecipiesShield$Decoration
akt RecipeShulkerBox
akt$a RecipeShulkerBox$Dye
aku RecipeTippedArrow
akw EnchantmentArrowDamage
akx EnchantmentFlameArrows
aky EnchantmentInfiniteArrows
akz EnchantmentArrowKnockback
al CriterionTriggerInventoryChanged
ala EnchantmentBinding
alb EnchantmentWeaponDamage
alc EnchantmentDurability
ald EnchantmentDigging
ale Enchantment
ale$a Enchantment$Rarity
alf EnchantmentSlotType
alg EnchantmentManager
alg$a EnchantmentManager$EnchantmentModifierArthropods
alg$b EnchantmentManager$EnchantmentModifierThorns
alg$c EnchantmentManager$EnchantmentModifier
alg$d EnchantmentManager$EnchantmentModifierDamage
alg$e EnchantmentManager$EnchantmentModifierProtection
alh WeightedRandomEnchant
ali Enchantments
alj EnchantmentFire
alk EnchantmentLure
all EnchantmentFrostWalker
alm EnchantmentKnockback
aln EnchantmentLootBonus
alo EnchantmentMending
alp EnchantmentOxygen
alq EnchantmentProtection
alq$a EnchantmentProtection$DamageType
alr EnchantmentSweeping
als EnchantmentThorns
alt EnchantmentSilkTouch
alu EnchantmentVanishing
alv EnchantmentDepthStrider
alw EnchantmentWaterWorker
alz IMerchant
am CriterionTriggerItemDurabilityChanged
ama MerchantRecipe
amb MerchantRecipeList
amd CommandBlockListenerAbstract
ame MobSpawnerAbstract
amf BlockActionData
amh ChunkCoordIntPair
amj Explosion
aml GameRules
aml$a GameRules$GameRuleValue
aml$b GameRules$EnumGameRuleType
amm EnumGamemode
amo World
amp ExceptionWorldConflict
amq IWorldAccess
amr WorldSettings
ams IBlockAccess
amt WorldType
amu EnumSkyBlock
amv SpawnerCreature
amw PortalTravelAgent
amw$a PortalTravelAgent$ChunkCoordinatesPortal
amx ChunkCache
amy MobSpawnerData
amz NextTickListEntry
an CriterionConditionItem
ana BiomeBeach
anb BiomeBase
anb$b BiomeBase$EnumTemperature
anb$c BiomeBase$BiomeMeta
anc BiomeCache
ane BiomeDecorator
anf WorldChunkManager
ang Biomes
ani BiomeDesert
anj BiomeBigHills
anj$a BiomeBigHills$Type
ank WorldChunkManagerHell
anl BiomeForest
anl$a BiomeForest$Type
anm BiomeHell
ann BiomeDecoratorHell
ano BiomeIcePlains
anp BiomeJungle
anq BiomeMesa
anr BiomeMushrooms
ans BiomeForestMutated
ant BiomeSavannaMutated
anu BiomeOcean
anv BiomePlains
anw BiomeRiver
anx BiomeSavanna
any BiomeStoneBeach
anz BiomeSwamp
ao CriterionTriggerKilled
aoa BiomeTaiga
aoa$a BiomeTaiga$Type
aob BiomeTheEnd
aoc BiomeTheEndDecorator
aoc$a BiomeTheEndDecorator$SpikeCache
aod BiomeVoid
aoe BiomeVoidDecorator
aog BlockAir
aoh BlockAnvil
aoh$a BlockAnvil$TileEntityContainerAnvil
aoi BlockBanner
aoi$a BlockBanner$BlockStandingBanner
aoi$b BlockBanner$BlockWallBanner
aoj BlockBarrier
aok BlockTileEntity
aol BlockPressurePlateAbstract
aom BlockMinecartTrackAbstract
aom$a BlockMinecartTrackAbstract$MinecartTrackLogic
aom$b BlockMinecartTrackAbstract$EnumTrackPosition
aon BlockBeacon
aoo BlockBed
aoo$a BlockBed$EnumBedPart
aop BlockBeetroot
aoq Block
aoq$a Block$EnumRandomOffset
aor Blocks
aos BlockBone
aot IBlockFragilePlantElement
aou BlockBookshelf
aov BlockBrewingStand
aow BlockPlant
aox BlockButtonAbstract
aoy BlockCactus
aoz BlockCake
ap CriterionTriggerLevitation
apa BlockCarrots
apb BlockCauldron
apc BlockChest
apc$a BlockChest$Type
apd BlockChorusFlower
ape BlockChorusFruit
apf BlockClay
apg BlockCocoa
aph BlockCloth
api BlockCommand
apj BlockRedstoneComparator
apj$a BlockRedstoneComparator$EnumComparatorMode
apk BlockConcretePowder
apl BlockWorkbench
apl$a BlockWorkbench$TileEntityContainerWorkbench
apm BlockCrops
apn BlockDaylightDetector
apo BlockDeadBush
app BlockMinecartDetector
apq BlockDiodeAbstract
apr BlockDirectional
aps BlockDirt
aps$a BlockDirt$EnumDirtVariant
apt BlockDispenser
apu BlockDoor
apu$a BlockDoor$EnumDoorHalf
apu$b BlockDoor$EnumDoorHinge
apv BlockTallPlant
apv$a BlockTallPlant$EnumTallPlantHalf
apv$b BlockTallPlant$EnumTallFlowerVariants
apw BlockDragonEgg
apx BlockDropper
apy BlockFlowing
apz BlockEnchantmentTable
aq CriterionConditionLocation
aqa BlockEndGateway
aqb BlockEnderPortal
aqc BlockEnderPortalFrame
aqd BlockEndRod
aqe BlockEnderChest
aqf ITileEntity
aqg BlockFalling
aqh BlockSoil
aqi BlockFence
aqj BlockFenceGate
aqk BlockFire
aql BlockFlowers
aql$a BlockFlowers$EnumFlowerVarient
aql$b BlockFlowers$EnumFlowerType
aqm BlockFlowerPot
aqm$a BlockFlowerPot$EnumFlowerPotContents
aqn BlockIceFrost
aqo BlockDoubleStoneStep2
aqp BlockDoubleStep
aqq BlockDoubleWoodStep
aqr BlockFurnace
aqs BlockGlass
aqt BlockGlazedTerracotta
aqu BlockLightStone
aqv BlockGrass
aqw BlockGrassPath
aqx BlockGravel
aqy BlockStoneStep2
aqz BlockStepAbstract
aqz$a BlockStepAbstract$EnumSlabHalf
ar CriterionTriggerLocation
ara BlockStep
arb BlockHalfTransparent
arc BlockWoodStep
ard BlockHardenedClay
are BlockHay
arf BlockHopper
arg BlockFacingHorizontal
arh BlockHugeMushroom
arh$a BlockHugeMushroom$EnumHugeMushroomVariant
ari BlockIce
arj BlockJukeBox
arj$a BlockJukeBox$TileEntityRecordPlayer
ark BlockLadder
arl BlockLeaves
arn BlockLever
arn$a BlockLever$EnumLeverPosition
aro BlockFluids
arp BlockLogAbstract
arp$a BlockLogAbstract$EnumLogRotation
arq BlockMagma
arr BlockMelon
ars EnumBlockMirror
art BlockMobSpawner
aru BlockMonsterEggs
aru$a BlockMonsterEggs$EnumMonsterEggVarient
arv BlockMushroom
arw BlockMycel
arx BlockNetherbrick
ary BlockNetherWart
arz BlockBloodStone
as CriterionConditionValue
asa BlockLeaves2
asb BlockLog2
asc BlockDoubleStoneStepAbstract
asc$a BlockDoubleStoneStepAbstract$EnumStoneSlab2Variant
asd BlockNoDrop
ase BlockNote
asf BlockObserver
asg BlockObsidian
ash BlockLeaves1
asi BlockLog1
asj BlockOre
ask BlockPackedIce
asl BlockWood
asl$a BlockWood$EnumLogVariant
asm BlockPortal
asm$a BlockPortal$Shape
asn BlockPotatoes
aso BlockPowered
asp BlockPoweredRail
asq BlockPressurePlateBinary
asq$a BlockPressurePlateBinary$EnumMobType
asr BlockPrismarine
asr$a BlockPrismarine$EnumPrismarineVariant
ass BlockPumpkin
ast BlockPurpurSlab
ast$a BlockPurpurSlab$Default
ast$b BlockPurpurSlab$Half
ast$c BlockPurpurSlab$Type
asu BlockQuartz
asu$a BlockQuartz$EnumQuartzVariant
asv BlockMinecartTrack
asw BlockRedFlowers
asx BlockRedSandstone
asx$a BlockRedSandstone$EnumRedSandstoneVariant
asy BlockRedstoneOre
asz BlockRedstoneWire
asz$a BlockRedstoneWire$EnumRedstoneWireConnection
at CriterionConditionMobEffect
ata BlockRedstoneLamp
atb BlockRedstoneTorch
atb$a BlockRedstoneTorch$RedstoneUpdateInfo
atc BlockReed
atd EnumRenderType
ate BlockRepeater
atf BlockRotatable
atg EnumBlockRotation
ath BlockSand
ath$a BlockSand$EnumSandVariant
ati BlockSandStone
ati$a BlockSandStone$EnumSandstoneVariant
atj BlockSapling
atk BlockSeaLantern
atl BlockShulkerBox
atm BlockSign
atn BlockSkull
ato BlockSlime
atp BlockSnowBlock
atq BlockSnow
atr BlockSlowSand
ats SoundEffectType
att BlockSponge
atu BlockStainedGlass
atv BlockStainedGlassPane
atw BlockStainedHardenedClay
atx BlockStairs
atx$a BlockStairs$EnumHalf
atx$b BlockStairs$EnumStairShape
aty BlockFloorSign
atz BlockStationary
au CriterionConditionNBT
aua BlockStem
aub BlockStone
aub$a BlockStone$EnumStoneVariant
auc BlockSmoothBrick
auc$a BlockSmoothBrick$EnumStonebrickType
aud BlockStoneButton
aue BlockDoubleStepAbstract
aue$a BlockDoubleStepAbstract$EnumStoneSlabVariant
auf BlockStructure
aug BlockStructureVoid
auh BlockLongGrass
auh$a BlockLongGrass$EnumTallGrassType
aui BlockThin
auj BlockTNT
auk BlockTorch
aul BlockTrapdoor
aul$a BlockTrapdoor$EnumTrapdoorHalf
aum BlockTripwire
aun BlockTripwireHook
auo BlockVine
aup BlockCobbleWall
aup$a BlockCobbleWall$EnumCobbleVariant
auq BlockWallSign
aur BlockWaterLily
aus BlockWeb
aut BlockPressurePlateWeighted
auu BlockWoodButton
auv BlockWoodenStep
auw BlockCarpet
auy BlockYellowFlowers
auz TileEntityBanner
av CriterionTriggerNetherTravel
ava EnumBannerPatternType
avb TileEntityBeacon
avb$a TileEntityBeacon$BeaconColorTracker
avc TileEntityBed
avd TileEntity
ave TileEntityBrewingStand
avf TileEntityChest
avg TileEntityCommand
avg$a TileEntityCommand$Type
avh TileEntityComparator
avi TileEntityLightDetector
avj TileEntityDispenser
avk TileEntityDropper
avl TileEntityEnchantTable
avm TileEntityEnderChest
avn TileEntityFlowerPot
avo TileEntityFurnace
avp IHopper
avq TileEntityHopper
avr TileEntityContainer
avs TileEntityMobSpawner
avt TileEntityNote
avu TileEntityLootable
avv TileEntityShulkerBox
avv$a TileEntityShulkerBox$AnimationPhase
avw TileEntitySign
avx TileEntitySkull
avy TileEntityStructure
avy$a TileEntityStructure$UsageMode
avz TileEntityEndGateway
aw CriterionTriggerPlacedBlock
awa TileEntityEnderPortal
awd BlockPiston
awe BlockPistonExtension
awe$a BlockPistonExtension$EnumPistonType
awf BlockPistonMoving
awg TileEntityPiston
awh PistonExtendsChecker
awj BlockDataAbstract
awk IBlockPhysics
awl EnumBlockFaceShape
awm IBlockProperties
awn IBlockData
awo BlockStateList
awo$a BlockStateList$BlockData
awq ShapeDetectorBlock
awr ShapeDetector
awr$a ShapeDetector$BlockLoader
awr$b ShapeDetector$ShapeDetectorCollection
aws ShapeDetectorBuilder
awu MaterialPredicate
awv BlockPredicate
aww BlockStatePredicate
awy BlockState
awz BlockStateBoolean
ax CriterionTriggerPlayerHurtEntity
axa BlockStateDirection
axb BlockStateEnum
axc BlockStateInteger
axd IBlockState
axf IWorldBorderListener
axg EnumWorldBorderState
axh WorldBorder
axj DataPaletteBlock
axk ChunkGenerator
axl IChunkProvider
axm NibbleArray
axo DataPaletteGlobal
axp DataPaletteHash
axq Chunk
axq$a Chunk$EnumTileEntityState
axr ChunkSection
axs DataPaletteLinear
axt OldNibbleArray
axu DataPalette
axv DataPaletteExpandable
axy ChunkRegionLoader
axz IChunkLoader
ay CriterionTriggerRecipeUnlocked
ayc OldChunkLoader
ayc$a OldChunkLoader$OldChunk
ayd RegionFile
ayd$a RegionFile$ChunkBuffer
aye RegionFileCache
ayg WorldProvider
ayh DimensionManager
ayi WorldProviderHell
ayj WorldProviderNormal
ayk EnumDragonRespawn
ayl EnderDragonBattle
aym WorldProviderTheEnd
ayp WorldGenCanyon
ayq ChunkSnapshot
ayr CustomWorldSettingsFinal
ayr$a CustomWorldSettingsFinal$CustomWorldSettings
ayr$b CustomWorldSettingsFinal$CustomWorldSettingsSerializer
ays ChunkProviderDebug
ayt ChunkProviderFlat
ayu WorldGenCaves
ayv WorldGenBase
ayw WorldGenCavesHell
ayx ChunkProviderHell
ayy ChunkProviderGenerate
ayz ChunkProviderTheEnd
az CriterionTriggerSummonedEntity
aza WorldGenTreeAbstract
azb WorldGenBigTree
azb$a WorldGenBigTree$Position
azc WorldGenForest
azd WorldGenTaigaStructure
aze WorldGenBonusChest
azf WorldGenMushrooms
azg WorldGenCactus
azh WorldGenClay
azi WorldGenDeadBush
azj WorldGenDesertWell
azk WorldGenTallPlant
azl WorldGenEndGateway
azm WorldGenEndIsland
azn WorldGenEndTrophy
azo WorldGenerator
azp WorldGenFlowers
azq WorldGenFossils
azr WorldGenGroundBush
azs WorldGenFire
azt WorldGenLightStone2
azu WorldGenHellLava
azv WorldGenHugeMushroom
azw WorldGenPackedIce1
azx WorldGenPackedIce2
azy WorldGenLakes
azz WorldGenLightStone1
b CrashReport
ba CriterionTriggerTamedAnimal
baa WorldGenJungleTree
bab WorldGenMegaTree
bac WorldGenMegaTreeAbstract
bad WorldGenMelon
bae WorldGenDungeons
baf WorldGenMinable
bag WorldGenTaiga1
bah WorldGenPumpkin
bai WorldGenReed
baj WorldGenForestTree
bak WorldGenSand
bal WorldGenAcaciaTree
bam WorldGenEnder
bam$a WorldGenEnder$Spike
ban WorldGenLiquids
bao WorldGenTaiga2
bap WorldGenSwampTree
baq WorldGenGrass
bar WorldGenTrees
bas WorldGenVines
bat WorldGenWaterLily
bav WorldGenFlatInfo
baw WorldGenFlatLayerInfo
bb CriterionTriggerTick
bba StructureBoundingBox
bbb WorldGenEndCity
bbb$a WorldGenEndCity$Start
bbc WorldGenEndCityPieces
bbc$a WorldGenEndCityPieces$Piece
bbc$b WorldGenEndCityPieces$PieceGenerator
bbd WorldGenMineshaft
bbd$a WorldGenMineshaft$Type
bbe WorldGenMineshaftPieces
bbe$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bbe$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bbe$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bbe$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bbf WorldGenMineshaftStart
bbg WorldGenNether
bbg$a WorldGenNether$WorldGenNetherStart
bbh WorldGenNetherPieces
bbh$a WorldGenNetherPieces$WorldGenNetherPiece1
bbh$b WorldGenNetherPieces$WorldGenNetherPiece2
bbh$c WorldGenNetherPieces$WorldGenNetherPiece3
bbh$d WorldGenNetherPieces$WorldGenNetherPiece4
bbh$e WorldGenNetherPieces$WorldGenNetherPiece5
bbh$f WorldGenNetherPieces$WorldGenNetherPiece6
bbh$g WorldGenNetherPieces$WorldGenNetherPiece7
bbh$h WorldGenNetherPieces$WorldGenNetherPiece8
bbh$i WorldGenNetherPieces$WorldGenNetherPiece9
bbh$j WorldGenNetherPieces$WorldGenNetherPiece10
bbh$k WorldGenNetherPieces$WorldGenNetherPiece11
bbh$l WorldGenNetherPieces$WorldGenNetherPiece12
bbh$m WorldGenNetherPieces$WorldGenNetherPiece
bbh$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bbh$o WorldGenNetherPieces$WorldGenNetherPiece13
bbh$p WorldGenNetherPieces$WorldGenNetherPiece14
bbh$q WorldGenNetherPieces$WorldGenNetherPiece15
bbi WorldGenMonument
bbi$a WorldGenMonument$WorldGenMonumentStart
bbj WorldGenMonumentPieces
bbj$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bbj$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bbj$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bbj$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bbj$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bbj$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bbj$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bbj$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bbj$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bbj$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bbj$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bbj$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bbj$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bbj$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bbj$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bbj$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bbj$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bbj$r WorldGenMonumentPieces$WorldGenMonumentPiece
bbj$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bbj$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bbj$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bbj$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bbk WorldGenLargeFeature
bbk$a WorldGenLargeFeature$WorldGenLargeFeatureStart
bbl WorldGenRegistration
bbl$a WorldGenRegistration$WorldGenPyramidPiece
bbl$c WorldGenRegistration$WorldGenJungleTemple
bbl$c$a WorldGenRegistration$WorldGenJungleTemple$WorldGenJungleTemplePiece
bbl$d WorldGenRegistration$WorldGenScatteredPiece
bbl$e WorldGenRegistration$WorldGenWitchHut
bbm WorldGenStronghold
bbm$a WorldGenStronghold$WorldGenStronghold2Start
bbn WorldGenStrongholdPieces
bbn$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bbn$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bbn$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bbn$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bbn$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bbn$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bbn$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bbn$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bbn$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bbn$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bbn$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bbn$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bbn$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bbn$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bbn$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bbn$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bbn$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bbo StructureGenerator
bbp WorldGenFactory
bbq PersistentStructure
bbr StructurePiece
bbr$a StructurePiece$StructurePieceBlockSelector
bbs StructureStart
bbt DefinedStructurePiece
bbu WorldGenVillage
bbu$a WorldGenVillage$WorldGenVillageStart
bbv WorldGenVillagePieces
bbv$a WorldGenVillagePieces$WorldGenVillageLibrary
bbv$b WorldGenVillagePieces$WorldGenVillageFarm2
bbv$c WorldGenVillagePieces$WorldGenVillageFarm
bbv$d WorldGenVillagePieces$WorldGenVillageLight
bbv$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bbv$f WorldGenVillagePieces$WorldGenVillageButcher
bbv$g WorldGenVillagePieces$WorldGenVillageHouse
bbv$h WorldGenVillagePieces$WorldGenVillageHut
bbv$i WorldGenVillagePieces$WorldGenVillageTemple
bbv$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bbv$k WorldGenVillagePieces$WorldGenVillageStartPiece
bbv$l WorldGenVillagePieces$WorldGenVillageRoad
bbv$m WorldGenVillagePieces$WorldGenVillageHouse2
bbv$n WorldGenVillagePieces$WorldGenVillagePiece
bbv$o WorldGenVillagePieces$WorldGenVillageRoadPiece
bbv$p WorldGenVillagePieces$WorldGenVillageWell
bbw WorldGenWoodlandMansion
bbx WorldGenWoodlandMansionPieces
bbz DefinedStructureProcessorRotation
bc CriterionTriggerVillagerTrade
bca DefinedStructureManager
bcb DefinedStructureInfo
bcc DefinedStructureProcessor
bcd DefinedStructure
bcd$b DefinedStructure$BlockInfo
bcd$c DefinedStructure$EntityInfo
bci NoiseGeneratorPerlin
bcj NoiseGeneratorOctaves
bck NoiseGenerator3
bcn NoiseGenerator3Handler
bco NoiseGenerator
bcq MaterialDecoration
bcr MaterialGas
bcs MaterialLiquid
bct Material
bcu MaterialMapColor
bcv MaterialPortal
bcw EnumPistonReaction
bcy GenLayerDeepOcean
bcz GenLayerSpecial
bcz$a GenLayerSpecial$EnumGenLayerSpecial
bd CriterionTriggerUsedEnderEye
bda GenLayerIsland
bdb GenLayerMushroomIsland
bdc GenLayerTopSoil
bdd GenLayerDesert
bde GenLayerBiome
bdg GenLayerZoomFuzzy
bdi IntCache
bdj LayerIsland
bdk GenLayer
bdl GenLayerPlains
bdm GenLayerRegionHills
bdn GenLayerIcePlains
bdo GenLayerCleaner
bdp GenLayerRiver
bdq GenLayerRiverMix
bdr GenLayerMushroomShore
bds GenLayerSmooth
bdw GenLayerZoomVoronoi
bdx GenLayerZoom
be CriterionTriggerUsedTotem
bea Path
beb PathType
bec PathfinderFlying
bed PathPoint
bee PathfinderAbstract
bef PathEntity
beg Pathfinder
beh PathfinderWater
bei PathfinderNormal
bem RunnableSaveScoreboard
ben PersistentBase
beo MapIcon
beo$a MapIcon$Type
bep WorldMap
bep$a WorldMap$WorldMapHumanTracker
bes ServerNBTManager
bet WorldLoaderServer
beu SecondaryWorldData
bev WorldNBTStorage
bew WorldLoader
bex WorldData
bey IDataManager
bfa Convertable
bfe IPlayerFileData
bfg PersistentCollection
bfh LootTables
bfi LootSelectorEmpty
bfj LootItem
bfk LootSelector
bfl LotoSelectorEntry
bfm LootTable
bfn LootTableInfo
bfn$b LootTableInfo$EntityTarget
bfo LootSelectorLootTable
bfp LootTableRegistry
bfq LootValueBounds
bfr LootItemFunctionEnchant
bfs LootEnchantLevel
bft LootItemFunction
bfu LootItemFunctions
bfv LootEnchantFunction
bfw LootItemFunctionSetAttribute
bfx LootItemFunctionSetCount
bfy LootItemFunctionSetDamage
bfz LootItemFunctionSetData
bga LootItemFunctionSetTag
bgb LootItemFunctionSmelt
bge LootItemConditionEntityScore
bgf LootItemCondition
bgg LootItemConditions
bgh LootItemConditionEntityProperty
bgi LootItemConditionKilledByPlayer
bgj LootItemConditionRandomChance
bgk LootItemConditionRandomChanceWithLooting
bgm LootEntityProperties
bgn LootEntityProperty
bgo LootEntityPropertyOnFire
bgr FileIOThread
bgs IAsyncChunkSaver
bgv AxisAlignedBB
bgw MovingObjectPosition
bgw$a MovingObjectPosition$EnumMovingObjectType
bgy Vec3D
bh ICommandDispatcher
bha ScoreboardObjective
bhb ScoreboardTeam
bhc ScoreboardScore
bhe Scoreboard
bhf PersistentScoreboard
bhg ScoreboardTeamBase
bhg$a ScoreboardTeamBase$EnumTeamPush
bhg$b ScoreboardTeamBase$EnumNameTagVisibility
bhh ScoreboardCriteriaInteger
bhi ScoreboardBaseCriteria
bhj ScoreboardHealthCriteria
bhk IScoreboardCriteria
bhk$a IScoreboardCriteria$EnumScoreboardHealthDisplay
bhl ScoreboardReadOnlyCriteria
bhm 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
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 PacketPlayOutWorldBorder
jx$a PacketPlayOutWorldBorder$EnumWorldBorderAction
jy PacketPlayOutCamera
jz PacketPlayOutHeldItemSlot
k AdvancementProgress
ka PacketPlayOutScoreboardDisplayObjective
kb PacketPlayOutEntityMetadata
kc PacketPlayOutAttachEntity
kd PacketPlayOutEntityVelocity
ke PacketPlayOutEntityEquipment
kf PacketPlayOutExperience
kg PacketPlayOutUpdateHealth
kh PacketPlayOutScoreboardObjective
ki PacketPlayOutMount
kj PacketPlayOutScoreboardTeam
kk PacketPlayOutScoreboardScore
kk$a PacketPlayOutScoreboardScore$EnumScoreboardAction
kl PacketPlayOutSpawnPosition
km PacketPlayOutUpdateTime
kn PacketPlayOutTitle
kn$a PacketPlayOutTitle$EnumTitleAction
ko PacketPlayOutNamedSoundEffect
kp PacketPlayOutPlayerListHeaderFooter
kq PacketPlayOutCollect
kr PacketPlayOutEntityTeleport
ks PacketPlayOutAdvancements
kt PacketPlayOutUpdateAttributes
kt$a PacketPlayOutUpdateAttributes$AttributeSnapshot
ku PacketPlayOutEntityEffect
kv PacketListenerPlayIn
kw PacketPlayInTeleportAccept
kx PacketPlayInAutoRecipe
ky PacketPlayInTabComplete
kz PacketPlayInChat
l AdvancementRewards
la PacketPlayInClientCommand
la$a PacketPlayInClientCommand$EnumClientCommand
lb PacketPlayInSettings
lc PacketPlayInTransaction
ld PacketPlayInEnchantItem
le PacketPlayInWindowClick
lf PacketPlayInCloseWindow
lg PacketPlayInCustomPayload
lh PacketPlayInUseEntity
lh$a PacketPlayInUseEntity$EnumEntityUseAction
li PacketPlayInKeepAlive
lj PacketPlayInFlying
lj$a PacketPlayInFlying$PacketPlayInPosition
lj$b PacketPlayInFlying$PacketPlayInPositionLook
lj$c PacketPlayInFlying$PacketPlayInLook
lk PacketPlayInVehicleMove
ll PacketPlayInBoatMove
lm PacketPlayInAbilities
ln PacketPlayInBlockDig
ln$a PacketPlayInBlockDig$EnumPlayerDigType
lo PacketPlayInEntityAction
lo$a PacketPlayInEntityAction$EnumPlayerAction
lp PacketPlayInSteerVehicle
lq PacketPlayInRecipeDisplayed
lr PacketPlayInResourcePackStatus
lr$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
ls PacketPlayInHeldItemSlot
lt PacketPlayInSetCreativeSlot
lu PacketPlayInUpdateSign
lv PacketPlayInArmAnimation
lw PacketPlayInSpectate
lx PacketPlayInUseItem
ly PacketPlayInBlockPlace
m CriterionTriggers
ma PacketHandshakingInSetProtocol
mb PacketHandshakingInListener
md PacketLoginOutListener
me PacketLoginOutSuccess
mf PacketLoginOutEncryptionBegin
mg PacketLoginOutSetCompression
mh PacketLoginOutDisconnect
mi PacketLoginInListener
mj PacketLoginInStart
mk PacketLoginInEncryptionBegin
mn PacketStatusOutListener
mo PacketStatusOutPong
mp PacketStatusOutServerInfo
mq ServerPing
mq$a ServerPing$ServerPingPlayerSample
mq$a$a ServerPing$ServerPingPlayerSample$Serializer
mq$b ServerPing$Serializer
mq$c ServerPing$ServerData
mq$c$a ServerPing$ServerData$Serializer
mr PacketStatusInListener
ms PacketStatusInPing
mt PacketStatusInStart
mv DataWatcherObject
mw DataWatcherSerializer
mx DataWatcherRegistry
my DataWatcher
my$a DataWatcher$Item
n Criterion
nb MinecraftKey
nd DispenseBehaviorProjectile
ne DispenserRegistry
ng ServerCommand
ni DebugOutputStream
nj EULA
nk RedirectStream
nl AdvancementDataPlayer
nn CancelledPacketHandleException
no AdvancementDataWorld
np CustomFunctionData
nq IMinecraftServer
nr ScoreboardServer
ns PropertyManager
nt ITickable
nu DedicatedPlayerList
nv DedicatedServer
nw ThreadWatchdog
ny ServerGUI
nz PlayerListBox
o CriterionProgress
oa GuiStatsComponent
oe DemoWorldServer
of DemoPlayerInteractManager
og SecondaryWorldServer
oh EntityTracker
oi BossBattleServer
oj ChunkProviderServer
ok WorldServer
ok$a WorldServer$BlockActionDataList
ol WorldManager
om EntityPlayer
on PlayerInteractManager
oo EntityTrackerEntry
op PlayerChunk
oq PlayerChunkMap
ot LegacyPingHandler
ov ServerConnection
ow PlayerConnection
ox HandshakeListener
oy LoginListener
oy$a LoginListener$EnumProtocolState
oz PacketStatusListener
p CriterionTrigger
pc ExpirableListEntry
pd UserCache
pd$a UserCache$UserCacheEntry
pd$b UserCache$BanEntrySerializer
pe IpBanList
pf IpBanEntry
pg NameReferencingFileConverter
pg$a NameReferencingFileConverter$FileConversionException
ph PlayerList
pi OpList
pj OpListEntry
pk JsonListEntry
pl JsonList
pl$a JsonList$JsonListEntrySerializer
pm GameProfileBanList
pn GameProfileBanEntry
po WhiteList
pp WhiteListEntry
pr RemoteStatusReply
ps StatusChallengeUtils
pt RemoteControlCommandListener
pv RemoteConnectionThread
pw RemoteStatusListener
pw$a RemoteStatusListener$RemoteStatusChallenge
px RemoteControlSession
py RemoteControlListener
q CriterionInstance
qa SoundEffect
qb SoundEffects
qc SoundCategory
qf CounterStatistic
qg CraftingStatistic
qh RecipeBook
qi RecipeBookServer
qj ServerStatisticManager
qj ServerStatisticManager#
qk Statistic
ql Counter
qm StatisticWrapper
qn IJsonStatistic
qo StatisticList
qp StatisticManager
qs DataBits
qt EntitySlice
qv RegistryID
qw MinecraftEncryption
qy ChatDeserializer
qz HttpUtilities
r AdvancementDisplay
ra InsensitiveStringMap
rc IntHashMap
rc$a IntHashMap$IntHashMapEntry
rd LazyInitVar
rf ChatTypeAdapterFactory
rg MathHelper
rh MethodProfiler
rh$a MethodProfiler$ProfilerInfo
ri IProgressUpdate
rk INamable
rl UtilColor
rn Tuple
ro WeightedRandom
ro$a WeightedRandom$WeightedRandomChoice
rq IDataConverter
rr DataConverterType
rs DataConverterTypes
rt DataConverter
ru DataConverterManager
rv DataConverterRegistry
rw DataInspector
rx DataConverterBedBlock
ry DataConverterBedItem
rz DataConverterTileEntity
s AdvancementFrameType
sa DataConverterMobSpawner
sb DataConverterShulkerBoxBlock
sc DataConverterSignText
sd DataConverterArmorStand
se DataConverterGuardian
sf DataConverterEquipment
sg DataConverterHealth
sh DataConverterSaddle
si DataConverterHorse
sj DataConverterEntity
sk DataConverterMinecart
sl DataConverterHanging
sm DataConverterDropChances
sn DataConverterRiding
so DataConverterShulker
sp DataConverterSkeleton
sq DataConverterUUID
sr DataConverterZombieType
ss DataConverterZombie
st DataConverterBanner
su DataConverterCookedFish
sv DataConverterMaterialId
sw DataConverterPotionId
sx DataConverterShulkerBoxItem
sy DataConverterSpawnEgg
sz DataConverterTotem
t AdvancementTree
ta DataConverterPotionWater
tb DataConverterBook
tc DataConverterVBO
td DataConverterLang
tg DataInspectorItem
th DataInspectorBlockEntity
ti DataInspectorEntity
tj DataInspectorItemList
tk DataInspectorTagged
tn IAsyncTaskHandler
tp BossBattle
tp$a BossBattle$BarColor
tp$b BossBattle$BarStyle
tq InventoryLargeChest
tr IInventory
ts ContainerUtil
tt IInventoryListener
tu InventoryUtils
tv EnumDifficulty
tw DifficultyDamageScaler
tx EnumHand
ty ITileEntityContainer
tz EnumInteractionResult
u CriterionInstanceAbstract
ua InteractionResultWrapper
uc ChestLock
ud ITileInventory
ue INamableTileEntity
uf ILootable
ug InventorySubcontainer
uh MojangStatisticsGenerator
ui IMojangStatistics
uj IWorldInventory
uk CombatEntry
ul CombatMath
um CombatTracker
un DamageSource
uo EntityDamageSource
up EntityDamageSourceIndirect
ur MobEffectAbsorption
us MobEffectAttackDamage
ut MobEffectHealthBoost
uu InstantMobEffect
uv MobEffectList
uw MobEffect
ux MobEffects
uz EntityAgeable
v CriterionTriggerBredAnimals
va EntityAreaEffectCloud
vb IAnimal
vc Entity
ve EntityTypes
ve$a EntityTypes$MonsterEggInfo
vg IEntitySelector
vg$a IEntitySelector$EntitySelectorEquipable
vh EnumItemSlot
vh$a EnumItemSlot$Function
vi EntityExperienceOrb
vj EntityFlying
vk EnumMainHand
vl EntityLiving
vm EntityInsentient
vm$a EntityInsentient$EnumEntityPositionType
vn EnumCreatureType
vo GroupDataEntity
vp EntityPositionTypes
vq EnumMonsterType
vr EnumMoveType
vs EntityOwnable
vt EntityCreature
vv IJumpable
vx EntityTameableAnimal
vy IAttribute
vz AttributeInstance
w CriterionTriggerBrewedPotion
wa AttributeModifier
wb AttributeBase
wc AttributeMapBase
wd AttributeModifiable
we AttributeMapServer
wf AttributeRanged
wh EntityAIBodyControl
wj ControllerMoveFlying
wk ControllerJump
wl ControllerLook
wm ControllerMove
wm$a ControllerMove$Operation
wo PathfinderGoalAvoidTarget
wp PathfinderGoalBeg
wq PathfinderGoalBreakDoor
wr PathfinderGoalBreed
ws PathfinderGoalDoorInteract
wt PathfinderGoalEatTile
wu PathfinderGoalFleeSun
wv PathfinderGoalFloat
ww PathfinderGoalFollowEntity
wx PathfinderGoalFollowOwnerParrot
wy PathfinderGoalFollowOwner
wz PathfinderGoalFollowParent
x CriterionTriggerChangedDimension
xa PathfinderGoal
xb PathfinderGoalSelector
xb$a PathfinderGoalSelector$PathfinderGoalSelectorItem
xc PathfinderGoalVillagerFarm
xd PathfinderGoalInteract
xe PathfinderGoalPerch
xf PathfinderGoalLeapAtTarget
xg PathfinderGoalLlamaFollow
xh PathfinderGoalLookAtPlayer
xi PathfinderGoalLookAtTradingPlayer
xj PathfinderGoalMakeLove
xk PathfinderGoalMeleeAttack
xl PathfinderGoalMoveIndoors
xm PathfinderGoalMoveThroughVillage
xn PathfinderGoalGotoTarget
xo PathfinderGoalMoveTowardsRestriction
xp PathfinderGoalMoveTowardsTarget
xq PathfinderGoalOcelotAttack
xr PathfinderGoalJumpOnBlock
xs PathfinderGoalOfferFlower
xt PathfinderGoalOpenDoor
xu PathfinderGoalPanic
xv PathfinderGoalPlay
xx PathfinderGoalRandomLookaround
xy PathfinderGoalRandomStroll
xz PathfinderGoalArrowAttack
y CriterionTriggerConstructBeacon
ya PathfinderGoalBowShoot
yb PathfinderGoalRestrictOpenDoor
yc PathfinderGoalRestrictSun
yd PathfinderGoalTame
ye PathfinderGoalSit
yf PathfinderGoalSwell
yg PathfinderGoalTakeFlower
yh PathfinderGoalTempt
yi PathfinderGoalTradeWithPlayer
yj PathfinderGoalInteractVillagers
yk PathfinderGoalRandomFly
yl PathfinderGoalRandomStrollLand
ym PathfinderGoalZombieAttack
yo PathfinderGoalDefendVillage
yp PathfinderGoalHurtByTarget
yq PathfinderGoalNearestAttackableTargetInsentient
yr PathfinderGoalTargetNearestPlayer
ys PathfinderGoalNearestAttackableTarget
ys$a PathfinderGoalNearestAttackableTarget$DistanceComparator
yt PathfinderGoalRandomTargetNonTamed
yu PathfinderGoalOwnerHurtByTarget
yv PathfinderGoalOwnerHurtTarget
yw PathfinderGoalTarget
yy NavigationFlying
yz Navigation
z CriterionTriggerConsumeItem
za NavigationAbstract
zb NavigationListener
zc NavigationSpider
zd NavigationGuardian
zf EntitySenses
zh RandomPositionGenerator
zj VillageDoor
zk Village
zk$a Village$Aggressor
zl VillageSiege
zm PersistentVillage
zo EntityAmbient
zp EntityBat
zr EntityAnimal
zs EntityChicken
zt EntityCow
zu EntityBird
zv EntityGolem
zw EntityMushroomCow
zx EntityOcelot
zy EntityParrot
zz EntityPig