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