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