-
Notifications
You must be signed in to change notification settings - Fork 3
/
Randomness 1.12.2 extreme - Oh no.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 1107.
2101 lines (2101 loc) · 469 KB
/
Randomness 1.12.2 extreme - Oh no.tsv
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
Recognisable Name Description Qualified Name Target Ordinal ClassAccess MethodAccess Don't Remap Don't change IsClient? Static
con Connection Stuff Lio/netty/channel/DefaultChannelId;<init>()V Ljava/util/Random;nextInt()I 0 0x31 0x2 TRUE TRUE FALSE FALSE
con Connection Stuff Lio/netty/channel/DefaultChannelId;defaultProcessId()I Ljava/util/Random;nextInt()I 0 0x31 0xa TRUE TRUE FALSE FALSE
con Connection Stuff Lio/netty/util/internal/MacAddressUtil;defaultMachineId()[B Ljava/util/Random;nextBytes([B)V 0 0x31 0x9 TRUE TRUE FALSE FALSE
nettyLeakDetector Sampling interval for leak Lio/netty/util/ResourceLeakDetector;track0(Ljava/lang/Object;)Lio/netty/util/ResourceLeakDetector$DefaultResourceLeak; Ljava/util/Random;nextInt(I)I 0 0x21 0x2 TRUE TRUE FALSE FALSE
fastutilArrayShuffle Shuffles arrays Lit/unimi/dsi/fastutil/ints/IntArrays;shuffle([IIILjava/util/Random;)[I Ljava/util/Random;nextInt(I)I 0 0x21 0x9 TRUE TRUE FALSE FALSE
fastutilArrayShuffle Shuffles arrays Lit/unimi/dsi/fastutil/ints/IntArrays;shuffle([ILjava/util/Random;)[I Ljava/util/Random;nextInt(I)I 0 0x21 0x9 TRUE TRUE FALSE FALSE
advancementRewardsLoot Map makers can decide on random rewards for advancements Lnet/minecraft/advancements/AdvancementRewards;apply(Lnet/minecraft/entity/player/EntityPlayerMP;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
advancementRewardsLoot Map makers can decide on random rewards for advancements Lnet/minecraft/advancements/AdvancementRewards;apply(Lnet/minecraft/entity/player/EntityPlayerMP;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
blockDropItemChance If a drop should be dropped Lnet/minecraft/block/Block;dropBlockAsItemWithChance(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;FI)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
blockDropPos Where the spawned item should spawn Lnet/minecraft/block/Block;spawnAsEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 0 0x21 0x9 FALSE FALSE FALSE FALSE
blockDropPos Where the spawned item should spawn Lnet/minecraft/block/Block;spawnAsEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 1 0x21 0x9 FALSE FALSE FALSE FALSE
blockDropPos Where the spawned item should spawn Lnet/minecraft/block/Block;spawnAsEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 2 0x21 0x9 FALSE FALSE FALSE FALSE
checkAndDropBeetroot Chance per tick of dropping beetroot if block below isn't sustainable for beetroot Lnet/minecraft/block/BlockBeetroot;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
brewingStandParticle The position of brewing stand particles Lnet/minecraft/block/BlockBrewingStand;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
brewingStandParticle The position of brewing stand particles Lnet/minecraft/block/BlockBrewingStand;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
brewingStandParticle The position of brewing stand particles Lnet/minecraft/block/BlockBrewingStand;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
cauldronFillWIthRain Chance of a cauldron increasing the water level during rain Lnet/minecraft/block/BlockCauldron;fillWithRain(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
chorusGrow Random direction a chorus flower grows Lnet/minecraft/block/BlockChorusFlower;growTreeRecursive(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;II)V Ljava/util/Random;nextInt(I)I 0 0x21 0xa FALSE FALSE FALSE FALSE
chorusGrowDirection Random direction a chorus flower grows Lnet/minecraft/block/BlockChorusFlower;growTreeRecursive(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;II)V Ljava/util/Random;nextInt(I)I 1 0x21 0xa FALSE FALSE FALSE FALSE
pointlessness WHY IS THIS HEEEEERRRREEEEE ITS SO FUCKING USELESS AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA Lnet/minecraft/block/BlockChorusFlower;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE TRUE FALSE FALSE
chorusGrowHeight Chance for chorus fruit to grow in height Lnet/minecraft/block/BlockChorusFlower;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
chorusGrowSomething Something about chorus growing Lnet/minecraft/block/BlockChorusFlower;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
chorusQuantityDropped How many chorus fruit drops when broken Lnet/minecraft/block/BlockChorusPlant;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
cocoaGrow Chance for cocoa to grow Lnet/minecraft/block/BlockCocoa;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
cropDrop Chance for a crop to drop + quantity Lnet/minecraft/block/BlockCrops;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
cropGrow Chance for a crop to grow Lnet/minecraft/block/BlockCrops;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
deadBushDrop Quantity of dead bush drop Lnet/minecraft/block/BlockDeadBush;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
seedFromDoublePlant If a seed is dropped from a double grass Lnet/minecraft/block/BlockDoublePlant;getItemDropped(Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;I)Lnet/minecraft/item/Item; Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportPos The position of the dragon egg after the player interacts with it Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 5 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 1 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 2 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 1 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 2 0x21 0x2 FALSE FALSE FALSE FALSE
dragoneggTeleportParticle The position of portal particles after a tregon egg teleported Lnet/minecraft/block/BlockDragonEgg;teleport(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 3 0x21 0x2 FALSE FALSE FALSE FALSE
lavaFlow If lava should spread Lnet/minecraft/block/BlockDynamicLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
enchantementTableParticleChance If enchantement table particle spawns Lnet/minecraft/block/BlockEnchantmentTable;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
enchantementTableParticlePos The position of enchantment table particles Lnet/minecraft/block/BlockEnchantmentTable;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
enchantementTableParticlePos The position of enchantment table particles Lnet/minecraft/block/BlockEnchantmentTable;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
enchantementTableParticlePos The position of enchantment table particles Lnet/minecraft/block/BlockEnchantmentTable;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
enderChestParticle Where the ender chest particle spawns Lnet/minecraft/block/BlockEnderChest;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 6 0x21 0x1 FALSE FALSE TRUE FALSE
endGatewayParticle Where the end gateway particle spawns Lnet/minecraft/block/BlockEndGateway;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 7 0x21 0x1 FALSE FALSE TRUE FALSE
endPortalParticle The position of end portal particles Lnet/minecraft/block/BlockEndPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
endPortalParticle The position of end portal particles Lnet/minecraft/block/BlockEndPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticleChance Chance for the end rod particle to spawn Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
endRodParticle The position of end rod particle spawns Lnet/minecraft/block/BlockEndRod;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
fallingBlockParticleActivate Chance of a falling block particle Lnet/minecraft/block/BlockFalling;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
fallingBlockParticlePos Position of falling block particle Lnet/minecraft/block/BlockFalling;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
fallingBlockParticlePos Position of falling block particle Lnet/minecraft/block/BlockFalling;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
fireSpreading Chance whether fire can spread Lnet/minecraft/block/BlockFire;onBlockAdded(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireSoundChance Chance if fire makes a sound Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
fireSoundVolume Random volume of fire crackling Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
fireSoundPitch Random pitch of fire crackling Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticleEast The position of smoke particles for fire on the EAST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticleEast The position of smoke particles for fire on the EAST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticleEast The position of smoke particles for fire on the EAST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosWest The position of smoke particles for fire on the WEST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosWest The position of smoke particles for fire on the WEST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosWest The position of smoke particles for fire on the WEST side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 5 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosSouth The position of smoke particles for fire on the SOUTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 6 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosSouth The position of smoke particles for fire on the SOUTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 7 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosSouth The position of smoke particles for fire on the SOUTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 8 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosNorth The position of smoke particles for fire on the NORTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 9 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosNorth The position of smoke particles for fire on the NORTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 10 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosNorth The position of smoke particles for fire on the NORTH side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 11 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosDown The position of smoke particles for fire on the DOWN side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 12 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosDown The position of smoke particles for fire on the DOWN side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 13 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosDown The position of smoke particles for fire on the DOWN side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 14 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosUp The position of smoke particles for fire on the UP side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 15 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosUp The position of smoke particles for fire on the UP side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 16 0x21 0x1 FALSE FALSE TRUE FALSE
fireParticlePosUp The position of smoke particles for fire on the UP side Lnet/minecraft/block/BlockFire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 17 0x21 0x1 FALSE FALSE TRUE FALSE
catchFireChance Chance for a block to catch on fire Lnet/minecraft/block/BlockFire;tryCatchFire(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;ILjava/util/Random;ILnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 TRUE FALSE FALSE FALSE
catchFireChance Chance for a block to catch on fire Lnet/minecraft/block/BlockFire;tryCatchFire(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;ILjava/util/Random;ILnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 TRUE FALSE FALSE FALSE
catchFireAge Increases the age of the fire by a random amount Lnet/minecraft/block/BlockFire;tryCatchFire(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;ILjava/util/Random;ILnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x2 TRUE FALSE FALSE FALSE
fireSelfExtinguish Chance of the fire extinguishing itself Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireIncreaseAge Amount to increase the age of the fire Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireUpdateDelay Amount of delay before the fire updates Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
fireNonFlammableExtinguish Chance of a non flammable block extinguishes itself Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
fireClusterChance Chance of increasing age when fire is in a fire cluster Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE FALSE FALSE
fireClusterIncreaseAge Amount to increase age when in a fire cluster Lnet/minecraft/block/BlockFire;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE FALSE FALSE
frostedIceMeltChance Chance for frosted ice to melt Lnet/minecraft/block/BlockFrostedIce;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
furnaceParticlePos Offset of the position of the furnace particles in the Y axis Lnet/minecraft/block/BlockFurnace;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
furnaceParticlePos Position of some furnace particles Lnet/minecraft/block/BlockFurnace;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
furnaceSound Chance for the furnace to crackle Lnet/minecraft/block/BlockFurnace;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
glowstoneDrop Quantity of glowstone drop Lnet/minecraft/block/BlockGlowstone;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
glowstoneDropFortuneBonus Quantity of bonus glowstone drop Lnet/minecraft/block/BlockGlowstone;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
bonemealGrassFlower If a flower should be added when bonemealing grass Lnet/minecraft/block/BlockGrass;grow(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
bonemealGrassPos The position where the grass should grow Lnet/minecraft/block/BlockGrass;grow(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
bonemealGrassPos The position where the grass should grow Lnet/minecraft/block/BlockGrass;grow(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
bonemealGrassPos The position where the grass should grow Lnet/minecraft/block/BlockGrass;grow(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE FALSE FALSE
bonemealGrassPos The position where the grass should grow Lnet/minecraft/block/BlockGrass;grow(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE FALSE FALSE
grassSpreadPos Determines the next block position for grass to spread Lnet/minecraft/block/BlockGrass;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
grassSpreadPos Determines the next block position for grass to spread Lnet/minecraft/block/BlockGrass;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
grassSpreadPos Determines the next block position for grass to spread Lnet/minecraft/block/BlockGrass;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
gravelDropFlint If gravel frops flint or itself Lnet/minecraft/block/BlockGravel;getItemDropped(Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;I)Lnet/minecraft/item/Item; Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomHugeDrop Quantity of huge mushroom drop Lnet/minecraft/block/BlockHugeMushroom;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
jukeboxRecordDropPosition Position of the record when a jukebox releases it Lnet/minecraft/block/BlockJukebox;dropRecord(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
jukeboxRecordDropPosition Position of the record when a jukebox releases it Lnet/minecraft/block/BlockJukebox;dropRecord(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextFloat()F 1 0x21 0x2 FALSE FALSE FALSE FALSE
jukeboxRecordDropPosition Position of the record when a jukebox releases it Lnet/minecraft/block/BlockJukebox;dropRecord(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V Ljava/util/Random;nextFloat()F 2 0x21 0x2 FALSE FALSE FALSE FALSE
leafDropSapling2 Chance of a sapling dropped Lnet/minecraft/block/BlockLeaves;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 TRUE FALSE FALSE FALSE
leafDropSapling Chance of a sapling dropped Lnet/minecraft/block/BlockLeaves;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE FALSE FALSE
leafDripParticleActivate If a drip particle should spawn Lnet/minecraft/block/BlockLeaves;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE TRUE FALSE
leafDripParticle Position of drip particle Lnet/minecraft/block/BlockLeaves;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE TRUE FALSE
leafDripParticle Position of drip particle Lnet/minecraft/block/BlockLeaves;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE TRUE FALSE
waterAmbientSoundActivate If the water flowing sound should play Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE TRUE FALSE
waterAmbientSound Pitch of the water flowing sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE TRUE FALSE
waterAmbientSound Pitch of the water flowing sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE TRUE FALSE
waterParticleSuspendedActivate If a water particle should spawn Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x421 0x1 FALSE FALSE TRUE FALSE
waterParticleSuspendedPos Water particle position Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE TRUE FALSE
waterParticleSuspendedPos Water particle position Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 3 0x421 0x1 FALSE FALSE TRUE FALSE
waterParticleSuspendedPos Water particle position Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 4 0x421 0x1 FALSE FALSE TRUE FALSE
lavaPopSoundActivate If the lava pop sound should activate Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x421 0x1 FALSE FALSE TRUE FALSE
lavaPopParticle Position of lava pop particle Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 5 0x421 0x1 FALSE FALSE TRUE FALSE
lavaPopParticle Position of lava pop particle Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 6 0x421 0x1 FALSE FALSE TRUE FALSE
lavaPopSoundPitch Postion of lava pop sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 7 0x421 0x1 FALSE FALSE TRUE FALSE
lavaPopSoundPitch Postion of lava pop sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 8 0x421 0x1 FALSE FALSE TRUE FALSE
lavaAmbientSoundActivate If the lava flowing sound should play Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 3 0x421 0x1 FALSE FALSE TRUE FALSE
lavaAmbientSound Pitch of flowing lava sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 9 0x421 0x1 FALSE FALSE TRUE FALSE
lavaAmbientSound Pitch of flowing lava sound Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 10 0x421 0x1 FALSE FALSE TRUE FALSE
liquidDripParticleActivate If a drip particle should spawn Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 4 0x421 0x1 FALSE FALSE TRUE FALSE
liquidDripParticle Position of drip particle Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 11 0x421 0x1 FALSE FALSE TRUE FALSE
liquidDripParticle Position of drip particle Lnet/minecraft/block/BlockLiquid;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 12 0x421 0x1 FALSE FALSE TRUE FALSE
liquidExtinguishSound Pitch of the sound when combining water and lava Lnet/minecraft/block/BlockLiquid;triggerMixEffects(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
liquidExtinguishSound Pitch of the sound when combining water and lava Lnet/minecraft/block/BlockLiquid;triggerMixEffects(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
lavaParticlePos Postion of lava particle Lnet/minecraft/block/BlockLiquid;triggerMixEffects(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/lang/Math;random()D 0 0x421 0x4 FALSE FALSE FALSE FALSE
lavaParticlePos Postion of lava particle Lnet/minecraft/block/BlockLiquid;triggerMixEffects(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/lang/Math;random()D 1 0x421 0x4 FALSE FALSE FALSE FALSE
magmaExtinguish Pitch of the sound when water flows over magma Lnet/minecraft/block/BlockMagma;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
magmaExtinguish Pitch of the sound when water flows over magma Lnet/minecraft/block/BlockMagma;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
melonDrop Quantity of melon drop Lnet/minecraft/block/BlockMelon;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
bonusMelonDrop Quantity of bonus melon drop Lnet/minecraft/block/BlockMelon;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
mobspawnerXpAmount Amount of xp dropped by a mob spawner Lnet/minecraft/block/BlockMobSpawner;getExpDrop(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;I)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
mobspawnerXpAmount Amount of xp dropped by a mob spawner Lnet/minecraft/block/BlockMobSpawner;getExpDrop(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;I)I Ljava/util/Random;nextInt(I)I 1 0x21 0x1 TRUE FALSE FALSE FALSE
mushroomSpreadChance Chance of a mushroom spreading to surrounding blocks Lnet/minecraft/block/BlockMushroom;canUseBonemeal(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 5 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 6 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 7 0x21 0x1 FALSE FALSE FALSE FALSE
mushroomSpreadPos Position of the next mushroom around the current one Lnet/minecraft/block/BlockMushroom;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 8 0x21 0x1 FALSE FALSE FALSE FALSE
myceliumParticles Position of mycelium particles Lnet/minecraft/block/BlockMycelium;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
myceliumParticles Position of mycelium particles Lnet/minecraft/block/BlockMycelium;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
myceliumParticles Position of mycelium particles Lnet/minecraft/block/BlockMycelium;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
myceliumSpreadPos Position of next mycelium block Lnet/minecraft/block/BlockMycelium;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
myceliumSpreadPos Position of next mycelium block Lnet/minecraft/block/BlockMycelium;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
myceliumSpreadPos Position of next mycelium block Lnet/minecraft/block/BlockMycelium;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
netherWartDrop Quantity of nether warts dropped Lnet/minecraft/block/BlockNetherWart;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
netherWartDropFortuneBonus Quantity of fortune bonus Lnet/minecraft/block/BlockNetherWart;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 TRUE FALSE FALSE FALSE
netherWartGrowChance Chance of nether wart growing Lnet/minecraft/block/BlockNetherWart;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
leafNewDropApple Chance of leaves dropping an apple on leaf break Lnet/minecraft/block/BlockNewLeaf;dropApple(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
leafOldDropApple Chance of alpha leaves dropping an apple on leaf break Lnet/minecraft/block/BlockOldLeaf;dropApple(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
oreLapisAmount How much lapis you get Lnet/minecraft/block/BlockOre;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
oreFortuneBonus How much extra ore drop you get with fortune Lnet/minecraft/block/BlockOre;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
pistonSoundExtend Pitch of piston extend sounds Lnet/minecraft/block/BlockPistonBase;eventReceived(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;II)Z Ljava/util/Random;nextFloat()F 0 0x21 0x20001 FALSE FALSE FALSE FALSE
pistonSoundRetract Pitch of piston retract sounds Lnet/minecraft/block/BlockPistonBase;eventReceived(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;II)Z Ljava/util/Random;nextFloat()F 1 0x21 0x20001 FALSE FALSE FALSE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 6 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 7 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalParticles Particles of the nether portal Lnet/minecraft/block/BlockPortal;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 8 0x21 0x1 FALSE TRUE TRUE FALSE
netherPortalPiglin Chance of piglin spawning in the nether portal Lnet/minecraft/block/BlockPortal;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
poisonousPotatoDrop Chance of posonous potato dropping Lnet/minecraft/block/BlockPotato;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
snowmanSpawnParticles Position of snow particles when spawning a snowman Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE FALSE FALSE FALSE
snowmanSpawnParticles Position of snow particles when spawning a snowman Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 1 0x21 0x2 FALSE FALSE FALSE FALSE
snowmanSpawnParticles Position of snow particles when spawning a snowman Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 2 0x21 0x2 FALSE FALSE FALSE FALSE
ironGolemSpawnParticles Position of snowball particles when spawning an iron golem Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 3 0x21 0x2 FALSE FALSE FALSE FALSE
ironGolemSpawnParticles Position of snowball particles when spawning an iron golem Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 4 0x21 0x2 FALSE FALSE FALSE FALSE
ironGolemSpawnParticles Position of snowball particles when spawning an iron golem Lnet/minecraft/block/BlockPumpkin;trySpawnGolem(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextDouble()D 5 0x21 0x2 FALSE FALSE FALSE FALSE
redstoneOreXpDrop Amount of xp dropped by redstone ore Lnet/minecraft/block/BlockRedstoneOre;getExpDrop(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;I)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
restoneOreDrop Amount of redstone dropped from ore Lnet/minecraft/block/BlockRedstoneOre;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneOreDropFortuneBonus Amount of redstone dropped from ore with fortune Lnet/minecraft/block/BlockRedstoneOre;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneOreParticles Particles of redstone ore Lnet/minecraft/block/BlockRedstoneOre;spawnParticles(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
redstoneOreParticles Particles of redstone ore Lnet/minecraft/block/BlockRedstoneOre;spawnParticles(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 1 0x21 0x2 FALSE FALSE FALSE FALSE
redstoneOreParticles Particles of redstone ore Lnet/minecraft/block/BlockRedstoneOre;spawnParticles(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextFloat()F 2 0x21 0x2 FALSE FALSE FALSE FALSE
redstoneRepeaterParticles Particles of redstone repeater Lnet/minecraft/block/BlockRedstoneRepeater;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneRepeaterParticles Particles of redstone repeater Lnet/minecraft/block/BlockRedstoneRepeater;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneRepeaterParticles Particles of redstone repeater Lnet/minecraft/block/BlockRedstoneRepeater;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneRepeaterParticles Particles of redstone repeater Lnet/minecraft/block/BlockRedstoneRepeater;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneTorchParticles Particles of redstone torch Lnet/minecraft/block/BlockRedstoneTorch;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneTorchParticles Particles of redstone torch Lnet/minecraft/block/BlockRedstoneTorch;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneTorchParticles Particles of redstone torch Lnet/minecraft/block/BlockRedstoneTorch;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneTorchBurnoutSound Sound of redstone torch burning out Lnet/minecraft/block/BlockRedstoneTorch;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneTorchBurnoutSound Sound of redstone torch burning out Lnet/minecraft/block/BlockRedstoneTorch;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneTorchBurnoutParticles Particles of redstone torch burning out Lnet/minecraft/block/BlockRedstoneTorch;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneTorchBurnoutParticles Particles of redstone torch burning out Lnet/minecraft/block/BlockRedstoneTorch;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneTorchBurnoutParticles Particles of redstone torch burning out Lnet/minecraft/block/BlockRedstoneTorch;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
redstoneWireParticles Particles of redstone wires Lnet/minecraft/block/BlockRedstoneWire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
redstoneWireParticles Particles of redstone wires Lnet/minecraft/block/BlockRedstoneWire;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
boneMealSapling Chance of a sapling growing after being bonemealed Lnet/minecraft/block/BlockSapling;canUseBonemeal(Lnet/minecraft/world/World;Ljava/util/Random;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
growBigOakTreeFromSapling If a tree is big or not when a sapling is grown Lnet/minecraft/block/BlockSapling;generateTree(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
megaSpruceTreeCrownSizeFromSapling How big the leaf crown of a mega spruce tree is Lnet/minecraft/block/BlockSapling;generateTree(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE FALSE FALSE
jungleMinimumTreeHeightFromSapling The minimum height of a jungle tree from a jungle sapling Lnet/minecraft/block/BlockSapling;generateTree(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
growTreeChance Determines when a sapling grows into a tree Lnet/minecraft/block/BlockSapling;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_531 null Lnet/minecraft/block/BlockSeaLantern;quantityDropped(Ljava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_532 null Lnet/minecraft/block/BlockSeaLantern;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_512 null Lnet/minecraft/block/BlockSkull;checkWitherSpawn(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/tileentity/TileEntitySkull;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_513 null Lnet/minecraft/block/BlockSkull;checkWitherSpawn(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/tileentity/TileEntitySkull;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
random_514 null Lnet/minecraft/block/BlockSkull;checkWitherSpawn(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/tileentity/TileEntitySkull;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
random_328 null Lnet/minecraft/block/BlockSponge;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_329 null Lnet/minecraft/block/BlockSponge;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_330 null Lnet/minecraft/block/BlockSponge;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_331 null Lnet/minecraft/block/BlockSponge;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_332 null Lnet/minecraft/block/BlockSponge;randomDisplayTick(Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/Random;)V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
lavaFireSpreadChanceAndAmount Chance of fire spreading and how much spreads Lnet/minecraft/block/BlockStaticLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
lavaFireSpreadPos Position of next fire spread Lnet/minecraft/block/BlockStaticLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
lavaFireSpreadPos Position of next fire spread Lnet/minecraft/block/BlockStaticLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
lavaFireSpreadPos Position of next fire spread Lnet/minecraft/block/BlockStaticLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE FALSE FALSE
lavaFireSpreadPos Position of next fire spread Lnet/minecraft/block/BlockStaticLiquid;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE FALSE FALSE
random_461 null Lnet/minecraft/block/BlockStem;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
random_460 null Lnet/minecraft/block/BlockStem;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_346 null Lnet/minecraft/block/BlockTallGrass;getDrops(Lnet/minecraft/util/NonNullList;Lnet/minecraft/world/IBlockAccess;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 TRUE FALSE FALSE FALSE
random_345 null Lnet/minecraft/block/BlockTallGrass;quantityDroppedWithBonus(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_361 null Lnet/minecraft/block/BlockTNT;onBlockDestroyedByExplosion(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/world/Explosion;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_510 null Lnet/minecraft/block/BlockTripWireHook;playSound(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;ZZZZ)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
random_462 null Lnet/minecraft/block/BlockVine;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_463 null Lnet/minecraft/block/BlockVine;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_464 null Lnet/minecraft/block/BlockVine;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 1 0x21 0x1 FALSE FALSE FALSE FALSE
random_465 null Lnet/minecraft/block/BlockVine;updateTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Ljava/util/Random;)V Ljava/util/Random;nextBoolean()Z 2 0x21 0x1 FALSE FALSE FALSE FALSE
random_1365 null Lnet/minecraft/client/audio/SoundEventAccessor;cloneEntry()Lnet/minecraft/client/audio/Sound; Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE TRUE TRUE FALSE
portalSoundTrigger Pitch of wooshing sounds when entering a nether portal Lnet/minecraft/client/entity/EntityPlayerSP;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
fontRendererObfuscation Chooses a seed for the obfuscated text Lnet/minecraft/client/gui/FontRenderer;renderStringAtPos(Ljava/lang/String;Z)V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE TRUE TRUE FALSE
chooseRandomSeed Sets the world seed if nothing was put in Lnet/minecraft/client/gui/GuiCreateWorld;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextLong()J 0 0x21 0x4 FALSE TRUE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x4 FALSE FALSE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextFloat()F 3 0x21 0x4 FALSE FALSE TRUE FALSE
customizeWorldGuiSliderPos Random position of sliders in customize world screen when clicking randomize Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V Ljava/util/Random;nextBoolean()Z 1 0x21 0x4 FALSE FALSE TRUE FALSE
guiEnchantmentFlipBook The amount of pages the book should flip Lnet/minecraft/client/gui/GuiEnchantment;tickBook()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE TRUE TRUE FALSE
guiEnchantmentFlipBook The amount of pages the book should flip Lnet/minecraft/client/gui/GuiEnchantment;tickBook()V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE TRUE TRUE FALSE
guiIngameSetRandomSeed Sets the random seed in GuiIngame Lnet/minecraft/client/gui/GuiIngame;renderPlayerStats(Lnet/minecraft/client/gui/ScaledResolution;)V Ljava/util/Random;setSeed(J)V 0 0x21 0x4 FALSE TRUE TRUE FALSE
guiIngameShakeHearts Pattern of hearts shaking Lnet/minecraft/client/gui/GuiIngame;renderPlayerStats(Lnet/minecraft/client/gui/ScaledResolution;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE TRUE TRUE FALSE
guiIngameShakeHunger Pattern of hunger bars shaking Lnet/minecraft/client/gui/GuiIngame;renderPlayerStats(Lnet/minecraft/client/gui/ScaledResolution;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x4 FALSE TRUE TRUE FALSE
splashTextIndex Random splash text in the title screen Lnet/minecraft/client/gui/GuiMainMenu;<init>()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
minceraftRandom Chance for 'Minceraft' to appear in the Title Screen Lnet/minecraft/client/gui/GuiMainMenu;<init>()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
fontRandomSetSeed Set's the fontrandom seed in GuiWinGame Lnet/minecraft/client/gui/GuiWinGame;drawScreen(IIF)V Ljava/util/Random;setSeed(J)V 0 0x21 0x1 FALSE TRUE TRUE FALSE
fontRandomObfuscation The randomness of the obfuscation Lnet/minecraft/client/gui/GuiWinGame;initGui()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE TRUE TRUE FALSE
modelBox Returns a random model box from a list Lnet/minecraft/client/model/ModelBase;getRandomModelBox(Ljava/util/Random;)Lnet/minecraft/client/model/ModelRenderer; Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE TRUE FALSE
modelGhast Length of a ghasts tentacles Lnet/minecraft/client/model/ModelGhast;<init>()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
ambienceTicks Ticks after joining a new world, when the ambient sound should play Lnet/minecraft/client/multiplayer/WorldClient;<init>(Lnet/minecraft/client/network/NetHandlerPlayClient;Lnet/minecraft/world/WorldSettings;ILnet/minecraft/world/EnumDifficulty;Lnet/minecraft/profiler/Profiler;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
ambienceLightLevel Maximal Light level for ambient sounds to play Lnet/minecraft/client/multiplayer/WorldClient;playMoodSoundAndCheckLight(IILnet/minecraft/world/chunk/Chunk;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE TRUE FALSE
ambienceVolume Volume of an ambient sounds from 0 to 0.2 Lnet/minecraft/client/multiplayer/WorldClient;playMoodSoundAndCheckLight(IILnet/minecraft/world/chunk/Chunk;)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
ambienceTicks Ticks after joining a new world, when the ambient sound should play Lnet/minecraft/client/multiplayer/WorldClient;playMoodSoundAndCheckLight(IILnet/minecraft/world/chunk/Chunk;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x4 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE TRUE FALSE
barrierParticlePosition Random Offset of Barrier Particles Lnet/minecraft/client/multiplayer/WorldClient;showBarrierParticles(IIIILjava/util/Random;ZLnet/minecraft/util/math/BlockPos$MutableBlockPos;)V Ljava/util/Random;nextInt(I)I 5 0x21 0x1 FALSE FALSE TRUE FALSE
pickupItemPitch Pitch for sound when other players pickup an item Lnet/minecraft/client/network/NetHandlerPlayClient;handleCollectItem(Lnet/minecraft/network/play/server/SPacketCollectItem;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
pickupItemPitch Pitch for sound when other players pickup an item Lnet/minecraft/client/network/NetHandlerPlayClient;handleCollectItem(Lnet/minecraft/network/play/server/SPacketCollectItem;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
pickupItemPitch Pitch for sound when other players pickup an item Lnet/minecraft/client/network/NetHandlerPlayClient;handleCollectItem(Lnet/minecraft/network/play/server/SPacketCollectItem;)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
pickupItemPitch Pitch for sound when other players pickup an item Lnet/minecraft/client/network/NetHandlerPlayClient;handleCollectItem(Lnet/minecraft/network/play/server/SPacketCollectItem;)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
incomingParticleOffset Offset for incoming packets with any particle Lnet/minecraft/client/network/NetHandlerPlayClient;handleParticles(Lnet/minecraft/network/play/server/SPacketParticles;)V Ljava/util/Random;nextGaussian()D 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1417 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1418 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1419 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE TRUE FALSE
random_1420 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 3 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_34 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_35 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_36 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_37 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_38 null Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1425 null Lnet/minecraft/client/particle/ParticleBubble;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_42 null Lnet/minecraft/client/particle/ParticleBubble;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_43 null Lnet/minecraft/client/particle/ParticleBubble;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_44 null Lnet/minecraft/client/particle/ParticleBubble;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 2 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_45 null Lnet/minecraft/client/particle/ParticleBubble;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 3 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_68 null Lnet/minecraft/client/particle/ParticleCloud;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_69 null Lnet/minecraft/client/particle/ParticleCloud;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_63 null Lnet/minecraft/client/particle/ParticleCrit;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_64 null Lnet/minecraft/client/particle/ParticleCrit;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1455 null Lnet/minecraft/client/particle/ParticleDragonBreath;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_67 null Lnet/minecraft/client/particle/ParticleDrip;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/block/material/Material;)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1435 null Lnet/minecraft/client/particle/ParticleEnchantmentTable;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1436 null Lnet/minecraft/client/particle/ParticleEnchantmentTable;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_54 null Lnet/minecraft/client/particle/ParticleEnchantmentTable;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_55 null Lnet/minecraft/client/particle/ParticleEnchantmentTable;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1456 null Lnet/minecraft/client/particle/ParticleEndRod;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1421 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1422 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1423 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE TRUE FALSE
random_1424 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 3 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_39 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_40 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_41 null Lnet/minecraft/client/particle/ParticleExplosion;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 2 0x21 0x4 FALSE FALSE TRUE FALSE
random_1446 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1447 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1448 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1449 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1450 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1451 null Lnet/minecraft/client/particle/ParticleExplosionHuge;onUpdate()V Ljava/util/Random;nextDouble()D 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1452 null Lnet/minecraft/client/particle/ParticleExplosionLarge;<init>(Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1453 null Lnet/minecraft/client/particle/ParticleExplosionLarge;<init>(Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_75 null Lnet/minecraft/client/particle/ParticleFallingDust;<init>(Lnet/minecraft/world/World;DDDFFF)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_76 null Lnet/minecraft/client/particle/ParticleFallingDust;<init>(Lnet/minecraft/world/World;DDDFFF)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_77 null Lnet/minecraft/client/particle/ParticleFallingDust;<init>(Lnet/minecraft/world/World;DDDFFF)V Ljava/lang/Math;random()D 2 0x21 0x4 FALSE FALSE TRUE FALSE
random_1454 null Lnet/minecraft/client/particle/ParticleFirework$Spark;<init>(Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/ParticleManager;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 1 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 2 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 3 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 4 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextDouble()D 5 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBallFirework1 Position, Rotation for the 'Ball' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBall(DI[I[IZZ)V Ljava/util/Random;nextGaussian()D 0 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBurstFirework Position, Rotation for the 'Burst' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBurst([I[IZZ)V Ljava/util/Random;nextGaussian()D 0 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBurstFirework Position, Rotation for the 'Burst' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBurst([I[IZZ)V Ljava/util/Random;nextGaussian()D 1 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBurstFirework Position, Rotation for the 'Burst' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBurst([I[IZZ)V Ljava/util/Random;nextGaussian()D 2 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBurstFirework Position, Rotation for the 'Burst' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBurst([I[IZZ)V Ljava/util/Random;nextGaussian()D 3 0x21 0x2 FALSE FALSE TRUE FALSE
posRotBurstFirework1 Position, Rotation for the 'Burst' Firework Effect Lnet/minecraft/client/particle/ParticleFirework$Starter;createBurst([I[IZZ)V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE FALSE TRUE FALSE
fireworkColor Random Color for Particle Lnet/minecraft/client/particle/ParticleFirework$Starter;createParticle(DDDDDD[I[IZZ)V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE TRUE FALSE
fireworkFadeColor Random Fade Color for Particle Lnet/minecraft/client/particle/ParticleFirework$Starter;createParticle(DDDDDD[I[IZZ)V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE TRUE FALSE
rotationCreeperFirework Rotation ooffset after 3 iterations of the creeper face Lnet/minecraft/client/particle/ParticleFirework$Starter;createShaped(D[[D[I[IZZZ)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE TRUE FALSE
xzRollFirework X/Z Position to turn into when flying a rocket Lnet/minecraft/client/particle/ParticleFirework$Starter;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
xzRollFirework X/Z Position to turn into when flying a rocket Lnet/minecraft/client/particle/ParticleFirework$Starter;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1437 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1438 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1439 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE TRUE FALSE
random_1440 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 3 0x21 0x4 FALSE FALSE TRUE FALSE
random_1441 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 4 0x21 0x4 FALSE FALSE TRUE FALSE
random_1442 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 5 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_56 null Lnet/minecraft/client/particle/ParticleFlame;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1443 null Lnet/minecraft/client/particle/ParticleLava;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1444 null Lnet/minecraft/client/particle/ParticleLava;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_57 null Lnet/minecraft/client/particle/ParticleLava;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1445 null Lnet/minecraft/client/particle/ParticleLava;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1414 null Lnet/minecraft/client/particle/ParticleManager;addBlockHitEffects(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1415 null Lnet/minecraft/client/particle/ParticleManager;addBlockHitEffects(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1416 null Lnet/minecraft/client/particle/ParticleManager;addBlockHitEffects(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1433 null Lnet/minecraft/client/particle/ParticlePortal;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1434 null Lnet/minecraft/client/particle/ParticlePortal;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_52 null Lnet/minecraft/client/particle/ParticlePortal;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_53 null Lnet/minecraft/client/particle/ParticlePortal;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1426 null Lnet/minecraft/client/particle/ParticleRain;<init>(Lnet/minecraft/world/World;DDD)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_46 null Lnet/minecraft/client/particle/ParticleRain;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_47 null Lnet/minecraft/client/particle/ParticleRain;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_48 null Lnet/minecraft/client/particle/ParticleRain;onUpdate()V Ljava/lang/Math;random()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_70 null Lnet/minecraft/client/particle/ParticleRedstone;<init>(Lnet/minecraft/world/World;DDDFFFF)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_71 null Lnet/minecraft/client/particle/ParticleRedstone;<init>(Lnet/minecraft/world/World;DDDFFFF)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_72 null Lnet/minecraft/client/particle/ParticleRedstone;<init>(Lnet/minecraft/world/World;DDDFFFF)V Ljava/lang/Math;random()D 2 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_73 null Lnet/minecraft/client/particle/ParticleRedstone;<init>(Lnet/minecraft/world/World;DDDFFFF)V Ljava/lang/Math;random()D 3 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_74 null Lnet/minecraft/client/particle/ParticleRedstone;<init>(Lnet/minecraft/world/World;DDDFFFF)V Ljava/lang/Math;random()D 4 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_65 null Lnet/minecraft/client/particle/ParticleSmokeNormal;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_66 null Lnet/minecraft/client/particle/ParticleSmokeNormal;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_78 null Lnet/minecraft/client/particle/ParticleSnowShovel;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_79 null Lnet/minecraft/client/particle/ParticleSnowShovel;<init>(Lnet/minecraft/world/World;DDDDDDF)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1430 null Lnet/minecraft/client/particle/ParticleSpell;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE TRUE TRUE
random_1431 null Lnet/minecraft/client/particle/ParticleSpell;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextDouble()D 1 0x21 0x4 FALSE FALSE TRUE TRUE
math_random_51 null Lnet/minecraft/client/particle/ParticleSpell;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1432 null Lnet/minecraft/client/particle/ParticleSpell$WitchFactory;createParticle(ILnet/minecraft/world/World;DDDDDD[I)Lnet/minecraft/client/particle/Particle; Ljava/util/Random;nextFloat()F 0 0x21 0x81 FALSE FALSE TRUE FALSE
random_1427 null Lnet/minecraft/client/particle/ParticleSuspend;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_49 null Lnet/minecraft/client/particle/ParticleSuspend;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1428 null Lnet/minecraft/client/particle/ParticleSuspendedTown;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1429 null Lnet/minecraft/client/particle/ParticleSuspendedTown;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_50 null Lnet/minecraft/client/particle/ParticleSuspendedTown;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1457 null Lnet/minecraft/client/particle/ParticleSweepAttack;<init>(Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE TRUE FALSE
random_1458 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1459 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1460 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1461 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1462 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1463 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1464 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1465 null Lnet/minecraft/client/particle/ParticleTotem;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE TRUE FALSE
math_random_61 null Lnet/minecraft/client/particle/ParticleWaterWake;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 0 0x21 0x4 FALSE FALSE TRUE FALSE
math_random_62 null Lnet/minecraft/client/particle/ParticleWaterWake;<init>(Lnet/minecraft/world/World;DDDDDD)V Ljava/lang/Math;random()D 1 0x21 0x4 FALSE FALSE TRUE FALSE
random_1408 null Lnet/minecraft/client/renderer/entity/layers/LayerArrow;doRenderLayer(Lnet/minecraft/entity/EntityLivingBase;FFFFFFF)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1409 null Lnet/minecraft/client/renderer/entity/layers/LayerArrow;doRenderLayer(Lnet/minecraft/entity/EntityLivingBase;FFFFFFF)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1410 null Lnet/minecraft/client/renderer/entity/layers/LayerArrow;doRenderLayer(Lnet/minecraft/entity/EntityLivingBase;FFFFFFF)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1411 null Lnet/minecraft/client/renderer/entity/layers/LayerArrow;doRenderLayer(Lnet/minecraft/entity/EntityLivingBase;FFFFFFF)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1379 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1380 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1381 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1382 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1383 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1384 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1385 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 6 0x21 0x1 FALSE FALSE TRUE FALSE
random_1386 null Lnet/minecraft/client/renderer/entity/layers/LayerEnderDragonDeath;doRenderLayer(Lnet/minecraft/entity/boss/EntityDragon;FFFFFFF)V Ljava/util/Random;nextFloat()F 7 0x21 0x1 FALSE FALSE TRUE FALSE
random_1376 null Lnet/minecraft/client/renderer/entity/RenderEnderman;doRender(Lnet/minecraft/entity/monster/EntityEnderman;DDDFF)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1377 null Lnet/minecraft/client/renderer/entity/RenderEnderman;doRender(Lnet/minecraft/entity/monster/EntityEnderman;DDDFF)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1387 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;setSeed(J)V 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1388 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1389 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1390 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1391 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1392 null Lnet/minecraft/client/renderer/entity/RenderEntityItem;doRender(Lnet/minecraft/entity/item/EntityItem;DDDFF)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1402 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1403 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1404 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1405 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1406 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1407 null Lnet/minecraft/client/renderer/entity/RenderLightningBolt;doRender(Lnet/minecraft/entity/effect/EntityLightningBolt;DDDFF)V Ljava/util/Random;nextInt(I)I 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1345 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;setSeed(J)V 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1346 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1347 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE TRUE TRUE FALSE
random_1348 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 2 0x21 0x2 FALSE TRUE TRUE FALSE
random_1349 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 3 0x21 0x2 FALSE TRUE TRUE FALSE
random_1350 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1351 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextDouble()D 1 0x21 0x2 FALSE TRUE TRUE FALSE
random_1352 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 4 0x21 0x2 FALSE TRUE TRUE FALSE
random_1353 null Lnet/minecraft/client/renderer/EntityRenderer;addRainParticles()V Ljava/util/Random;nextInt(I)I 5 0x21 0x2 FALSE TRUE TRUE FALSE
random_1360 null Lnet/minecraft/client/renderer/EntityRenderer;displayItemActivation(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE TRUE TRUE FALSE
random_1361 null Lnet/minecraft/client/renderer/EntityRenderer;displayItemActivation(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE TRUE TRUE FALSE
random_1354 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;setSeed(J)V 0 0x21 0x4 FALSE TRUE TRUE FALSE
random_1355 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE TRUE TRUE FALSE
random_1356 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;nextDouble()D 1 0x21 0x4 FALSE TRUE TRUE FALSE
random_1357 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;nextGaussian()D 0 0x21 0x4 FALSE TRUE TRUE FALSE
random_1358 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;nextDouble()D 2 0x21 0x4 FALSE TRUE TRUE FALSE
random_1359 null Lnet/minecraft/client/renderer/EntityRenderer;renderRainSnow(F)V Ljava/util/Random;nextGaussian()D 1 0x21 0x4 FALSE TRUE TRUE FALSE
math_random_30 null Lnet/minecraft/client/renderer/EntityRenderer;updateTorchFlicker()V Ljava/lang/Math;random()D 0 0x21 0x2 FALSE FALSE TRUE FALSE
math_random_31 null Lnet/minecraft/client/renderer/EntityRenderer;updateTorchFlicker()V Ljava/lang/Math;random()D 1 0x21 0x2 FALSE FALSE TRUE FALSE
math_random_32 null Lnet/minecraft/client/renderer/EntityRenderer;updateTorchFlicker()V Ljava/lang/Math;random()D 2 0x21 0x2 FALSE FALSE TRUE FALSE
math_random_33 null Lnet/minecraft/client/renderer/EntityRenderer;updateTorchFlicker()V Ljava/lang/Math;random()D 3 0x21 0x2 FALSE FALSE TRUE FALSE
random_1275 null Lnet/minecraft/client/renderer/RenderGlobal;calculateParticleLevel(Z)I Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1276 null Lnet/minecraft/client/renderer/RenderGlobal;calculateParticleLevel(Z)I Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE TRUE TRUE FALSE
random_1277 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1278 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1279 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1280 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1281 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1282 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1283 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 6 0x21 0x1 FALSE FALSE TRUE FALSE
random_1284 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 7 0x21 0x1 FALSE FALSE TRUE FALSE
random_1285 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 8 0x21 0x1 FALSE FALSE TRUE FALSE
random_1286 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 9 0x21 0x1 FALSE FALSE TRUE FALSE
random_1287 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 10 0x21 0x1 FALSE FALSE TRUE FALSE
random_1288 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 11 0x21 0x1 FALSE FALSE TRUE FALSE
random_1289 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 12 0x21 0x1 FALSE FALSE TRUE FALSE
random_1290 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 13 0x21 0x1 FALSE FALSE TRUE FALSE
random_1291 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 14 0x21 0x1 FALSE FALSE TRUE FALSE
random_1292 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 15 0x21 0x1 FALSE FALSE TRUE FALSE
random_1293 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 16 0x21 0x1 FALSE FALSE TRUE FALSE
random_1294 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 17 0x21 0x1 FALSE FALSE TRUE FALSE
random_1295 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 18 0x21 0x1 FALSE FALSE TRUE FALSE
random_1296 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 19 0x21 0x1 FALSE FALSE TRUE FALSE
random_1297 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 20 0x21 0x1 FALSE FALSE TRUE FALSE
random_1298 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 21 0x21 0x1 FALSE FALSE TRUE FALSE
random_1299 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 22 0x21 0x1 FALSE FALSE TRUE FALSE
random_1300 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 23 0x21 0x1 FALSE FALSE TRUE FALSE
random_1301 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 24 0x21 0x1 FALSE FALSE TRUE FALSE
random_1302 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 25 0x21 0x1 FALSE FALSE TRUE FALSE
random_1303 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 26 0x21 0x1 FALSE FALSE TRUE FALSE
random_1304 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 27 0x21 0x1 FALSE FALSE TRUE FALSE
random_1305 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 28 0x21 0x1 FALSE FALSE TRUE FALSE
random_1306 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 29 0x21 0x1 FALSE FALSE TRUE FALSE
random_1307 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 30 0x21 0x1 FALSE FALSE TRUE FALSE
random_1308 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 31 0x21 0x1 FALSE FALSE TRUE FALSE
random_1309 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 32 0x21 0x1 FALSE FALSE TRUE FALSE
random_1310 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 33 0x21 0x1 FALSE FALSE TRUE FALSE
random_1311 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 34 0x21 0x1 FALSE FALSE TRUE FALSE
random_1312 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 35 0x21 0x1 FALSE FALSE TRUE FALSE
random_1313 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 36 0x21 0x1 FALSE FALSE TRUE FALSE
random_1314 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 37 0x21 0x1 FALSE FALSE TRUE FALSE
random_1315 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 38 0x21 0x1 FALSE FALSE TRUE FALSE
random_1316 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 39 0x21 0x1 FALSE FALSE TRUE FALSE
random_1317 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1318 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1319 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1320 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1321 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
random_1322 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
random_1323 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
random_1324 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 3 0x21 0x1 FALSE FALSE TRUE FALSE
random_1325 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1326 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 4 0x21 0x1 FALSE FALSE TRUE FALSE
random_1327 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1328 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 6 0x21 0x1 FALSE FALSE TRUE FALSE
random_1329 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 7 0x21 0x1 FALSE FALSE TRUE FALSE
random_1330 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 40 0x21 0x1 FALSE FALSE TRUE FALSE
random_1331 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 41 0x21 0x1 FALSE FALSE TRUE FALSE
random_1332 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 5 0x21 0x1 FALSE FALSE TRUE FALSE
random_1333 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 8 0x21 0x1 FALSE FALSE TRUE FALSE
random_1334 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextGaussian()D 6 0x21 0x1 FALSE FALSE TRUE FALSE
random_1335 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 42 0x21 0x1 FALSE FALSE TRUE FALSE
random_1336 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 43 0x21 0x1 FALSE FALSE TRUE FALSE
random_1337 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 44 0x21 0x1 FALSE FALSE TRUE FALSE
random_1338 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 45 0x21 0x1 FALSE FALSE TRUE FALSE
random_1339 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 46 0x21 0x1 FALSE FALSE TRUE FALSE
random_1340 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextDouble()D 9 0x21 0x1 FALSE FALSE TRUE FALSE
random_1341 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 47 0x21 0x1 FALSE FALSE TRUE FALSE
random_1342 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 48 0x21 0x1 FALSE FALSE TRUE FALSE
random_1343 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 49 0x21 0x1 FALSE FALSE TRUE FALSE
random_1344 null Lnet/minecraft/client/renderer/RenderGlobal;playEvent(Lnet/minecraft/entity/player/EntityPlayer;ILnet/minecraft/util/math/BlockPos;I)V Ljava/util/Random;nextFloat()F 50 0x21 0x1 FALSE FALSE TRUE FALSE
random_1270 null Lnet/minecraft/client/renderer/RenderGlobal;renderStars(Lnet/minecraft/client/renderer/BufferBuilder;)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1271 null Lnet/minecraft/client/renderer/RenderGlobal;renderStars(Lnet/minecraft/client/renderer/BufferBuilder;)V Ljava/util/Random;nextFloat()F 1 0x21 0x2 FALSE TRUE TRUE FALSE
random_1272 null Lnet/minecraft/client/renderer/RenderGlobal;renderStars(Lnet/minecraft/client/renderer/BufferBuilder;)V Ljava/util/Random;nextFloat()F 2 0x21 0x2 FALSE TRUE TRUE FALSE
random_1273 null Lnet/minecraft/client/renderer/RenderGlobal;renderStars(Lnet/minecraft/client/renderer/BufferBuilder;)V Ljava/util/Random;nextFloat()F 3 0x21 0x2 FALSE TRUE TRUE FALSE
random_1274 null Lnet/minecraft/client/renderer/RenderGlobal;renderStars(Lnet/minecraft/client/renderer/BufferBuilder;)V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE TRUE TRUE FALSE
random_1468 null Lnet/minecraft/client/renderer/tileentity/TileEntityEndPortalRenderer;render(Lnet/minecraft/tileentity/TileEntityEndPortal;DDDFIF)V Ljava/util/Random;setSeed(J)V 0 0x21 0x1 FALSE TRUE TRUE FALSE
random_1469 null Lnet/minecraft/client/renderer/tileentity/TileEntityEndPortalRenderer;render(Lnet/minecraft/tileentity/TileEntityEndPortal;DDDFIF)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE TRUE TRUE FALSE
random_1470 null Lnet/minecraft/client/renderer/tileentity/TileEntityEndPortalRenderer;render(Lnet/minecraft/tileentity/TileEntityEndPortal;DDDFIF)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE TRUE TRUE FALSE
random_1471 null Lnet/minecraft/client/renderer/tileentity/TileEntityEndPortalRenderer;render(Lnet/minecraft/tileentity/TileEntityEndPortal;DDDFIF)V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE TRUE TRUE FALSE
commandGiveSound Pitch of item being picked up sound when doing /give Lnet/minecraft/command/CommandGive;execute(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/command/ICommandSender;[Ljava/lang/String;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
commandGiveSound Pitch of item being picked up sound when doing /give Lnet/minecraft/command/CommandGive;execute(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/command/ICommandSender;[Ljava/lang/String;)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
random_1485 null Lnet/minecraft/command/CommandHelp;execute(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/command/ICommandSender;[Ljava/lang/String;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_1482 null Lnet/minecraft/command/CommandWeather;execute(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/command/ICommandSender;[Ljava/lang/String;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_334 null Lnet/minecraft/dispenser/BehaviorDefaultDispenseItem;doDispense(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;ILnet/minecraft/util/EnumFacing;Lnet/minecraft/dispenser/IPosition;)V Ljava/util/Random;nextDouble()D 0 0x21 0x9 FALSE FALSE FALSE FALSE
random_335 null Lnet/minecraft/dispenser/BehaviorDefaultDispenseItem;doDispense(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;ILnet/minecraft/util/EnumFacing;Lnet/minecraft/dispenser/IPosition;)V Ljava/util/Random;nextGaussian()D 0 0x21 0x9 FALSE FALSE FALSE FALSE
random_336 null Lnet/minecraft/dispenser/BehaviorDefaultDispenseItem;doDispense(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;ILnet/minecraft/util/EnumFacing;Lnet/minecraft/dispenser/IPosition;)V Ljava/util/Random;nextGaussian()D 1 0x21 0x9 FALSE FALSE FALSE FALSE
random_337 null Lnet/minecraft/dispenser/BehaviorDefaultDispenseItem;doDispense(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;ILnet/minecraft/util/EnumFacing;Lnet/minecraft/dispenser/IPosition;)V Ljava/util/Random;nextGaussian()D 2 0x21 0x9 FALSE FALSE FALSE FALSE
enchantmentDamageArthropodSlownessDuration Duration of slowness effect when hitting arthropod enemies Lnet/minecraft/enchantment/EnchantmentDamage;onEntityDamaged(Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/entity/Entity;I)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
itemNegateDamage If the item should be damaged when unbreaking is active Lnet/minecraft/enchantment/EnchantmentDurability;negateDamage(Lnet/minecraft/item/ItemStack;ILjava/util/Random;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x9 FALSE FALSE FALSE FALSE
itemNegateDamage If the item should be damaged when unbreaking is active Lnet/minecraft/enchantment/EnchantmentDurability;negateDamage(Lnet/minecraft/item/ItemStack;ILjava/util/Random;)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x9 FALSE FALSE FALSE FALSE
enchantLevel Random Enchantment Level Lnet/minecraft/enchantment/EnchantmentHelper;buildEnchantmentList(Ljava/util/Random;Lnet/minecraft/item/ItemStack;IZ)Ljava/util/List; Ljava/util/Random;nextInt(I)I 0 0x21 0x9 FALSE FALSE FALSE FALSE
enchantLevel Random Enchantment Level Lnet/minecraft/enchantment/EnchantmentHelper;buildEnchantmentList(Ljava/util/Random;Lnet/minecraft/item/ItemStack;IZ)Ljava/util/List; Ljava/util/Random;nextInt(I)I 1 0x21 0x9 FALSE FALSE FALSE FALSE
enchantMent Random Enchantment for Level Lnet/minecraft/enchantment/EnchantmentHelper;buildEnchantmentList(Ljava/util/Random;Lnet/minecraft/item/ItemStack;IZ)Ljava/util/List; Ljava/util/Random;nextFloat()F 0 0x21 0x9 FALSE FALSE FALSE FALSE
enchantMent Random Enchantment for Level Lnet/minecraft/enchantment/EnchantmentHelper;buildEnchantmentList(Ljava/util/Random;Lnet/minecraft/item/ItemStack;IZ)Ljava/util/List; Ljava/util/Random;nextFloat()F 1 0x21 0x9 FALSE FALSE FALSE FALSE
enchantMent Random Enchantment for Level Lnet/minecraft/enchantment/EnchantmentHelper;buildEnchantmentList(Ljava/util/Random;Lnet/minecraft/item/ItemStack;IZ)Ljava/util/List; Ljava/util/Random;nextInt(I)I 2 0x21 0x9 FALSE FALSE FALSE FALSE
enchantibiliyRandom Calculates whether an Item is enchantable with set enchantment Lnet/minecraft/enchantment/EnchantmentHelper;calcItemStackEnchantability(Ljava/util/Random;IILnet/minecraft/item/ItemStack;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x9 FALSE FALSE FALSE FALSE
enchantibiliyRandom Calculates whether an Item is enchantable with set enchantment Lnet/minecraft/enchantment/EnchantmentHelper;calcItemStackEnchantability(Ljava/util/Random;IILnet/minecraft/item/ItemStack;)I Ljava/util/Random;nextInt(I)I 1 0x21 0x9 FALSE FALSE FALSE FALSE
enchantmentHelperDamageItem Selects the armor piece that should be damaged from thorns Lnet/minecraft/enchantment/EnchantmentHelper;getEnchantedItem(Lnet/minecraft/enchantment/Enchantment;Lnet/minecraft/entity/EntityLivingBase;)Lnet/minecraft/item/ItemStack; Ljava/util/Random;nextInt(I)I 0 0x21 0x9 FALSE FALSE FALSE FALSE
random_565 null Lnet/minecraft/enchantment/EnchantmentThorns;getDamage(ILjava/util/Random;)I Ljava/util/Random;nextInt(I)I 0 0x21 0x9 FALSE FALSE FALSE FALSE
random_564 null Lnet/minecraft/enchantment/EnchantmentThorns;shouldHit(ILjava/util/Random;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x9 FALSE FALSE FALSE FALSE
random_709 null Lnet/minecraft/entity/ai/EntityAIAttackMelee;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiAttackCheckForTargets Between a lot of conditions, the chance for the entity to update the target Lnet/minecraft/entity/ai/EntityAIAttackMelee;updateTask()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiAttackCheckForTargets Between a lot of conditions, the chance for the entity to update the target Lnet/minecraft/entity/ai/EntityAIAttackMelee;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiAttackRangedBowStrafeClockwise If entity should change directions after 20 ticks, to the left or to the right Lnet/minecraft/entity/ai/EntityAIAttackRangedBow;updateTask()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiAttackRangedBowStrafeClockwise If entity should change directions after 20 ticks, to the left or to the right Lnet/minecraft/entity/ai/EntityAIAttackRangedBow;updateTask()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
aiBeg How long a wolf should beg for the item in the players hands Lnet/minecraft/entity/ai/EntityAIBeg;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiBreakDoorSound If the zombie break door sound should be played Lnet/minecraft/entity/ai/EntityAIBreakDoor;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiDefendVillageCheckForEnemyPlayer If the entity should look for a player with low reputation as a target Lnet/minecraft/entity/ai/EntityAIDefendVillage;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiEatGrassEatGrass Should eat grass Lnet/minecraft/entity/ai/EntityAIEatGrass;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiFleeSun Looks 10 times around the entity randomly for a shelter Lnet/minecraft/entity/ai/EntityAIFleeSun;findPossibleShelter()Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
aiFleeSun Looks 10 times around the entity randomly for a shelter Lnet/minecraft/entity/ai/EntityAIFleeSun;findPossibleShelter()Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE FALSE FALSE
aiFleeSun Looks 10 times around the entity randomly for a shelter Lnet/minecraft/entity/ai/EntityAIFleeSun;findPossibleShelter()Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 2 0x21 0x2 FALSE FALSE FALSE FALSE
aiFollowGolemTakeRose How long it takes until entity takes a rose from the golem Lnet/minecraft/entity/ai/EntityAIFollowGolem;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiLeapAtTargetLeapChance If the entity should leap at the target Lnet/minecraft/entity/ai/EntityAILeapAtTarget;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiLookAtVillagerLook If the entity should look at a villager Lnet/minecraft/entity/ai/EntityAILookAtVillager;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiLookIdleStart If the entity should start looking around Lnet/minecraft/entity/ai/EntityAILookIdle;shouldExecute()Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiLookIdleLookingDirection In which direction the entity should look Lnet/minecraft/entity/ai/EntityAILookIdle;startExecuting()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiLookIdleLookingDirection In which direction the entity should look Lnet/minecraft/entity/ai/EntityAILookIdle;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextGaussian()D 0 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextGaussian()D 1 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextGaussian()D 2 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextDouble()D 0 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextDouble()D 1 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextDouble()D 2 0x21 0x2 FALSE FALSE FALSE FALSE
aiMateParticle When done mating, where the particles spawn Lnet/minecraft/entity/ai/EntityAIMate;spawnBaby()V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
aiMoveIndoors If the entity should run indoors Lnet/minecraft/entity/ai/EntityAIMoveIndoors;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_979 null Lnet/minecraft/entity/ai/EntityAIMoveToBlock;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE FALSE FALSE
random_980 null Lnet/minecraft/entity/ai/EntityAIMoveToBlock;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE FALSE FALSE
random_981 null Lnet/minecraft/entity/ai/EntityAIMoveToBlock;startExecuting()V Ljava/util/Random;nextInt(I)I 1 0x421 0x1 FALSE FALSE FALSE FALSE
aiNearestAttackableTarget If the entity should look for a new target Lnet/minecraft/entity/ai/EntityAINearestAttackableTarget;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiPlay If entities should play with each other Lnet/minecraft/entity/ai/EntityAIPlay;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_775 null Lnet/minecraft/entity/ai/EntityAIRunAroundLikeCrazy;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_776 null Lnet/minecraft/entity/ai/EntityAIRunAroundLikeCrazy;updateTask()V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
aiSkeletonRidersAddEnchantmentToMainhand What enchantment should be added to the item in the main hand Lnet/minecraft/entity/ai/EntityAISkeletonRiders;createSkeleton(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/passive/AbstractHorse;)Lnet/minecraft/entity/monster/EntitySkeleton; Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
aiSkeletonRidersAddEnchantmentToMainhand What enchantment should be added to the item in the main hand Lnet/minecraft/entity/ai/EntityAISkeletonRiders;createSkeleton(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/passive/AbstractHorse;)Lnet/minecraft/entity/monster/EntitySkeleton; Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE FALSE FALSE
aiSkeletonRidersAddVelocity How much velocity should be added to the skeleton horse Lnet/minecraft/entity/ai/EntityAISkeletonRiders;updateTask()V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiSkeletonRidersAddVelocity How much velocity should be added to the skeleton horse Lnet/minecraft/entity/ai/EntityAISkeletonRiders;updateTask()V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
aiSwimmingSetJumping Set's the entity to jumping to simulate swimming Lnet/minecraft/entity/ai/EntityAISwimming;updateTask()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiTargetDelay How long the delay is before entity starts pathfinding Lnet/minecraft/entity/ai/EntityAITarget;canEasilyReach(Lnet/minecraft/entity/EntityLivingBase;)Z Ljava/util/Random;nextInt(I)I 0 0x421 0x2 FALSE FALSE FALSE FALSE
aiVillagerMateStart If the villager should start mating Lnet/minecraft/entity/ai/EntityAIVillagerMate;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiVillagerMateSetEntityState Unused method??? Lnet/minecraft/entity/ai/EntityAIVillagerMate;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiWander When entity starts to wander around Lnet/minecraft/entity/ai/EntityAIWander;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiWanderAvoidWater If the entity looks for a place outside the water or just a random position Lnet/minecraft/entity/ai/EntityAIWanderAvoidWater;getPosition()Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
aiWanderAvoidWaterFlying If entity looks for a nearby tree Lnet/minecraft/entity/ai/EntityAIWanderAvoidWaterFlying;getPosition()Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
aiWatchClosestStart If the entity should look at another entity Lnet/minecraft/entity/ai/EntityAIWatchClosest;shouldExecute()Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
aiWatchClosestDuration How long the entity should look at another entity Lnet/minecraft/entity/ai/EntityAIWatchClosest;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 0 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 1 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 2 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 3 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 4 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 5 0x21 0xa FALSE FALSE FALSE FALSE
randomPositionGenerator Random for determining the coordinates of an entity, used by AI tasks Lnet/minecraft/entity/ai/RandomPositionGenerator;generateRandomPos(Lnet/minecraft/entity/EntityCreature;IILnet/minecraft/util/math/Vec3d;Z)Lnet/minecraft/util/math/Vec3d; Ljava/util/Random;nextInt(I)I 6 0x21 0xa FALSE FALSE FALSE FALSE
phaseDyingParticle Position of huge explosions during phase dying Lnet/minecraft/entity/boss/dragon/phase/PhaseDying;doClientRenderEffects()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
phaseDyingParticle Position of huge explosions during phase dying Lnet/minecraft/entity/boss/dragon/phase/PhaseDying;doClientRenderEffects()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
phaseDyingParticle Position of huge explosions during phase dying Lnet/minecraft/entity/boss/dragon/phase/PhaseDying;doClientRenderEffects()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
phaseHoldingPatternPerch If the dragon should start perching Lnet/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern;findNewTarget()V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
phaseHoldingPatternPerch If the dragon should start perching Lnet/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern;findNewTarget()V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE FALSE FALSE
phaseHoldingPatternPerch If the dragon should start perching Lnet/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern;findNewTarget()V Ljava/util/Random;nextInt(I)I 2 0x21 0x2 FALSE FALSE FALSE FALSE
phaseHoldingPatternPerch If the dragon should start perching Lnet/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern;findNewTarget()V Ljava/util/Random;nextInt(I)I 3 0x21 0x2 FALSE FALSE FALSE FALSE
phaseHoldingPatternMoveToLocation Random increment in movement while navigating to the next path Lnet/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern;navigateToNextPathNode()V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
phaseLandingParticle Particles for dragon breath... Lnet/minecraft/entity/boss/dragon/phase/PhaseLanding;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
phaseLandingParticle Particles for dragon breath... Lnet/minecraft/entity/boss/dragon/phase/PhaseLanding;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
phaseLandingParticle Particles for dragon breath... Lnet/minecraft/entity/boss/dragon/phase/PhaseLanding;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
phaseLandingApproachMoveToLocation Random increment in movement while navigating to the next path Lnet/minecraft/entity/boss/dragon/phase/PhaseLandingApproach;navigateToNextPathNode()V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
phaseSittingAttackingGrowlSound Pitch of the dragon growl Lnet/minecraft/entity/boss/dragon/phase/PhaseSittingAttacking;doClientRenderEffects()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
phaseSittingFlamingParticle Position of dragon breath particles Lnet/minecraft/entity/boss/dragon/phase/PhaseSittingFlaming;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
phaseSittingFlamingParticle Position of dragon breath particles Lnet/minecraft/entity/boss/dragon/phase/PhaseSittingFlaming;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
phaseSittingFlamingParticle Position of dragon breath particles Lnet/minecraft/entity/boss/dragon/phase/PhaseSittingFlaming;doClientRenderEffects()V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
phaseStrafePlayerRotation If the dragon should go clockwise or counterclockwise when finding a new target Lnet/minecraft/entity/boss/dragon/phase/PhaseStrafePlayer;findNewTarget()V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
phaseStrafePlayerMoveToLocation Random increment in movement while navigating to the next path Lnet/minecraft/entity/boss/dragon/phase/PhaseStrafePlayer;navigateToNextPathNode()V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
phaseTakeoffMoveToLocation Random increment in movement while navigating to the next path Lnet/minecraft/entity/boss/dragon/phase/PhaseTakeoff;navigateToNextPathNode()V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
addDragonExplosionParticles When the dragon destroys blocks, explosion particles will spawn Lnet/minecraft/entity/boss/EntityDragon;destroyBlocksInAABB(Lnet/minecraft/util/math/AxisAlignedBB;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
addDragonExplosionParticles When the dragon destroys blocks, explosion particles will spawn Lnet/minecraft/entity/boss/EntityDragon;destroyBlocksInAABB(Lnet/minecraft/util/math/AxisAlignedBB;)Z Ljava/util/Random;nextFloat()F 1 0x21 0x2 FALSE FALSE FALSE FALSE
addDragonExplosionParticles When the dragon destroys blocks, explosion particles will spawn Lnet/minecraft/entity/boss/EntityDragon;destroyBlocksInAABB(Lnet/minecraft/util/math/AxisAlignedBB;)Z Ljava/util/Random;nextFloat()F 2 0x21 0x2 FALSE FALSE FALSE FALSE
spawnDragonDeathHugeExplosionParticle Huge explosion particles when dragon dies Lnet/minecraft/entity/boss/EntityDragon;onDeathUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
spawnDragonDeathHugeExplosionParticle Huge explosion particles when dragon dies Lnet/minecraft/entity/boss/EntityDragon;onDeathUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE FALSE FALSE
spawnDragonDeathHugeExplosionParticle Huge explosion particles when dragon dies Lnet/minecraft/entity/boss/EntityDragon;onDeathUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
spawnDragonDeathExplosionParticle Position of large explosion particles Lnet/minecraft/entity/boss/EntityDragon;onLivingUpdate()V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE FALSE FALSE
changeDragonHealingEnderCrystal Chance to change the healing crystal Lnet/minecraft/entity/boss/EntityDragon;updateDragonEnderCrystal()V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
random_528 null Lnet/minecraft/entity/boss/EntityWither;launchWitherSkullToEntity(ILnet/minecraft/entity/EntityLivingBase;)V Ljava/util/Random;nextFloat()F 0 0x21 0x2 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 4 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 5 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 6 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
spawnWitherParticles Position of smoke and mob spell particles Lnet/minecraft/entity/boss/EntityWither;onLivingUpdate()V Ljava/util/Random;nextGaussian()D 7 0x21 0x1 FALSE FALSE FALSE FALSE
witherHeadUpdates How long it takes to make the head shoot (?) Lnet/minecraft/entity/boss/EntityWither;updateAITasks()V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
witherHeadUpdates How long it takes to make the head shoot (?) Lnet/minecraft/entity/boss/EntityWither;updateAITasks()V Ljava/util/Random;nextInt(I)I 1 0x21 0x4 FALSE FALSE FALSE FALSE
witherHeadUpdates How long it takes to make the head shoot (?) Lnet/minecraft/entity/boss/EntityWither;updateAITasks()V Ljava/util/Random;nextInt(I)I 2 0x21 0x4 FALSE FALSE FALSE FALSE
lightningBoltVertex Rendering randomness Lnet/minecraft/entity/effect/EntityLightningBolt;<init>(Lnet/minecraft/world/World;DDDZ)V Ljava/util/Random;nextLong()J 0 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltVertex Rendering randomness Lnet/minecraft/entity/effect/EntityLightningBolt;<init>(Lnet/minecraft/world/World;DDDZ)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltVertex Rendering randomness Lnet/minecraft/entity/effect/EntityLightningBolt;<init>(Lnet/minecraft/world/World;DDDZ)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltVertex Rendering randomness Lnet/minecraft/entity/effect/EntityLightningBolt;<init>(Lnet/minecraft/world/World;DDDZ)V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltVertex Rendering randomness Lnet/minecraft/entity/effect/EntityLightningBolt;<init>(Lnet/minecraft/world/World;DDDZ)V Ljava/util/Random;nextInt(I)I 3 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltSound Pitch of thunder and impact sounds Lnet/minecraft/entity/effect/EntityLightningBolt;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltSound Pitch of thunder and impact sounds Lnet/minecraft/entity/effect/EntityLightningBolt;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltSound Pitch of thunder and impact sounds Lnet/minecraft/entity/effect/EntityLightningBolt;onUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
lightningBoltSound Pitch of thunder and impact sounds Lnet/minecraft/entity/effect/EntityLightningBolt;onUpdate()V Ljava/util/Random;nextLong()J 0 0x21 0x1 FALSE FALSE FALSE FALSE
trampleHeight Minimum Fall Distance until farmland gets trampled Lnet/minecraft/entity/Entity;canTrample(Lnet/minecraft/world/World;Lnet/minecraft/block/Block;Lnet/minecraft/util/math/BlockPos;F)Z Ljava/util/Random;nextFloat()F 0 0x421 0x1 TRUE FALSE FALSE FALSE
runningParticle Position of block crack particles when running Lnet/minecraft/entity/Entity;createRunningParticles()V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
runningParticle Position of block crack particles when running Lnet/minecraft/entity/Entity;createRunningParticles()V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
splashSound Pitch of splash sound Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
splashSound Pitch of swim sound Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
waterBubbleParticle Position of bubble particle Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 2 0x421 0x4 FALSE FALSE FALSE FALSE
waterBubbleParticle Position of bubble particle Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 3 0x421 0x4 FALSE FALSE FALSE FALSE
waterBubbleParticle Position of bubble particle Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 4 0x421 0x4 FALSE FALSE FALSE FALSE
waterSplashParticle Position of water splash particle Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 5 0x421 0x4 FALSE FALSE FALSE FALSE
waterSplashParticle Position of water splash particle Lnet/minecraft/entity/Entity;doWaterSplashEffect()V Ljava/util/Random;nextFloat()F 6 0x421 0x4 FALSE FALSE FALSE FALSE
swimSoundPitch Pitch of swimming entities sound Lnet/minecraft/entity/Entity;move(Lnet/minecraft/entity/MoverType;DDD)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
swimSoundPitch Pitch of swimming entities sound Lnet/minecraft/entity/Entity;move(Lnet/minecraft/entity/MoverType;DDD)V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
fireExtinguishSoundPitch Pitch of burning entities extinguishing Lnet/minecraft/entity/Entity;move(Lnet/minecraft/entity/MoverType;DDD)V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
fireExtinguishSoundPitch Pitch of burning entities extinguishing Lnet/minecraft/entity/Entity;move(Lnet/minecraft/entity/MoverType;DDD)V Ljava/util/Random;nextFloat()F 3 0x421 0x1 FALSE FALSE FALSE FALSE
pushOutOfBlock Motion to push entities out of a block Lnet/minecraft/entity/Entity;pushOutOfBlocks(DDD)Z Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
ageableGrowUpParticle Particles when a child grows up Lnet/minecraft/entity/EntityAgeable;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
ageableGrowUpParticle Particles when a child grows up Lnet/minecraft/entity/EntityAgeable;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
ageableGrowUpParticle Particles when a child grows up Lnet/minecraft/entity/EntityAgeable;onLivingUpdate()V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextBoolean()Z 1 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
areaEffectCloudStuff Area affect cloud particle stuff Lnet/minecraft/entity/EntityAreaEffectCloud;onUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
despawningEntity Depawns entity Lnet/minecraft/entity/EntityLiving;despawnEntity()V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
equipmentDropChance If the entity should drop the equipment Lnet/minecraft/entity/EntityLiving;dropEquipment(ZI)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
equipmentDropChance If the entity should drop the equipment Lnet/minecraft/entity/EntityLiving;dropEquipment(ZI)V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
equipmentDropChance If the entity should drop the equipment Lnet/minecraft/entity/EntityLiving;dropEquipment(ZI)V Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
dropAmount Get's the random drops amount Lnet/minecraft/entity/EntityLiving;dropFewItems(ZI)V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
dropAmount Get's the random drops amount Lnet/minecraft/entity/EntityLiving;dropFewItems(ZI)V Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
experienceAmount Get a random amount of experience Lnet/minecraft/entity/EntityLiving;getExperiencePoints(Lnet/minecraft/entity/player/EntityPlayer;)I Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
experienceAmount Get a random amount of experience Lnet/minecraft/entity/EntityLiving;getExperiencePoints(Lnet/minecraft/entity/player/EntityPlayer;)I Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
applyingEntityAi Applies Entity AI Lnet/minecraft/entity/EntityLiving;onEntityUpdate()V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE FALSE FALSE
followRangeBoost Adds a follow range boost Lnet/minecraft/entity/EntityLiving;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextGaussian()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
followRangeBoost Adds a follow range boost Lnet/minecraft/entity/EntityLiving;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
setEnchantmentBasedOnDifficulty Sets enchantment dependant on difficulty Lnet/minecraft/entity/EntityLiving;setEnchantmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
setEnchantmentBasedOnDifficulty Sets enchantment dependant on difficulty Lnet/minecraft/entity/EntityLiving;setEnchantmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
setEnchantmentBasedOnDifficulty Sets enchantment dependant on difficulty Lnet/minecraft/entity/EntityLiving;setEnchantmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
setEnchantmentBasedOnDifficulty Sets enchantment dependant on difficulty Lnet/minecraft/entity/EntityLiving;setEnchantmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 2 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 3 0x421 0x4 FALSE FALSE FALSE FALSE
setArmorDependingOnDifficulty Sets armor depending on difficulty Lnet/minecraft/entity/EntityLiving;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 4 0x421 0x4 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextGaussian()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextGaussian()D 1 0x421 0x1 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextGaussian()D 2 0x421 0x1 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
explosionParticle Spawn explosion particles Lnet/minecraft/entity/EntityLiving;spawnExplosionParticle()V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
dropEquipmentIfBetter If the item is dropped when a better equipment is available Lnet/minecraft/entity/EntityLiving;updateEquipmentIfNeeded(Lnet/minecraft/entity/item/EntityItem;)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
math_random_1 null Lnet/minecraft/entity/EntityLivingBase;<init>(Lnet/minecraft/world/World;)V Ljava/lang/Math;random()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_2 null Lnet/minecraft/entity/EntityLivingBase;<init>(Lnet/minecraft/world/World;)V Ljava/lang/Math;random()D 1 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_3 null Lnet/minecraft/entity/EntityLivingBase;<init>(Lnet/minecraft/world/World;)V Ljava/lang/Math;random()D 2 0x421 0x1 FALSE FALSE FALSE FALSE
damageHeadgearFromFallingBlock Applies damage to headgear when anvil or a block is damaging the player Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_4 null Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/lang/Math;random()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_5 null Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/lang/Math;random()D 1 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_6 null Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/lang/Math;random()D 2 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_7 null Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/lang/Math;random()D 3 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_8 null Lnet/minecraft/entity/EntityLivingBase;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/lang/Math;random()D 4 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextDouble()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextDouble()D 1 0x421 0x1 FALSE FALSE FALSE FALSE
entityTeleportParticle Position and velocity of portal particles after an entity teleports Lnet/minecraft/entity/EntityLivingBase;attemptTeleport(DDD)Z Ljava/util/Random;nextDouble()D 2 0x421 0x1 FALSE FALSE FALSE FALSE
crammingApplience If entity cramming gets applied Lnet/minecraft/entity/EntityLivingBase;collideWithNearbyEntities()V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
respirationDecrementAirSupply Decrease or not decrease air supply while having a respiration enchantment Lnet/minecraft/entity/EntityLivingBase;decreaseAirSupply(I)I Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
soundPitchChild Change the pitch of the sound when the entity is a child Lnet/minecraft/entity/EntityLivingBase;getSoundPitch()F Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
soundPitchChild Change the pitch of the sound when the entity is a child Lnet/minecraft/entity/EntityLivingBase;getSoundPitch()F Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
soundPitch Change the pitch of the sound Lnet/minecraft/entity/EntityLivingBase;getSoundPitch()F Ljava/util/Random;nextFloat()F 2 0x421 0x4 FALSE FALSE FALSE FALSE
soundPitch Change the pitch of the sound Lnet/minecraft/entity/EntityLivingBase;getSoundPitch()F Ljava/util/Random;nextFloat()F 3 0x421 0x4 FALSE FALSE FALSE FALSE
entityDeathSound Pitch of the death sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE TRUE FALSE
entityDeathSound Pitch of the death sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE TRUE FALSE
entityShieldBreakSound Pitch of the shield break sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE TRUE FALSE
entityShieldBlockSound Pitch of the shield block sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 3 0x421 0x1 FALSE FALSE TRUE FALSE
entityThornsSound Pitch of the thorns hit sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 4 0x421 0x1 FALSE FALSE TRUE FALSE
entityThornsSound Pitch of the thorns hit sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 5 0x421 0x1 FALSE FALSE TRUE FALSE
entityHurtSound Pitch of the hurt sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 6 0x421 0x1 FALSE FALSE TRUE FALSE
entityHurtSound Pitch of the hurt sound Lnet/minecraft/entity/EntityLivingBase;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 7 0x421 0x1 FALSE FALSE TRUE FALSE
knockBackResistance If knockback resistance is applied Lnet/minecraft/entity/EntityLivingBase;knockBack(Lnet/minecraft/entity/Entity;FDD)V Ljava/util/Random;nextDouble()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
knockBackResistance How much knockback resistance is added Lnet/minecraft/entity/EntityLivingBase;markVelocityChanged()V Ljava/util/Random;nextDouble()D 0 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextGaussian()D 0 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextGaussian()D 1 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextGaussian()D 2 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
deathDustParticles Position of the dust clouds when dying Lnet/minecraft/entity/EntityLivingBase;onDeathUpdate()V Ljava/util/Random;nextFloat()F 2 0x421 0x4 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 3 0x421 0x1 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 4 0x421 0x1 FALSE FALSE FALSE FALSE
spawnWaterbubbleWhenDrowning Spawns waterbubbles when entity is drowning Lnet/minecraft/entity/EntityLivingBase;onEntityUpdate()V Ljava/util/Random;nextFloat()F 5 0x421 0x1 FALSE FALSE FALSE FALSE
brokenItemSound Pitch when an item breaks in your hand Lnet/minecraft/entity/EntityLivingBase;renderBrokenItemStack(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
brokenItemParticles Particles when item in hand breaks Lnet/minecraft/entity/EntityLivingBase;renderBrokenItemStack(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
brokenItemParticles Particles when item in hand breaks Lnet/minecraft/entity/EntityLivingBase;renderBrokenItemStack(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
brokenItemParticles Particles when item in hand breaks Lnet/minecraft/entity/EntityLivingBase;renderBrokenItemStack(Lnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextFloat()F 3 0x421 0x1 FALSE FALSE FALSE FALSE
math_random_9 null Lnet/minecraft/entity/EntityLivingBase;renderBrokenItemStack(Lnet/minecraft/item/ItemStack;)V Ljava/lang/Math;random()D 0 0x421 0x1 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 2 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 3 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 4 0x421 0x4 FALSE FALSE FALSE FALSE
drinkAndEatSound Pitch of eating and drinking sounds Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/util/Random;nextFloat()F 5 0x421 0x4 FALSE FALSE FALSE FALSE
math_random_10 null Lnet/minecraft/entity/EntityLivingBase;updateItemUse(Lnet/minecraft/item/ItemStack;I)V Ljava/lang/Math;random()D 0 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticlesInvisible Whether or not it should spawn potion effects when invisible Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticles Whether or not it should spawn potion effects Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextBoolean()Z 0 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticlesHidden Whether or not it should spawn potion effects when particles are hidden Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticlesPosition Position of the potion particles Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextDouble()D 0 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticlesPosition Position of the potion particles Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextDouble()D 1 0x421 0x4 FALSE FALSE FALSE FALSE
potionParticlesPosition Position of the potion particles Lnet/minecraft/entity/EntityLivingBase;updatePotionEffects()V Ljava/util/Random;nextDouble()D 2 0x421 0x4 FALSE FALSE FALSE FALSE
boatSound Pitch of boat sounds Lnet/minecraft/entity/item/EntityBoat;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
enderCrystalRotationOffset Offsetting the crystal animation Lnet/minecraft/entity/item/EntityEnderCrystal;<init>(Lnet/minecraft/world/World;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
enderEyeShatter If the ender eye shatters or drops Lnet/minecraft/entity/item/EntityEnderEye;moveTowards(Lnet/minecraft/util/math/BlockPos;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
enderEyeParticle Particle of ender eye Lnet/minecraft/entity/item/EntityEnderEye;onUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
enderEyeParticle Particle of ender eye Lnet/minecraft/entity/item/EntityEnderEye;onUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
enderPearlParticle Particle of ender pearl Lnet/minecraft/entity/item/EntityEnderPearl;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
enderPearlParticle Particle of ender pearl Lnet/minecraft/entity/item/EntityEnderPearl;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextGaussian()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
enderPearlParticle Particle of ender pearl Lnet/minecraft/entity/item/EntityEnderPearl;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextGaussian()D 1 0x21 0x4 FALSE FALSE FALSE FALSE
enderPearlParticle Particle of ender pearl Lnet/minecraft/entity/item/EntityEnderPearl;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
random_657 null Lnet/minecraft/entity/item/EntityExpBottle;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
random_658 null Lnet/minecraft/entity/item/EntityExpBottle;onImpact(Lnet/minecraft/util/math/RayTraceResult;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x4 FALSE FALSE FALSE FALSE
anvilFallingDamage If anvil get's damaged when falling Lnet/minecraft/entity/item/EntityFallingBlock;fall(FF)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkMotion Motion of the firework rocket Lnet/minecraft/entity/item/EntityFireworkRocket;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkMotion Motion of the firework rocket Lnet/minecraft/entity/item/EntityFireworkRocket;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkLifetime Lifetime of the firework rocket Lnet/minecraft/entity/item/EntityFireworkRocket;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkLifetime Lifetime of the firework rocket Lnet/minecraft/entity/item/EntityFireworkRocket;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkParticle Position of fireworkSparks Lnet/minecraft/entity/item/EntityFireworkRocket;onUpdate()V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
fireworkParticle Position of fireworkSparks Lnet/minecraft/entity/item/EntityFireworkRocket;onUpdate()V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_16 null Lnet/minecraft/entity/item/EntityItem;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_17 null Lnet/minecraft/entity/item/EntityItem;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_18 null Lnet/minecraft/entity/item/EntityItem;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_19 null Lnet/minecraft/entity/item/EntityItem;<init>(Lnet/minecraft/world/World;DDD)V Ljava/lang/Math;random()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
itemMotionInLava X and y motion when dropping an item in lava Lnet/minecraft/entity/item/EntityItem;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
itemMotionInLava X and y motion when dropping an item in lava Lnet/minecraft/entity/item/EntityItem;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
itemMotionInLava X and y motion when dropping an item in lava Lnet/minecraft/entity/item/EntityItem;onUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
itemMotionInLava X and y motion when dropping an item in lava Lnet/minecraft/entity/item/EntityItem;onUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
itemMotionInLava X and y motion when dropping an item in lava Lnet/minecraft/entity/item/EntityItem;onUpdate()V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE FALSE FALSE
itemFrameDropChance Chance of not dropping the item in an item frame Lnet/minecraft/entity/item/EntityItemFrame;dropItemOrSelf(Lnet/minecraft/entity/Entity;Z)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_816 null Lnet/minecraft/entity/item/EntityMinecartFurnace;onUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_819 null Lnet/minecraft/entity/item/EntityMinecartTNT;explodeCart(D)V Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
minecartTNTFuse The time it takes to explode the minecart Lnet/minecraft/entity/item/EntityMinecartTNT;killMinecart(Lnet/minecraft/util/DamageSource;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
minecartTNTFuse The time it takes to explode the minecart Lnet/minecraft/entity/item/EntityMinecartTNT;killMinecart(Lnet/minecraft/util/DamageSource;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
paintingDisplay Which art will be displayed Lnet/minecraft/entity/item/EntityPainting;<init>(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_58 null Lnet/minecraft/entity/item/EntityTNTPrimed;<init>(Lnet/minecraft/world/World;DDDLnet/minecraft/entity/EntityLivingBase;)V Ljava/lang/Math;random()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_11 null Lnet/minecraft/entity/item/EntityXPOrb;<init>(Lnet/minecraft/world/World;DDDI)V Ljava/lang/Math;random()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_12 null Lnet/minecraft/entity/item/EntityXPOrb;<init>(Lnet/minecraft/world/World;DDDI)V Ljava/lang/Math;random()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_13 null Lnet/minecraft/entity/item/EntityXPOrb;<init>(Lnet/minecraft/world/World;DDDI)V Ljava/lang/Math;random()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_14 null Lnet/minecraft/entity/item/EntityXPOrb;<init>(Lnet/minecraft/world/World;DDDI)V Ljava/lang/Math;random()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
xpOrbMotionInLava X and y motion when xpOrbs in lava Lnet/minecraft/entity/item/EntityXPOrb;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
xpOrbMotionInLava X and y motion when xpOrbs in lava Lnet/minecraft/entity/item/EntityXPOrb;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
xpOrbMotionInLava X and y motion when xpOrbs in lava Lnet/minecraft/entity/item/EntityXPOrb;onUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
xpOrbMotionInLava X and y motion when xpOrbs in lava Lnet/minecraft/entity/item/EntityXPOrb;onUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
xpOrbMotionInLava X and y motion when xpOrbs in lava Lnet/minecraft/entity/item/EntityXPOrb;onUpdate()V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE FALSE FALSE
math_random_15 null Lnet/minecraft/entity/item/EntityXPOrb;roundAverage(F)I Ljava/lang/Math;random()D 0 0x21 0xa TRUE FALSE FALSE FALSE
skeletonShootSound Pitch of Skeleton Shooting Lnet/minecraft/entity/monster/AbstractSkeleton;attackEntityWithRangedAttack(Lnet/minecraft/entity/EntityLivingBase;F)V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
skeletonCanPickupLoot Sets if the skeleton can pick up loot when spawning Lnet/minecraft/entity/monster/AbstractSkeleton;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
skeletonCanPickupLoot Sets if the skeleton can pick up loot when spawning Lnet/minecraft/entity/monster/AbstractSkeleton;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 1 0x421 0x1 FALSE FALSE FALSE FALSE
skeletonCanPickupLoot Sets if the skeleton can pick up loot when spawning Lnet/minecraft/entity/monster/AbstractSkeleton;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 2 0x421 0x1 FALSE FALSE FALSE FALSE
skeletonFireChance Chance of setting the skeleton on fire Lnet/minecraft/entity/monster/AbstractSkeleton;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
skeletonFireChance Chance of setting the skeleton on fire Lnet/minecraft/entity/monster/AbstractSkeleton;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x421 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
blazePlaySound Chance for blazes to play their sound Lnet/minecraft/entity/monster/EntityBlaze;onLivingUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
blazeHeightOffset How high the blaze will fly after a certain time (?) Lnet/minecraft/entity/monster/EntityBlaze;updateAITasks()V Ljava/util/Random;nextGaussian()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
random_898 null Lnet/minecraft/entity/monster/EntityBlaze$AIFireballAttack;updateTask()V Ljava/util/Random;nextGaussian()D 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_899 null Lnet/minecraft/entity/monster/EntityBlaze$AIFireballAttack;updateTask()V Ljava/util/Random;nextGaussian()D 1 0x20 0x1 FALSE FALSE FALSE FALSE
creeperDropRecord Which record is dropped after dying from a skeleton Lnet/minecraft/entity/monster/EntityCreeper;onDeath(Lnet/minecraft/util/DamageSource;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
creeperSoundPitch Pitch of the flint and steel using sound thingy when igniting a creeper Lnet/minecraft/entity/monster/EntityCreeper;processInteract(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/EnumHand;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportAwayWhenEntityIsNearby After attacking or something there is a chance enderman won't teleport away Lnet/minecraft/entity/monster/EntityEnderman;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE FALSE FALSE
endermanParticle Position of 'Portal' particles on an enderman Lnet/minecraft/entity/monster/EntityEnderman;onLivingUpdate()V Ljava/util/Random;nextDouble()D 5 0x21 0x1 FALSE FALSE FALSE FALSE
endermanTeleportRandomly Teleports enderman to a random location (Coords are randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportRandomly()Z Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportRandomly Teleports enderman to a random location (Coords are randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportRandomly()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportRandomly Teleports enderman to a random location (Coords are randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportRandomly()Z Ljava/util/Random;nextDouble()D 1 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportToEntity Teleports enderman to near to the targeted entity (Coords are kinda randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportToEntity(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportToEntity Teleports enderman to near to the targeted entity (Coords are kinda randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportToEntity(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
endermanTeleportToEntity Teleports enderman to near to the targeted entity (Coords are kinda randomized) Lnet/minecraft/entity/monster/EntityEnderman;teleportToEntity(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextDouble()D 1 0x21 0x4 FALSE FALSE FALSE FALSE
endermanInitiateTeleportRandomly Enderman loses interest when in daylight and starts teleporting randomly Lnet/minecraft/entity/monster/EntityEnderman;updateAITasks()V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
random_881 null Lnet/minecraft/entity/monster/EntityEnderman$AIPlaceBlock;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_882 null Lnet/minecraft/entity/monster/EntityEnderman$AIPlaceBlock;updateTask()V Ljava/util/Random;nextDouble()D 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_883 null Lnet/minecraft/entity/monster/EntityEnderman$AIPlaceBlock;updateTask()V Ljava/util/Random;nextDouble()D 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_884 null Lnet/minecraft/entity/monster/EntityEnderman$AIPlaceBlock;updateTask()V Ljava/util/Random;nextDouble()D 2 0x20 0x1 FALSE FALSE FALSE FALSE
random_885 null Lnet/minecraft/entity/monster/EntityEnderman$AITakeBlock;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_886 null Lnet/minecraft/entity/monster/EntityEnderman$AITakeBlock;updateTask()V Ljava/util/Random;nextDouble()D 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_887 null Lnet/minecraft/entity/monster/EntityEnderman$AITakeBlock;updateTask()V Ljava/util/Random;nextDouble()D 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_888 null Lnet/minecraft/entity/monster/EntityEnderman$AITakeBlock;updateTask()V Ljava/util/Random;nextDouble()D 2 0x20 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE FALSE FALSE
endermiteParticle Position of 'Portal' particles on an endermite Lnet/minecraft/entity/monster/EntityEndermite;onLivingUpdate()V Ljava/util/Random;nextDouble()D 5 0x21 0x1 FALSE FALSE FALSE FALSE
random_800 null Lnet/minecraft/entity/monster/EntityEvoker$AISummonSpell;castSpell()V Ljava/util/Random;nextInt(I)I 0 0x20 0x4 FALSE FALSE FALSE FALSE
random_801 null Lnet/minecraft/entity/monster/EntityEvoker$AISummonSpell;castSpell()V Ljava/util/Random;nextInt(I)I 1 0x20 0x4 FALSE FALSE FALSE FALSE
random_802 null Lnet/minecraft/entity/monster/EntityEvoker$AISummonSpell;castSpell()V Ljava/util/Random;nextInt(I)I 2 0x20 0x4 FALSE FALSE FALSE FALSE
random_799 null Lnet/minecraft/entity/monster/EntityEvoker$AISummonSpell;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_803 null Lnet/minecraft/entity/monster/EntityEvoker$AIWololoSpell;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
ghastSpawning Whether the ghast can spawn at this location Lnet/minecraft/entity/monster/EntityGhast;getCanSpawnHere()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_860 null Lnet/minecraft/entity/monster/EntityGhast$AIRandomFly;startExecuting()V Ljava/util/Random;nextFloat()F 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_861 null Lnet/minecraft/entity/monster/EntityGhast$AIRandomFly;startExecuting()V Ljava/util/Random;nextFloat()F 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_862 null Lnet/minecraft/entity/monster/EntityGhast$AIRandomFly;startExecuting()V Ljava/util/Random;nextFloat()F 2 0x20 0x1 FALSE FALSE FALSE FALSE
random_859 null Lnet/minecraft/entity/monster/EntityGhast$GhastMoveHelper;onUpdateMoveHelper()V Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
guardianTailAnimation Offsets tail animation Lnet/minecraft/entity/monster/EntityGuardian;<init>(Lnet/minecraft/world/World;)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
guardianSpawning Whether the guardian can spawn at this location Lnet/minecraft/entity/monster/EntityGuardian;getCanSpawnHere()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextDouble()D 4 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
guardianClientSpikesAnimation Random spike animation (?) Lnet/minecraft/entity/monster/EntityGuardian;onLivingUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
illuasionIllagerSound Sound of IllusionIllager shooting an arrow Lnet/minecraft/entity/monster/EntityIllusionIllager;attackEntityWithRangedAttack(Lnet/minecraft/entity/EntityLivingBase;F)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
illusionIllagerIllusionPosition Where the illusions will be places Lnet/minecraft/entity/monster/EntityIllusionIllager;onLivingUpdate()V Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemDamage Adds random damage to the base damage Lnet/minecraft/entity/monster/EntityIronGolem;attackEntityAsMob(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
golemSetAttackTarget Sets the attack target if a monster collides with the iron golem Lnet/minecraft/entity/monster/EntityIronGolem;collideWithEntity(Lnet/minecraft/entity/Entity;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
ironGolemParticlesEnabled Whether particles will be shown Lnet/minecraft/entity/monster/EntityIronGolem;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemParticlesEnabled Whether particles will be shown Lnet/minecraft/entity/monster/EntityIronGolem;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemParticlesEnabled Whether particles will be shown Lnet/minecraft/entity/monster/EntityIronGolem;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemParticlesEnabled Whether particles will be shown Lnet/minecraft/entity/monster/EntityIronGolem;onLivingUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemParticlesEnabled Whether particles will be shown Lnet/minecraft/entity/monster/EntityIronGolem;onLivingUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
ironGolemHomeCheck How long it takes until the golem checks where his home is Lnet/minecraft/entity/monster/EntityIronGolem;updateAITasks()V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
mobPlayerShieldCooldown Whether there will be a cooldown applied when using a shield and getting attacked Lnet/minecraft/entity/monster/EntityMob;attackEntityAsMob(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextFloat()F 0 0x421 0x1 FALSE FALSE FALSE FALSE
mobSpawningLightLevel If a mob should spawn below a certain light level Lnet/minecraft/entity/monster/EntityMob;isValidLightLevel()Z Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
mobSpawningLightLevel If a mob should spawn below a certain light level Lnet/minecraft/entity/monster/EntityMob;isValidLightLevel()Z Ljava/util/Random;nextInt(I)I 1 0x421 0x4 FALSE FALSE FALSE FALSE
pigZombieAngerLevel Adds a random amount to the base anger level Lnet/minecraft/entity/monster/EntityPigZombie;becomeAngryAt(Lnet/minecraft/entity/Entity;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x2 FALSE FALSE FALSE FALSE
pigZombieAngerLevel Adds a random amount to the base anger level Lnet/minecraft/entity/monster/EntityPigZombie;becomeAngryAt(Lnet/minecraft/entity/Entity;)V Ljava/util/Random;nextInt(I)I 1 0x21 0x2 FALSE FALSE FALSE FALSE
pigZombieSound Pitch of zombie piglin Lnet/minecraft/entity/monster/EntityPigZombie;updateAITasks()V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
pigZombieSound Pitch of zombie piglin Lnet/minecraft/entity/monster/EntityPigZombie;updateAITasks()V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE FALSE FALSE
sulkerTeleportOnHealthLoss Whether the shulker teleports after taking damage Lnet/minecraft/entity/monster/EntityShulker;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
shulkerTeleportToBlockPos Coordinate to teleport to Lnet/minecraft/entity/monster/EntityShulker;tryTeleportToNewPosition()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
shulkerTeleportToBlockPos Coordinate to teleport to Lnet/minecraft/entity/monster/EntityShulker;tryTeleportToNewPosition()Z Ljava/util/Random;nextInt(I)I 1 0x21 0x4 FALSE FALSE FALSE FALSE
shulkerTeleportToBlockPos Coordinate to teleport to Lnet/minecraft/entity/monster/EntityShulker;tryTeleportToNewPosition()Z Ljava/util/Random;nextInt(I)I 2 0x21 0x4 FALSE FALSE FALSE FALSE
random_941 null Lnet/minecraft/entity/monster/EntityShulker$AIAttack;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_942 null Lnet/minecraft/entity/monster/EntityShulker$AIAttack;updateTask()V Ljava/util/Random;nextFloat()F 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_943 null Lnet/minecraft/entity/monster/EntityShulker$AIAttack;updateTask()V Ljava/util/Random;nextFloat()F 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_944 null Lnet/minecraft/entity/monster/EntityShulker$AIPeek;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_945 null Lnet/minecraft/entity/monster/EntityShulker$AIPeek;startExecuting()V Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_890 null Lnet/minecraft/entity/monster/EntitySilverfish$AIHideInStone;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_889 null Lnet/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish;updateTask()V Ljava/util/Random;nextBoolean()Z 0 0x20 0x1 FALSE FALSE FALSE FALSE
slimeSoundAttack Pitch of slime attack sound Lnet/minecraft/entity/monster/EntitySlime;dealDamage(Lnet/minecraft/entity/EntityLivingBase;)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
slimeSoundAttack Pitch of slime attack sound Lnet/minecraft/entity/monster/EntitySlime;dealDamage(Lnet/minecraft/entity/EntityLivingBase;)V Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE FALSE FALSE
slimeSpawnFlatWorld Whether slimes spawn in a flat world Lnet/minecraft/entity/monster/EntitySlime;getCanSpawnHere()Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSpawnFlatWorld Whether slimes spawn in a flat world Lnet/minecraft/entity/monster/EntitySlime;getCanSpawnHere()Z Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSpawnFlatWorld Whether slimes spawn in a flat world Lnet/minecraft/entity/monster/EntitySlime;getCanSpawnHere()Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSpawnFlatWorld Whether slimes spawn in a flat world Lnet/minecraft/entity/monster/EntitySlime;getCanSpawnHere()Z Ljava/util/Random;nextInt(I)I 1 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSpawnFlatWorld Whether slimes spawn in a flat world Lnet/minecraft/entity/monster/EntitySlime;getCanSpawnHere()Z Ljava/util/Random;nextInt(I)I 2 0x21 0x1 FALSE FALSE FALSE FALSE
slimeJumpDelay A delay between jumps of the slime Lnet/minecraft/entity/monster/EntitySlime;getJumpDelay()I Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
slimeWaterSplashEffect Does a water splash effect when slime is in water Lnet/minecraft/entity/monster/EntitySlime;notifyDataManagerChange(Lnet/minecraft/network/datasync/DataParameter;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSize How big the slime is when spawning Lnet/minecraft/entity/monster/EntitySlime;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSize How big the slime is when spawning Lnet/minecraft/entity/monster/EntitySlime;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeParticle Position of slime particle on slimes duh Lnet/minecraft/entity/monster/EntitySlime;onUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeParticle Position of slime particle on slimes duh Lnet/minecraft/entity/monster/EntitySlime;onUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
slimeParticle Position of slime particle on slimes duh Lnet/minecraft/entity/monster/EntitySlime;onUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
slimeParticle Position of slime particle on slimes duh Lnet/minecraft/entity/monster/EntitySlime;onUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSplitting How many slimes will be spawned after splitting up Lnet/minecraft/entity/monster/EntitySlime;setDead()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
slimeSplitting How many slimes will be spawned after splitting up Lnet/minecraft/entity/monster/EntitySlime;setDead()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_856 null Lnet/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_857 null Lnet/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom;updateTask()V Ljava/util/Random;nextInt(I)I 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_855 null Lnet/minecraft/entity/monster/EntitySlime$AISlimeFloat;updateTask()V Ljava/util/Random;nextFloat()F 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_853 null Lnet/minecraft/entity/monster/EntitySlime$SlimeMoveHelper;onUpdateMoveHelper()V Ljava/util/Random;nextFloat()F 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_854 null Lnet/minecraft/entity/monster/EntitySlime$SlimeMoveHelper;onUpdateMoveHelper()V Ljava/util/Random;nextFloat()F 1 0x20 0x1 FALSE FALSE FALSE FALSE
snowmanShootSound Pitch of snowman shooting sound Lnet/minecraft/entity/monster/EntitySnowman;attackEntityWithRangedAttack(Lnet/minecraft/entity/EntityLivingBase;F)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_832 null Lnet/minecraft/entity/monster/EntitySpider;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_833 null Lnet/minecraft/entity/monster/EntitySpider;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_835 null Lnet/minecraft/entity/monster/EntitySpider$AISpiderAttack;shouldContinueExecuting()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
spiderEffect Random effect from a spider, when spawning naturally Lnet/minecraft/entity/monster/EntitySpider$GroupData;setRandomEffect(Ljava/util/Random;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
random_804 null Lnet/minecraft/entity/monster/EntityVex$AIChargeAttack;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_805 null Lnet/minecraft/entity/monster/EntityVex$AIMoveRandom;shouldExecute()Z Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_806 null Lnet/minecraft/entity/monster/EntityVex$AIMoveRandom;updateTask()V Ljava/util/Random;nextInt(I)I 0 0x20 0x1 FALSE FALSE FALSE FALSE
random_807 null Lnet/minecraft/entity/monster/EntityVex$AIMoveRandom;updateTask()V Ljava/util/Random;nextInt(I)I 1 0x20 0x1 FALSE FALSE FALSE FALSE
random_808 null Lnet/minecraft/entity/monster/EntityVex$AIMoveRandom;updateTask()V Ljava/util/Random;nextInt(I)I 2 0x20 0x1 FALSE FALSE FALSE FALSE
witchWeaknessPotion If the witch should consider throwing a weakness potion Lnet/minecraft/entity/monster/EntityWitch;attackEntityWithRangedAttack(Lnet/minecraft/entity/EntityLivingBase;F)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
witchWeaknessPotion If the witch should consider throwing a weakness potion Lnet/minecraft/entity/monster/EntityWitch;attackEntityWithRangedAttack(Lnet/minecraft/entity/EntityLivingBase;F)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
witchParticle Quantity and position of which particles Lnet/minecraft/entity/monster/EntityWitch;handleStatusUpdate(B)V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE TRUE FALSE
witchParticle Quantity and position of which particles Lnet/minecraft/entity/monster/EntityWitch;handleStatusUpdate(B)V Ljava/util/Random;nextGaussian()D 0 0x21 0x1 FALSE FALSE TRUE FALSE
witchParticle Quantity and position of which particles Lnet/minecraft/entity/monster/EntityWitch;handleStatusUpdate(B)V Ljava/util/Random;nextGaussian()D 1 0x21 0x1 FALSE FALSE TRUE FALSE
witchParticle Quantity and position of which particles Lnet/minecraft/entity/monster/EntityWitch;handleStatusUpdate(B)V Ljava/util/Random;nextGaussian()D 2 0x21 0x1 FALSE FALSE TRUE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE FALSE FALSE
witchDrinkPotion Chooses the potion for the witch to drink Lnet/minecraft/entity/monster/EntityWitch;onLivingUpdate()V Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE FALSE FALSE
zombieReinforcementsChance Spawn with having reinforcements? Lnet/minecraft/entity/monster/EntityZombie;applyEntityAttributes()V Ljava/util/Random;nextDouble()D 0 0x21 0x4 FALSE FALSE FALSE FALSE
zombieIgniteOtherMobs Ignites other mobs while being on fire Lnet/minecraft/entity/monster/EntityZombie;attackEntityAsMob(Lnet/minecraft/entity/Entity;)Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieReinforcementsApply If the zombie calls in other zombies in hard mode Lnet/minecraft/entity/monster/EntityZombie;attackEntityFrom(Lnet/minecraft/util/DamageSource;F)Z Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 2 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 3 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 4 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 5 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 6 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextDouble()D 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextDouble()D 1 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextFloat()F 7 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextDouble()D 2 0x21 0x1 FALSE FALSE FALSE FALSE
zombieCanPickupLoot If the zombie is able to pickup loot Lnet/minecraft/entity/monster/EntityZombie;onInitialSpawn(Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/entity/IEntityLivingData;)Lnet/minecraft/entity/IEntityLivingData; Ljava/util/Random;nextDouble()D 3 0x21 0x1 FALSE FALSE FALSE FALSE
zombieConvertToZombieVillager If the villager killed by the zombie will transform into a zombie villager Lnet/minecraft/entity/monster/EntityZombie;onKillEntity(Lnet/minecraft/entity/EntityLivingBase;)V Ljava/util/Random;nextBoolean()Z 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieFireChance Chance of lighting Zombie on fire Lnet/minecraft/entity/monster/EntityZombie;onLivingUpdate()V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieFireChance Chance of lighting Zombie on fire Lnet/minecraft/entity/monster/EntityZombie;onLivingUpdate()V Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
zombieSetEquipment Set an item to the main hand based on difficulty Lnet/minecraft/entity/monster/EntityZombie;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
zombieSetEquipment Set an item to the main hand based on difficulty Lnet/minecraft/entity/monster/EntityZombie;setEquipmentBasedOnDifficulty(Lnet/minecraft/world/DifficultyInstance;)V Ljava/util/Random;nextInt(I)I 0 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerConvertionSpeedup There is a chance to speedup convertion progress Lnet/minecraft/entity/monster/EntityZombieVillager;getConversionProgress()I Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerConvertionSpeedup There is a chance to speedup convertion progress Lnet/minecraft/entity/monster/EntityZombieVillager;getConversionProgress()I Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerChildrenPitch Get's a different pitch dependant if the villager is a child or an adult Lnet/minecraft/entity/monster/EntityZombieVillager;getSoundPitch()F Ljava/util/Random;nextFloat()F 0 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerChildrenPitch Get's a different pitch dependant if the villager is a child or an adult Lnet/minecraft/entity/monster/EntityZombieVillager;getSoundPitch()F Ljava/util/Random;nextFloat()F 1 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerChildrenPitch Get's a different pitch dependant if the villager is a child or an adult Lnet/minecraft/entity/monster/EntityZombieVillager;getSoundPitch()F Ljava/util/Random;nextFloat()F 2 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerChildrenPitch Get's a different pitch dependant if the villager is a child or an adult Lnet/minecraft/entity/monster/EntityZombieVillager;getSoundPitch()F Ljava/util/Random;nextFloat()F 3 0x21 0x4 FALSE FALSE FALSE FALSE
zombieVillagerConvertionSound Pitch of zombie villager converting sound Lnet/minecraft/entity/monster/EntityZombieVillager;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 0 0x21 0x1 FALSE FALSE TRUE FALSE
zombieVillagerConvertionSound Pitch of zombie villager converting sound Lnet/minecraft/entity/monster/EntityZombieVillager;handleStatusUpdate(B)V Ljava/util/Random;nextFloat()F 1 0x21 0x1 FALSE FALSE TRUE FALSE
zombieVillagerConvertionTime How long the z villager will take to convert to a villager Lnet/minecraft/entity/monster/EntityZombieVillager;processInteract(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/EnumHand;)Z Ljava/util/Random;nextInt(I)I 0 0x21 0x1 FALSE FALSE FALSE FALSE
chestHorseSound Pitch of donkey chest sound Lnet/minecraft/entity/passive/AbstractChestHorse;playChestEquipSound()V Ljava/util/Random;nextFloat()F 0 0x421 0x4 FALSE FALSE FALSE FALSE
chestHorseSound Pitch of donkey chest sound Lnet/minecraft/entity/passive/AbstractChestHorse;playChestEquipSound()V Ljava/util/Random;nextFloat()F 1 0x421 0x4 FALSE FALSE FALSE FALSE
horseEatSound Pitch of horse eating Lnet/minecraft/entity/passive/AbstractHorse;eatingHorse()V Ljava/util/Random;nextFloat()F 0 0x421 0x2 FALSE FALSE FALSE FALSE
horseEatSound Pitch of horse eating Lnet/minecraft/entity/passive/AbstractHorse;eatingHorse()V Ljava/util/Random;nextFloat()F 1 0x421 0x2 FALSE FALSE FALSE FALSE
horseRearOnAmbient Make the horse rear randomly Lnet/minecraft/entity/passive/AbstractHorse;getAmbientSound()Lnet/minecraft/util/SoundEvent; Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE
horseRearOnGettingHurt If the horse starts rearing after getting hurt Lnet/minecraft/entity/passive/AbstractHorse;getHurtSound(Lnet/minecraft/util/DamageSource;)Lnet/minecraft/util/SoundEvent; Ljava/util/Random;nextInt(I)I 0 0x421 0x4 FALSE FALSE FALSE FALSE