-
Notifications
You must be signed in to change notification settings - Fork 4
/
QuestSample_1.16.5.txt
6909 lines (4896 loc) · 129 KB
/
QuestSample_1.16.5.txt
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
Material counts for Quest Type:
TotalQuests: 2000
Quest Type: MINE_BLOCK
- NETHER_QUARTZ_ORE count: 18 4.27 % (4.34 % expected)
- COPPER_ORE count: 0 0.00 % (6.51 % expected)
- COAL_ORE count: 88 20.85 % (21.69% expected)
- LAPIS_ORE count: 26 6.16 % (5.42 % expected)
- REDSTONE_ORE count: 30 7.11 % (6.51 % expected)
- IRON_ORE count: 106 25.12 % (21.69% expected)
- DIAMOND_ORE count: 51 12.09 % (10.85% expected)
- EMERALD_ORE count: 4 0.95 % (1.74 % expected)
- GOLD_ORE count: 71 16.82 % (15.18% expected)
- NETHER_GOLD_ORE count: 19 4.50 % (4.34 % expected)
- ANCIENT_DEBRIS count: 9 2.13 % (1.74 % expected)
Quest Type: ENCHANT_ITEM
- DIAMOND_SWORD count: 16 7.92 % (9.75 % expected)
- FISHING_ROD count: 8 3.96 % (4.06 % expected)
- SHIELD count: 6 2.97 % (2.44 % expected)
- DIAMOND_HELMET count: 8 3.96 % (2.44 % expected)
- BOOK count: 77 38.12 % (40.63% expected)
- DIAMOND_SHOVEL count: 14 6.93 % (6.50 % expected)
- DIAMOND_PICKAXE count: 20 9.90 % (8.13 % expected)
- TRIDENT count: 0 0.00 % (0.04 % expected)
- BOW count: 9 4.46 % (6.50 % expected)
- DIAMOND_BOOTS count: 7 3.47 % (2.44 % expected)
- CROSSBOW count: 7 3.47 % (4.06 % expected)
- DIAMOND_HOE count: 3 1.49 % (1.63 % expected)
- DIAMOND_CHESTPLATE count: 6 2.97 % (2.44 % expected)
- DIAMOND_AXE count: 14 6.93 % (6.50 % expected)
- DIAMOND_LEGGINGS count: 7 3.47 % (2.44 % expected)
Quest Type: CHOP_WOOD
- SPRUCE_LOG count: 12 5.77 % (6.33 % expected)
- MANGROVE_LOG count: 0 0.00 % (1.27 % expected)
- OAK_LOG count: 22 10.58 % (10.13% expected)
- CHERRY_LOG count: 0 0.00 % (1.27 % expected)
- LOG count: 125 60.10 % (63.29% expected)
- ACACIA_LOG count: 16 7.69 % (5.06 % expected)
- BIRCH_LOG count: 25 12.02 % (7.59 % expected)
- JUNGLE_LOG count: 5 2.40 % (2.53 % expected)
- DARK_OAK_LOG count: 3 1.44 % (2.53 % expected)
Quest Type: FISH_ITEM
- ANY_TREASURE count: 5 5.95 % (3.64 % expected)
- PUFFERFISH count: 6 7.14 % (7.27 % expected)
- SALMON count: 17 20.24 % (18.18% expected)
- TROPICAL_FISH count: 1 1.19 % (1.82 % expected)
- ANY_FISH count: 26 30.95 % (36.36% expected)
- ANY_ITEM count: 3 3.57 % (7.27 % expected)
- COD count: 26 30.95 % (25.45% expected)
Quest Type: HARVEST_BLOCK
- POTATO count: 29 10.14 % (10.60% expected)
- CACTUS count: 24 8.39 % (6.62 % expected)
- KELP count: 13 4.55 % (3.97 % expected)
- WHEAT count: 51 17.83 % (15.89% expected)
- BEETROOT count: 17 5.94 % (6.62 % expected)
- SEA_PICKLE count: 3 1.05 % (0.66 % expected)
- BAMBOO count: 7 2.45 % (1.32 % expected)
- MELON_SLICE count: 15 5.24 % (3.97 % expected)
- BROWN_MUSHROOM count: 11 3.85 % (3.97 % expected)
- RED_MUSHROOM count: 9 3.15 % (3.97 % expected)
- COCOA_BEANS count: 7 2.45 % (2.65 % expected)
- CARROT count: 23 8.04 % (10.60% expected)
- CHORUS_FLOWER count: 6 2.10 % (2.65 % expected)
- PUMPKIN count: 17 5.94 % (6.62 % expected)
- NETHER_WART count: 10 3.50 % (2.65 % expected)
- SWEET_BERRIES count: 8 2.80 % (3.97 % expected)
- SUGAR_CANE count: 36 12.59 % (13.25% expected)
Quest Type: VILLAGER_TRADE
- LIBRARIAN count: 8 7.69 % (4.35 % expected)
- FISHERMAN count: 7 6.73 % (4.35 % expected)
- SHEPHERD count: 5 4.81 % (4.35 % expected)
- CARTOGRAPHER count: 2 1.92 % (4.35 % expected)
- NONE count: 45 43.27 % (43.48% expected)
- WEAPONSMITH count: 6 5.77 % (4.35 % expected)
- ARMORER count: 1 0.96 % (4.35 % expected)
- BUTCHER count: 0 0.00 % (4.35 % expected)
- FLETCHER count: 8 7.69 % (4.35 % expected)
- TOOLSMITH count: 4 3.85 % (4.35 % expected)
- MASON count: 5 4.81 % (4.35 % expected)
- FARMER count: 2 1.92 % (4.35 % expected)
- LEATHERWORKER count: 5 4.81 % (4.35 % expected)
- CLERIC count: 6 5.77 % (4.35 % expected)
Quest Type: KILL_ENTITY
- ZOMBIE_VILLAGER count: 3 0.86 % (0.41 % expected)
- PILLAGER count: 3 0.86 % (0.82 % expected)
- ENDERMAN count: 29 8.36 % (6.58 % expected)
- ZOMBIE count: 39 11.24 % (12.35% expected)
- COW count: 32 9.22 % (8.23 % expected)
- DROWNED count: 7 2.02 % (4.12 % expected)
- BLAZE count: 17 4.90 % (4.12 % expected)
- GLOW_SQUID count: 0 0.00 % (0.82 % expected)
- WITHER_SKELETON count: 12 3.46 % (2.47 % expected)
- PIGLIN count: 12 3.46 % (1.65 % expected)
- SPIDER count: 27 7.78 % (6.58 % expected)
- GHAST count: 14 4.03 % (2.47 % expected)
- SHEEP count: 29 8.36 % (8.23 % expected)
- MAGMA_CUBE count: 2 0.58 % (1.23 % expected)
- SKELETON count: 25 7.20 % (8.23 % expected)
- ZOGLIN count: 8 2.31 % (1.65 % expected)
- WITCH count: 3 0.86 % (2.47 % expected)
- CAVE_SPIDER count: 8 2.31 % (1.65 % expected)
- PHANTOM count: 5 1.44 % (1.65 % expected)
- CHICKEN count: 21 6.05 % (8.23 % expected)
- CREEPER count: 16 4.61 % (6.17 % expected)
- PIG count: 26 7.49 % (8.23 % expected)
- SQUID count: 9 2.59 % (1.65 % expected)
Quest Type: INCREASE_STAT
- FLOWER_POTTED count: 4 3.67 % (2.87 % expected)
- RAID_WIN count: 0 0.00 % (1.15 % expected)
- RECORD_PLAYED count: 1 0.92 % (1.15 % expected)
- BOAT_ONE_CM count: 18 16.51 % (17.24% expected)
- PIG_ONE_CM count: 8 7.34 % (5.75 % expected)
- SWIM_ONE_CM count: 14 12.84 % (11.49% expected)
- MINECART_ONE_CM count: 6 5.50 % (5.75 % expected)
- CAKE_SLICES_EATEN count: 3 2.75 % (2.87 % expected)
- WALK_ONE_CM count: 36 33.03 % (34.48% expected)
- HORSE_ONE_CM count: 12 11.01 % (11.49% expected)
- STRIDER_ONE_CM count: 3 2.75 % (2.87 % expected)
- BELL_RING count: 4 3.67 % (2.87 % expected)
Quest Type: BREAK_BLOCK
- AMETHYST_CLUSTER count: 0 0.00 % (64.52% expected)
- SPAWNER count: 0 0.00 % (3.23 % expected)
- GLOWSTONE count: 3 100.00 % (32.26% expected)
Quest Type: FIND_STRUCTURE
- MONUMENT count: 5 3.88 % (3.96 % expected)
- FORTRESS count: 28 21.71 % (15.84% expected)
- SHIPWRECK count: 9 6.98 % (9.90 % expected)
- MANSION count: 4 3.10 % (0.99 % expected)
- VILLAGE count: 27 20.93 % (19.80% expected)
- JUNGLE_PYRAMID count: 5 3.88 % (3.96 % expected)
- IGLOO count: 4 3.10 % (3.96 % expected)
- SWAMP_HUT count: 5 3.88 % (3.96 % expected)
- PILLAGER_OUTPOST count: 5 3.88 % (3.96 % expected)
- RUINED_PORTAL count: 14 10.85 % (9.90 % expected)
- OCEAN_RUIN count: 4 3.10 % (5.94 % expected)
- DESERT_PYRAMID count: 13 10.08 % (11.88% expected)
- END_CITY count: 2 1.55 % (1.98 % expected)
- BASTION_REMNANT count: 4 3.10 % (3.96 % expected)
QUESTS:
Mine 80 Gold Ore (⭐⭐)
+ 20 Book
Trade with a Farmer 12 times (⭐⭐⭐)
+ 4 Diamond
Kill 24 Cave Spiders (⭐⭐⭐⭐)
+ 1 Netherite Ingot
+ 1 Crossbow
Harvest 96 Carrots (⭐⭐)
+ 36 Cooked Mutton
Kill 20 Cows (⭐⭐)
+ 1 Diamond Shovel
Harvest 80 Carrots (⭐⭐)
+ 16 Iron Ingot
+ 1 Bow
+ 1 Iron Hoe
Fish 12 Cod (⭐)
+ 1 Splash Potion: Invisibility
+ 1 Iron Helmet
Find a Swamp Hut (⭐⭐⭐⭐⭐)
+ 3 Enchanted Golden Apple
+ 24 Ender Pearl
Harvest 64 Carrots (⭐)
+ 8 Gold Ingot
Find a Swamp Hut (⭐⭐⭐⭐⭐)
+ 1 Netherite Sword
+ 1 Enchanted Book: Luck Of The Sea III
Kill 100 Zombies (⭐⭐⭐)
+ 1 Diamond Chestplate
Level up 10 times (⭐⭐)
+ 12 Book
Kill 40 Sheep (⭐⭐)
+ 2 Diamond
Mine 224 Coal Ore (⭐⭐)
+ 1 Chainmail Chestplate: Blast Protection II
Find a Desert Pyramid (⭐⭐⭐)
+ 1 Enchanted Book: Sharpness IV
Harvest 32 Potatoes (⭐)
+ 1 Emerald
Mine 80 Gold Ore (⭐⭐)
+ 24 Firework Rocket
Chop 96 Birch Logs (⭐⭐)
+ 6 Potion: Jump Boost II
Harvest 16 Beetroots (⭐)
+ 8 Cooked Chicken
Find a Pillager Outpost (⭐⭐⭐⭐)
+ 20 Emerald
Mine 112 Coal Ore (⭐⭐)
+ 3 Potion: Fire Resistance +
Harvest 48 Cacti (⭐⭐)
+ 3 Name Tag
+ 5 Potion: Jump Boost
Level up 15 times (⭐⭐)
+ 4 Sponge
+ 6 Honey Bottle
Harvest 112 Sugar Cane (⭐⭐)
+ 32 Arrow
+ 1 Enchanted Book: Thorns I
Find a Pillager Outpost (⭐⭐⭐⭐)
+ 1 Enchanted Book: Unbreaking III
+ 48 Flint
Harvest 48 Sweet Berries (⭐)
+ 12 Iron Ingot
+ 1 Iron Axe
Kill 40 Creepers (⭐⭐⭐)
+ 4 Diamond
Harvest 112 Wheat (⭐)
+ 1 Diamond
Mine 112 Iron Ore (⭐⭐)
+ 24 Flint
Harvest 80 Wheat (⭐)
+ 1 Iron Chestplate
Mine 12 Diamond Ore (⭐⭐⭐)
+ 7 Diamond
Mine 176 Coal Ore (⭐⭐)
+ 1 Chainmail Chestplate: Thorns I
Fish 14 Salmon (⭐⭐)
+ 4 Ender Pearl
Kill 10 Pigs (⭐)
+ 1 Crossbow
+ 1 Iron Shovel
Kill 50 Spiders (⭐⭐⭐)
+ 1 Diamond Sword: Bane Of Arthropods I
Trade with a Weaponsmith 6 times (⭐⭐⭐)
+ 36 Golden Carrot
Mine 24 Diamond Ore (⭐⭐⭐⭐)
+ 20 Blaze Rod
Kill 24 Blazes (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 1 Enchanted Book: Punch II
+ 1 Crossbow
Harvest 32 Potatoes (⭐)
+ 8 Flint
Kill 12 Magma Cubes (⭐⭐⭐⭐)
+ 1 Netherite Helmet
Drive 1km in a Minecart (⭐⭐⭐⭐)
+ 28 Emerald
+ 6 Potion: Speed +
Mine 144 Iron Ore (⭐⭐)
+ 2 Diamond
Mine 64 Iron Ore (⭐⭐)
+ 3 Splash Potion: Strength II
Mine 32 Gold Ore (⭐⭐)
+ 5 Potion: Fire Resistance
Mine 176 Coal Ore (⭐⭐)
+ 2 Emerald
+ 1 Iron Leggings
Level up 40 times (⭐⭐⭐)
+ 96 Arrow
+ 1 Enchanted Book: Multishot
Chop 64 Logs (⭐)
+ 12 Cooked Mutton
Enchant 6 Books (⭐⭐)
+ 1 Chainmail Leggings: Thorns I
Travel 8km with a Boat (⭐⭐⭐⭐)
+ 160 Arrow
Find an Igloo (⭐⭐⭐⭐)
+ 1 Enchanted Book: Thorns III
+ 6 Ghast Tear
Harvest 80 Potatoes (⭐⭐)
+ 2 Emerald
Enchant 7 Books (⭐⭐)
+ 1 Iron Sword: Sharpness IV
+ 3 Name Tag
Kill 60 Skeletons (⭐⭐⭐)
+ 128 Arrow
Enchant 5 Books (⭐⭐)
+ 4 Ender Pearl
Chop 64 Logs (⭐)
+ 1 Potion: Regeneration
+ 1 Iron Sword
Mine 40 Lapis Ore (⭐⭐⭐⭐)
+ 1 Diamond Chestplate
Chop 96 Birch Logs (⭐⭐)
+ 1 Diamond
Enchant a Shield (⭐)
+ 4 Book
Mine 48 Gold Ore (⭐⭐)
+ 2 Diamond
Reach level 25 (⭐⭐)
+ 1 Splash Potion: Luck
Fish 1 Pufferfish (⭐)
+ 1 Chainmail Leggings
Chop 32 Dark Oak Logs (⭐)
+ 1 Potion: Invisibility
+ 1 Iron Helmet
Enchant 9 Books (⭐⭐)
+ 1 Iron Hoe: Fortune II
Harvest 8 Red Mushrooms (⭐)
+ 1 Emerald
+ 1 Iron Shovel
Mine 8 Lapis Ore (⭐⭐)
+ 1 Enchanted Book: Efficiency II
Kill 100 Skeletons (⭐⭐⭐⭐)
+ 96 Iron Ingot
+ 6 Potion: Water Breathing +
Trade with a Shepherd 14 times (⭐⭐⭐⭐)
+ 48 Quartz
+ 1 Enchanted Golden Apple
Harvest 96 Wheat (⭐)
+ 1 Diamond Shovel
Kill 50 Cows (⭐⭐)
+ 1 Enchanted Book: Knockback II
Swim 600m (⭐⭐)
+ 4 Emerald
Run 17.5km (⭐⭐⭐⭐⭐)
+ 1 Netherite Sword
+ 1 Enchanted Book: Thorns III
+ 1 Music Disc Chirp
+ 3 Potion: Invisibility +
Harvest 16 Cacti (⭐)
+ 8 Iron Ingot
Chop 96 Logs (⭐)
+ 16 Cooked Chicken
Run 15km (⭐⭐⭐⭐⭐)
+ 24 Ender Pearl
+ 1 Enchanted Book: Respiration III
Kill 30 Sheep (⭐⭐)
+ 1 Enchanted Book: Sharpness IV
Kill 50 Skeletons (⭐⭐⭐)
+ 1 Iron Leggings: Unbreaking III
Mine 28 Diamond Ore (⭐⭐⭐⭐)
+ 1 Netherite Sword
Harvest 112 Wheat (⭐)
+ 1 Compass
Kill 90 Zombies (⭐⭐⭐)
+ 128 Arrow
Harvest 40 Melon Slices (⭐⭐)
+ 1 Ancient Debris
Reach level 30 (⭐⭐⭐)
+ 3 Golden Apple
+ 1 Diamond Sword
Kill 8 Piglins (⭐⭐⭐)
+ 96 Iron Ingot
Harvest 32 Sugar Cane (⭐)
+ 4 Book
+ 1 Iron Sword
Run 7.5km (⭐⭐⭐⭐)
+ 11 Diamond
Enchant a Diamond Pickaxe with Unbreaking II+ (⭐⭐⭐)
+ 3 Diamond
Chop 64 Logs (⭐)
+ 8 Cooked Beef
Chop 224 Logs (⭐⭐)
+ 3 Saddle
Kill 28 Cave Spiders (⭐⭐⭐⭐)
+ 1 Crossbow: Mending
+ 1 Bow: Mending
Chop 96 Acacia Logs (⭐⭐)
+ 4 Splash Potion: Instant Health II
Travel 4km with a Boat (⭐⭐⭐)
+ 96 Arrow
Enchant 2 Books (⭐)
+ 3 Potion: Night Vision +
Mine 4 Diamond Ore (⭐⭐)
+ 4 Blaze Rod
Find a Desert Pyramid (⭐⭐⭐)
+ 1 Diamond Shovel: Efficiency III
Harvest 48 Cacti (⭐⭐)
+ 1 Iron Sword: Unbreaking I
Run 12.5km (⭐⭐⭐⭐⭐)
+ 9 Golden Apple
+ 48 Quartz
Reach level 30 (⭐⭐⭐)
+ 1 Iron Leggings: Protection II
Harvest 64 Sugar Cane (⭐⭐)
+ 3 Splash Potion: Invisibility +
Harvest 48 Cacti (⭐⭐)
+ 32 Iron Ingot
Mine 24 Lapis Ore (⭐⭐⭐)
+ 1 Crossbow: Unbreaking III
Chop 32 Logs (⭐)
+ 1 Chainmail Helmet
+ 1 Iron Shovel
Kill 1 Witch (⭐⭐)
+ 1 Iron Axe: Smite II
Kill 50 Sheep (⭐⭐)
+ 6 Potion: Regeneration II
Mine 48 Iron Ore (⭐)
+ 1 Fishing Rod: Lure II
Reach level 45 (⭐⭐⭐⭐)
+ 12 Diamond
Mine 88 Gold Ore (⭐⭐⭐)
+ 1 Enchanted Book: Blast Protection III
Harvest 48 Cacti (⭐⭐)
+ 1 Chainmail Helmet: Blast Protection III
+ 1 Bow
+ 1 Iron Sword
Kill 10 Sheep (⭐)
+ 4 Golden Carrot
Mine 128 Iron Ore (⭐⭐)
+ 1 Iron Sword: Looting II
Chop 96 Logs (⭐)
+ 1 Emerald
Fish a treasure (⭐⭐)
+ 4 Splash Potion: Slow Falling
Enchant 6 Books (⭐⭐)
+ 1 Iron Hoe: Efficiency IV
Harvest 24 Red Mushrooms (⭐⭐)
+ 1 Diamond
Fish 12 Salmon (⭐⭐)
+ 1 Fishing Rod: Lure II
Chop 64 Logs (⭐)
+ 1 Emerald
Enchant 7 Books (⭐⭐)
+ 48 Cooked Mutton
Harvest 16 Sweet Berries (⭐)
+ 1 Enchanted Book: Lure II
Level up 30 times (⭐⭐⭐)
+ 5 Diamond
+ 1 Iron Chestplate
Trade with a Villager 4 times (⭐⭐)
+ 1 Diamond
Enchant a Bow with Punch I+ (⭐⭐)
+ 16 Flint
Find a Woodland Mansion (⭐⭐⭐⭐⭐⭐)
+ 24 Blaze Rod
+ 1 Netherite Sword: Looting III
+ 1 Trident: Loyalty III
+ 96 Iron Ingot
Kill 14 Wither Skeletons (⭐⭐⭐⭐⭐)
+ 1 Netherite Sword: Fire Aspect II
+ 1 Bow: Power V
+ 24 Book
Kill 12 Squids (⭐⭐)
+ 24 Cooked Beef
Chop 96 Oak Logs (⭐⭐)
+ 40 Cooked Mutton
Kill 110 Spiders (⭐⭐⭐⭐)
+ 12 Blaze Rod
Mine 96 Coal Ore (⭐)
+ 12 Cooked Beef
+ 1 Iron Helmet
Mine 96 Coal Ore (⭐)
+ 16 Iron Ingot
Harvest 64 Potatoes (⭐)
+ 1 Iron Shovel: Efficiency I
Mine 128 Coal Ore (⭐⭐)
+ 1 Enchanted Book: Sharpness II
Kill 10 Sheep (⭐)
+ 2 Potion: Jump Boost +
+ 1 Iron Sword
Kill 40 Spiders (⭐⭐⭐)
+ 48 Cooked Chicken
+ 1 Compass
Kill 90 Spiders (⭐⭐⭐)
+ 1 Iron Shovel: Mending
Enchant 9 Books (⭐⭐)
+ 2 Diamond
Harvest 48 Wheat (⭐)
+ 1 Emerald
Harvest 32 Pumpkins (⭐⭐)
+ 1 Enchanted Book: Respiration I
+ 1 Iron Chestplate
Kill 40 Sheep (⭐⭐)
+ 1 Enchanted Book: Thorns I
Mine 24 Diamond Ore (⭐⭐⭐⭐)
+ 192 Arrow
+ 3 Saddle
Harvest 32 Wheat (⭐)
+ 3 Honey Bottle
Mine 144 Iron Ore (⭐⭐)
+ 1 Crossbow: Quick Charge II
Harvest 64 Kelp (⭐)
+ 2 Splash Potion: Night Vision
+ 1 Iron Shovel
Kill 40 Skeletons (⭐⭐⭐)
+ 1 Enchanted Golden Apple
Kill 30 Chickens (⭐⭐)
+ 32 Arrow
Harvest 48 Bamboo (⭐⭐⭐)
+ 1 Crossbow: Unbreaking II
Trade with a Librarian 2 times (⭐⭐)
+ 2 Sea Lantern
Chop 64 Birch Logs (⭐⭐)
+ 2 Potion: Regeneration +
Harvest 56 Red Mushrooms (⭐⭐⭐)
+ 40 Flint
Kill 28 Blazes (⭐⭐⭐⭐⭐)
+ 1 Netherite Sword: Mending
Level up 15 times (⭐⭐)
+ 1 Chainmail Helmet: Unbreaking II
Find a Bastion Remnant (⭐⭐⭐⭐)
+ 25 Emerald
Drive 400m in a Minecart (⭐⭐⭐⭐)
+ 1 Enchanted Book: Sweeping III
+ 24 Book
Enchant a Diamond Sword with Bane Of Arthropods II+ (⭐⭐)
+ 1 Iron Sword: Sweeping II
Mine 32 Iron Ore (⭐)
+ 5 Potion: Instant Health
Enchant a Crossbow with Unbreaking II+ (⭐⭐)
+ 8 Book
Level up 15 times (⭐⭐)
+ 1 Enchanted Book: Flame
+ 6 Potion: Jump Boost
Chop 96 Jungle Logs (⭐⭐)
+ 1 Diamond Shovel
+ 6 Honey Bottle
+ 1 Iron Helmet
Harvest 96 Sugar Cane (⭐⭐)
+ 1 Chainmail Chestplate: Blast Protection II
Run 10km (⭐⭐⭐⭐)
+ 9 Golden Apple
+ 48 Gold Ingot
+ 1 Fishing Rod: Lure III
Find a Nether Fortress (⭐⭐⭐⭐)
+ 1 Netherite Ingot
Mine 128 Coal Ore (⭐⭐)
+ 1 Iron Axe: Sharpness II
Kill 26 Endermen (⭐⭐⭐⭐⭐)
+ 1 Netherite Leggings
+ 1 Bow: Flame
Chop 224 Logs (⭐⭐)
+ 1 Iron Sword: Sweeping I
+ 1 Iron Helmet
Mine 16 Gold Ore (⭐)
+ 8 Quartz
+ 1 Crossbow
+ 1 Iron Hoe
Chop 32 Birch Logs (⭐)
+ 2 Splash Potion: Instant Health
+ 1 Iron Sword
Mine 20 Diamond Ore (⭐⭐⭐⭐)
+ 96 Iron Ingot
+ 48 Flint
Harvest 112 Beetroots (⭐⭐)
+ 1 Enchanted Book: Smite II
Mine 16 Diamond Ore (⭐⭐⭐⭐)
+ 20 Slime Ball
+ 1 Enchanted Book: Flame
Kill 16 Cave Spiders (⭐⭐⭐⭐)
+ 1 Diamond Sword: Sweeping III
+ 64 Arrow
Kill 8 Squids (⭐)
+ 1 Iron Leggings
+ 1 Iron Axe: Unbreaking II
Kill 40 Zombies (⭐⭐)
+ 1 Iron Sword: Looting I
Trade with a Villager 10 times (⭐⭐)
+ 1 Iron Leggings: Blast Protection II
Travel 1km with a Boat (⭐⭐)
+ 4 Emerald
Enchant 3 Books (⭐)
+ 1 Emerald
+ 1 Iron Sword
Fish 8 Salmon (⭐)
+ 2 Splash Potion: Water Breathing
Reach level 45 (⭐⭐⭐⭐)
+ 24 Emerald
Catch 20 fish (⭐⭐)
+ 2 Golden Apple
Kill 50 Sheep (⭐⭐)
+ 32 Arrow
+ 1 Iron Helmet
Find a Nether Fortress (⭐⭐⭐⭐)
+ 1 Iron Leggings: Blast Protection IV
+ 36 Golden Carrot
Harvest 72 Melon Slices (⭐⭐)
+ 16 Book
Level up 40 times (⭐⭐⭐)
+ 6 Splash Potion: Fire Resistance
+ 1 Crossbow: Quick Charge II
+ 6 Honey Bottle
Find a Nether Fortress (⭐⭐⭐⭐)
+ 6 Sea Lantern
Harvest 80 Sugar Cane (⭐⭐)
+ 1 Enchanted Book: Respiration II
Kill 110 Skeletons (⭐⭐⭐⭐)
+ 1 Diamond Sword: Mending
Kill 10 Cows (⭐)
+ 1 Crossbow
+ 1 Iron Axe
+ 1 Iron Sword
Harvest 32 Melon Slices (⭐⭐)
+ 24 Cooked Porkchop
Enchant a Diamond Sword with Looting I+ (⭐⭐)
+ 20 Gold Ingot
Enchant a Diamond Shovel (⭐)
+ 1 Bow
+ 1 Iron Axe
Kill 50 Cows (⭐⭐)
+ 1 Diamond Axe
Mine 80 Coal Ore (⭐)
+ 1 Iron Leggings
+ 1 Chainmail Helmet
Trade with a Villager 8 times (⭐⭐)
+ 6 Splash Potion: Jump Boost +
Mine 80 Nether Gold Ore (⭐⭐⭐)
+ 15 Emerald
Mine 192 Coal Ore (⭐⭐)
+ 1 Iron Shovel: Fortune II
Mine 80 Nether Quartz Ore (⭐⭐⭐)
+ 1 Iron Chestplate: Protection IV
Kill 50 Sheep (⭐⭐)
+ 6 Potion: Water Breathing +
Enchant a Diamond Sword (⭐)
+ 1 Splash Potion: Water Breathing +
Chop 224 Logs (⭐⭐)
+ 12 Golden Carrot
+ 1 Iron Hoe
+ 1 Iron Sword
Kill 50 Pigs (⭐⭐)
+ 32 Arrow
Kill 50 Skeletons (⭐⭐⭐)
+ 1 Bow: Mending
Swim 1.4km (⭐⭐⭐)
+ 96 Iron Ingot
Enchant a Diamond Pickaxe with Fortune II+ (⭐⭐⭐)
+ 64 Arrow
+ 1 Enchanted Book: Flame
Fish 1 Pufferfish (⭐)
+ 4 Cooked Porkchop
Chop 64 Oak Logs (⭐⭐)
+ 8 Gold Ingot
Run 10km (⭐⭐⭐⭐)
+ 1 Enchanted Book: Efficiency V
+ 48 Cooked Chicken
Kill 24 Endermen (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 1 Crossbow: Mending
+ 96 Iron Ingot
Mine 128 Iron Ore (⭐⭐)
+ 32 Arrow
Kill 36 Phantoms (⭐⭐⭐⭐)
+ 1 Enchanted Book: Protection IV
+ 1 Bow: Power IV
Harvest 56 Brown Mushrooms (⭐⭐⭐)
+ 20 Book
Enchant 4 Books (⭐⭐)
+ 1 Golden Apple
+ 4 Book
Harvest 96 Kelp (⭐)
+ 1 Iron Chestplate
+ 1 Splash Potion: Strength
Level up 10 times (⭐⭐)
+ 1 Enchanted Book: Protection II
Find a Desert Pyramid (⭐⭐⭐)
+ 1 Enchanted Book: Bane Of Arthropods IV
Kill 20 Pigs (⭐⭐)
+ 1 Chainmail Helmet: Respiration I
Mine 192 Coal Ore (⭐⭐)
+ 6 Potion: Strength II
Reach level 40 (⭐⭐⭐⭐)
+ 24 Ender Pearl
Mine 28 Diamond Ore (⭐⭐⭐⭐)
+ 1 Heart Of The Sea
+ 1 Enchanted Book: Protection IV
Harvest 112 Wheat (⭐)
+ 4 Potion: Slow Falling
+ 1 Iron Sword
Find a Desert Pyramid (⭐⭐⭐)
+ 1 Iron Helmet: Projectile Protection IV
Kill 6 Zoglins (⭐⭐⭐)
+ 1 Diamond Axe: Smite II
Harvest 64 Carrots (⭐)
+ 4 Book
+ 1 Iron Helmet
Find a Village (⭐⭐⭐)
+ 1 Enchanted Book: Bane Of Arthropods III
Enchant 6 Books (⭐⭐)
+ 16 Gold Ingot
Mine 48 Gold Ore (⭐⭐)
+ 1 Iron Sword: Bane Of Arthropods III
Harvest 48 Sweet Berries (⭐)
+ 1 Splash Potion: Water Breathing +
+ 1 Iron Leggings
Kill 50 Cows (⭐⭐)
+ 1 Diamond Sword
Ride 14km on a Horse (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 48 Gold Ingot
Fish 12 Cod (⭐)
+ 8 Firework Rocket
+ 1 Fishing Rod
+ 1 Iron Sword
Fish 1 Pufferfish (⭐)
+ 1 Chainmail Chestplate
Mine 48 Coal Ore (⭐)
+ 1 Chainmail Leggings
+ 1 Iron Hoe
Harvest 48 Carrots (⭐)
+ 12 Iron Ingot
Mine 80 Iron Ore (⭐⭐)
+ 40 Cooked Chicken
Level up 10 times (⭐⭐)
+ 1 Enchanted Book: Thorns III
Enchant a Diamond Axe with Fortune I+ (⭐⭐⭐)
+ 1 Enchanted Book: Depth Strider II
Trade with a Villager 8 times (⭐⭐)
+ 6 Splash Potion: Fire Resistance +
Kill 12 Endermen (⭐⭐⭐⭐)
+ 16 Blaze Rod
Kill 90 Spiders (⭐⭐⭐)
+ 36 Golden Carrot
+ 1 Iron Sword: Bane Of Arthropods I
Level up 30 times (⭐⭐⭐)
+ 3 Diamond
+ 6 Splash Potion: Fire Resistance +
Trade with a Villager 4 times (⭐⭐)
+ 1 Chainmail Leggings: Protection I
Enchant 7 Books (⭐⭐)
+ 4 Ender Pearl
Harvest 2 Chorus Flowers (⭐⭐⭐)
+ 1 Enchanted Book: Quick Charge III
+ 1 Music Disc Far
Mine 80 Iron Ore (⭐⭐)
+ 1 Ancient Debris
+ 1 Iron Helmet
Level up 40 times (⭐⭐⭐)
+ 2 Enchanted Golden Apple
Chop 64 Oak Logs (⭐⭐)
+ 6 Honey Bottle
+ 1 Chainmail Chestplate
Catch 8 fish (⭐)
+ 8 Flint
Trade with a Fisherman 4 times (⭐⭐)
+ 1 Diamond Sword: Sharpness I
Enchant a Diamond Helmet with Protection I+ (⭐⭐)
+ 48 Cooked Chicken
Kill 80 Spiders (⭐⭐⭐)
+ 20 Ender Pearl
Find an Igloo (⭐⭐⭐⭐)
+ 2 Enchanted Golden Apple
+ 1 Bow
Kill 100 Zombies (⭐⭐⭐)
+ 128 Arrow
Enchant 9 Books (⭐⭐)
+ 32 Flint
+ 1 Iron Helmet
Travel 4km with a Boat (⭐⭐⭐)
+ 48 Flint
Harvest 112 Wheat (⭐)
+ 1 Golden Apple
Catch 8 fish (⭐)
+ 6 Potion: Speed
Chop 32 Acacia Logs (⭐)
+ 12 Iron Ingot
Mine 8 Ancient Debris (⭐⭐⭐⭐⭐)