-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathQuestSample_1.20.4.txt
6808 lines (4795 loc) · 125 KB
/
QuestSample_1.20.4.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: FIND_STRUCTURE
- JUNGLE_PYRAMID count: 8 4,35 % (3,96 % expected)
- OCEAN_RUIN count: 6 3,26 % (5,94 % expected)
- SHIPWRECK count: 22 11,96 % (9,90 % expected)
- FORTRESS count: 34 18,48 % (15,84% expected)
- PILLAGER_OUTPOST count: 7 3,80 % (3,96 % expected)
- RUINED_PORTAL count: 22 11,96 % (9,90 % expected)
- SWAMP_HUT count: 12 6,52 % (3,96 % expected)
- BASTION_REMNANT count: 3 1,63 % (3,96 % expected)
- VILLAGE count: 35 19,02 % (19,80% expected)
- IGLOO count: 3 1,63 % (3,96 % expected)
- END_CITY count: 7 3,80 % (1,98 % expected)
- MONUMENT count: 6 3,26 % (3,96 % expected)
- DESERT_PYRAMID count: 19 10,33 % (11,88% expected)
- MANSION count: 0 0,00 % (0,99 % expected)
Quest Type: MINE_BLOCK
- REDSTONE_ORE count: 14 8,05 % (6,51 % expected)
- COPPER_ORE count: 2 1,15 % (6,51 % expected)
- EMERALD_ORE count: 2 1,15 % (1,74 % expected)
- GOLD_ORE count: 30 17,24 % (15,18% expected)
- COAL_ORE count: 41 23,56 % (21,69% expected)
- NETHER_QUARTZ_ORE count: 7 4,02 % (4,34 % expected)
- IRON_ORE count: 47 27,01 % (21,69% expected)
- ANCIENT_DEBRIS count: 1 0,57 % (1,74 % expected)
- LAPIS_ORE count: 10 5,75 % (5,42 % expected)
- DIAMOND_ORE count: 13 7,47 % (10,85% expected)
- NETHER_GOLD_ORE count: 7 4,02 % (4,34 % expected)
Quest Type: HARVEST_BLOCK
- POTATO count: 41 10,20 % (10,60% expected)
- BAMBOO count: 6 1,49 % (1,32 % expected)
- BROWN_MUSHROOM count: 18 4,48 % (3,97 % expected)
- WHEAT count: 61 15,17 % (15,89% expected)
- KELP count: 14 3,48 % (3,97 % expected)
- CHORUS_FLOWER count: 9 2,24 % (2,65 % expected)
- BEETROOT count: 19 4,73 % (6,62 % expected)
- SEA_PICKLE count: 4 1,00 % (0,66 % expected)
- PUMPKIN count: 31 7,71 % (6,62 % expected)
- SUGAR_CANE count: 56 13,93 % (13,25% expected)
- COCOA_BEANS count: 11 2,74 % (2,65 % expected)
- RED_MUSHROOM count: 21 5,22 % (3,97 % expected)
- MELON_SLICE count: 21 5,22 % (3,97 % expected)
- CACTUS count: 26 6,47 % (6,62 % expected)
- SWEET_BERRIES count: 16 3,98 % (3,97 % expected)
- NETHER_WART count: 9 2,24 % (2,65 % expected)
- CARROT count: 39 9,70 % (10,60% expected)
Quest Type: INCREASE_STAT
- WALK_ONE_CM count: 44 34,92 % (34,48% expected)
- PIG_ONE_CM count: 9 7,14 % (5,75 % expected)
- FLOWER_POTTED count: 2 1,59 % (2,87 % expected)
- RAID_WIN count: 0 0,00 % (1,15 % expected)
- BOAT_ONE_CM count: 21 16,67 % (17,24% expected)
- BELL_RING count: 3 2,38 % (2,87 % expected)
- CAKE_SLICES_EATEN count: 4 3,17 % (2,87 % expected)
- SWIM_ONE_CM count: 21 16,67 % (11,49% expected)
- STRIDER_ONE_CM count: 5 3,97 % (2,87 % expected)
- HORSE_ONE_CM count: 10 7,94 % (11,49% expected)
- MINECART_ONE_CM count: 6 4,76 % (5,75 % expected)
- RECORD_PLAYED count: 1 0,79 % (1,15 % expected)
Quest Type: VILLAGER_TRADE
- SHEPHERD count: 6 4,55 % (4,35 % expected)
- NONE count: 51 38,64 % (43,48% expected)
- CARTOGRAPHER count: 3 2,27 % (4,35 % expected)
- WEAPONSMITH count: 8 6,06 % (4,35 % expected)
- FLETCHER count: 8 6,06 % (4,35 % expected)
- MASON count: 10 7,58 % (4,35 % expected)
- FARMER count: 4 3,03 % (4,35 % expected)
- LIBRARIAN count: 8 6,06 % (4,35 % expected)
- FISHERMAN count: 8 6,06 % (4,35 % expected)
- CLERIC count: 4 3,03 % (4,35 % expected)
- TOOLSMITH count: 6 4,55 % (4,35 % expected)
- ARMORER count: 3 2,27 % (4,35 % expected)
- BUTCHER count: 6 4,55 % (4,35 % expected)
- LEATHERWORKER count: 7 5,30 % (4,35 % expected)
Quest Type: BREAK_BLOCK
- SPAWNER count: 1 4,35 % (3,23 % expected)
- GLOWSTONE count: 8 34,78 % (32,26% expected)
- AMETHYST_CLUSTER count: 14 60,87 % (64,52% expected)
Quest Type: CHOP_WOOD
- LOG count: 184 58,97 % (63,29% expected)
- OAK_LOG count: 26 8,33 % (10,13% expected)
- DARK_OAK_LOG count: 13 4,17 % (2,53 % expected)
- CHERRY_LOG count: 3 0,96 % (1,27 % expected)
- JUNGLE_LOG count: 8 2,56 % (2,53 % expected)
- BIRCH_LOG count: 26 8,33 % (7,59 % expected)
- MANGROVE_LOG count: 2 0,64 % (1,27 % expected)
- ACACIA_LOG count: 21 6,73 % (5,06 % expected)
- SPRUCE_LOG count: 29 9,29 % (6,33 % expected)
Quest Type: KILL_ENTITY
- BLAZE count: 7 4,35 % (4,12 % expected)
- WITHER_SKELETON count: 0 0,00 % (2,47 % expected)
- PIGLIN count: 6 3,73 % (1,65 % expected)
- MAGMA_CUBE count: 0 0,00 % (1,23 % expected)
- SHEEP count: 14 8,70 % (8,23 % expected)
- GLOW_SQUID count: 1 0,62 % (0,82 % expected)
- WITCH count: 3 1,86 % (2,47 % expected)
- CHICKEN count: 18 11,18 % (8,23 % expected)
- SQUID count: 1 0,62 % (1,65 % expected)
- ENDERMAN count: 14 8,70 % (6,58 % expected)
- CREEPER count: 9 5,59 % (6,17 % expected)
- PILLAGER count: 1 0,62 % (0,82 % expected)
- ZOMBIE_VILLAGER count: 0 0,00 % (0,41 % expected)
- DROWNED count: 13 8,07 % (4,12 % expected)
- CAVE_SPIDER count: 1 0,62 % (1,65 % expected)
- SPIDER count: 8 4,97 % (6,58 % expected)
- GHAST count: 2 1,24 % (2,47 % expected)
- COW count: 16 9,94 % (8,23 % expected)
- ZOMBIE count: 20 12,42 % (12,35% expected)
- SKELETON count: 12 7,45 % (8,23 % expected)
- PHANTOM count: 5 3,11 % (1,65 % expected)
- ZOGLIN count: 0 0,00 % (1,65 % expected)
- PIG count: 10 6,21 % (8,23 % expected)
Quest Type: ENCHANT_ITEM
- BOW count: 21 7,07 % (6,50 % expected)
- CROSSBOW count: 17 5,72 % (4,06 % expected)
- TRIDENT count: 0 0,00 % (0,04 % expected)
- DIAMOND_LEGGINGS count: 7 2,36 % (2,44 % expected)
- BOOK count: 122 41,08 % (40,63% expected)
- DIAMOND_BOOTS count: 6 2,02 % (2,44 % expected)
- DIAMOND_PICKAXE count: 21 7,07 % (8,13 % expected)
- DIAMOND_HOE count: 6 2,02 % (1,63 % expected)
- DIAMOND_AXE count: 20 6,73 % (6,50 % expected)
- DIAMOND_SWORD count: 33 11,11 % (9,75 % expected)
- DIAMOND_SHOVEL count: 10 3,37 % (6,50 % expected)
- SHIELD count: 8 2,69 % (2,44 % expected)
- FISHING_ROD count: 8 2,69 % (4,06 % expected)
- DIAMOND_CHESTPLATE count: 8 2,69 % (2,44 % expected)
- DIAMOND_HELMET count: 10 3,37 % (2,44 % expected)
Quest Type: FISH_ITEM
- ANY_FISH count: 32 36,78 % (36,36% expected)
- TROPICAL_FISH count: 3 3,45 % (1,82 % expected)
- COD count: 23 26,44 % (25,45% expected)
- ANY_TREASURE count: 0 0,00 % (3,64 % expected)
- SALMON count: 15 17,24 % (18,18% expected)
- PUFFERFISH count: 4 4,60 % (7,27 % expected)
- ANY_ITEM count: 10 11,49 % (7,27 % expected)
QUESTS:
Fish 2 Salmon (⭐)
+ 4 Copper Ingot
Fish 8 Cod (⭐)
+ 1 Emerald
Harvest 96 Wheat (⭐)
+ 2 Potion: Fire Resistance +
+ 1 Iron Axe
Chop 64 Birch Logs (⭐⭐)
+ 1 Ghast Tear
+ 1 Iron Axe: Unbreaking III
Mine 48 Gold Ore (⭐⭐)
+ 1 Enchanted Book: Lure III
+ 1 Iron Leggings
Enchant a Diamond Sword (⭐)
+ 1 Potion: Fire Resistance
+ 1 Fishing Rod
Enchant a Diamond Pickaxe with Efficiency I+ (⭐⭐)
+ 2 Ghast Tear
Kill 50 Zombies (⭐⭐⭐)
+ 64 Arrow
Enchant 9 Books (⭐⭐)
+ 48 Cooked Chicken
Level up 10 times (⭐⭐)
+ 3 Splash Potion: Water Breathing +
Trade with a Villager 12 times (⭐⭐⭐)
+ 4 Diamond
Break 6 Amethyst Clusters (⭐⭐)
+ 32 Arrow
Fish 4 Salmon (⭐)
+ 8 Cooked Porkchop
Mine 32 Redstone Ore (⭐⭐)
+ 2 Diamond
Trade with a Villager 6 times (⭐⭐)
+ 1 Enchanted Book: Smite III
Enchant 7 Books (⭐⭐)
+ 40 Copper Ingot
Harvest 48 Cacti (⭐⭐)
+ 1 Enchanted Book: Aqua Affinity
Kill 10 Pigs (⭐)
+ 8 Iron Ingot
Kill 80 Creepers (⭐⭐⭐⭐)
+ 1 Bow: Infinity
Mine 80 Coal Ore (⭐)
+ 16 Cooked Chicken
+ 1 Iron Axe
Harvest 48 Cacti (⭐⭐)
+ 32 Arrow
Trade with a Fletcher 14 times (⭐⭐)
+ 1 Bow: Unbreaking II
Chop 224 Logs (⭐⭐)
+ 8 Book
Kill 30 Sheep (⭐⭐)
+ 1 Spyglass
+ 6 Potion: Instant Health
Trade with a Farmer 4 times (⭐⭐)
+ 12 Book
Mine 32 Iron Ore (⭐)
+ 1 Splash Potion: Regeneration +
Catch 24 fish (⭐⭐)
+ 4 Emerald
Chop 192 Logs (⭐⭐)
+ 1 Enchanted Book: Thorns II
Chop 96 Logs (⭐)
+ 12 Copper Ingot
Reach level 45 (⭐⭐)
+ 16 Gold Ingot
Run 5km (⭐⭐⭐)
+ 96 Iron Ingot
+ 6 Splash Potion: Jump Boost
Harvest 112 Sugar Cane (⭐⭐)
+ 60 Copper Ingot
Harvest 16 Red Mushrooms (⭐⭐)
+ 24 Cooked Porkchop
Level up 30 times (⭐⭐⭐)
+ 4 Diamond
+ 6 Potion: Instant Health II
Chop 64 Spruce Logs (⭐⭐)
+ 1 Diamond Shovel
Enchant 8 Books (⭐⭐)
+ 1 Enchanted Book: Unbreaking III
Level up 20 times (⭐⭐⭐)
+ 68 Iron Ingot
+ 1 Crossbow
Mine 64 Gold Ore (⭐⭐)
+ 1 Bow: Unbreaking II
Kill 110 Skeletons (⭐⭐⭐⭐)
+ 6 Ancient Debris
Harvest 80 Wheat (⭐)
+ 2 Splash Potion: Jump Boost II
Chop 160 Logs (⭐⭐)
+ 12 Copper Ingot
+ 1 Iron Helmet
+ 1 Iron Hoe
Find a Village (⭐⭐⭐)
+ 6 Potion: Water Breathing
Find a Shipwreck (⭐⭐⭐)
+ 3 Ancient Debris
Enchant a Diamond Sword with Smite I+ (⭐⭐)
+ 6 Potion: Instant Health
+ 1 Iron Helmet
Ride 400m on a Pig (⭐⭐⭐⭐)
+ 24 Slime Ball
Harvest 96 Sugar Cane (⭐⭐)
+ 1 Crossbow: Multishot
Chop 32 Cherry Logs (⭐)
+ 12 Iron Ingot
Kill 28 Phantoms (⭐⭐⭐⭐)
+ 1 Diamond Helmet: Respiration III
Chop 96 Logs (⭐)
+ 1 Splash Potion: Invisibility
Break 2 Amethyst Clusters (⭐⭐)
+ 1 Diamond
+ 6 Potion: Speed +
Enchant 7 Books (⭐⭐)
+ 3 Splash Potion: Water Breathing +
+ 1 Iron Leggings
Mine 24 Lapis Ore (⭐⭐⭐)
+ 24 Book
Harvest 112 Potatoes (⭐⭐)
+ 32 Arrow
Harvest 40 Pumpkins (⭐⭐)
+ 1 Enchanted Book: Aqua Affinity
+ 2 Amethyst Shard
Find a Desert Pyramid (⭐⭐⭐)
+ 6 Golden Apple
+ 6 Potion: Fire Resistance +
Enchant a Diamond Shovel with Efficiency II+ (⭐⭐)
+ 3 Splash Potion: Fire Resistance +
+ 1 Iron Axe
Ring a Bell (⭐⭐⭐⭐)
+ 160 Arrow
Harvest 80 Wheat (⭐)
+ 12 Copper Ingot
Chop 32 Logs (⭐)
+ 4 Copper Ingot
Enchant 7 Books (⭐⭐)
+ 1 Enchanted Book: Thorns I
Trade with a Fisherman 12 times (⭐⭐⭐⭐)
+ 160 Arrow
Ride 600m on a Pig (⭐⭐⭐⭐)
+ 1 Enchanted Book: Looting III
Level up 45 times (⭐⭐⭐⭐)
+ 160 Arrow
Enchant a Diamond Sword (⭐)
+ 12 Cooked Chicken
Find a Pillager Outpost (⭐⭐⭐⭐)
+ 24 Slime Ball
Ride 4km on a Horse (⭐⭐⭐⭐)
+ 26 Emerald
Kill 30 Chickens (⭐⭐)
+ 1 Iron Sword: Sharpness I
Run 5km (⭐⭐⭐)
+ 24 Book
+ 96 Coal
Trade with a Villager 14 times (⭐⭐⭐)
+ 1 Vex Armor Trim Smithing Template
Enchant a Diamond Helmet with Blast Protection II+ (⭐⭐⭐)
+ 96 Coal
+ 3 Golden Apple
Mine 80 Iron Ore (⭐⭐)
+ 4 Ender Pearl
Harvest 16 Cacti (⭐)
+ 1 Golden Apple
+ 1 Iron Axe: Unbreaking III
Mine 112 Iron Ore (⭐⭐)
+ 3 Golden Apple
Harvest 80 Melon Slices (⭐⭐)
+ 1 Enchanted Book: Piercing IV
Trade with a Cleric 4 times (⭐⭐⭐)
+ 1 Diamond Shovel: Unbreaking II
Travel 2km with a Boat (⭐⭐⭐)
+ 12 Ender Pearl
Chop 160 Logs (⭐⭐)
+ 1 Chainmail Helmet: Respiration II
Trade with a Weaponsmith 8 times (⭐⭐⭐)
+ 1 Enchanted Book: Fortune II
Mine 160 Coal Ore (⭐⭐)
+ 1 Enchanted Book: Sweeping I
+ 1 Crossbow
+ 1 Iron Axe
Find a Ruined Portal (⭐⭐⭐)
+ 5 Amethyst Shard
Reach level 45 (⭐⭐)
+ 1 Enchanted Book: Bane Of Arthropods IV
Kill 20 Endermen (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 1 Vex Armor Trim Smithing Template
Chop 64 Birch Logs (⭐⭐)
+ 6 Potion: Instant Health
+ 1 Crossbow
Harvest 14 Chorus Flowers (⭐⭐⭐⭐⭐)
+ 1 Enchanted Book: Fortune III
+ 96 Iron Ingot
Enchant 9 Books (⭐⭐)
+ 32 Flint
Fish 14 Salmon (⭐⭐)
+ 32 Copper Ingot
Chop 224 Logs (⭐⭐)
+ 1 Diamond
Harvest 48 Cocoa Beans (⭐⭐)
+ 6 Splash Potion: Speed II
Enchant 3 Books (⭐)
+ 1 Emerald
+ 1 Potion: Regeneration II
Enchant a Diamond Sword with Fire Aspect I+ (⭐⭐)
+ 44 Copper Ingot
Trade with a Villager 8 times (⭐⭐)
+ 1 Iron Shovel: Fortune I
Chop 32 Acacia Logs (⭐)
+ 3 Splash Potion: Instant Health
Chop 32 Birch Logs (⭐)
+ 1 Potion: Water Breathing
+ 1 Bow
Enchant a Diamond Sword with Looting I+ (⭐⭐)
+ 1 Music Disc Mall
Enchant a Diamond Sword with Fire Aspect I+ (⭐⭐)
+ 44 Copper Ingot
Mine 24 Gold Ore (⭐⭐)
+ 1 Diamond
+ 4 Book
Kill 40 Zombies (⭐⭐)
+ 1 Echo Shard
Harvest 32 Carrots (⭐)
+ 1 Splash Potion: Regeneration
Find a Village (⭐⭐⭐)
+ 1 Enchanted Book: Unbreaking III
Find a Pillager Outpost (⭐⭐⭐⭐)
+ 20 Emerald
Chop 224 Logs (⭐⭐)
+ 1 Diamond Shovel
Harvest 32 Wheat (⭐)
+ 4 Book
Run 15km (⭐⭐⭐⭐⭐)
+ 1 Diamond Leggings: Fire Protection III
+ 1 Enchanted Book: Sweeping III
+ 6 Splash Potion: Speed +
Kill 100 Drowned (⭐⭐⭐⭐)
+ 1 Enchanted Book: Looting III
Chop 64 Birch Logs (⭐⭐)
+ 40 Coal
Find a Nether Fortress (⭐⭐⭐⭐)
+ 1 Enchanted Book: Feather Falling IV
Enchant a Diamond Chestplate (⭐⭐)
+ 1 Enchanted Book: Feather Falling IV
+ 4 Ender Pearl
Find a Pillager Outpost (⭐⭐⭐⭐)
+ 1 Netherite Axe
Trade with a Villager 2 times (⭐)
+ 4 Gold Ingot
+ 1 Iron Helmet
+ 1 Fishing Rod
Kill 32 Blazes (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 1 Iron Axe: Bane Of Arthropods IV
+ 96 Coal
Mine 64 Redstone Ore (⭐⭐⭐)
+ 48 Flint
Run 15km (⭐⭐⭐⭐⭐)
+ 25 Emerald
+ 1 Shaper Armor Trim Smithing Template
+ 96 Coal
Chop 96 Logs (⭐)
+ 1 Iron Leggings
Ride 400m on a Strider (⭐⭐⭐⭐⭐)
+ 24 Ender Pearl
+ 1 Diamond Hoe: Fortune III
Travel 8km with a Boat (⭐⭐⭐⭐)
+ 1 Enchanted Book: Fortune III
+ 1 Fishing Rod: Lure III
Enchant a Diamond Pickaxe with Silk Touch (⭐⭐⭐)
+ 128 Arrow
Mine 112 Iron Ore (⭐⭐)
+ 1 Iron Helmet: Protection II
Chop 96 Logs (⭐)
+ 1 Golden Apple
Find an End City (⭐⭐⭐⭐⭐)
+ 1 Diamond Helmet: Fire Protection II
+ 1 Enchanted Book: Feather Falling IV
+ 24 Firework Rocket
+ 48 Cooked Chicken
Drive 1,3km in a Minecart (⭐⭐⭐⭐)
+ 1 Eye Armor Trim Smithing Template
+ 12 Glow Ink Sac
+ 1 Enchanted Book: Punch II
Level up 20 times (⭐⭐⭐)
+ 4 Amethyst Shard
+ 6 Honey Bottle
Trade with a Shepherd 12 times (⭐⭐⭐⭐)
+ 2 Enchanted Golden Apple
Chop 32 Birch Logs (⭐)
+ 8 Iron Ingot
+ 1 Iron Sword
+ 1 Iron Shovel
Chop 96 Logs (⭐)
+ 12 Iron Ingot
Fish 4 Cod (⭐)
+ 8 Cooked Beef
Harvest 80 Carrots (⭐⭐)
+ 4 Book
+ 8 Cooked Beef
Harvest 96 Sugar Cane (⭐⭐)
+ 1 Enchanted Book: Fire Aspect II
Find a Desert Pyramid (⭐⭐⭐)
+ 6 Diamond
Reach level 45 (⭐⭐)
+ 6 Splash Potion: Strength
Trade with a Leatherworker 12 times (⭐⭐⭐⭐)
+ 1 Netherite Sword
Mine 144 Iron Ore (⭐⭐)
+ 2 Diamond
Find a Desert Pyramid (⭐⭐⭐)
+ 12 Emerald
Trade with a Librarian 4 times (⭐⭐⭐)
+ 8 Emerald
+ 1 Crossbow
Find an Ocean Monument (⭐⭐⭐⭐)
+ 96 Coal
+ 1 Diamond Sword
+ 6 Potion: Instant Health II
Drive 1,6km in a Minecart (⭐⭐⭐⭐)
+ 1 Diamond Helmet: Protection IV
+ 1 Enchanted Book: Respiration III
Trade with a Fletcher 10 times (⭐⭐)
+ 1 Crossbow: Unbreaking II
Level up 40 times (⭐⭐⭐)
+ 1 Spire Armor Trim Smithing Template
Chop 96 Logs (⭐)
+ 2 Name Tag
Find a Village (⭐⭐⭐)
+ 76 Iron Ingot
Kill 32 Phantoms (⭐⭐⭐⭐)
+ 9 Golden Apple
Fish 2 Salmon (⭐)
+ 4 Iron Ingot
Kill 20 Cows (⭐⭐)
+ 2 Splash Potion: Water Breathing
Harvest 56 Melon Slices (⭐⭐)
+ 1 Enchanted Book: Luck Of The Sea III
Harvest 16 Sugar Cane (⭐)
+ 1 Splash Potion: Instant Health II
Travel 4km with a Boat (⭐⭐⭐)
+ 6 Splash Potion: Water Breathing
+ 48 Cooked Beef
Find a Swamp Hut (⭐⭐⭐⭐⭐)
+ 1 Netherite Axe: Efficiency III
Chop 64 Oak Logs (⭐⭐)
+ 4 Glow Ink Sac
Enchant a Diamond Leggings with Projectile Protection III+ (⭐⭐⭐⭐)
+ 1 Iron Chestplate: Fire Protection IV
+ 24 Book
Mine 72 Gold Ore (⭐⭐)
+ 1 Chainmail Helmet: Projectile Protection II
Enchant 3 Books (⭐)
+ 1 Iron Leggings
+ 1 Iron Axe
Enchant a Bow with Flame (⭐⭐)
+ 3 Emerald
Harvest 16 Wheat (⭐)
+ 1 Iron Hoe
Harvest 48 Potatoes (⭐)
+ 2 Splash Potion: Strength
Enchant a Bow (⭐)
+ 1 Golden Apple
Level up 25 times (⭐⭐⭐)
+ 6 Splash Potion: Speed II
+ 1 Enchanted Book: Unbreaking I
Mine 128 Coal Ore (⭐⭐)
+ 1 Diamond Shovel
Enchant a Bow (⭐)
+ 1 Emerald
Chop 64 Acacia Logs (⭐⭐)
+ 20 Copper Ingot
+ 1 Iron Sword
Enchant a Diamond Pickaxe with Efficiency IV+ (⭐⭐⭐)
+ 96 Arrow
Level up 10 times (⭐⭐)
+ 1 Enchanted Book: Unbreaking III
Harvest 48 Carrots (⭐)
+ 4 Book
+ 1 Iron Axe: Unbreaking III
+ 1 Iron Shovel
Harvest 112 Sugar Cane (⭐⭐)
+ 1 Iron Axe: Efficiency IV
Harvest 32 Cacti (⭐⭐)
+ 4 Book
+ 1 Bow
Chop 192 Logs (⭐⭐)
+ 16 Flint
Run 15km (⭐⭐⭐⭐⭐)
+ 1 Enchanted Book: Fortune III
+ 1 Enchanted Book: Sharpness V
+ 96 Coal
+ 1 Music Disc Ward
Chop 128 Logs (⭐)
+ 8 Firework Rocket
Break 64 Glowstones (⭐⭐⭐)
+ 1 Enchanted Book: Efficiency V
Chop 96 Logs (⭐)
+ 2 Saddle
Mine 96 Nether Quartz Ore (⭐⭐⭐⭐)
+ 96 Iron Ingot
Mine 96 Coal Ore (⭐)
+ 1 Diamond Shovel
Level up 40 times (⭐⭐⭐)
+ 48 Gold Ingot
Enchant 5 Books (⭐⭐)
+ 8 Book
Trade with a Butcher 6 times (⭐⭐⭐)
+ 88 Iron Ingot
Mine 48 Gold Ore (⭐⭐)
+ 6 Splash Potion: Speed II
Chop 224 Logs (⭐⭐)
+ 1 Amethyst Shard
+ 1 Emerald
Harvest 48 Kelp (⭐)
+ 5 Honey Bottle
Find a Shipwreck (⭐⭐⭐)
+ 48 Gold Ingot
Enchant a Diamond Sword with Knockback I+ (⭐⭐)
+ 6 Nautilus Shell
Level up 35 times (⭐⭐⭐)
+ 20 Slime Ball
Harvest 8 Pumpkins (⭐)
+ 2 Potion: Regeneration
Trade with a Villager 10 times (⭐⭐)
+ 1 Enchanted Book: Fortune I
Chop 64 Spruce Logs (⭐⭐)
+ 40 Coal
Find a Desert Pyramid (⭐⭐⭐)
+ 48 Flint
Mine 32 Redstone Ore (⭐⭐)
+ 1 Enchanted Book: Efficiency II
Trade with a Villager 4 times (⭐⭐)
+ 3 Name Tag
Chop 128 Logs (⭐)
+ 1 Emerald
Mine 192 Coal Ore (⭐⭐)
+ 16 Golden Carrot
Reach level 45 (⭐⭐)
+ 1 Diamond
+ 1 Crossbow
Fish 1 Pufferfish (⭐)
+ 1 Fishing Rod: Lure II
+ 1 Iron Shovel
Level up 30 times (⭐⭐⭐)
+ 1 Enchanted Golden Apple
Enchant 5 Books (⭐⭐)
+ 3 Emerald
Enchant a Diamond Sword with Looting I+ (⭐⭐)
+ 48 Cooked Chicken
Kill 80 Skeletons (⭐⭐⭐⭐)
+ 6 Sea Lantern
Enchant 9 Books (⭐⭐)
+ 1 Iron Hoe: Silk Touch
Enchant 7 Books (⭐⭐)
+ 1 Iron Sword: Sweeping II
Level up 25 times (⭐⭐⭐)
+ 1 Iron Leggings: Protection III
Chop 128 Logs (⭐)
+ 1 Iron Helmet
+ 1 Chainmail Leggings
+ 1 Iron Sword
Enchant a Diamond Sword with Sharpness II+ (⭐⭐)
+ 1 Enchanted Book: Sharpness IV
Find a Swamp Hut (⭐⭐⭐⭐⭐)
+ 1 Trident: Unbreaking II
Run 12,5km (⭐⭐⭐⭐⭐)
+ 2 Heart Of The Sea
Mine 24 Diamond Ore (⭐⭐⭐⭐)
+ 96 Iron Ingot
+ 1 Enchanted Book: Multishot
Harvest 112 Potatoes (⭐⭐)
+ 32 Arrow
Harvest 16 Nether Warts (⭐⭐)
+ 56 Iron Ingot
Harvest 64 Sugar Cane (⭐⭐)
+ 44 Cooked Mutton
Level up 15 times (⭐⭐)
+ 1 Iron Helmet: Protection II
Chop 64 Logs (⭐)
+ 1 Iron Helmet
Find a Village (⭐⭐⭐)
+ 1 Enchanted Book: Protection III
Level up 35 times (⭐⭐⭐)
+ 1 Bow: Infinity
Chop 64 Birch Logs (⭐⭐)
+ 2 Emerald
+ 1 Iron Hoe
Harvest 48 Cacti (⭐⭐)
+ 32 Cooked Porkchop
Harvest 80 Sugar Cane (⭐⭐)
+ 3 Potion: Invisibility
+ 8 Gold Ingot
Find a Desert Pyramid (⭐⭐⭐)
+ 8 Blaze Rod
Find a Swamp Hut (⭐⭐⭐⭐⭐)
+ 192 Arrow
+ 1 Netherite Hoe
Level up 40 times (⭐⭐⭐)
+ 24 Book
+ 1 Iron Shovel: Efficiency I
Harvest 16 Potatoes (⭐)
+ 1 Golden Apple
Enchant 2 Books (⭐)
+ 1 Emerald
Level up 30 times (⭐⭐⭐)
+ 96 Arrow
Mine 224 Coal Ore (⭐⭐)
+ 6 Potion: Regeneration
Enchant 4 Books (⭐⭐)
+ 20 Iron Ingot
Trade with a Villager 8 times (⭐⭐)
+ 1 Iron Axe: Fortune II
Harvest 32 Cacti (⭐⭐)
+ 8 Quartz
Harvest 24 Red Mushrooms (⭐⭐)
+ 1 Diamond
Harvest 64 Potatoes (⭐)
+ 1 Diamond
Enchant a Diamond Sword with Sharpness IV+ (⭐⭐⭐)
+ 1 Iron Sword: Bane Of Arthropods IV
Mine 32 Iron Ore (⭐)
+ 4 Book
Enchant 6 Books (⭐⭐)
+ 1 Ancient Debris
Kill 110 Skeletons (⭐⭐⭐⭐)
+ 20 Blaze Rod
Find a Shipwreck (⭐⭐⭐)
+ 1 Iron Helmet: Unbreaking III
Kill 2 Witches (⭐⭐⭐)
+ 1 Enchanted Book: Protection IV
Find a Bastion Remnant (⭐⭐⭐⭐)
+ 96 Copper Ingot
+ 96 Iron Ingot
Find a Ruined Portal (⭐⭐⭐)
+ 4 Diamond
Mine 88 Gold Ore (⭐⭐⭐)
+ 68 Copper Ingot
Enchant a Crossbow with Piercing I+ (⭐⭐)
+ 8 Book
+ 1 Iron Leggings
Chop 64 Logs (⭐)
+ 1 Iron Leggings
Harvest 48 Sweet Berries (⭐)
+ 8 Gold Ingot
Enchant a Diamond Pickaxe with Silk Touch (⭐⭐⭐)
+ 1 Iron Leggings: Unbreaking III
+ 1 Iron Sword
Find a Nether Fortress (⭐⭐⭐⭐)
+ 1 Diamond Helmet
+ 1 Crossbow: Quick Charge II
Reach level 45 (⭐⭐)
+ 1 Bow: Punch I
+ 1 Iron Axe
Level up 25 times (⭐⭐⭐)
+ 92 Copper Ingot
Trade with a Villager 2 times (⭐)
+ 1 Iron Leggings
+ 1 Splash Potion: Night Vision +
Enchant a Diamond Pickaxe with Unbreaking I+ (⭐⭐)
+ 32 Arrow
Harvest 48 Beetroots (⭐⭐)
+ 6 Chorus Fruit
Kill 40 Pigs (⭐⭐)
+ 1 Enchanted Book: Unbreaking I
Chop 64 Oak Logs (⭐⭐)
+ 1 Amethyst Shard
Mine 128 Iron Ore (⭐⭐)
+ 48 Copper Ingot
Harvest 64 Melon Slices (⭐⭐)
+ 48 Iron Ingot
Harvest 96 Potatoes (⭐⭐)
+ 1 Chainmail Leggings: Protection I
Trade with a Weaponsmith 12 times (⭐⭐⭐⭐)
+ 8 Diamond
Harvest 16 Melon Slices (⭐)
+ 3 Splash Potion: Night Vision
Mine 96 Iron Ore (⭐⭐)
+ 32 Arrow
Catch 16 fish (⭐⭐)
+ 1 Diamond
+ 1 Iron Sword
Harvest 96 Beetroots (⭐⭐)
+ 32 Arrow
Harvest 80 Melon Slices (⭐⭐)
+ 3 Potion: Invisibility +
+ 1 Sea Lantern
Kill 70 Zombies (⭐⭐⭐)
+ 48 Quartz
Trade with a Shepherd 4 times (⭐⭐)
+ 48 Cooked Chicken
Enchant a Diamond Leggings (⭐⭐)
+ 40 Copper Ingot