summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.13-pre7-cl.csrg
blob: 8d9b7df0e4d9c4a023eda09e1c992dfa46389c8a (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
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
# (c) 2018 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerBrewedPotion
aaa DataConverterSpawnEgg
aab DataConverterItemStackEnchantment
aac DataConverterMap
aad DataConverterFlattenSpawnEgg
aae DataConverterFlatten
aaf DataConverterPotionWater
aag DataConverterBook
aah DataConverterLeaves
aai DataConverterLevelDataGeneratorOptions
aaj DataConverterWorldGenSettings
aak DataConverterMobSpawner
aal DataConverterNamedEntity
aam DataConverterVBO
aan DataConverterKeybind
aao DataConverterKeybind2
aap DataConverterLang
aaq DataConverterRecipes
aar DataConverterTypes
aas DataConverterCoral
aat DataConverterVillage
aau DataConverterEntityNameAbstract
aav DataConverterEntityRenameAbstract
aaw DataConverterStatistic
aax DataConverterSwimStats
aay DataConverterVillagerTrade
aaz DataConverterShoulderEntity
ab CriterionTriggerChangedDimension
abc DataConverterSchemaNamed
abd DataConverterSchemaV100
abe DataConverterSchemaV102
abf DataConverterSchemaV1022
abg DataConverterSchemaV106
abh DataConverterSchemaV107
abi DataConverterSchemaV1125
abj DataConverterSchemaV135
abk DataConverterSchemaV143
abl DataConverterSchemaV1451
abm DataConverterSchemaV1451_1
abn DataConverterSchemaV1451_2
abo DataConverterSchemaV1451_3
abp DataConverterSchemaV1451_4
abq DataConverterSchemaV1451_5
abr DataConverterSchemaV1451_6
abs DataConverterSchemaV1451_7
abt DataConverterSchemaV1460
abu DataConverterSchemaV1466
abv DataConverterSchemaV1470
abw DataConverterSchemaV1481
abx DataConverterSchemaV1483
aby DataConverterSchemaV1486
abz DataConverterSchemaV1510
ac CriterionTriggerChanneledLightning
aca DataConverterSchemaV501
acb DataConverterSchemaV700
acc DataConverterSchemaV701
acd DataConverterSchemaV702
ace DataConverterSchemaV703
acf DataConverterSchemaV704
acg DataConverterSchemaV705
ach DataConverterSchemaV808
aci DataConverterSchemaV99
ack NamedIncrementingThreadFactory
acl Scheduler
acm IAsyncTaskHandler
acn SchedulerBatch
aco SchedulerTask
acq BossBattle
acq$a BossBattle$BarColor
acq$b BossBattle$BarStyle
acr InventoryLargeChest
acs IInventory
act ContainerUtil
acu IInventoryListener
acv InventoryUtils
acw EnumDifficulty
acx DifficultyDamageScaler
acy EnumHand
acz ITileEntityContainer
ad CriterionTriggerConstructBeacon
ada EnumInteractionResult
adb InteractionResultWrapper
add ChestLock
ade ITileInventory
adf INamableTileEntity
adg ILootable
adh InventorySubcontainer
adi MojangStatisticsGenerator
adj IMojangStatistics
adk IWorldInventory
adl CombatEntry
adm CombatMath
adn CombatTracker
ado DamageSource
adp EntityDamageSource
adq EntityDamageSourceIndirect
adr DamageSourceNetherBed
adt MobEffectAbsorption
adu MobEffectAttackDamage
adv MobEffectHealthBoost
adw InstantMobEffect
adx MobEffectList
ady MobEffect
adz MobEffectUtil
ae CriterionTriggerConsumeItem
aea MobEffects
aec EntityAgeable
aed EntityAreaEffectCloud
aee IAnimal
aef Entity
aei IEntitySelector
aei$a IEntitySelector$EntitySelectorEquipable
aej EntityTypes
aek EnumItemSlot
aek$a EnumItemSlot$Function
ael EntityExperienceOrb
aem EntityFlying
aen EnumMainHand
aeo EntityLiving
aep EntityInsentient
aeq EnumCreatureType
aer EnumMonsterType
aes EnumMoveType
aet EntityOwnable
aeu EntityCreature
aew IJumpable
aex GroupDataEntity
aey EntityPositionTypes
aey$b EntityPositionTypes$Surface
aez EntityTameableAnimal
af CriterionTriggerCuredZombieVillager
afa IAttribute
afb AttributeInstance
afc AttributeModifier
afd AttributeBase
afe AttributeMapBase
aff AttributeModifiable
afg AttributeMapServer
afh AttributeRanged
afj EntityAIBodyControl
afl ControllerLookDolphin
afm ControllerMoveFlying
afn ControllerJump
afo ControllerLook
afp ControllerMove
afp$a ControllerMove$Operation
afr PathfinderGoalAvoidTarget
afs PathfinderGoalBeg
aft PathfinderGoalBoat
afu PathfinderGoalBreakDoor
afv PathfinderGoalBreath
afw PathfinderGoalBreed
afx PathfinderGoalDoorInteract
afy PathfinderGoalEatTile
afz PathfinderGoalFleeSun
ag CriterionConditionDamage
aga PathfinderGoalFloat
agb PathfinderGoalFollowBoat
agc PathfinderGoalFishSchool
agd PathfinderGoalFollowEntity
age PathfinderGoalFollowOwnerParrot
agf PathfinderGoalFollowOwner
agg PathfinderGoalFollowParent
agh PathfinderGoal
agi PathfinderGoalSelector
agi$a PathfinderGoalSelector$PathfinderGoalSelectorItem
agj PathfinderGoalVillagerFarm
agk PathfinderGoalInteract
agl PathfinderGoalWaterJump
agm PathfinderGoalPerch
agn PathfinderGoalLeapAtTarget
ago PathfinderGoalLlamaFollow
agp PathfinderGoalLookAtPlayer
agq PathfinderGoalLookAtTradingPlayer
agr PathfinderGoalMakeLove
ags PathfinderGoalMeleeAttack
agt PathfinderGoalMoveIndoors
agu PathfinderGoalMoveThroughVillage
agv PathfinderGoalGotoTarget
agw PathfinderGoalMoveTowardsRestriction
agx PathfinderGoalMoveTowardsTarget
agy PathfinderGoalOcelotAttack
agz PathfinderGoalJumpOnBlock
ah CriterionConditionDamageSource
aha PathfinderGoalOfferFlower
ahb PathfinderGoalOpenDoor
ahc PathfinderGoalPanic
ahd PathfinderGoalPlay
ahe PathfinderGoalRandomLookaround
ahf PathfinderGoalRandomStroll
ahg PathfinderGoalRandomSwim
ahh PathfinderGoalArrowAttack
ahi PathfinderGoalBowShoot
ahj PathfinderGoalRemoveBlock
ahk PathfinderGoalRestrictOpenDoor
ahl PathfinderGoalRestrictSun
ahm PathfinderGoalTame
ahn PathfinderGoalSit
aho PathfinderGoalSwell
ahp PathfinderGoalTakeFlower
ahq PathfinderGoalTempt
ahr PathfinderGoalTradeWithPlayer
ahs PathfinderGoalWater
aht PathfinderGoalInteractVillagers
ahu PathfinderGoalRandomFly
ahv PathfinderGoalRandomStrollLand
ahw PathfinderGoalZombieAttack
ahy PathfinderGoalDefendVillage
ahz PathfinderGoalHurtByTarget
ai CriterionConditionDistance
aia PathfinderGoalNearestAttackableTargetInsentient
aib PathfinderGoalTargetNearestPlayer
aic PathfinderGoalNearestAttackableTarget
aic$a PathfinderGoalNearestAttackableTarget$DistanceComparator
aid PathfinderGoalRandomTargetNonTamed
aie PathfinderGoalOwnerHurtByTarget
aif PathfinderGoalOwnerHurtTarget
aig PathfinderGoalTarget
aii NavigationFlying
aij Navigation
aik NavigationAbstract
ail NavigationListener
aim NavigationSpider
ain NavigationGuardian
aip EntitySenses
air RandomPositionGenerator
ait VillageDoor
aiu Village
aiu$a Village$Aggressor
aiv VillageSiege
aiw PersistentVillage
aiy EntityAmbient
aiz EntityBat
aj CriterionTriggerEffectsChanged
ajb EntityFish
ajc EntityGolem
ajd EntityAnimal
aje EntityChicken
ajf EntityCod
ajg EntityCow
ajh EntityDolphin
aji EntityBird
ajj EntityIronGolem
ajk EntityMushroomCow
ajl EntityOcelot
ajm EntityParrot
ajn EntityPig
ajo EntityPolarBear
ajp EntityPufferFish
ajq EntityRabbit
ajq$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
ajq$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
ajq$c EntityRabbit$GroupDataRabbit
ajq$d EntityRabbit$ControllerJumpRabbit
ajq$e EntityRabbit$ControllerMoveRabbit
ajq$f EntityRabbit$PathfinderGoalRabbitPanic
ajq$g EntityRabbit$PathfinderGoalEatCarrots
ajr EntitySalmon
ajs EntitySheep
ajt EntityPerchable
aju EntitySnowman
ajv EntitySquid
ajv$b EntitySquid$PathfinderGoalSquid
ajw EntityTropicalFish
ajx EntityTurtle
ajy EntityWaterAnimal
ajz EntityWolf
ak CriterionTriggerEnchantedItem
aka EntityHorseChestedAbstract
akb EntityHorseAbstract
akc EntityHorseDonkey
akd EntityHorse
ake EnumHorseArmor
akf EntityLlama
akg EntityHorseMule
akh EntityHorseSkeleton
aki PathfinderGoalHorseTrap
akj EntityHorseZombie
akn IComplex
ako EntityComplexPart
akp EntityEnderCrystal
akq EntityEnderDragon
aks AbstractDragonController
akt AbstractDragonControllerLanded
aku DragonControllerCharge
akv DragonControllerDying
akw DragonControllerHold
akx DragonControllerHover
aky DragonControllerLandingFly
akz DragonControllerLanding
al CriterionConditionEnchantments
ala IDragonController
alb DragonControllerLandedAttack
alc DragonControllerLandedFlame
ald DragonControllerLandedSearch
ale DragonControllerStrafe
alf DragonControllerFly
alg DragonControllerPhase
alh DragonControllerManager
alk EntityWither
alm EntityArmorStand
aln EntityHanging
alo EntityItemFrame
alp EntityLeash
alq Paintings
alr EntityPainting
alt EntityFishingHook
alt$a EntityFishingHook$HookState
alv EntityWeather
alw EntityLightning
aly EntityFallingBlock
alz EntityItem
am CriterionTriggerEnterBlock
ama EntityTNTPrimed
amc EntityIllagerAbstract
amd EntitySkeletonAbstract
ame EntityBlaze
ame$a EntityBlaze$PathfinderGoalBlazeFireball
amf EntityCaveSpider
amg EntityCreeper
amh EntityDrowned
ami EntityGuardianElder
amj EntityEnderman
amj$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
amj$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
amj$c EntityEnderman$PathfinderGoalEndermanPickupBlock
amk EntityEndermite
aml IMonster
amm EntityEvoker
amn EntityGhast
amn$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
amn$b EntityGhast$ControllerGhast
amn$c EntityGhast$PathfinderGoalGhastAttackTarget
amn$d EntityGhast$PathfinderGoalGhastIdleMove
amo EntityGiantZombie
amp EntityGuardian
amp$a EntityGuardian$PathfinderGoalGuardianAttack
amp$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
amp$c EntityGuardian$ControllerMoveGuardian
amq EntityZombieHusk
amr EntityIllagerIllusioner
ams EntityMagmaCube
amt EntityMonster
amu EntityPhantom
amu$a EntityPhantom$AttackPhase
amv EntityPigZombie
amv$a EntityPigZombie$PathfinderGoalAnger
amv$b EntityPigZombie$PathfinderGoalAngerOther
amw IRangedEntity
amx GenericAttributes
amy EntityShulker
amz EntitySilverfish
amz$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
amz$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
an CriterionTriggerEntityHurtPlayer
ana EntitySkeleton
anb EntitySlime
anb$a EntitySlime$PathfinderGoalSlimeNearestPlayer
anb$b EntitySlime$PathfinderGoalSlimeRandomJump
anb$c EntitySlime$PathfinderGoalSlimeIdle
anb$d EntitySlime$ControllerMoveSlime
anb$e EntitySlime$PathfinderGoalSlimeRandomDirection
anc EntityIllagerWizard
anc$a EntityIllagerWizard$Spell
and EntitySpider
and$a EntitySpider$PathfinderGoalSpiderMeleeAttack
and$b EntitySpider$GroupDataSpider
and$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
ane EntitySkeletonStray
anf EntityVex
ang EntityVindicator
anh EntityWitch
ani EntitySkeletonWither
anj EntityZombie
anj$b EntityZombie$GroupDataZombie
ank EntityZombieVillager
ann NPC
ano EntityVillager
ano$a EntityVillager$MerchantRecipeOptionBuy
ano$b EntityVillager$MerchantRecipeOptionBook
ano$c EntityVillager$MerchantRecipeOptionEnchant
ano$d EntityVillager$MerchantRecipeOptionProcess
ano$e EntityVillager$MerchantRecipeOptionSell
ano$f EntityVillager$IMerchantRecipeOption
ano$g EntityVillager$MerchantOptionRandomRange
anr PlayerAbilities
ans PlayerInventory
ant EntityHuman
ant$a EntityHuman$EnumBedResult
ant$b EntityHuman$EnumChatVisibility
anv AutoRecipeStackManager
anx EntityArrow
anx$a EntityArrow$PickupStatus
any EntityFireball
anz EntityTippedArrow
ao CriterionConditionEntity
aoa EntityDragonFireball
aob EntityEvokerFangs
aoc EntityEnderSignal
aod EntityFireworks
aoe EntityLargeFireball
aof EntityLlamaSpit
aog IProjectile
aoh ProjectileHelper
aoi EntityShulkerBullet
aoj EntitySmallFireball
aok EntitySnowball
aol EntitySpectralArrow
aom EntityProjectile
aon EntityEgg
aoo EntityEnderPearl
aop EntityThrownExpBottle
aoq EntityPotion
aor EntityThrownTrident
aos EntityWitherSkull
aou EntityMinecartAbstract
aou$a EntityMinecartAbstract$EnumMinecartType
aov EntityMinecartContainer
aow EntityBoat
aow$a EntityBoat$EnumStatus
aow$b EntityBoat$EnumBoatType
aox EntityMinecartRideable
aoy EntityMinecartChest
aoz EntityMinecartCommandBlock
ap CriterionConditionEntityType
apa EntityMinecartFurnace
apb EntityMinecartHopper
apc EntityMinecartMobSpawner
apd EntityMinecartTNT
apg FoodMetaData
api Container
apj ContainerAnvil
apk ContainerBeacon
apk$a ContainerBeacon$SlotBeacon
apl ContainerBrewingStand
apl$b ContainerBrewingStand$SlotBrewing
apl$c ContainerBrewingStand$SlotPotionBottle
apm ContainerChest
apn InventoryClickType
apo ICrafting
app InventoryCrafting
apq ContainerWorkbench
apr ContainerDispenser
aps ContainerEnchantTable
apt SlotFurnaceFuel
apu ContainerFurnace
apv SlotFurnaceResult
apw ContainerHopper
apx InventoryHorseChest
apy ContainerHorse
apz ContainerPlayer
aq CriterionTriggerFilledBucket
aqa InventoryMerchant
aqb ContainerMerchant
aqc SlotMerchantResult
aqd InventoryEnderChest
aqe ContainerRecipeBook
aqf RecipeHolder
aqg InventoryCraftResult
aqh SlotResult
aqi ContainerShulkerBox
aqj SlotShulkerBox
aqk Slot
aql AutoRecipeOutput
aqn ItemAir
aqo ItemArmor
aqp ArmorMaterial
aqq EnumArmorMaterial
aqr ItemArmorStand
aqs ItemArrow
aqt ItemAxe
aqu ItemBanner
aqv ItemBed
aqw ItemBlock
aqx BlockActionContext
aqy ItemBoat
aqz ItemBoneMeal
ar CriterionTriggerFishingRodHooked
ara ItemBook
arb ItemGlassBottle
arc ItemBow
ard ItemSoup
are ItemBucket
arf ItemCarrotStick
arg ItemChorusFruit
arh ItemClock
ari ItemCocoa
arj ItemCompass
ark ItemWorldMapBase
arl CreativeModeTab
arm ItemDebugStick
arn ItemTool
aro ItemBisected
arp EnumColor
arq ItemDye
arr ItemArmorColorable
ars ItemEgg
art ItemElytra
aru ItemMapEmpty
arv ItemEnchantedBook
arw ItemFireworks
arw ItemGoldenAppleEnchanted
arx ItemEndCrystal
ary ItemEnderEye
arz ItemEnderPearl
as CriterionTriggerImpossible
asa ItemExpBottle
asb ItemFireball
asc ItemFireworks
asc$a ItemFireworks$EffectType
asd ItemFireworksCharge
ase ItemFishBucket
asf ItemFish
asf$a ItemFish$EnumFish
asg ItemFishingRod
ash ItemFlintAndSteel
asi ItemFood
asj ItemRestricted
ask ItemGoldenApple
asl ItemHanging
asm ItemHoe
asn Item
asn$a Item$Info
aso ItemCooldown
aso$a ItemCooldown$Info
asp ItemItemFrame
asq IDynamicTexture
asr ItemStack
ass Items
ast ItemKnowledgeBook
asu ItemLeash
asv ItemLingeringPotion
asw ItemWorldMap
asx ItemMilkBucket
asy ItemMinecart
asz ItemNameTag
at CriterionTriggerInventoryChanged
ata ItemPickaxe
atb ItemSkullPlayer
atc ItemPotion
atd EnumItemRarity
ate ItemRecord
atf ItemSaddle
atg ItemSeedFood
ath ItemSeeds
ati ItemCooldownPlayer
atj ItemShears
atk ItemShield
atl ItemSpade
atm ItemSign
atn ItemNetherStar
ato ItemSnowball
atp ItemMonsterEgg
atq ItemSpectralArrow
atr ItemSplashPotion
ats ItemBlockWallable
att ItemString
atu ItemSword
atv ToolMaterial
atw ItemToolMaterial
atx EnumToolMaterial
aty ItemTippedArrow
au CriterionTriggerItemDurabilityChanged
aua ItemTrident
aub EnumAnimation
auc ItemActionContext
aud ItemWaterLily
aue ItemBookAndQuill
auf ItemWrittenBook
aug PotionRegistry
auh PotionBrewer
auh$a PotionBrewer$PredicatedCombination
aui PotionUtil
auj Potions
aul RecipeArmorDye
aum RecipeBannerAdd
aun RecipeBannerDuplicate
auo RecipeBookClone
aup IRecipeComplex
auq RecipeFireworks
aur RecipeFireworksFade
aus RecipeFireworksStar
aut RecipeItemStack
aut$a RecipeItemStack$StackProvider
aut$c RecipeItemStack$Provider
auu RecipeMapClone
auv RecipeMapExtend
auw IRecipe
auy CraftingManager
auz RecipeSerializer
av CriterionConditionItem
ava RecipeSerializers
avb RecipeRepair
avc ShapedRecipes
avd ShapelessRecipes
ave RecipiesShield
avf RecipeShulkerBox
avg FurnaceRecipe
avh RecipeTippedArrow
avj EnchantmentArrowDamage
avk EnchantmentFlameArrows
avl EnchantmentInfiniteArrows
avm EnchantmentArrowKnockback
avn EnchantmentBinding
avo EnchantmentWeaponDamage
avp EnchantmentDurability
avq EnchantmentDigging
avr Enchantment
avr$a Enchantment$Rarity
avs EnchantmentSlotType
avt EnchantmentManager
avt$a EnchantmentManager$EnchantmentModifierArthropods
avt$b EnchantmentManager$EnchantmentModifierThorns
avt$c EnchantmentManager$EnchantmentModifier
avt$d EnchantmentManager$EnchantmentModifierDamage
avt$e EnchantmentManager$EnchantmentModifierProtection
avu WeightedRandomEnchant
avv Enchantments
avw EnchantmentFire
avx EnchantmentLure
avy EnchantmentFrostWalker
avz EnchantmentKnockback
aw CriterionTriggerKilled
awa EnchantmentLootBonus
awb EnchantmentMending
awc EnchantmentOxygen
awd EnchantmentProtection
awd$a EnchantmentProtection$DamageType
awe EnchantmentSweeping
awf EnchantmentThorns
awg EnchantmentTridentChanneling
awh EnchantmentTridentImpaling
awi EnchantmentTridentLoyalty
awj EnchantmentTridentRiptide
awk EnchantmentSilkTouch
awl EnchantmentVanishing
awm EnchantmentDepthStrider
awn EnchantmentWaterWorker
awq IMerchant
awr MerchantRecipe
aws MerchantRecipeList
awu CommandBlockListenerAbstract
awv MobSpawnerAbstract
aww BlockActionData
awx IBlockAccess
awy TextureType
awz ChunkCoordIntPair
ax CriterionTriggerLevitation
axc ExpiringMap
axd Explosion
axf GameRules
axf$a GameRules$GameRuleValue
axf$c GameRules$EnumGameRuleType
axg EnumGamemode
axi IMaterial
axj World
axk GeneratorAccess
axl ExceptionWorldConflict
axm IWorldAccess
axn IWorldReader
axo WorldSettings
axp IIBlockAccess
axq WorldType
axr IWorldWriter
axs EnumSkyBlock
axt SpawnerCreature
axu PortalTravelAgent
axu$a PortalTravelAgent$ChunkCoordinatesPortal
axv ChunkCache
axw TickListServer
axx MobSpawnerData
axy TickList
axz NextTickListEntry
ay CriterionConditionLocation
aya TickListPriority
ayb BiomeMesa
ayc BiomeMesaPlataeuClear
ayd BiomeBeach
aye BiomeBase
aye$b BiomeBase$Geography
aye$c BiomeBase$EnumTemperature
aye$d BiomeBase$Precipitation
aye$e BiomeBase$BiomeMeta
ayf BiomeCache
ayg WorldChunkManager
ayh BiomeLayoutConfiguration
ayi BiomeLayout
ayj Biomes
ayk BiomeBirchForest
ayl BiomeBirchForestHills
aym WorldChunkManagerCheckerBoard
ayn BiomeLayoutCheckerboardConfiguration
ayo BiomeColdOcean
ayp BiomeRoofedForest
ayq BiomeRoofedForestMutated
ayr BiomeColdDeepOcean
ays BiomeFrozenDeepOcean
ayt BiomeLukewarmDeepOcean
ayu BiomeDeepOcean
ayv BiomeWarmDeepOcean
ayw BiomeDesert
ayx BiomeDesertHills
ayy BiomeDesertMutated
ayz BiomeTheEndBarrenIsland
az CriterionTriggerLocation
aza BiomeTheEndHighIsland
azb BiomeTheEndMediumIsland
azc BiomeMesaBryce
azd WorldChunkManagerHell
aze BiomeLayoutFixedConfiguration
azf BiomeForest
azg BiomeFlowerForest
azh BiomeFrozenOcean
azi BiomeFrozenRiver
azj BiomeMegaSpruceTaiga
azk BiomeRedwoodTaigaHillsMutated
azl BiomeMegaTaiga
azm BiomeMegaTaigaHills
azn BiomeExtremeHillsMutated
azo BiomeIcePlainsSpikes
azp BiomeJungle
azq BiomeJungleEdge
azr BiomeJungleHills
azs BiomeLukewarmOcean
azt BiomeMesaPlateauClearMutated
azu BiomeExtremeHillsWithTreesMutated
azv BiomeJungleMutated
azw BiomeJungleEdgeMutated
azx BiomeMesaPlateauMutated
azy BiomeBigHills
azz BiomeExtremeHillsEdge
b CrashReport
ba CriterionConditionValue
baa BiomeMushrooms
bab BiomeMushroomIslandShore
bab BiomeMushroomIslandShore
bac BiomeHell
bad BiomeOcean
bae WorldChunkManagerOverworld
baf BiomeLayoutOverworldConfiguration
bag BiomePlains
bah BiomeRiver
bai BiomeSavanna
baj BiomeSavannaPlateau
bak BiomeSavannaMutated
bal BiomeSavannaPlateauMutated
bam BiomeTheEndFloatingIslands
ban BiomeColdBeach
bao BiomeIceMountains
bap BiomeColdTaiga
baq BiomeColdTaigaHills
bar BiomeColdTaigaMutated
bas BiomeIcePlains
bat BiomeStoneBeach
bau BiomeSunflowerPlains
bav BiomeSwamp
baw BiomeSwamplandMutated
bax BiomeTaiga
bay BiomeTaigaHills
baz BiomeTaigaMutated
bb CriterionConditionMobEffect
bba BiomeBirchForestMutated
bbb BiomeBirchForestHillsMutated
bbc BiomeTheEnd
bbd WorldChunkManagerTheEnd
bbe BiomeLayoutTheEndConfiguration
bbf BiomeVoid
bbg BiomeWarmOcean
bbh BiomeMesaPlataeu
bbi BiomeForestHills
bbj BiomeExtremeHillsWithTrees
bbl BlockBannerAbstract
bbm BlockSkullAbstract
bbn BlockAir
bbo BlockAnvil
bbo$a BlockAnvil$TileEntityContainerAnvil
bbp BlockStemAttached
bbq BlockBanner
bbr BlockBarrier
bbs BlockTileEntity
bbt BlockPressurePlateAbstract
bbu BlockMinecartTrackAbstract
bbv BlockBeacon
bbw BlockBed
bbx BlockBeetroot
bby Block
bby$a Block$EnumRandomOffset
bby$b Block$Info
bbz Blocks
bc CriterionConditionNBT
bca BlockBlueIce
bcb IBlockFragilePlantElement
bcc BlockBookshelf
bcd BlockBrewingStand
bce BlockBubbleColumn
bcf IFluidSource
bcg BlockPlant
bch BlockButtonAbstract
bci BlockCactus
bcj BlockCake
bck BlockCarrots
bcl BlockPumpkinCarved
bcm BlockCauldron
bcn BlockChest
bco BlockChorusFlower
bcp BlockChorusFruit
bcq BlockClay
bcr BlockCocoa
bcs BlockCommand
bct BlockRedstoneComparator
bcu BlockConcretePowder
bcv BlockConduit
bcw BlockCoral
bcx BlockCoralFan
bcy BlockCoralPlant
bcz BlockWorkbench
bcz$a BlockWorkbench$TileEntityContainerWorkbench
bd CriterionTriggerNetherTravel
bda BlockCrops
bdb BlockTall
bdc BlockDaylightDetector
bdd BlockDeadBush
bde BlockMinecartDetector
bdf BlockDiodeAbstract
bdg BlockDirectional
bdh BlockDispenser
bdi BlockDoor
bdj BlockTallPlant
bdk BlockDragonEgg
bdl BlockDropper
bdm BlockEnchantmentTable
bdn BlockEndGateway
bdo BlockEnderPortal
bdp BlockEnderPortalFrame
bdq BlockEndRod
bdr BlockEnderChest
bds ITileEntity
bdt BlockAttachable
bdu BlockFalling
bdv BlockSoil
bdw BlockFence
bdx BlockFenceGate
bdy BlockFire
bdz BlockFlowers
be CriterionTriggerPlacedBlock
bea BlockFlowerPot
beb BlockIceFrost
bec BlockFurnace
bed BlockGlass
bee BlockGlassPane
bef BlockGlazedTerracotta
beg BlockLightStone
beh BlockGrass
bei BlockGrassPath
bej BlockGravel
bek BlockHalfTransparent
bel BlockHay
bem BlockHopper
ben BlockFacingHorizontal
beo BlockHugeMushroom
bep BlockIce
beq BlockMonsterEggs
ber BlockIronBars
bes BlockJukeBox
bet BlockKelp
beu BlockKelpPlant
bev BlockLadder
bew BlockLeaves
bey BlockLever
bez BlockFluids
bf CriterionTriggerPlayerHurtEntity
bfa IFluidContainer
bfb BlockLogAbstract
bfc BlockMagma
bfd BlockMelon
bfe EnumBlockMirror
bff BlockMushroom
bfg BlockMycel
bfh BlockPortal
bfh$a BlockPortal$Shape
bfi BlockNetherWart
bfj BlockNoDrop
bfk BlockNote
bfl BlockObserver
bfm BlockOre
bfn BlockPackedIce
bfo BlockSprawling
bfp BlockSkullPlayer
bfq BlockSkullPlayerWall
bfr BlockPotatoes
bfs BlockPowered
bft BlockPoweredRail
bfu BlockPressurePlateBinary
bfu$a BlockPressurePlateBinary$EnumMobType
bfv BlockPumpkin
bfw BlockMinecartTrack
bfx MinecartTrackLogic
bfy BlockRedstoneOre
bfz BlockRedstoneWire
bg CriterionTriggerRecipeUnlocked
bga BlockRedstoneLamp
bgb BlockRedstoneTorch
bgb$a BlockRedstoneTorch$RedstoneUpdateInfo
bgc BlockRedstoneTorchWall
bgd EnumRenderType
bge BlockRepeater
bgf BlockRotatable
bgg EnumBlockRotation
bgh BlockSand
bgi BlockSapling
bgj BlockSeaLantern
bgk BlockSeaPickle
bgl BlockSeaGrass
bgm BlockTallPlantShearable
bgn BlockShulkerBox
bgo BlockSign
bgp BlockSkull
bgp$b BlockSkull$Type
bgq BlockStepAbstract
bgr BlockSlime
bgs BlockSnowBlock
bgt BlockSnow
bgu BlockDirtSnow
bgv BlockSlowSand
bgw SoundEffectType
bgx BlockMobSpawner
bgy BlockSponge
bgz BlockDirtSnowSpreadable
bh CriterionTriggerSummonedEntity
bha BlockStainedGlass
bhb BlockStainedGlassPane
bhc BlockStairs
bhd BlockFloorSign
bhe BlockStem
bhf BlockStemmed
bhg BlockStone
bhh BlockStoneButton
bhi BlockStructure
bhj BlockStructureVoid
bhk BlockReed
bhl BlockTallPlantFlower
bhm BlockLongGrass
bhn BlockTallSeaGrass
bho BlockTNT
bhp BlockTorch
bhq BlockTrapdoor
bhr BlockChestTrapped
bhs BlockTripwire
bht BlockTripwireHook
bhu BlockTurtleEgg
bhv BlockVine
bhw BlockBannerWall
bhx BlockCobbleWall
bhy BlockWallSign
bhz BlockSkullWall
bi CriterionTriggerTamedAnimal
bia BlockTorchWall
bib BlockWaterLily
bic BlockWeb
bid BlockPressurePlateWeighted
bie BlockWetSponge
bif BlockWitherSkull
big BlockWitherSkullWall
bih BlockWoodButton
bii BlockCarpet
bij TileEntityBanner
bik EnumBannerPatternType
bil TileEntityBeacon
bil$a TileEntityBeacon$BeaconColorTracker
bim TileEntityBed
bin TileEntity
bio TileEntityTypes
bip TileEntityBrewingStand
biq TileEntityChest
bir TileEntityCommand
bir$a TileEntityCommand$Type
bis TileEntityComparator
bit TileEntityConduit
biu TileEntityLightDetector
biv TileEntityDispenser
biw TileEntityDropper
bix TileEntityEnchantTable
biy TileEntityEnderChest
biz TileEntityFurnace
bj CriterionTriggerTick
bja IHopper
bjb TileEntityHopper
bjc TileEntityJukeBox
bje TileEntityContainer
bjf TileEntityLootable
bjg TileEntityShulkerBox
bjg$a TileEntityShulkerBox$AnimationPhase
bjh TileEntitySign
bji TileEntitySkull
bjj TileEntityMobSpawner
bjk TileEntityStructure
bjk$a TileEntityStructure$UpdateType
bjl TileEntityEndGateway
bjm TileEntityEnderPortal
bjn TileEntityChestTrapped
bjp WorldGenMegaTreeProvider
bjq WorldGenTreeProvider
bjr WorldGenTreeProviderAcacia
bjs WorldGenTreeProviderBirch
bjt WorldGenMegaTreeProviderDarkOak
bju WorldGenMegaTreeProviderJungle
bjv WorldGenTreeProviderOak
bjw WorldGenTreeProviderSpruce
bjz BlockPistonMoving
bk CriterionTriggerVillagerTrade
bka BlockPiston
bkb BlockPistonExtension
bkc TileEntityPiston
bkd PistonExtendsChecker
bkf BlockDataAbstract
bkg EnumBlockFaceShape
bkh IBlockData
bki BlockData
bkj BlockStateList
bkk IBlockDataHolder
bkm ShapeDetectorBlock
bkn ShapeDetector
bkn$a ShapeDetector$BlockLoader
bkn$b ShapeDetector$ShapeDetectorCollection
bko ShapeDetectorBuilder
bkq PredicateBlockType
bkr PredicateBlock
bks MaterialPredicate
bkt BlockPredicate
bku BlockStatePredicate
bkv PredicateBlocks
bkw PredicateBlockLightTransmission
bkx PredicateBlockLiquid
bky PredicateBlockNotSolidOrLiquid
bkz PredicateBlockSolid
bl CriterionTriggerUsedEnderEye
bla PredicateBlockTag
blc BlockState
bld BlockPropertyAttachPosition
ble BlockPropertyBedPart
blf BlockProperties
blg BlockStateBoolean
blh BlockPropertyChestType
bli BlockPropertyComparatorMode
blj BlockStateDirection
blk BlockPropertyDoorHinge
bll BlockPropertyDoubleBlockHalf
blm BlockStateEnum
bln BlockPropertyHalf
blo BlockStateInteger
blp BlockPropertyInstrument
blq BlockPropertyPistonType
blr IBlockState
bls BlockPropertyTrackPosition
blt BlockPropertyRedstoneSide
blu BlockPropertySlabType
blv BlockPropertyStairsShape
blw BlockPropertyStructureMode
bly IWorldBorderListener
blz EnumWorldBorderState
bm CriterionTriggerUsedTotem
bma WorldBorder
bmc IChunkAccess
bmd ChunkGenerator
bme ChunkGeneratorAbstract
bmf ChunkGeneratorFactory
bmg ChunkGeneratorType
bmh IChunkProvider
bmi ChunkStatus
bmi$a ChunkStatus$Type
bmj NibbleArray
bml DataPaletteGlobal
bmm DataPaletteHash
bmn ProtoChunkExtension
bmo Chunk
bmo$a Chunk$EnumTileEntityState
bmp ChunkSection
bmq DataPaletteLinear
bms OldNibbleArray
bmt DataPalette
bmu DataPaletteExpandable
bmv DataPaletteBlock
bmw ProtoChunk
bmx ProtoChunkTickList
bmy ChunkConverter
bmy$b ChunkConverter$Type
bn CriterionConditionRange
bna ChunkRegionLoader
bnb IChunkLoader
bnd OldChunkLoader
bnd$a OldChunkLoader$OldChunk
bne RegionFile
bne$a RegionFile$ChunkBuffer
bnf RegionFileCache
bnh WorldProvider
bni DimensionManager
bnj WorldProviderHell
bnk WorldProviderNormal
bnl EnumDragonRespawn
bnm EnderDragonBattle
bnm$a EnderDragonBattle$LoadState
bnn WorldProviderTheEnd
bnq GeneratorSettingsDefault
bnr GeneratorSettings
bns GeneratorSettingsDebug
bnt ChunkProviderDebug
bnu ChunkProviderFlat
bnv WorldGenStage
bnv$a WorldGenStage$Features
bnv$b WorldGenStage$Decoration
bnw HeightMap
bnw$a HeightMap$Type
bnw$b HeightMap$Use
bnx GeneratorSettingsNether
bny ChunkProviderHell
bnz GeneratorSettingsOverworld
boa ChunkProviderGenerate
bob MobSpawnerPhantom
boc GeneratorSettingsEnd
bod ChunkProviderTheEnd
boe SeededRandom
bof WorldGenTreeAbstract
bog WorldGenBigTree
bog$a WorldGenBigTree$Position
boh WorldGenForest
boi WorldGenFeatureBlockOffsetConfiguration
boj WorldGenTaigaStructure
bok WorldGenFeatureBlueIce
bol WorldGenBonusChest
bom WorldGenBuriedTreasureConfiguration
bon WorldGenBuriedTreasure
boo WorldGenFeatureMushroomConfiguration
bop WorldGenMushrooms
boq WorldGenCactus
bor WorldGenFeatureChorusPlant
bos WorldGenFeatureComposite
bot WorldGenFeatureCoralClaw
bou WorldGenFeatureCoral
bov WorldGenFeatureCoralMushroom
bow WorldGenFeatureCoralTree
box WorldGenFeatureChanceDecorator
boy WorldGenFeatureChanceDecoratorHeight
boz WorldGenFeatureKelpConfiguration
bpa WorldGenDeadBush
bpb WorldGenFeatureChanceDecoratorRangeConfiguration
bpc WorldGenFeatureDecoratorConfiguration
bpd WorldGenFeatureChanceDecoratorCountConfiguration
bpe WorldGenFeatureDecoratorNoiseConfiguration
bpf WorldGenFeatureFlower
bpg WorldGenFeatureDesertPyramidConfiguration
bph WorldGenFeatureDesertPyramid
bpi WorldGenDesertWell
bpj WorldGenFeatureCircleConfiguration
bpk WorldGenFeatureCircle
bpl WorldGenFeatureDoublePlantConfiguration
bpm WorldGenTallPlant
bpn WorldGenEndCityConfiguration
bpo WorldGenEndCity
bpp WorldGenEndGatewayConfiguration
bpq WorldGenEndGateway
bpr WorldGenEndIsland
bps WorldGenEndTrophy
bpt WorldGenerator
bpu WorldGenFeatureConfiguration
bpv WorldGenFeatureRadiusConfiguration
bpw WorldGenFeatureCompositeFlower
bpx WorldGenFlowers
bpy WorldGenFeatureFlowerForest
bpz WorldGenFossils
bq CommandExceptionProvider
bqa WorldGenGroundBush
bqb WorldGenFire
bqc WorldGenFeatureHellFlowingLavaConfiguration
bqd WorldGenHellLava
bqe WorldGenHugeMushroomBrown
bqf WorldGenHugeMushroomRed
bqg WorldGenPackedIce1
bqh WorldGenPackedIce2
bqi WorldGenFeatureIceburgConfiguration
bqj WorldGenFeatureIceburg
bqk WorldGenFeatureIglooConfiguration
bql WorldGenFeatureIgloo
bqm WorldGenFeatureJungleGrass
bqn WorldGenFeatureJunglePyramidConfiguration
bqo WorldGenFeatureJunglePyramid
bqp WorldGenFeatureJungleTree
bqq WorldGenFeatureKelp
bqr WorldGenFeatureLakeConfiguration
bqs WorldGenLakes
bqt WorldGenLightStone1
bqu WorldGenJungleTree
bqv WorldGenMegaTree
bqw WorldGenMegaTreeAbstract
bqx WorldGenMelon
bqy WorldGenMineshaftConfiguration
bqz WorldGenMineshaft
bqz$b WorldGenMineshaft$Type
br CustomFunction
bra WorldGenDungeons
brb WorldGenNetherConfiguration
brc WorldGenNether
brd WorldGenFeatureDecoratorEmptyConfiguration
bre WorldGenFeatureEmptyConfiguration
brf WorldGenMonumentConfiguration
brg WorldGenMonument
brh WorldGenFeatureOceanRuinConfiguration
bri WorldGenFeatureOreConfiguration
brj WorldGenMinable
brk WorldGenTaiga1
brl WorldGenFeatureFlowerPlain
brm WorldGenFeatureConfigurationChance
brn WorldGenPumpkin
bro WorldGenFeatureChoiceConfiguration
brp WorldGenFeatureChoice
brq WorldGenFeatureRandomChoiceConfiguration
brr WorldGenFeatureRandom
brs WorldGenFeatureRandomConfiguration
brt WorldGenFeatureRandomScattered
bru WorldGenFeatureRandomChoice
brv WorldGenReed
brw WorldGenFeatureReplaceBlockConfiguration
brx WorldGenFeatureReplaceBlock
bry WorldGenForestTree
brz WorldGenAcaciaTree
bs CommandException
bsa WorldGenFeatureSeaPickel
bsb WorldGenFeatureSeaGrass
bsc WorldGenFeatureSeaGrassConfiguration
bsd WorldGenFeatureShipwreckConfiguration
bse WorldGenFeatureShipwreck
bsf WorldGenFeatureBlockConfiguration
bsg WorldGenFeatureBlock
bsh WorldGenFeatureRandom2
bsi WorldGenFeatureRandom2Configuration
bsj WorldGenFeatureIceSnow
bsk WorldGenEnder
bsk$a WorldGenEnder$Spike
bsl WorldGenFeatureFlowingConfiguration
bsm WorldGenLiquids
bsn WorldGenTaiga2
bso WorldGenFeatureStrongholdConfiguration
bsp WorldGenStronghold
bsq StructureGenerator
bsr WorldGenFeatureFlowerSwamp
bss WorldGenSwampTree
bst WorldGenFeatureSwampHutConfiguration
bsu WorldGenFeatureSwampHut
bsv WorldGenFeatureTaigaGrass
bsw WorldGenFeatureTallGrassConfiguration
bsx WorldGenGrass
bsy WorldGenTrees
bsz WorldGenFeatureVillageConfiguration
bt ICommandListener
bta WorldGenVillage
btb WorldGenVines
btc WorldGenFeatureEndPlatform
btd WorldGenWaterLily
bte WorldGenMansionConfiguration
btf WorldGenWoodlandMansion
bth WorldGenFlatLayerInfo
bti GeneratorSettingsFlat
btl WorldGenDecoratorCarveMask
btm WorldGenDecoratorChance
btn WorldGenDecoratorChanceHeight
bto WorldGenDecoratorChancePass
btp WorldGenDecoratorSkyVisibleBiased
btq WorldGenDecoratorChorusPlant
btr WorldGenDecoratorChunkCenter
bts WorldGenDecoratorHeightBiased
btt WorldGenDecoratorHeightAverage
btu WorldGenDecoratorHeightDouble
btv WorldGenDecoratorHeight64
btw WorldGenDecoratorHeight32
btx WorldGenDecoratorHeight
bty WorldGenDecoratorSkyVisible
btz WorldGenDecoratorHeightBiased2
bu CommandListenerWrapper
bua WorldGenDecoratorHeightExtraChance
bub WorldGenDecoratorCarveMaskConfiguration
buc WorldGenDecoratorChanceConfiguration
bud WorldGenDecoratorFrequencyConfiguration
bue WorldGenDecoratorFrequencyChanceConfiguration
buf WorldGenDecoratorFrequencyExtraChanceConfiguration
bug WorldGenDecoratorNoiseConfiguration
buh WorldGenDecoratorRangeConfiguration
bui WorldGenDecoratorHeightAverageConfiguration
buj WorldGenDecoratorEmerald
buk WorldGenDecoratorEndGateway
bul WorldGenDecoratorEndIsland
bum WorldGenDecorator
bun WorldGenDecoratorForestRock
buo WorldGenDecoratorIceburg
bup WorldGenDecoratorLakeChanceConfiguration
buq WorldGenDecoratorLakeLava
bur WorldGenDecoratorLakeWater
bus WorldGenDecoratorDungeonConfiguration
but WorldGenDecoratorDungeon
buu WorldGenDecoratorNoiseHeight32
buv WorldGenDecoratorNoiseHeightDouble
buw WorldGenDecoratorEmpty
bux WorldGenDecoratorRoofedTree
buy WorldGenDecoratorSpike
buz WorldGenDecoratorSolidTop
bv CommandDispatcher
bva WorldGenDecoratorSolidTopNoise
bvb WorldGenDecoratorSolidTopHeight
bvc WorldGenDecoratorNetherChance
bvd WorldGenDecoratorNetherHeight
bve WorldGenDecoratorNetherFire
bvf WorldGenDecoratorNetherGlowstone
bvg WorldGenDecoratorNetherMagma
bvh WorldGenDecoratorNetherRandomCount
bvk WorldGenCarverAbstract
bvl StructureBoundingBox
bvm WorldGenBuriedTreasurePieces
bvn WorldGenCanyon
bvo WorldGenCaves
bvp WorldGenCarverWrapper
bvq WorldGenDesertPyramidPiece
bvr WorldGenEndCityPieces
bvr$a WorldGenEndCityPieces$Piece
bvr$b WorldGenEndCityPieces$PieceGenerator
bvs WorldGenCavesHell
bvt WorldGenIglooPiece
bvu WorldGenJunglePyramidPiece
bvv PersistentStructureLegacy
bvw WorldGenMineshaftPieces
bvw$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bvw$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bvw$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bvw$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bvx WorldGenNetherPieces
bvx$a WorldGenNetherPieces$WorldGenNetherPiece1
bvx$b WorldGenNetherPieces$WorldGenNetherPiece2
bvx$c WorldGenNetherPieces$WorldGenNetherPiece3
bvx$d WorldGenNetherPieces$WorldGenNetherPiece4
bvx$e WorldGenNetherPieces$WorldGenNetherPiece5
bvx$f WorldGenNetherPieces$WorldGenNetherPiece6
bvx$g WorldGenNetherPieces$WorldGenNetherPiece7
bvx$h WorldGenNetherPieces$WorldGenNetherPiece8
bvx$i WorldGenNetherPieces$WorldGenNetherPiece9
bvx$j WorldGenNetherPieces$WorldGenNetherPiece10
bvx$k WorldGenNetherPieces$WorldGenNetherPiece11
bvx$l WorldGenNetherPieces$WorldGenNetherPiece12
bvx$m WorldGenNetherPieces$WorldGenNetherPiece
bvx$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bvx$o WorldGenNetherPieces$WorldGenNetherPiece13
bvx$p WorldGenNetherPieces$WorldGenNetherPiece14
bvx$q WorldGenNetherPieces$WorldGenNetherPiece15
bvy WorldGenMonumentPieces
bvy$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bvy$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bvy$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bvy$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bvy$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bvy$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bvy$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bvy$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bvy$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bvy$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bvy$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bvy$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bvy$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bvy$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bvy$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bvy$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bvy$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bvy$r WorldGenMonumentPieces$WorldGenMonumentPiece
bvy$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bvy$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bvy$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bvy$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bvz WorldGenFeatureOceanRuin
bvz$b WorldGenFeatureOceanRuin$Temperature
bw ICompletionProvider
bwa WorldGenFeatureOceanRuinPieces
bwb WorldGenScatteredPiece
bwc WorldGenShipwreck
bwd WorldGenStrongholdPieces
bwd$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bwd$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bwd$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bwd$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bwd$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bwd$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bwd$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bwd$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bwd$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bwd$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bwd$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bwd$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bwd$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bwd$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bwd$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bwd$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bwd$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bwe WorldGenFactory
bwf PersistentIndexed
bwh StructurePiece
bwh$a StructurePiece$StructurePieceBlockSelector
bwi StructureStart
bwj WorldGenWitchHut
bwk DefinedStructurePiece
bwl WorldGenCanyonOcean
bwm WorldGenCavesOcean
bwn WorldGenVillagePieces
bwn$a WorldGenVillagePieces$WorldGenVillageLibrary
bwn$b WorldGenVillagePieces$WorldGenVillageFarm2
bwn$c WorldGenVillagePieces$WorldGenVillageFarm
bwn$d WorldGenVillagePieces$WorldGenVillageLight
bwn$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bwn$f WorldGenVillagePieces$WorldGenVillageButcher
bwn$g WorldGenVillagePieces$WorldGenVillageHouse
bwn$h WorldGenVillagePieces$WorldGenVillageHut
bwn$i WorldGenVillagePieces$WorldGenVillageTemple
bwn$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bwn$k WorldGenVillagePieces$WorldGenVillageStartPiece
bwn$l WorldGenVillagePieces$WorldGenVillageRoad
bwn$m WorldGenVillagePieces$WorldGenVillageHouse2
bwn$n WorldGenVillagePieces$Material
bwn$o WorldGenVillagePieces$WorldGenVillagePiece
bwn$p WorldGenVillagePieces$WorldGenVillageRoadPiece
bwn$q WorldGenVillagePieces$WorldGenVillageWell
bwo WorldGenWoodlandMansionPieces
bwp WorldGenCarver
bwr DefinedStructureProcessorRotation
bws DefinedStructureManager
bwt DefinedStructureInfo
bwu DefinedStructureProcessor
bwv DefinedStructure
bwv$b DefinedStructure$BlockInfo
bwv$c DefinedStructure$EntityInfo
bwx WorldGenSurfaceComposite
bwy WorldGenSurfaceDefaultBlock
bwz WorldGenSurfaceExtremeHillMutated
bx ArgumentChatFormat
bxa WorldGenSurfaceExtremeHills
bxb WorldGenSurfaceFrozenOcean
bxc WorldGenSurfaceMesaBryce
bxd WorldGenSurfaceMesaForest
bxe WorldGenSurfaceMesa
bxf WorldGenSurfaceNether
bxg WorldGenSurfaceEmpty
bxh WorldGenSurfaceSavannaMutated
bxi WorldGenSurface
bxj WorldGenSurfaceConfigurationBase
bxk WorldGenSurfaceConfiguration
bxl WorldGenSurfaceSwamp
bxm WorldGenSurfaceTaigaMega
bxo NoiseGeneratorPerlin
bxp NoiseGeneratorOctaves
bxq NoiseGenerator3
bxr NoiseGenerator3Handler
bxs NoiseGenerator
bxu LightEngine
bxv LightEngineBlock
bxw ILightEngine
bxx LightEngineSky
bxz FluidTypeEmpty
by ArgumentChatComponent
bya FluidTypeFlowing
byb FluidType
byc Fluid
byd FluidImpl
bye FluidTypes
byf FluidTypeLava
byg Material
byh MaterialMapColor
byi EnumPistonReaction
byj FluidTypeWater
byl Area
bym AreaDimension
byn AreaFactory
byo AreaLazy
byq AreaContextTransformed
byr WorldGenContext
bys WorldGenContextLayer
byt WorldGenContextArea
byv GenLayerDeepOcean
byw GenLayerSpecial
byw$a GenLayerSpecial$Special1
byw$b GenLayerSpecial$Special2
byw$c GenLayerSpecial$Special3
byx GenLayerIsland
byy GenLayerMushroomIsland
byz GenLayerTopSoil
bz ArgumentAnchor
bz$a ArgumentAnchor$Anchor
bza GenLayerDesert
bzb GenLayerBiome
bzc LayerIsland
bzd GenLayer
bze GenLayers
bzf GenLayerOceanEdge
bzg GenLayerOcean
bzh GenLayerPlains
bzi GenLayerRegionHills
bzj GenLayerIcePlains
bzk GenLayerCleaner
bzl GenLayerRiver
bzm GenLayerRiverMix
bzn GenLayerMushroomShore
bzo GenLayerSmooth
bzp GenLayerZoomVoronoi
bzq GenLayerZoom
bzs AreaTransformer1
bzt AreaTransformer2
bzu AreaTransformer3
bzv AreaTransformer4
bzw AreaTransformer5
bzx AreaTransformer6
bzy AreaTransformer7
bzz AreaTransformerIdentity
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca ArgumentEntity
caa AreaTransformerOffset1
cab AreaTransformer
cac AreaTransformer8
caf Path
cag PathType
cah PathfinderFlying
cai PathPoint
caj PathfinderAbstract
cak PathEntity
cal PathMode
cam Pathfinder
can PathfinderWater
cao PathfinderTurtle
cap PathfinderNormal
cat RunnableSaveScoreboard
cau PersistentBase
cav MapIconBanner
caw MapIcon
caw$a MapIcon$Type
cax WorldMap
cax$a WorldMap$WorldMapHumanTracker
cb ArgumentEntitySummon
cba ServerNBTManager
cbb WorldLoaderServer
cbc SecondaryWorldData
cbd WorldNBTStorage
cbe WorldLoader
cbf WorldData
cbg IDataManager
cbi Convertable
cbm IPlayerFileData
cbo PersistentCollection
cbp LootTables
cbq LootSelectorEmpty
cbr LootItem
cbs LootSelector
cbt LotoSelectorEntry
cbu LootTable
cbv LootTableInfo
cbv$b LootTableInfo$EntityTarget
cbw LootSelectorLootTable
cbx LootTableRegistry
cby LootValueBounds
cbz LootItemFunctionEnchant
cc ArgumentProfile
cca LootEnchantLevel
ccb LootItemFunctionExplorationMap
ccc LootItemFunction
ccd LootItemFunctions
cce LootEnchantFunction
ccf LootItemFunctionSetAttribute
ccg LootItemFunctionSetCount
cch LootItemFunctionSetDamage
cci LootItemFunctionSetName
ccj LootItemFunctionSetTag
cck LootItemFunctionSmelt
ccn LootItemConditionEntityScore
cco LootItemCondition
ccp LootItemConditions
ccq LootItemConditionEntityProperty
ccr LootItemConditionKilledByPlayer
ccs LootItemConditionRandomChance
cct LootItemConditionRandomChanceWithLooting
ccv LootEntityProperties
ccw LootEntityProperty
ccx LootEntityPropertyOnFire
cd ArgumentEnchantment
cda FileIOThread
cdb IAsyncChunkSaver
cde AxisAlignedBB
cdf MovingObjectPosition
cdf$a MovingObjectPosition$EnumMovingObjectType
cdg FluidCollisionOption
cdh Vec2F
cdi Vec3D
cdk VoxelShapeArray
cdl VoxelShapeBitSet
cdm OperatorBoolean
cdn VoxelShapeCubePoint
cdo VoxelShapeCube
cdp VoxelShapeCubeMerger
cdq VoxelShapeDiscrete
cdr VoxelShapeMergerIdentical
cds VoxelShapeMerger
cdt VoxelShapeMergerList
cdu DoubleListRange
cdv VoxelShapeMergerDisjoint
cdw DoubleListOffset
cdx VoxelShapes
cdy VoxelShapeSlice
cdz VoxelShapeDiscreteSlice
ce ArgumentChat
cea VoxelShape
ceb VoxelShapeWorldRegion
ced ScoreboardObjective
cee ScoreboardTeam
cef ScoreboardScore
ceg Scoreboard
ceh PersistentScoreboard
cei ScoreboardTeamBase
cei$a ScoreboardTeamBase$EnumTeamPush
cei$b ScoreboardTeamBase$EnumNameTagVisibility
cej IScoreboardCriteria
cej$a IScoreboardCriteria$EnumScoreboardHealthDisplay
cf ArgumentMobEffect
cg ArgumentNBTTag
ch ArgumentNBTKey
ci ArgumentScoreboardObjective
cj ArgumentScoreboardCriteria
ck ArgumentMathOperation
cl ArgumentParticle
cm ArgumentCriterionValue
cn ArgumentMinecraftKeyRegistered
co ArgumentScoreholder
cp ArgumentScoreboardSlot
cq ArgumentInventorySlot
cr ArgumentScoreboardTeam
cs ArgumentTileLocation
ct ArgumentBlockPredicate
cu ArgumentTile
cv ArgumentBlock
cx ArgumentPosition
cy IVectorPosition
cz ArgumentVectorPosition
d CrashReportCallable
da ArgumentRotation
db ArgumentRotationAxis
dc ArgumentVec2
dd ArgumentVec3
de ArgumentParserPosition
df VectorPosition
dh ArgumentTag
di ArgumentItemStack
dj ArgumentPredicateItemStack
dk ArgumentParserItemStack
dl ArgumentItemPredicate
dp EntitySelector
dq ArgumentParserSelector
dr PlayerSelector
dw ArgumentSerializer
dx ArgumentRegistry
dy ArgumentSerializerVoid
dz CompletionProviders
e DefaultUncaughtExceptionHandler
ea ArgumentSerializers
eb ArgumentSerializerDouble
ec ArgumentSerializerFloat
ed ArgumentSerializerInteger
ee ArgumentSerializerString
eh EnumAxisCycle
ej BlockPosition
ej$a BlockPosition$MutableBlockPosition
ek ISourceBlock
el SourceBlock
em DispenseBehaviorItem
en RegistryBlocks
eo RegistryDefault
ep EnumDirection
ep$a EnumDirection$EnumAxis
ep$b EnumDirection$EnumAxisDirection
ep$c EnumDirection$EnumDirectionLimit
eq EnumDirection8
er IDispenseBehavior
es Registry
et RegistryBlockID
eu ILocationSource
ev ISource
ew MapGeneratorUtils
ex RegistryMaterials
ey NonNullList
ez IPosition
f ThreadNamedUncaughtExceptionHandler
fa Position
fb IRegistry
fc Vector3f
fd RegistrySimple
ff BaseBlockPosition
fh ParticleParamBlock
fi ParticleParamRedstone
fj ParticleParamItem
fk ParticleParam
fl Particle
fm Particles
fn ParticleType
fp DebugReportGenerator
fq DebugReportProvider
fr HashCache
fs DebugReportAdvancement
ft DebugReportAdvancementAdventure
fu DebugReportAdvancementHusbandry
fv DebugReportAdvancementNether
fw DebugReportAdvancementStory
fx DebugReportAdvancementTheEnd
fz DebugReportBlocks
ga DebugReportCommands
gb DebugReportItems
ge DebugReportRecipeData
gf DebugReportRecipe
gg DebugReportRecipeShaped
gh DebugReportRecipeShapeless
gi DebugReportRecipeFurnace
gj DebugReportRecipeSpecial
gl DebugReportNBT
gm DebugReportMojangson
go DebugReportTagsBlock
gp DebugReportFluidTags
gq DebugReportTagsItem
gr DebugReportTags
gt LocaleLanguage
gv NBTTagByteArray
gw NBTTagByte
gx NBTList
gy NBTTagCompound
gz NBTTagDouble
h ReportedException
ha NBTTagEnd
hb NBTTagFloat
hc NBTTagIntArray
hd NBTTagInt
he NBTTagList
hf NBTTagLongArray
hg NBTTagLong
hh NBTReadLimiter
hi NBTCompressedStreamTools
hj DynamicOpsNBT
hk GameProfileSerializer
hl NBTNumber
hm NBTTagShort
hn NBTTagString
ho NBTBase
hp MojangsonParser
hr PacketEncryptionHandler
hs PacketDecrypter
ht PacketEncrypter
hu PacketDecompressor
hv PacketCompressor
hw NetworkManager
hw$a NetworkManager$QueuedPacket
hx EnumProtocol
hy PacketDataSerializer
hz PacketDecoder
i ResourceKeyInvalidException
ia PacketEncoder
ib PacketListener
ic SkipEncodeException
id PacketSplitter
ie PacketPrepender
ig ChatBaseComponent
ih ChatMessageType
ii ChatClickable
ii$a ChatClickable$EnumClickAction
ij IChatBaseComponent
ij$a IChatBaseComponent$ChatSerializer
ik ChatComponentUtils
il ChatHoverable
il$a ChatHoverable$EnumHoverAction
im ChatComponentKeybind
in ChatComponentScore
io ChatComponentSelector
ip ChatModifier
ip$a ChatModifier$ChatModifierSerializer
iq ChatComponentText
ir ChatMessage
is ChatMessageException
iv Packet
iw EnumProtocolDirection
ix PlayerConnectionUtils
iy PacketListenerPlayOut
iz PacketPlayOutSpawnEntity
j SharedConstants
ja PacketPlayOutSpawnEntityExperienceOrb
jb PacketPlayOutSpawnEntityWeather
jc PacketPlayOutSpawnEntityLiving
jd PacketPlayOutSpawnEntityPainting
je PacketPlayOutNamedEntitySpawn
jf PacketPlayOutAnimation
jg PacketPlayOutStatistic
jh PacketPlayOutBlockBreakAnimation
ji PacketPlayOutTileEntityData
jj PacketPlayOutBlockAction
jk PacketPlayOutBlockChange
jl PacketPlayOutBoss
jl$a PacketPlayOutBoss$Action
jm PacketPlayOutServerDifficulty
jn PacketPlayOutChat
jo PacketPlayOutMultiBlockChange
jo$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
jp PacketPlayOutTabComplete
jq PacketPlayOutCommands
jr PacketPlayOutTransaction
js PacketPlayOutCloseWindow
jt PacketPlayOutOpenWindow
ju PacketPlayOutWindowItems
jv PacketPlayOutWindowData
jw PacketPlayOutSetSlot
jx PacketPlayOutSetCooldown
jy PacketPlayOutCustomPayload
jz PacketPlayOutCustomSoundEffect
k SystemUtils
k$a SystemUtils$OS
ka PacketPlayOutKickDisconnect
kb PacketPlayOutEntityStatus
kc PacketPlayOutExplosion
kd PacketPlayOutUnloadChunk
ke PacketPlayOutGameStateChange
kf PacketPlayOutKeepAlive
kg PacketPlayOutMapChunk
kh PacketPlayOutWorldEvent
ki PacketPlayOutWorldParticles
kj PacketPlayOutLogin
kk PacketPlayOutMap
kl PacketPlayOutEntity
kl$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
kl$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
kl$c PacketPlayOutEntity$PacketPlayOutEntityLook
km PacketPlayOutVehicleMove
kn PacketPlayOutOpenSignEditor
ko PacketPlayOutAutoRecipe
kp PacketPlayOutAbilities
kq PacketPlayOutCombatEvent
kq$a PacketPlayOutCombatEvent$EnumCombatEventType
kr PacketPlayOutPlayerInfo
kr$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
kr$b PacketPlayOutPlayerInfo$PlayerInfoData
ks PacketPlayOutLookAt
kt PacketPlayOutPosition
kt$a PacketPlayOutPosition$EnumPlayerTeleportFlags
ku PacketPlayOutBed
kv PacketPlayOutRecipes
kv$a PacketPlayOutRecipes$Action
kw PacketPlayOutEntityDestroy
kx PacketPlayOutRemoveEntityEffect
ky PacketPlayOutResourcePackSend
kz PacketPlayOutRespawn
l Advancement
l$a Advancement$SerializedAdvancement
la PacketPlayOutEntityHeadRotation
lb PacketPlayOutSelectAdvancementTab
lc PacketPlayOutWorldBorder
lc$a PacketPlayOutWorldBorder$EnumWorldBorderAction
ld PacketPlayOutCamera
le PacketPlayOutHeldItemSlot
lf PacketPlayOutScoreboardDisplayObjective
lg PacketPlayOutEntityMetadata
lh PacketPlayOutAttachEntity
li PacketPlayOutEntityVelocity
lj PacketPlayOutEntityEquipment
lk PacketPlayOutExperience
ll PacketPlayOutUpdateHealth
lm PacketPlayOutScoreboardObjective
ln PacketPlayOutMount
lo PacketPlayOutScoreboardTeam
lp PacketPlayOutScoreboardScore
lq PacketPlayOutSpawnPosition
lr PacketPlayOutUpdateTime
ls PacketPlayOutTitle
ls$a PacketPlayOutTitle$EnumTitleAction
lt PacketPlayOutNamedSoundEffect
lu PacketPlayOutStopSound
lv PacketPlayOutPlayerListHeaderFooter
lw PacketPlayOutNBTQuery
lx PacketPlayOutCollect
ly PacketPlayOutEntityTeleport
lz PacketPlayOutAdvancements
m Advancements
ma PacketPlayOutUpdateAttributes
ma$a PacketPlayOutUpdateAttributes$AttributeSnapshot
mb PacketPlayOutEntityEffect
mc PacketPlayOutRecipeUpdate
md PacketPlayOutTags
me PacketListenerPlayIn
mf PacketPlayInTeleportAccept
mg PacketPlayInTileNBTQuery
mh PacketPlayInChat
mi PacketPlayInClientCommand
mi$a PacketPlayInClientCommand$EnumClientCommand
mj PacketPlayInSettings
mk PacketPlayInTabComplete
ml PacketPlayInTransaction
mm PacketPlayInEnchantItem
mn PacketPlayInWindowClick
mo PacketPlayInCloseWindow
mp PacketPlayInCustomPayload
mq PacketPlayInBEdit
mr PacketPlayInEntityNBTQuery
ms PacketPlayInUseEntity
ms$a PacketPlayInUseEntity$EnumEntityUseAction
mt PacketPlayInKeepAlive
mu PacketPlayInFlying
mu$a PacketPlayInFlying$PacketPlayInPosition
mu$b PacketPlayInFlying$PacketPlayInPositionLook
mu$c PacketPlayInFlying$PacketPlayInLook
mv PacketPlayInVehicleMove
mw PacketPlayInBoatMove
mx PacketPlayInPickItem
my PacketPlayInAutoRecipe
mz PacketPlayInAbilities
n AdvancementProgress
na PacketPlayInBlockDig
na$a PacketPlayInBlockDig$EnumPlayerDigType
nb PacketPlayInEntityAction
nb$a PacketPlayInEntityAction$EnumPlayerAction
nc PacketPlayInSteerVehicle
nd PacketPlayInRecipeDisplayed
nd$a PacketPlayInRecipeDisplayed$Status
ne PacketPlayInItemName
nf PacketPlayInResourcePackStatus
nf$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
ng PacketPlayInAdvancements
ng$a PacketPlayInAdvancements$Status
nh PacketPlayInTrSel
ni PacketPlayInBeacon
nj PacketPlayInHeldItemSlot
nk PacketPlayInSetCommandBlock
nl PacketPlayInSetCommandMinecart
nm PacketPlayInSetCreativeSlot
nn PacketPlayInStruct
no PacketPlayInUpdateSign
np PacketPlayInArmAnimation
nq PacketPlayInSpectate
nr PacketPlayInUseItem
ns PacketPlayInBlockPlace
nu PacketHandshakingInSetProtocol
nv PacketHandshakingInListener
nx PacketLoginOutListener
ny PacketLoginOutCustomPayload
nz PacketLoginOutSuccess
o AdvancementRewards
oa PacketLoginOutEncryptionBegin
ob PacketLoginOutSetCompression
oc PacketLoginOutDisconnect
od PacketLoginInListener
oe PacketLoginInCustomPayload
of PacketLoginInStart
og PacketLoginInEncryptionBegin
oj PacketStatusOutListener
ok PacketStatusOutPong
ol PacketStatusOutServerInfo
om ServerPing
om$a ServerPing$ServerPingPlayerSample
om$a$a ServerPing$ServerPingPlayerSample$Serializer
om$b ServerPing$Serializer
om$c ServerPing$ServerData
om$c$a ServerPing$ServerData$Serializer
on PacketStatusInListener
oo PacketStatusInPing
op PacketStatusInStart
or DataWatcherObject
os DataWatcherSerializer
ot DataWatcherRegistry
ou DataWatcher
ou$a DataWatcher$Item
oy AutoRecipeAbstract
oz AutoRecipe
p CriterionTriggers
pa AutoRecipeFurnace
pc MinecraftKey
pe DispenseBehaviorProjectile
pf DispenserRegistry
ph ServerCommand
pj DebugOutputStream
pk EULA
pl RedirectStream
pm AdvancementDataPlayer
pn CancelledPacketHandleException
po AdvancementDataWorld
pp CustomFunctionData
pq IMinecraftServer
pr ScoreboardServer
pr$a ScoreboardServer$Action
ps PropertyManager
pt ITickable
pu BossBattleCustom
pv BossBattleCustomData
px CommandAdvancement
px$a CommandAdvancement$Action
px$b CommandAdvancement$Filter
py CommandBanIp
pz CommandBanList
q Criterion
qa CommandBan
qb CommmandBossBar
qc CommandClear
qd CommandClone
qd$a CommandClone$CommandCloneStoredTileEntity
qd$b CommandClone$Mode
qe CommandDatapack
qf CommandDeop
qg CommandDebug
qh CommandGamemodeDefault
qi CommandDifficulty
qj CommandEffect
qk CommandMe
ql CommandEnchant
qm CommandExecute
qn CommandXp
qn$a CommandXp$Unit
qo CommandFill
qo$a CommandFill$Mode
qp CommandFunction
qq CommandGamemode
qr CommandGamerule
qs CommandGive
qt CommandHelp
qu CommandKick
qv CommandKill
qw CommandList
qx CommandLocate
qy CommandTell
qz CommandOp
r CriterionProgress
ra CommandPardon
rb CommandPardonIP
rc CommandParticle
rd CommandPlaySound
re CommandPublish
rf CommandRecipe
rg CommandReload
rh CommandReplaceItem
ri CommandSaveAll
rj CommandSaveOff
rk CommandSaveOn
rl CommandSay
rm CommandScoreboard
rn CommandSeed
ro CommandSetBlock
ro$a CommandSetBlock$Filter
ro$b CommandSetBlock$Mode
rp CommandIdleTimeout
rq CommandSpawnpoint
rr CommandSetWorldSpawn
rs CommandSpreadPlayers
rt CommandStop
ru CommandStopSound
rv CommandSummon
rw CommandTag
rx CommandTeam
ry CommandTeleport
rz CommandTellRaw
s CriterionTrigger
sa CommandTime
sb CommandTitle
sc CommandTrigger
sd CommandWeather
se CommandWhitelist
sf CommandWorldBorder
sg CommandDataAccessorTile
sh CommandDataAccessor
si CommandData
sj CommandDataAccessorEntity
sm DedicatedPlayerList
sn DedicatedServer
so ThreadWatchdog
sq ServerGUI
sr PlayerListBox
ss GuiStatsComponent
sv DemoWorldServer
sw DemoPlayerInteractManager
sx SecondaryWorldServer
sy EntityTracker
sz ChunkMap
t CriterionInstance
ta BossBattleServer
tb ChunkProviderServer
tc WorldServer
td WorldManager
te EntityPlayer
tf PlayerInteractManager
tg EntityTrackerEntry
th RegionLimitedWorldAccess
ti TickListWorldGen
tj PlayerChunk
tk PlayerChunkMap
tn ChunkTaskBase
to ChunkTaskCarve
tp ChunkTask
tq ChunkTaskDecorate
tr ChunkTaskNull
ts ChunkTaskFinalize
tt ChunkTaskLight
tu ChunkTaskLiquidCarve
tv ChunkTaskSpawnMobs
tw ChunkTaskScheduler
ty LegacyPingHandler
u AdvancementDisplay
ua ServerConnection
ub PlayerConnection
uc HandshakeListener
ud LoginListener
ud$a LoginListener$EnumProtocolState
ue PacketStatusListener
uh ResourcePackAbstract
ui ResourcePackFile
uj ResourcePackFolder
uk IResourcePack
ul EnumResourcePackType
um ResourceNotFoundException
un ResourcePackVanilla
uo ResourcePackMetaParser
up ResourcePackInfo
uq ResourcePackInfoDeserializer
uu ResourcePackSourceFolder
uv EnumResourcePackVersion
uw ResourcePackRepository
ux ResourcePackSource
uy ResourcePackSourceVanilla
uz ResourcePackLoader
uz$a ResourcePackLoader$Position
v AdvancementFrameType
vb ResourceManagerFallback
vc IReloadableResourceManager
vd IResource
ve IResourceManager
vf IResourcePackListener
vg ResourceManager
vh Resource
vj ExpirableListEntry
vk UserCache
vk$a UserCache$UserCacheEntry
vk$b UserCache$BanEntrySerializer
vl IpBanList
vm IpBanEntry
vn NameReferencingFileConverter
vn$a NameReferencingFileConverter$FileConversionException
vo PlayerList
vp OpList
vq OpListEntry
vr JsonListEntry
vs JsonList
vs$a JsonList$JsonListEntrySerializer
vt GameProfileBanList
vu GameProfileBanEntry
vv WhiteList
vw WhiteListEntry
vy RemoteStatusReply
vz StatusChallengeUtils
w AdvancementRequirements
wa RemoteControlCommandListener
wc RemoteConnectionThread
wd RemoteStatusListener
wd$a RemoteStatusListener$RemoteStatusChallenge
we RemoteControlSession
wf RemoteControlListener
wh SoundEffect
wi SoundEffects
wj SoundCategory
wl RecipeBook
wm RecipeBookServer
wn ServerStatisticManager
wo Statistic
wp Counter
wq StatisticWrapper
wr StatisticList
ws StatisticManager
wu TagsBlock
wv TagsFluid
ww TagsItem
wx TagsServer
wy Tag
wz Tags
x AdvancementTree
xa TagRegistry
xc DataBits
xd EntitySlice
xf RegistryID
xg MinecraftEncryption
xi ChatDeserializer
xj HttpUtilities
xk InsensitiveStringMap
xl IntHashMap
xl$a IntHashMap$IntHashMapEntry
xm LazyInitVar
xo ChatTypeAdapterFactory
xp MathHelper
xq MethodProfiler
xq$a MethodProfiler$ProfilerInfo
xr IProgressUpdate
xt INamable
xu UtilColor
xv Tuple
xw WeightedRandom
xw$a WeightedRandom$WeightedRandomChoice
xx DataConverterRegistry
xy DataConverterAddChoices
xz DataConverterAdvancement
y CriterionInstanceAbstract
ya DataConverterBedBlock
yb DataConverterBedItem
yc DataConverterBiome
yd DataConverterBannerColour
ye DataConverterPiston
yf DataConverterCustomNameTile
yg DataConverterTileEntity
yh DataConverterJukeBox
yi DataConverterBlockEntityKeepPacked
yj DataConverterShulkerBoxBlock
yk DataConverterSignText
yl DataConverterBlockName
ym DataConverterBlockRename
yn DataConverterFlattenData
yo DataConverterFlattenState
yp ChunkConverterPalette
yp$b ChunkConverterPalette$Direction
yp$b$a ChunkConverterPalette$Direction$Axis
yp$b$b ChunkConverterPalette$Direction$AxisDirection
yq DataConverterChunkStructuresTemplateRename
yr DataConverterProtoChunk
ys DataConverterColorlessShulkerEntity
yt DataConverterArmorStand
yu DataConverterEntityBlockState
yv DataConverterEntityCodSalmon
yw DataConverterCustomNameEntity
yx DataConverterGuardian
yy DataConverterEquipment
yz DataConverterHealth
z CriterionTriggerBredAnimals
za DataConverterSaddle
zb DataConverterHorse
zc DataConverterEntity
zd DataConverterItemFrame
ze DataConverterMinecart
zf DataConverterHanging
zg DataConverterPainting
zh DataConverterEntityPufferfish
zi DataConverterDropChances
zj DataConverterEntityName
zk DataConverterRiding
zl DataConverterShulker
zm DataConverterSkeleton
zn DataConverterUUID
zo DataConverterEntityRename
zp DataConverterEntityTippedArrow
zq DataConverterWolf
zr DataConverterZombieType
zs DataConverterZombie
zt DataConverterHeightmapRenaming
zu DataConverterBanner
zv DataConverterCustomNameItem
zw DataConverterMaterialId
zx DataConverterPotionId
zy DataConverterItemName
zz DataConverterShulkerBoxItem