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