summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.12-pre5-cl.csrg
blob: efb95c27ae9af7158d71f1ca546a3904965ecefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
# (c) 2017 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerCuredZombieVillager
aaa EntityParrot
aab EntityPig
aac EntityPolarBear
aad EntityRabbit
aad$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
aad$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
aad$c EntityRabbit$GroupDataRabbit
aad$d EntityRabbit$ControllerJumpRabbit
aad$e EntityRabbit$ControllerMoveRabbit
aad$f EntityRabbit$PathfinderGoalRabbitPanic
aad$g EntityRabbit$PathfinderGoalEatCarrots
aae EntitySheep
aaf EntityPerchable
aag EntitySnowman
aah EntitySquid
aah$a EntitySquid$PathfinderGoalSquid
aai EntityIronGolem
aaj EntityWaterAnimal
aak EntityWolf
aal EntityHorseChestedAbstract
aam EntityHorseAbstract
aan EntityHorseDonkey
aao EntityHorse
aap EnumHorseArmor
aaq EntityLlama
aar EntityHorseMule
aas EntityHorseSkeleton
aat PathfinderGoalHorseTrap
aau EntityHorseZombie
aay IComplex
aaz EntityComplexPart
ab CriterionConditionDamage
aba EntityEnderCrystal
abb EntityEnderDragon
abd AbstractDragonController
abe AbstractDragonControllerLanded
abf DragonControllerCharge
abg DragonControllerDying
abh DragonControllerHold
abi DragonControllerHover
abj DragonControllerLandingFly
abk DragonControllerLanding
abl IDragonController
abm DragonControllerLandedAttack
abn DragonControllerLandedFlame
abo DragonControllerLandedSearch
abp DragonControllerStrafe
abq DragonControllerFly
abr DragonControllerPhase
abs DragonControllerManager
abv EntityWither
abx EntityArmorStand
aby EntityHanging
abz EntityItemFrame
ac CriterionConditionDamageSource
aca EntityLeash
acb EntityPainting
acb$a EntityPainting$EnumArt
acd EntityFishingHook
acd$a EntityFishingHook$HookState
acf EntityWeather
acg EntityLightning
aci EntityFallingBlock
acj EntityItem
ack EntityTNTPrimed
acm EntityIllagerAbstract
acn EntitySkeletonAbstract
aco EntityBlaze
aco$a EntityBlaze$PathfinderGoalBlazeFireball
acp EntityCaveSpider
acq EntityCreeper
acr EntityGuardianElder
acs EntityEnderman
acs$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
acs$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
acs$c EntityEnderman$PathfinderGoalEndermanPickupBlock
act EntityEndermite
acu IMonster
acv EntityEvoker
acw EntityGhast
acw$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
acw$b EntityGhast$ControllerGhast
acw$c EntityGhast$PathfinderGoalGhastAttackTarget
acw$d EntityGhast$PathfinderGoalGhastIdleMove
acx EntityGiantZombie
acy EntityGuardian
acy$a EntityGuardian$PathfinderGoalGuardianAttack
acy$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
acy$c EntityGuardian$ControllerMoveGuardian
acz EntityZombieHusk
ad CriterionConditionDistance
ada EntityIllagerIllusioner
adb EntityMagmaCube
adc EntityMonster
add EntityPigZombie
add$a EntityPigZombie$PathfinderGoalAnger
add$b EntityPigZombie$PathfinderGoalAngerOther
ade IRangedEntity
adf GenericAttributes
adg EntityShulker
adh EntitySilverfish
adh$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
adh$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
adi EntitySkeleton
adj EntitySlime
adj$a EntitySlime$PathfinderGoalSlimeNearestPlayer
adj$b EntitySlime$PathfinderGoalSlimeRandomJump
adj$c EntitySlime$PathfinderGoalSlimeIdle
adj$d EntitySlime$ControllerMoveSlime
adj$e EntitySlime$PathfinderGoalSlimeRandomDirection
adk EntityIllagerWizard
adk$a EntityIllagerWizard$Spell
adl EntitySpider
adl$a EntitySpider$PathfinderGoalSpiderMeleeAttack
adl$b EntitySpider$GroupDataSpider
adl$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
adm EntitySkeletonStray
adn EntityVex
ado EntityVindicator
adp EntityWitch
adq EntitySkeletonWither
adr EntityZombie
adr$a EntityZombie$GroupDataZombie
ads EntityZombieVillager
adv NPC
adw EntityVillager
adw$a EntityVillager$MerchantRecipeOptionBuy
adw$b EntityVillager$MerchantRecipeOptionBook
adw$c EntityVillager$MerchantRecipeOptionEnchant
adw$d EntityVillager$MerchantRecipeOptionProcess
adw$e EntityVillager$MerchantRecipeOptionSell
adw$f EntityVillager$IMerchantRecipeOption
adw$g EntityVillager$MerchantOptionRandomRange
adz PlayerAbilities
ae CriterionTriggerEffectsChanged
aea PlayerInventory
aeb EntityHuman
aeb$a EntityHuman$EnumBedResult
aeb$b EntityHuman$EnumChatVisibility
aef EntityArrow
aef$a EntityArrow$PickupStatus
aeg EntityDragonFireball
aeh EntityEvokerFangs
aei EntityEnderSignal
aej EntityFireball
aek EntityFireworks
ael EntityLargeFireball
aem EntityLlamaSpit
aen IProjectile
aeo ProjectileHelper
aep EntityShulkerBullet
aeq EntitySmallFireball
aer EntitySnowball
aes EntitySpectralArrow
aet EntityProjectile
aeu EntityEgg
aev EntityEnderPearl
aew EntityThrownExpBottle
aex EntityPotion
aey EntityTippedArrow
aez EntityWitherSkull
af CriterionTriggerEnchantedItem
afb EntityBoat
afb$a EntityBoat$EnumStatus
afb$b EntityBoat$EnumBoatType
afc EntityMinecartAbstract
afc$a EntityMinecartAbstract$EnumMinecartType
afd EntityMinecartChest
afe EntityMinecartCommandBlock
aff EntityMinecartContainer
afg EntityMinecartFurnace
afh EntityMinecartHopper
afi EntityMinecartRideable
afj EntityMinecartMobSpawner
afk EntityMinecartTNT
afn FoodMetaData
afp Container
afq ContainerAnvil
afr ContainerBeacon
afr$a ContainerBeacon$SlotBeacon
afs ContainerBrewingStand
afs$b ContainerBrewingStand$SlotBrewing
afs$c ContainerBrewingStand$SlotPotionBottle
aft ContainerChest
afu InventoryClickType
afv ICrafting
afw InventoryCrafting
afx ContainerWorkbench
afy ContainerDispenser
afz ContainerEnchantTable
ag CriterionConditionEnchantments
aga SlotFurnaceFuel
agb ContainerFurnace
agc SlotFurnaceResult
agd ContainerHopper
age InventoryHorseChest
agf ContainerHorse
agg ContainerPlayer
agh InventoryMerchant
agi ContainerMerchant
agj SlotMerchantResult
agk InventoryEnderChest
agl InventoryCraftResult
agm SlotResult
agn ContainerShulkerBox
ago SlotShulkerBox
agp Slot
agr ItemAir
ags ItemAnvil
agt ItemArmor
agt$a ItemArmor$EnumArmorMaterial
agu ItemArmorStand
agv ItemArrow
agw ItemAxe
agx ItemBanner
agy ItemBed
agz ItemBlock
ah CriterionTriggerEnterBlock
aha ItemReed
ahb ItemBoat
ahc ItemBook
ahd ItemGlassBottle
ahe ItemBow
ahf ItemSoup
ahg ItemBucket
ahh ItemCarrotStick
ahi ItemChorusFruit
ahj ItemClock
ahk ItemCoal
ahl ItemCompass
ahm ItemWorldMapBase
ahn CreativeModeTab
aho ItemTool
ahp ItemDoor
ahq EnumColor
ahr ItemDye
ahs ItemCloth
aht ItemEgg
ahu ItemElytra
ahv ItemMapEmpty
ahw ItemEnchantedBook
ahx ItemEndCrystal
ahy ItemEnderEye
ahz ItemEnderPearl
ai CriterionTriggerEntityHurtPlayer
aia ItemExpBottle
aib ItemFireball
aic ItemFireworksCharge
aid ItemFireworks
aie ItemFish
aie$a ItemFish$EnumFish
aif ItemFishingRod
aig ItemFlintAndSteel
aih ItemFood
aii ItemGoldenApple
aij ItemHanging
aik ItemHoe
ail Item
ail$a Item$EnumToolMaterial
aim ItemCooldown
aim$a ItemCooldown$Info
ain ItemStack
aio IDynamicTexture
aip Items
aiq ItemKnowledgeBook
air ItemLeash
ais ItemLeaves
ait ItemLingeringPotion
aiu ItemWorldMap
aiv ItemMilkBucket
aiw ItemMinecart
aix ItemMultiTexture
aiy ItemNameTag
aiz ItemPickaxe
aj CriterionConditionEntity
aja ItemPiston
ajb ItemPotion
ajc EnumItemRarity
ajd ItemRecord
aje ItemRedstone
ajf ItemSaddle
ajg ItemSeedFood
ajh ItemSeeds
aji ItemCooldownPlayer
ajj ItemShears
ajk ItemShield
ajl ItemSpade
ajm ItemShulkerBox
ajn ItemSign
ajo ItemNetherStar
ajp ItemSkull
ajq ItemStep
ajr ItemSnow
ajs ItemSnowball
ajt ItemMonsterEgg
aju ItemSpectralArrow
ajv ItemSplashPotion
ajw ItemSword
ajx ItemWithAuxData
ajy ItemTippedArrow
ajz EnumAnimation
ak CriterionTriggerImpossible
aka ItemWaterLily
akb ItemBookAndQuill
akc ItemWrittenBook
akd PotionRegistry
ake PotionBrewer
ake$a PotionBrewer$PredicatedCombination
akf PotionUtil
akg Potions
aki RecipeArmorDye
akj RecipesBanner
akj$a RecipesBanner$AddRecipe
akj$b RecipesBanner$DuplicateRecipe
akk RecipeBookClone
akl RecipeFireworks
akm RecipesFurnace
akn RecipeItemStack
ako RecipeMapClone
akp RecipeMapExtend
akq IRecipe
akr CraftingManager
aks RecipeRepair
akt ShapedRecipes
aku ShapelessRecipes
akv RecipiesShield
akv$a RecipiesShield$Decoration
akw RecipeShulkerBox
akw$a RecipeShulkerBox$Dye
akx RecipeTippedArrow
akz EnchantmentArrowDamage
al CriterionTriggerInventoryChanged
ala EnchantmentFlameArrows
alb EnchantmentInfiniteArrows
alc EnchantmentArrowKnockback
ald EnchantmentBinding
ale EnchantmentWeaponDamage
alf EnchantmentDurability
alg EnchantmentDigging
alh Enchantment
alh$a Enchantment$Rarity
ali EnchantmentSlotType
alj EnchantmentManager
alj$a EnchantmentManager$EnchantmentModifierArthropods
alj$b EnchantmentManager$EnchantmentModifierThorns
alj$c EnchantmentManager$EnchantmentModifier
alj$d EnchantmentManager$EnchantmentModifierDamage
alj$e EnchantmentManager$EnchantmentModifierProtection
alk WeightedRandomEnchant
all Enchantments
alm EnchantmentFire
aln EnchantmentLure
alo EnchantmentFrostWalker
alp EnchantmentKnockback
alq EnchantmentLootBonus
alr EnchantmentMending
als EnchantmentOxygen
alt EnchantmentProtection
alt$a EnchantmentProtection$DamageType
alu EnchantmentSweeping
alv EnchantmentThorns
alw EnchantmentSilkTouch
alx EnchantmentVanishing
aly EnchantmentDepthStrider
alz EnchantmentWaterWorker
am CriterionTriggerItemDurabilityChanged
amc IMerchant
amd MerchantRecipe
ame MerchantRecipeList
amg CommandBlockListenerAbstract
amh MobSpawnerAbstract
ami BlockActionData
amk ChunkCoordIntPair
amm Explosion
amo GameRules
amo$a GameRules$GameRuleValue
amo$b GameRules$EnumGameRuleType
amp EnumGamemode
amr World
ams ExceptionWorldConflict
amt IWorldAccess
amu WorldSettings
amv IBlockAccess
amw WorldType
amx EnumSkyBlock
amy SpawnerCreature
amz PortalTravelAgent
amz$a PortalTravelAgent$ChunkCoordinatesPortal
an CriterionConditionItem
ana ChunkCache
anb MobSpawnerData
anc NextTickListEntry
and BiomeBeach
ane BiomeBase
ane$b BiomeBase$EnumTemperature
ane$c BiomeBase$BiomeMeta
anf BiomeCache
anh BiomeDecorator
ani WorldChunkManager
anj Biomes
anl BiomeDesert
anm BiomeBigHills
anm$a BiomeBigHills$Type
ann WorldChunkManagerHell
ano BiomeForest
ano$a BiomeForest$Type
anp BiomeHell
anq BiomeDecoratorHell
anr BiomeIcePlains
ans BiomeJungle
ant BiomeMesa
anu BiomeMushrooms
anv BiomeForestMutated
anw BiomeSavannaMutated
anx BiomeOcean
any BiomePlains
anz BiomeRiver
ao CriterionTriggerKilled
aoa BiomeSavanna
aob BiomeStoneBeach
aoc BiomeSwamp
aod BiomeTaiga
aod$a BiomeTaiga$Type
aoe BiomeTheEnd
aof BiomeTheEndDecorator
aof$a BiomeTheEndDecorator$SpikeCache
aog BiomeVoid
aoh BiomeVoidDecorator
aoj BlockAir
aok BlockAnvil
aok$a BlockAnvil$TileEntityContainerAnvil
aol BlockBanner
aol$a BlockBanner$BlockStandingBanner
aol$b BlockBanner$BlockWallBanner
aom BlockBarrier
aon BlockTileEntity
aoo BlockPressurePlateAbstract
aop BlockMinecartTrackAbstract
aop$a BlockMinecartTrackAbstract$MinecartTrackLogic
aop$b BlockMinecartTrackAbstract$EnumTrackPosition
aoq BlockBeacon
aor BlockBed
aor$a BlockBed$EnumBedPart
aos BlockBeetroot
aot Block
aot$a Block$EnumRandomOffset
aou Blocks
aov BlockBone
aow IBlockFragilePlantElement
aox BlockBookshelf
aoy BlockBrewingStand
aoz BlockPlant
ap CriterionTriggerLevitation
apa BlockButtonAbstract
apb BlockCactus
apc BlockCake
apd BlockCarrots
ape BlockCauldron
apf BlockChest
apf$a BlockChest$Type
apg BlockChorusFlower
aph BlockChorusFruit
api BlockClay
apj BlockCocoa
apk BlockCloth
apl BlockCommand
apm BlockRedstoneComparator
apm$a BlockRedstoneComparator$EnumComparatorMode
apn BlockConcretePowder
apo BlockWorkbench
apo$a BlockWorkbench$TileEntityContainerWorkbench
app BlockCrops
apq BlockDaylightDetector
apr BlockDeadBush
aps BlockMinecartDetector
apt BlockDiodeAbstract
apu BlockDirectional
apv BlockDirt
apv$a BlockDirt$EnumDirtVariant
apw BlockDispenser
apx BlockDoor
apx$a BlockDoor$EnumDoorHalf
apx$b BlockDoor$EnumDoorHinge
apy BlockTallPlant
apy$a BlockTallPlant$EnumTallPlantHalf
apy$b BlockTallPlant$EnumTallFlowerVariants
apz BlockDragonEgg
aq CriterionConditionLocation
aqa BlockDropper
aqb BlockFlowing
aqc BlockEnchantmentTable
aqd BlockEndGateway
aqe BlockEnderPortal
aqf BlockEnderPortalFrame
aqg BlockEndRod
aqh BlockEnderChest
aqi ITileEntity
aqj BlockFalling
aqk BlockSoil
aql BlockFence
aqm BlockFenceGate
aqn BlockFire
aqo BlockFlowers
aqo$a BlockFlowers$EnumFlowerVarient
aqo$b BlockFlowers$EnumFlowerType
aqp BlockFlowerPot
aqp$a BlockFlowerPot$EnumFlowerPotContents
aqq BlockIceFrost
aqr BlockDoubleStoneStep2
aqs BlockDoubleStep
aqt BlockDoubleWoodStep
aqu BlockFurnace
aqv BlockGlass
aqw BlockGlazedTerracotta
aqx BlockLightStone
aqy BlockGrass
aqz BlockGrassPath
ar CriterionTriggerLocation
ara BlockGravel
arb BlockStoneStep2
arc BlockStepAbstract
arc$a BlockStepAbstract$EnumSlabHalf
ard BlockStep
are BlockHalfTransparent
arf BlockWoodStep
arg BlockHardenedClay
arh BlockHay
ari BlockHopper
arj BlockFacingHorizontal
ark BlockHugeMushroom
ark$a BlockHugeMushroom$EnumHugeMushroomVariant
arl BlockIce
arm BlockJukeBox
arm$a BlockJukeBox$TileEntityRecordPlayer
arn BlockLadder
aro BlockLeaves
arq BlockLever
arq$a BlockLever$EnumLeverPosition
arr BlockFluids
ars BlockLogAbstract
ars$a BlockLogAbstract$EnumLogRotation
art BlockMagma
aru BlockMelon
arv EnumBlockMirror
arw BlockMobSpawner
arx BlockMonsterEggs
arx$a BlockMonsterEggs$EnumMonsterEggVarient
ary BlockMushroom
arz BlockMycel
as CriterionConditionValue
asa BlockNetherbrick
asb BlockNetherWart
asc BlockBloodStone
asd BlockLeaves2
ase BlockLog2
asf BlockDoubleStoneStepAbstract
asf$a BlockDoubleStoneStepAbstract$EnumStoneSlab2Variant
asg BlockNoDrop
ash BlockNote
asi BlockObserver
asj BlockObsidian
ask BlockLeaves1
asl BlockLog1
asm BlockOre
asn BlockPackedIce
aso BlockWood
aso$a BlockWood$EnumLogVariant
asp BlockPortal
asp$a BlockPortal$Shape
asq BlockPotatoes
asr BlockPowered
ass BlockPoweredRail
ast BlockPressurePlateBinary
ast$a BlockPressurePlateBinary$EnumMobType
asu BlockPrismarine
asu$a BlockPrismarine$EnumPrismarineVariant
asv BlockPumpkin
asw BlockPurpurSlab
asw$a BlockPurpurSlab$Default
asw$b BlockPurpurSlab$Half
asw$c BlockPurpurSlab$Type
asx BlockQuartz
asx$a BlockQuartz$EnumQuartzVariant
asy BlockMinecartTrack
asz BlockRedFlowers
at CriterionConditionMobEffect
ata BlockRedSandstone
ata$a BlockRedSandstone$EnumRedSandstoneVariant
atb BlockRedstoneOre
atc BlockRedstoneWire
atc$a BlockRedstoneWire$EnumRedstoneWireConnection
atd BlockRedstoneLamp
ate BlockRedstoneTorch
ate$a BlockRedstoneTorch$RedstoneUpdateInfo
atf BlockReed
atg EnumRenderType
ath BlockRepeater
ati BlockRotatable
atj EnumBlockRotation
atk BlockSand
atk$a BlockSand$EnumSandVariant
atl BlockSandStone
atl$a BlockSandStone$EnumSandstoneVariant
atm BlockSapling
atn BlockSeaLantern
ato BlockShulkerBox
atp BlockSign
atq BlockSkull
atr BlockSlime
ats BlockSnowBlock
att BlockSnow
atu BlockSlowSand
atv SoundEffectType
atw BlockSponge
atx BlockStainedGlass
aty BlockStainedGlassPane
atz BlockStainedHardenedClay
au CriterionConditionNBT
aua BlockStairs
aua$a BlockStairs$EnumHalf
aua$b BlockStairs$EnumStairShape
aub BlockFloorSign
auc BlockStationary
aud BlockStem
aue BlockStone
aue$a BlockStone$EnumStoneVariant
auf BlockSmoothBrick
auf$a BlockSmoothBrick$EnumStonebrickType
aug BlockStoneButton
auh BlockDoubleStepAbstract
auh$a BlockDoubleStepAbstract$EnumStoneSlabVariant
aui BlockStructure
auj BlockStructureVoid
auk BlockLongGrass
auk$a BlockLongGrass$EnumTallGrassType
aul BlockThin
aum BlockTNT
aun BlockTorch
auo BlockTrapdoor
auo$a BlockTrapdoor$EnumTrapdoorHalf
aup BlockTripwire
auq BlockTripwireHook
aur BlockVine
aus BlockCobbleWall
aus$a BlockCobbleWall$EnumCobbleVariant
aut BlockWallSign
auu BlockWaterLily
auv BlockWeb
auw BlockPressurePlateWeighted
auy BlockWoodButton
auz BlockWoodenStep
av CriterionTriggerNetherTravel
ava BlockCarpet
avb BlockYellowFlowers
avc TileEntityBanner
avd EnumBannerPatternType
ave TileEntityBeacon
ave$a TileEntityBeacon$BeaconColorTracker
avf TileEntityBed
avg TileEntity
avh TileEntityBrewingStand
avi TileEntityChest
avj TileEntityCommand
avj$a TileEntityCommand$Type
avk TileEntityComparator
avl TileEntityLightDetector
avm TileEntityDispenser
avn TileEntityDropper
avo TileEntityEnchantTable
avp TileEntityEnderChest
avq TileEntityFlowerPot
avr TileEntityFurnace
avs IHopper
avt TileEntityHopper
avu TileEntityContainer
avv TileEntityMobSpawner
avw TileEntityNote
avx TileEntityLootable
avy TileEntityShulkerBox
avy$a TileEntityShulkerBox$AnimationPhase
avz TileEntitySign
aw CriterionTriggerPlacedBlock
awa TileEntitySkull
awb TileEntityStructure
awb$a TileEntityStructure$UsageMode
awc TileEntityEndGateway
awd TileEntityEnderPortal
awg BlockPiston
awh BlockPistonExtension
awh$a BlockPistonExtension$EnumPistonType
awi BlockPistonMoving
awj TileEntityPiston
awk PistonExtendsChecker
awm BlockDataAbstract
awn IBlockPhysics
awo EnumBlockFaceShape
awp IBlockProperties
awq IBlockData
awr BlockStateList
awr$a BlockStateList$BlockData
awt ShapeDetectorBlock
awu ShapeDetector
awu$a ShapeDetector$BlockLoader
awu$b ShapeDetector$ShapeDetectorCollection
awv ShapeDetectorBuilder
awx MaterialPredicate
awy BlockPredicate
awz BlockStatePredicate
ax CriterionTriggerPlayerHurtEntity
axb BlockState
axc BlockStateBoolean
axd BlockStateDirection
axe BlockStateEnum
axf BlockStateInteger
axg IBlockState
axi IWorldBorderListener
axj EnumWorldBorderState
axk WorldBorder
axm DataPaletteBlock
axn ChunkGenerator
axo IChunkProvider
axp NibbleArray
axr DataPaletteGlobal
axs DataPaletteHash
axt Chunk
axt$a Chunk$EnumTileEntityState
axu ChunkSection
axv DataPaletteLinear
axw OldNibbleArray
axx DataPalette
axy DataPaletteExpandable
ay CriterionTriggerRecipeUnlocked
ayb ChunkRegionLoader
ayc IChunkLoader
ayf OldChunkLoader
ayf$a OldChunkLoader$OldChunk
ayg RegionFile
ayg$a RegionFile$ChunkBuffer
ayh RegionFileCache
ayj WorldProvider
ayk DimensionManager
ayl WorldProviderHell
aym WorldProviderNormal
ayn EnumDragonRespawn
ayo EnderDragonBattle
ayp WorldProviderTheEnd
ays WorldGenCanyon
ayt ChunkSnapshot
ayu CustomWorldSettingsFinal
ayu$a CustomWorldSettingsFinal$CustomWorldSettings
ayu$b CustomWorldSettingsFinal$CustomWorldSettingsSerializer
ayv ChunkProviderDebug
ayw ChunkProviderFlat
ayx WorldGenCaves
ayy WorldGenBase
ayz WorldGenCavesHell
az CriterionTriggerSummonedEntity
aza ChunkProviderHell
azb ChunkProviderGenerate
azc ChunkProviderTheEnd
azd WorldGenTreeAbstract
aze WorldGenBigTree
aze$a WorldGenBigTree$Position
azf WorldGenForest
azg WorldGenTaigaStructure
azh WorldGenBonusChest
azi WorldGenMushrooms
azj WorldGenCactus
azk WorldGenClay
azl WorldGenDeadBush
azm WorldGenDesertWell
azn WorldGenTallPlant
azo WorldGenEndGateway
azp WorldGenEndIsland
azq WorldGenEndTrophy
azr WorldGenerator
azs WorldGenFlowers
azt WorldGenFossils
azu WorldGenGroundBush
azv WorldGenFire
azw WorldGenLightStone2
azx WorldGenHellLava
azy WorldGenHugeMushroom
azz WorldGenPackedIce1
b CrashReport
ba CriterionTriggerTamedAnimal
baa WorldGenPackedIce2
bab WorldGenLakes
bac WorldGenLightStone1
bad WorldGenJungleTree
bae WorldGenMegaTree
baf WorldGenMegaTreeAbstract
bag WorldGenMelon
bah WorldGenDungeons
bai WorldGenMinable
baj WorldGenTaiga1
bak WorldGenPumpkin
bal WorldGenReed
bam WorldGenForestTree
ban WorldGenSand
bao WorldGenAcaciaTree
bap WorldGenEnder
bap$a WorldGenEnder$Spike
baq WorldGenLiquids
bar WorldGenTaiga2
bas WorldGenSwampTree
bat WorldGenGrass
bau WorldGenTrees
bav WorldGenVines
baw WorldGenWaterLily
bay WorldGenFlatInfo
baz WorldGenFlatLayerInfo
bb CriterionTriggerTick
bbd StructureBoundingBox
bbe WorldGenEndCity
bbe$a WorldGenEndCity$Start
bbf WorldGenEndCityPieces
bbf$a WorldGenEndCityPieces$Piece
bbf$b WorldGenEndCityPieces$PieceGenerator
bbg WorldGenMineshaft
bbg$a WorldGenMineshaft$Type
bbh WorldGenMineshaftPieces
bbh$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bbh$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bbh$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bbh$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bbi WorldGenMineshaftStart
bbj WorldGenNether
bbj$a WorldGenNether$WorldGenNetherStart
bbk WorldGenNetherPieces
bbk$a WorldGenNetherPieces$WorldGenNetherPiece1
bbk$b WorldGenNetherPieces$WorldGenNetherPiece2
bbk$c WorldGenNetherPieces$WorldGenNetherPiece3
bbk$d WorldGenNetherPieces$WorldGenNetherPiece4
bbk$e WorldGenNetherPieces$WorldGenNetherPiece5
bbk$f WorldGenNetherPieces$WorldGenNetherPiece6
bbk$g WorldGenNetherPieces$WorldGenNetherPiece7
bbk$h WorldGenNetherPieces$WorldGenNetherPiece8
bbk$i WorldGenNetherPieces$WorldGenNetherPiece9
bbk$j WorldGenNetherPieces$WorldGenNetherPiece10
bbk$k WorldGenNetherPieces$WorldGenNetherPiece11
bbk$l WorldGenNetherPieces$WorldGenNetherPiece12
bbk$m WorldGenNetherPieces$WorldGenNetherPiece
bbk$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bbk$o WorldGenNetherPieces$WorldGenNetherPiece13
bbk$p WorldGenNetherPieces$WorldGenNetherPiece14
bbk$q WorldGenNetherPieces$WorldGenNetherPiece15
bbl WorldGenMonument
bbl$a WorldGenMonument$WorldGenMonumentStart
bbm WorldGenMonumentPieces
bbm$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bbm$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bbm$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bbm$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bbm$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bbm$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bbm$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bbm$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bbm$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bbm$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bbm$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bbm$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bbm$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bbm$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bbm$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bbm$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bbm$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bbm$r WorldGenMonumentPieces$WorldGenMonumentPiece
bbm$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bbm$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bbm$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bbm$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bbn WorldGenLargeFeature
bbn$a WorldGenLargeFeature$WorldGenLargeFeatureStart
bbo WorldGenRegistration
bbo$a WorldGenRegistration$WorldGenPyramidPiece
bbo$c WorldGenRegistration$WorldGenJungleTemple
bbo$c$a WorldGenRegistration$WorldGenJungleTemple$WorldGenJungleTemplePiece
bbo$d WorldGenRegistration$WorldGenScatteredPiece
bbo$e WorldGenRegistration$WorldGenWitchHut
bbp WorldGenStronghold
bbp$a WorldGenStronghold$WorldGenStronghold2Start
bbq WorldGenStrongholdPieces
bbq$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bbq$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bbq$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bbq$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bbq$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bbq$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bbq$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bbq$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bbq$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bbq$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bbq$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bbq$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bbq$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bbq$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bbq$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bbq$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bbq$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bbr StructureGenerator
bbs WorldGenFactory
bbt PersistentStructure
bbu StructurePiece
bbu$a StructurePiece$StructurePieceBlockSelector
bbv StructureStart
bbw DefinedStructurePiece
bbx WorldGenVillage
bbx$a WorldGenVillage$WorldGenVillageStart
bby WorldGenVillagePieces
bby$a WorldGenVillagePieces$WorldGenVillageLibrary
bby$b WorldGenVillagePieces$WorldGenVillageFarm2
bby$c WorldGenVillagePieces$WorldGenVillageFarm
bby$d WorldGenVillagePieces$WorldGenVillageLight
bby$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bby$f WorldGenVillagePieces$WorldGenVillageButcher
bby$g WorldGenVillagePieces$WorldGenVillageHouse
bby$h WorldGenVillagePieces$WorldGenVillageHut
bby$i WorldGenVillagePieces$WorldGenVillageTemple
bby$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bby$k WorldGenVillagePieces$WorldGenVillageStartPiece
bby$l WorldGenVillagePieces$WorldGenVillageRoad
bby$m WorldGenVillagePieces$WorldGenVillageHouse2
bby$n WorldGenVillagePieces$WorldGenVillagePiece
bby$o WorldGenVillagePieces$WorldGenVillageRoadPiece
bby$p WorldGenVillagePieces$WorldGenVillageWell
bbz WorldGenWoodlandMansion
bc CriterionTriggerVillagerTrade
bca WorldGenWoodlandMansionPieces
bcc DefinedStructureProcessorRotation
bcd DefinedStructureManager
bce DefinedStructureInfo
bcf DefinedStructureProcessor
bcg DefinedStructure
bcg$b DefinedStructure$BlockInfo
bcg$c DefinedStructure$EntityInfo
bcl NoiseGeneratorPerlin
bcm NoiseGeneratorOctaves
bcn NoiseGenerator3
bcq NoiseGenerator3Handler
bcr NoiseGenerator
bct MaterialDecoration
bcu MaterialGas
bcv MaterialLiquid
bcw Material
bcx MaterialMapColor
bcy MaterialPortal
bcz EnumPistonReaction
bd CriterionTriggerUsedEnderEye
bdb GenLayerDeepOcean
bdc GenLayerSpecial
bdc$a GenLayerSpecial$EnumGenLayerSpecial
bdd GenLayerIsland
bde GenLayerMushroomIsland
bdf GenLayerTopSoil
bdg GenLayerDesert
bdh GenLayerBiome
bdj GenLayerZoomFuzzy
bdl IntCache
bdm LayerIsland
bdn GenLayer
bdo GenLayerPlains
bdp GenLayerRegionHills
bdq GenLayerIcePlains
bdr GenLayerCleaner
bds GenLayerRiver
bdt GenLayerRiverMix
bdu GenLayerMushroomShore
bdv GenLayerSmooth
bdz GenLayerZoomVoronoi
be CriterionTriggerUsedTotem
bea GenLayerZoom
bed Path
bee PathType
bef PathfinderFlying
beg PathPoint
beh PathfinderAbstract
bei PathEntity
bej Pathfinder
bek PathfinderWater
bel PathfinderNormal
bep RunnableSaveScoreboard
beq PersistentBase
ber MapIcon
ber$a MapIcon$Type
bes WorldMap
bes$a WorldMap$WorldMapHumanTracker
bev ServerNBTManager
bew WorldLoaderServer
bex SecondaryWorldData
bey WorldNBTStorage
bez WorldLoader
bfa WorldData
bfb IDataManager
bfd Convertable
bfh IPlayerFileData
bfj PersistentCollection
bfk LootTables
bfl LootSelectorEmpty
bfm LootItem
bfn LootSelector
bfo LotoSelectorEntry
bfp LootTable
bfq LootTableInfo
bfq$b LootTableInfo$EntityTarget
bfr LootSelectorLootTable
bfs LootTableRegistry
bft LootValueBounds
bfu LootItemFunctionEnchant
bfv LootEnchantLevel
bfw LootItemFunction
bfx LootItemFunctions
bfy LootEnchantFunction
bfz LootItemFunctionSetAttribute
bga LootItemFunctionSetCount
bgb LootItemFunctionSetDamage
bgc LootItemFunctionSetData
bgd LootItemFunctionSetTag
bge LootItemFunctionSmelt
bgh LootItemConditionEntityScore
bgi LootItemCondition
bgj LootItemConditions
bgk LootItemConditionEntityProperty
bgl LootItemConditionKilledByPlayer
bgm LootItemConditionRandomChance
bgn LootItemConditionRandomChanceWithLooting
bgp LootEntityProperties
bgq LootEntityProperty
bgr LootEntityPropertyOnFire
bgu FileIOThread
bgv IAsyncChunkSaver
bgy AxisAlignedBB
bgz MovingObjectPosition
bgz$a MovingObjectPosition$EnumMovingObjectType
bh ICommandDispatcher
bhb Vec3D
bhd ScoreboardObjective
bhe ScoreboardTeam
bhf ScoreboardScore
bhh Scoreboard
bhi PersistentScoreboard
bhj ScoreboardTeamBase
bhj$a ScoreboardTeamBase$EnumTeamPush
bhj$b ScoreboardTeamBase$EnumNameTagVisibility
bhk ScoreboardCriteriaInteger
bhl ScoreboardBaseCriteria
bhm ScoreboardHealthCriteria
bhn IScoreboardCriteria
bhn$a IScoreboardCriteria$EnumScoreboardHealthDisplay
bho ScoreboardReadOnlyCriteria
bhp ScoreboardStatisticCriteria
bi CommandAbstract
bi$a CommandAbstract$CommandNumber
bj CommandHandler
bk ICommand
bl ICommandHandler
bm CustomFunction
bn ICommandListener
bo CommandListenerWrapper
bp CommandObjectiveExecutor
bp$a CommandObjectiveExecutor$EnumCommandResult
bq PlayerSelector
br CommandAdvancement
br$a CommandAdvancement$Action
br$b CommandAdvancement$Filter
bs CommandBanIp
bt CommandBanList
bu CommandBan
bv CommandBlockData
bw CommandClear
bx CommandClone
bx$a CommandClone$CommandCloneStoredTileEntity
by CommandDeop
bz CommandDebug
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca CommandGamemodeDefault
cb CommandEffect
cc CommandMe
cd CommandEnchant
ce CommandEntityData
cf CommandExecute
cg CommandXp
ch CommandFill
ci CommandFunction
cj CommandDifficulty
ck CommandGamemode
cl CommandGamerule
cm CommandGive
cn CommandHelp
co CommandKick
cp CommandKill
cq CommandList
cr CommandLocate
cs CommandTell
ct CommandOp
cu CommandPardonIP
cv CommandPardon
cw CommandParticle
cx CommandPlaySound
cy CommandPublish
cz CommandRecipe
d CrashReportCallable
da CommandReload
db CommandReplaceItem
dc CommandSaveAll
dd CommandSaveOff
de CommandSaveOn
df CommandSay
dg CommandScoreboard
dh CommandDispatcher
di CommandSetBlock
dj CommandIdleTimeout
dk CommandSpawnpoint
dl CommandSetWorldSpawn
dm CommandSeed
dn CommandSpreadPlayers
dn$a CommandSpreadPlayers$Location2D
dp CommandStats
dq CommandStop
dr CommandStopSound
ds CommandSummon
dt CommandTeleport
du CommandTellRaw
dw CommandTestForBlock
dx CommandTestForBlocks
dy CommandTestFor
dz CommandTime
ea CommandTitle
eb CommandToggleDownfall
ec CommandTp
ed CommandTrigger
ee CommandWeather
ef CommandWhitelist
eg CommandWorldBorder
ei CommandException
ej ExceptionEntityNotFound
ek ExceptionInvalidBlockState
el ExceptionInvalidNumber
em ExceptionInvalidSyntax
en ExceptionPlayerNotFound
eo ExceptionUnknownCommand
ep ExceptionUsage
et BlockPosition
et$a BlockPosition$MutableBlockPosition
et$b BlockPosition$PooledBlockPosition
eu ISourceBlock
ev SourceBlock
ew IteratorUtils
ew$a IteratorUtils$ArrayToList
ew$b IteratorUtils$ClassIterable
ew$b$a IteratorUtils$ClassIterable$ClassIterator
ex DispenseBehaviorItem
ey RegistryBlocks
ez RegistryDefault
f ReportedException
fa EnumDirection
fa$a EnumDirection$EnumAxis
fa$b EnumDirection$EnumAxisDirection
fa$c EnumDirection$EnumDirectionLimit
fb IDispenseBehavior
fc Registry
fd RegistryBlockID
fe ILocationSource
ff ISource
fg MapGeneratorUtils
fh RegistryMaterials
fi NonNullList
fj EnumParticle
fk IPosition
fl Position
fm IRegistry
fn Vector3f
fo RegistrySimple
fq BaseBlockPosition
ft LocaleI18n
fu LocaleLanguage
fw NBTTagByteArray
fx NBTTagByte
fy NBTTagCompound
fz NBTTagDouble
g SharedConstants
ga NBTTagEnd
gb NBTTagFloat
gc NBTTagIntArray
gd NBTTagInt
ge NBTTagList
gf NBTTagLongArray
gg NBTTagLong
gh NBTReadLimiter
gi NBTCompressedStreamTools
gj GameProfileSerializer
gk NBTNumber
gl NBTTagShort
gm NBTTagString
gn NBTBase
go MojangsonParseException
gp MojangsonParser
gr PacketEncryptionHandler
gs PacketDecrypter
gt PacketEncrypter
gu PacketDecompressor
gv PacketCompressor
gw NetworkManager
gw$a NetworkManager$QueuedPacket
gx EnumProtocol
gy PacketDataSerializer
gz PacketDecoder
h SystemUtils
ha PacketEncoder
hb PacketListener
hc PacketSplitter
hd PacketPrepender
he ChatBaseComponent
hf ChatMessageType
hg ChatClickable
hg$a ChatClickable$EnumClickAction
hh IChatBaseComponent
hh$a IChatBaseComponent$ChatSerializer
hi ChatComponentUtils
hj ChatHoverable
hj$a ChatHoverable$EnumHoverAction
hk ChatComponentKeybind
hl ChatComponentScore
hm ChatComponentSelector
hn ChatModifier
hn$a ChatModifier$ChatModifierSerializer
ho ChatComponentText
hp ChatMessage
hq ChatMessageException
ht Packet
hu EnumProtocolDirection
hv PlayerConnectionUtils
hw PacketListenerPlayOut
hx PacketPlayOutSpawnEntity
hy PacketPlayOutSpawnEntityExperienceOrb
hz PacketPlayOutSpawnEntityWeather
i Advancement
i$a Advancement$SerializedAdvancement
ia PacketPlayOutSpawnEntityLiving
ib PacketPlayOutSpawnEntityPainting
ic PacketPlayOutNamedEntitySpawn
id PacketPlayOutAnimation
ie PacketPlayOutStatistic
ig PacketPlayOutBlockBreakAnimation
ih PacketPlayOutTileEntityData
ii PacketPlayOutBlockAction
ij PacketPlayOutBlockChange
ik PacketPlayOutBoss
ik$a PacketPlayOutBoss$Action
il PacketPlayOutServerDifficulty
im PacketPlayOutTabComplete
in PacketPlayOutChat
io PacketPlayOutMultiBlockChange
io$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
ip PacketPlayOutTransaction
iq PacketPlayOutCloseWindow
ir PacketPlayOutOpenWindow
is PacketPlayOutWindowItems
it PacketPlayOutWindowData
iu PacketPlayOutSetSlot
iv PacketPlayOutSetCooldown
iw PacketPlayOutCustomPayload
ix PacketPlayOutCustomSoundEffect
iy PacketPlayOutKickDisconnect
iz PacketPlayOutEntityStatus
j Advancements
ja PacketPlayOutExplosion
jb PacketPlayOutUnloadChunk
jc PacketPlayOutGameStateChange
jd PacketPlayOutKeepAlive
je PacketPlayOutMapChunk
jf PacketPlayOutWorldEvent
jg PacketPlayOutWorldParticles
jh PacketPlayOutLogin
ji PacketPlayOutMap
jj PacketPlayOutEntity
jj$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
jj$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
jj$c PacketPlayOutEntity$PacketPlayOutEntityLook
jk PacketPlayOutVehicleMove
jl PacketPlayOutOpenSignEditor
jm PacketPlayOutAbilities
jn PacketPlayOutCombatEvent
jn$a PacketPlayOutCombatEvent$EnumCombatEventType
jo PacketPlayOutPlayerInfo
jo$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
jo$b PacketPlayOutPlayerInfo$PlayerInfoData
jp PacketPlayOutPosition
jp$a PacketPlayOutPosition$EnumPlayerTeleportFlags
jq PacketPlayOutBed
jr PacketPlayOutRecipes
js PacketPlayOutEntityDestroy
jt PacketPlayOutRemoveEntityEffect
ju PacketPlayOutResourcePackSend
jv PacketPlayOutRespawn
jw PacketPlayOutEntityHeadRotation
jx PacketPlayOutSelectAdvancementTab
jy PacketPlayOutWorldBorder
jy$a PacketPlayOutWorldBorder$EnumWorldBorderAction
jz PacketPlayOutCamera
k AdvancementProgress
ka PacketPlayOutHeldItemSlot
kb PacketPlayOutScoreboardDisplayObjective
kc PacketPlayOutEntityMetadata
kd PacketPlayOutAttachEntity
ke PacketPlayOutEntityVelocity
kf PacketPlayOutEntityEquipment
kg PacketPlayOutExperience
kh PacketPlayOutUpdateHealth
ki PacketPlayOutScoreboardObjective
kj PacketPlayOutMount
kk PacketPlayOutScoreboardTeam
kl PacketPlayOutScoreboardScore
kl$a PacketPlayOutScoreboardScore$EnumScoreboardAction
km PacketPlayOutSpawnPosition
kn PacketPlayOutUpdateTime
ko PacketPlayOutTitle
ko$a PacketPlayOutTitle$EnumTitleAction
kp PacketPlayOutNamedSoundEffect
kq PacketPlayOutPlayerListHeaderFooter
kr PacketPlayOutCollect
ks PacketPlayOutEntityTeleport
kt PacketPlayOutAdvancements
ku PacketPlayOutUpdateAttributes
ku$a PacketPlayOutUpdateAttributes$AttributeSnapshot
kv PacketPlayOutEntityEffect
kw PacketListenerPlayIn
kx PacketPlayInTeleportAccept
ky PacketPlayInAutoRecipe
kz PacketPlayInTabComplete
l AdvancementRewards
la PacketPlayInChat
lb PacketPlayInClientCommand
lb$a PacketPlayInClientCommand$EnumClientCommand
lc PacketPlayInSettings
ld PacketPlayInTransaction
le PacketPlayInEnchantItem
lf PacketPlayInWindowClick
lg PacketPlayInCloseWindow
lh PacketPlayInCustomPayload
li PacketPlayInUseEntity
li$a PacketPlayInUseEntity$EnumEntityUseAction
lj PacketPlayInKeepAlive
lk PacketPlayInFlying
lk$a PacketPlayInFlying$PacketPlayInPosition
lk$b PacketPlayInFlying$PacketPlayInPositionLook
lk$c PacketPlayInFlying$PacketPlayInLook
ll PacketPlayInVehicleMove
lm PacketPlayInBoatMove
ln PacketPlayInAbilities
lo PacketPlayInBlockDig
lo$a PacketPlayInBlockDig$EnumPlayerDigType
lp PacketPlayInEntityAction
lp$a PacketPlayInEntityAction$EnumPlayerAction
lq PacketPlayInSteerVehicle
lr PacketPlayInRecipeDisplayed
ls PacketPlayInResourcePackStatus
ls$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
lt PacketPlayInAdvancements
lt$a PacketPlayInAdvancements$Status
lu PacketPlayInHeldItemSlot
lv PacketPlayInSetCreativeSlot
lw PacketPlayInUpdateSign
lx PacketPlayInArmAnimation
ly PacketPlayInSpectate
lz PacketPlayInUseItem
m CriterionTriggers
ma PacketPlayInBlockPlace
mc PacketHandshakingInSetProtocol
md PacketHandshakingInListener
mf PacketLoginOutListener
mg PacketLoginOutSuccess
mh PacketLoginOutEncryptionBegin
mi PacketLoginOutSetCompression
mj PacketLoginOutDisconnect
mk PacketLoginInListener
ml PacketLoginInStart
mm PacketLoginInEncryptionBegin
mp PacketStatusOutListener
mq PacketStatusOutPong
mr PacketStatusOutServerInfo
ms ServerPing
ms$a ServerPing$ServerPingPlayerSample
ms$a$a ServerPing$ServerPingPlayerSample$Serializer
ms$b ServerPing$Serializer
ms$c ServerPing$ServerData
ms$c$a ServerPing$ServerData$Serializer
mt PacketStatusInListener
mu PacketStatusInPing
mv PacketStatusInStart
mx DataWatcherObject
my DataWatcherSerializer
mz DataWatcherRegistry
n Criterion
na DataWatcher
na$a DataWatcher$Item
nd MinecraftKey
nf DispenseBehaviorProjectile
ng DispenserRegistry
ni ServerCommand
nk DebugOutputStream
nl EULA
nm RedirectStream
nn AdvancementDataPlayer
np CancelledPacketHandleException
nq AdvancementDataWorld
nr CustomFunctionData
ns IMinecraftServer
nt ScoreboardServer
nu PropertyManager
nv ITickable
nw DedicatedPlayerList
nx DedicatedServer
ny ThreadWatchdog
o CriterionProgress
oa ServerGUI
ob PlayerListBox
oc GuiStatsComponent
og DemoWorldServer
oh DemoPlayerInteractManager
oi SecondaryWorldServer
oj EntityTracker
ok BossBattleServer
ol ChunkProviderServer
om WorldServer
om$a WorldServer$BlockActionDataList
on WorldManager
oo EntityPlayer
op PlayerInteractManager
oq EntityTrackerEntry
or PlayerChunk
os PlayerChunkMap
ov LegacyPingHandler
ox ServerConnection
oy PlayerConnection
oz HandshakeListener
p CriterionTrigger
pa LoginListener
pa$a LoginListener$EnumProtocolState
pb PacketStatusListener
pe ExpirableListEntry
pf UserCache
pf$a UserCache$UserCacheEntry
pf$b UserCache$BanEntrySerializer
pg IpBanList
ph IpBanEntry
pi NameReferencingFileConverter
pi$a NameReferencingFileConverter$FileConversionException
pj PlayerList
pk OpList
pl OpListEntry
pm JsonListEntry
pn JsonList
pn$a JsonList$JsonListEntrySerializer
po GameProfileBanList
pp GameProfileBanEntry
pq WhiteList
pr WhiteListEntry
pt RemoteStatusReply
pu StatusChallengeUtils
pv RemoteControlCommandListener
px RemoteConnectionThread
py RemoteStatusListener
py$a RemoteStatusListener$RemoteStatusChallenge
pz RemoteControlSession
q CriterionInstance
qa RemoteControlListener
qc SoundEffect
qd SoundEffects
qe SoundCategory
qh CounterStatistic
qi CraftingStatistic
qj RecipeBook
qk RecipeBookServer
ql ServerStatisticManager
ql ServerStatisticManager#
qm Statistic
qn Counter
qo StatisticWrapper
qp IJsonStatistic
qq StatisticList
qr StatisticManager
qu DataBits
qv EntitySlice
qx RegistryID
qy MinecraftEncryption
r AdvancementDisplay
ra ChatDeserializer
rb HttpUtilities
rc InsensitiveStringMap
re IntHashMap
re$a IntHashMap$IntHashMapEntry
rf LazyInitVar
rh ChatTypeAdapterFactory
ri MathHelper
rj MethodProfiler
rj$a MethodProfiler$ProfilerInfo
rk IProgressUpdate
rm INamable
rn UtilColor
rp Tuple
rq WeightedRandom
rq$a WeightedRandom$WeightedRandomChoice
rs IDataConverter
rt DataConverterType
ru DataConverterTypes
rv DataConverter
rw DataConverterManager
rx DataConverterRegistry
ry DataInspector
rz DataConverterBedBlock
s AdvancementFrameType
sa DataConverterBedItem
sb DataConverterTileEntity
sc DataConverterMobSpawner
sd DataConverterShulkerBoxBlock
se DataConverterSignText
sf DataConverterArmorStand
sg DataConverterGuardian
sh DataConverterEquipment
si DataConverterHealth
sj DataConverterSaddle
sk DataConverterHorse
sl DataConverterEntity
sm DataConverterMinecart
sn DataConverterHanging
so DataConverterDropChances
sp DataConverterRiding
sq DataConverterShulker
sr DataConverterSkeleton
ss DataConverterUUID
st DataConverterZombieType
su DataConverterZombie
sv DataConverterBanner
sw DataConverterCookedFish
sx DataConverterMaterialId
sy DataConverterPotionId
sz DataConverterShulkerBoxItem
t AdvancementTree
ta DataConverterSpawnEgg
tb DataConverterTotem
tc DataConverterPotionWater
td DataConverterBook
te DataConverterVBO
tf DataConverterLang
ti DataInspectorItem
tj DataInspectorBlockEntity
tk DataInspectorEntity
tl DataInspectorItemList
tm DataInspectorTagged
tp IAsyncTaskHandler
tr BossBattle
tr$a BossBattle$BarColor
tr$b BossBattle$BarStyle
ts InventoryLargeChest
tt IInventory
tu ContainerUtil
tv IInventoryListener
tw InventoryUtils
tx EnumDifficulty
ty DifficultyDamageScaler
tz EnumHand
u CriterionInstanceAbstract
ua ITileEntityContainer
ub EnumInteractionResult
uc InteractionResultWrapper
ue ChestLock
uf ITileInventory
ug INamableTileEntity
uh ILootable
ui InventorySubcontainer
uj MojangStatisticsGenerator
uk IMojangStatistics
ul IWorldInventory
um CombatEntry
un CombatMath
uo CombatTracker
up DamageSource
uq EntityDamageSource
ur EntityDamageSourceIndirect
ut MobEffectAbsorption
uu MobEffectAttackDamage
uv MobEffectHealthBoost
uw InstantMobEffect
ux MobEffectList
uy MobEffect
uz MobEffects
v CriterionTriggerBredAnimals
vb EntityAgeable
vc EntityAreaEffectCloud
vd IAnimal
ve Entity
vg EntityTypes
vg$a EntityTypes$MonsterEggInfo
vi IEntitySelector
vi$a IEntitySelector$EntitySelectorEquipable
vj EnumItemSlot
vj$a EnumItemSlot$Function
vk EntityExperienceOrb
vl EntityFlying
vm EnumMainHand
vn EntityLiving
vo EntityInsentient
vo$a EntityInsentient$EnumEntityPositionType
vp EnumCreatureType
vq GroupDataEntity
vr EntityPositionTypes
vs EnumMonsterType
vt EnumMoveType
vu EntityOwnable
vv EntityCreature
vx IJumpable
vz EntityTameableAnimal
w CriterionTriggerBrewedPotion
wa IAttribute
wb AttributeInstance
wc AttributeModifier
wd AttributeBase
we AttributeMapBase
wf AttributeModifiable
wg AttributeMapServer
wh AttributeRanged
wj EntityAIBodyControl
wl ControllerMoveFlying
wm ControllerJump
wn ControllerLook
wo ControllerMove
wo$a ControllerMove$Operation
wq PathfinderGoalAvoidTarget
wr PathfinderGoalBeg
ws PathfinderGoalBreakDoor
wt PathfinderGoalBreed
wu PathfinderGoalDoorInteract
wv PathfinderGoalEatTile
ww PathfinderGoalFleeSun
wx PathfinderGoalFloat
wy PathfinderGoalFollowEntity
wz PathfinderGoalFollowOwnerParrot
x CriterionTriggerChangedDimension
xa PathfinderGoalFollowOwner
xb PathfinderGoalFollowParent
xc PathfinderGoal
xd PathfinderGoalSelector
xd$a PathfinderGoalSelector$PathfinderGoalSelectorItem
xe PathfinderGoalVillagerFarm
xf PathfinderGoalInteract
xg PathfinderGoalPerch
xh PathfinderGoalLeapAtTarget
xi PathfinderGoalLlamaFollow
xj PathfinderGoalLookAtPlayer
xk PathfinderGoalLookAtTradingPlayer
xl PathfinderGoalMakeLove
xm PathfinderGoalMeleeAttack
xn PathfinderGoalMoveIndoors
xo PathfinderGoalMoveThroughVillage
xp PathfinderGoalGotoTarget
xq PathfinderGoalMoveTowardsRestriction
xr PathfinderGoalMoveTowardsTarget
xs PathfinderGoalOcelotAttack
xt PathfinderGoalJumpOnBlock
xu PathfinderGoalOfferFlower
xv PathfinderGoalOpenDoor
xw PathfinderGoalPanic
xx PathfinderGoalPlay
xz PathfinderGoalRandomLookaround
y CriterionTriggerConstructBeacon
ya PathfinderGoalRandomStroll
yb PathfinderGoalArrowAttack
yc PathfinderGoalBowShoot
yd PathfinderGoalRestrictOpenDoor
ye PathfinderGoalRestrictSun
yf PathfinderGoalTame
yg PathfinderGoalSit
yh PathfinderGoalSwell
yi PathfinderGoalTakeFlower
yj PathfinderGoalTempt
yk PathfinderGoalTradeWithPlayer
yl PathfinderGoalInteractVillagers
ym PathfinderGoalRandomFly
yn PathfinderGoalRandomStrollLand
yo PathfinderGoalZombieAttack
yq PathfinderGoalDefendVillage
yr PathfinderGoalHurtByTarget
ys PathfinderGoalNearestAttackableTargetInsentient
yt PathfinderGoalTargetNearestPlayer
yu PathfinderGoalNearestAttackableTarget
yu$a PathfinderGoalNearestAttackableTarget$DistanceComparator
yv PathfinderGoalRandomTargetNonTamed
yw PathfinderGoalOwnerHurtByTarget
yx PathfinderGoalOwnerHurtTarget
yy PathfinderGoalTarget
z CriterionTriggerConsumeItem
za NavigationFlying
zb Navigation
zc NavigationAbstract
zd NavigationListener
ze NavigationSpider
zf NavigationGuardian
zh EntitySenses
zj RandomPositionGenerator
zl VillageDoor
zm Village
zm$a Village$Aggressor
zn VillageSiege
zo PersistentVillage
zq EntityAmbient
zr EntityBat
zt EntityAnimal
zu EntityChicken
zv EntityCow
zw EntityBird
zx EntityGolem
zy EntityMushroomCow
zz EntityOcelot