-
Notifications
You must be signed in to change notification settings - Fork 21
/
drops.yml
1698 lines (1698 loc) · 33.8 KB
/
drops.yml
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
empty_drop_table:
type: all
drops:
- type: all
drops:
- id: bones
allotment_seed_drop_table:
roll: 128
drops:
- id: potato_seed
amount: 1-4
chance: 64
- id: onion_seed
amount: 1-3
chance: 32
- id: cabbage_seed
amount: 1-3
chance: 16
- id: tomato_seed
amount: 1-2
chance: 8
- id: sweetcorn_seed
amount: 1-2
chance: 4
- id: strawberry_seed
chance: 2
- id: watermelon_seed
chance: 1
allotment_seed_sub_table:
&allotment_seed_table
roll: 1008
drops:
- id: potato_seed
amount: 4
chance: 368
- id: onion_seed
amount: 4
chance: 276
- id: cabbage_seed
amount: 4
chance: 184
- id: tomato_seed
amount: 3
chance: 92
- id: sweetcorn_seed
amount: 3
chance: 46
- id: strawberry_seed
amount: 2
chance: 23
- id: watermelon_seed
amount: 2
chance: 11
hops_seed_sub_table:
&hops_seed_table
roll: 1000
drops:
- id: barley_seed
amount: 4
chance: 229
- id: hammerstone_seed
amount: 3
chance: 228
- id: asgarnian_seed
amount: 3
chance: 172
- id: jute_seed
amount: 2
chance: 171
- id: yanillian_seed
amount: 2
chance: 114
- id: krandorian_seed
amount: 2
chance: 57
- id: wildblood_seed
chance: 29
flower_seed_sub_table:
&flower_seed_table
roll: 1000
drops:
- id: marigold_seed
chance: 376
- id: nasturtium_seed
chance: 249
- id: rosemary_seed
chance: 161
- id: woad_seed
chance: 119
- id: limpwurt_seed
chance: 95
bush_seed_sub_table:
&bush_seed_table
roll: 1000
drops:
- id: redberry_seed
chance: 400
- id: cadavaberry_seed
chance: 280
- id: dwellberry_seed
chance: 200
- id: jangerberry_seed
chance: 80
- id: whiteberry_seed
chance: 29
- id: poison_ivy_seed
chance: 11
herb_seed_sub_table:
&herb_seed_table
roll: 1000
drops:
- id: guam_seed
chance: 320
- id: marrentill_seed
chance: 218
- id: tarromin_seed
chance: 149
- id: harralander_seed
chance: 101
- id: ranarr_seed
chance: 69
- id: toadflax_seed
chance: 47
- id: irit_seed
chance: 32
- id: avantoe_seed
chance: 22
- id: kwuarm_seed
chance: 15
- id: snapdragon_seed
chance: 10
- id: cadantine_seed
chance: 7
- id: lantadyme_seed
chance: 5
- id: dwarf_weed_seed
chance: 3
- id: torstol_seed
chance: 2
special_seed_sub_table:
&special_seed_table
roll: 1100
drops:
- id: bittercap_mushroom_spore
chance: 500
- id: belladonna_seed
chance: 300
- id: cactus_seed
chance: 200
general_seeds:
roll: 0
drops:
- <<: *allotment_seed_table
chance: 485
- <<: *hops_seed_table
chance: 728
- <<: *flower_seed_table
chance: 850
- <<: *bush_seed_table
chance: 947
- <<: *herb_seed_table
chance: 995
- <<: *special_seed_table
chance: 1000
rare_seed_drop_table:
roll: 238
drops:
- id: toadflax_seed
chance: 47
- id: irit_seed
chance: 32
- id: belladonna_seed
chance: 31
- id: avantoe_seed
chance: 22
- id: poison_ivy_seed
chance: 22
- id: cactus_seed
chance: 21
- id: kwuarm_seed
chance: 15
- id: snapdragon_seed
chance: 10
- id: cadantine_seed
chance: 7
- id: lantadyme_seed
chance: 5
- id: dwarf_weed_seed
chance: 3
- id: torstol_seed
chance: 2
tree_herb_seed_drop_table:
roll: 250
drops:
- id: ranarr_seed
chance: 30
- id: snapdragon_seed
chance: 28
- id: torstol_seed
chance: 22
- id: watermelon_seed
amount: 15
chance: 21
- id: willow_seed
chance: 20
- id: maple_seed
chance: 18
- id: yew_seed
chance: 18
- id: papaya_tree_seed
chance: 14
- id: magic_seed
chance: 11
- id: palm_tree_seed
chance: 10
- id: spirit_seed
chance: 4
uncommon_seed_drop_table:
roll: 1048
drops:
- id: limpwurt_seed
chance: 137
- id: strawberry_seed
chance: 131
- id: marrentill_seed
chance: 125
- id: jangerberry_seed
chance: 92
- id: tarromin_seed
chance: 85
- id: wildblood_seed
chance: 83
- id: watermelon_seed
chance: 63
- id: harralander_seed
chance: 56
- id: ranarr_seed
chance: 39
- id: whiteberry_seed
chance: 34
- id: bittercap_mushroom_spore
chance: 29
- id: toadflax_seed
chance: 27
- id: belladonna_seed
chance: 18
- id: irit_seed
chance: 18
- id: poison_ivy_seed
chance: 13
- id: avantoe_seed
chance: 12
- id: cactus_seed
chance: 12
- id: kwuarm_seed
chance: 9
- id: snapdragon_seed
chance: 5
- id: cadantine_seed
chance: 4
- id: lantadyme_seed
chance: 3
- id: dwarf_weed_seed
chance: 2
- id: torstol_seed
chance: 1
herb_drop_table:
roll: 128
drops:
- id: grimy_guam
chance: 32
- id: grimy_marrentill
chance: 24
- id: grimy_tarromin
chance: 18
- id: grimy_harralander
chance: 14
- id: grimy_ranarr
chance: 11
- id: grimy_irit
chance: 8
- id: grimy_avantoe
chance: 6
- id: grimy_kwuarm
chance: 5
- id: grimy_cadantine
chance: 4
- id: grimy_lantadyme
chance: 3
- id: grimy_dwarf_weed
chance: 3
useful_herb_drop_table:
roll: 16
drops:
- id: grimy_avantoe_noted
chance: 5
- id: grimy_snapdragon_noted
chance: 4
- id: grimy_ranarr_noted
chance: 4
- id: grimy_torstol_noted
chance: 3
runes_and_ammunition:
roll: 128
drops:
- id: nature_rune
amount: 67
chance: 3
- id: adamant_javelin
amount: 20
chance: 2
- id: death_rune
amount: 45
chance: 2
- id: law_rune
amount: 45
chance: 2
- id: rune_arrow
amount: 42
chance: 2
- id: steel_arrow
amount: 150
chance: 2
weapons_and_armour:
roll: 128
drops:
- id: rune_2h_sword
chance: 3
- id: rune_battleaxe
chance: 3
- id: rune_sq_shield
chance: 2
- id: dragon_med_helm
chance: 1
- id: rune_kiteshield
chance: 1
other:
roll: 128
drops:
- id: coins
amount: 3000
chance: 21
- id: loop_half_of_a_key
chance: 20
- id: tooth_half_of_a_key
chance: 20
- id: rune_bar
chance: 5
- id: dragonstone
chance: 2
- id: silver_ore_noted
amount: 100
chance: 2
mega_rare_drop_table:
&mega_rare_table
roll: 128
drops:
- id: nothing
amount: 0
chance: 113
- id: rune_spear
chance: 8
- id: shield_left_half
chance: 4
- id: dragon_spear
chance: 3
gem_drop_table:
&gem_table
roll: 128
drops:
- id: nothing
amount: 0
chance: 63
- id: uncut_sapphire
chance: 32
- id: uncut_emerald
chance: 16
- id: uncut_ruby
chance: 8
- id: chaos_talisman
chance: 3
- id: nature_talisman
chance: 3
- id: uncut_diamond
chance: 2
- id: rune_javelin
amount: 5
chance: 1
- id: loop_half_of_a_key
chance: 1
- id: tooth_half_of_a_key
chance: 1
- <<: *mega_rare_table
chance: 1
rare_drop_table:
&rare_table
roll: 128
drops:
- id: nature_rune
chance: 3
amount: 67
- id: adamant_javelin
chance: 2
amount: 20
- id: death_rune
chance: 2
amount: 45
- id: law_rune
chance: 2
amount: 45
- id: rune_arrow
chance: 2
amount: 42
- id: steel_arrow
chance: 2
amount: 150
- id: rune_2h_sword
chance: 3
- id: rune_battleaxe
chance: 3
- id: rune_sq_shield
chance: 2
- id: dragon_med_helm
- id: rune_kiteshield
- id: coins
chance: 21
amount: 3000
- id: loop_half_of_a_key
chance: 20
- id: tooth_half_of_a_key
chance: 20
- id: rune_bar
chance: 5
- id: dragonstone
chance: 2
- id: silver_ore_noted
chance: 2
amount: 100
- <<: *gem_table
chance: 20
talisman_drop_table:
roll: 70
drops:
- id: air_talisman
chance: 10
- id: body_talisman
chance: 10
- id: earth_talisman
chance: 10
- id: fire_talisman
chance: 10
- id: mind_talisman
chance: 10
- id: water_talisman
chance: 10
- id: cosmic_talisman
chance: 4
- id: chaos_talisman
chance: 3
- id: nature_talisman
chance: 3
cow_drop_table:
type: all
drops:
- type: all
drops:
- id: cowhide
- id: raw_beef
- id: bones
- roll: 128
drops:
- id: clue_scroll_easy
chance: 1
lacks: clue_scroll_easy*
chicken_drop_table:
type: all
drops:
- type: all
drops:
- id: raw_chicken
- id: bones
- roll: 128
drops:
- id: feather
amount: 5
chance: 64
- id: feather
amount: 15
chance: 32
- roll: 300
drops:
- id: clue_scroll_easy
chance: 1
lacks: clue_scroll_easy*
rat_drop_table:
type: all
drops:
- drops:
- id: bones
- roll: 4
drops:
- id: rat_bone
chance: 1
giant_rat_drop_table:
type: all
drops:
- drops:
- id: bones
- id: raw_rat_meat
- roll: 4
drops:
- id: giant_rat_bone
chance: 1
goblin_drop_table:
type: all
drops:
- drops:
- id: bones
- roll: 128
drops:
- id: bronze_sq_shield
chance: 3
- id: bronze_spear
chance: 4
- id: body_rune
amount: 7
chance: 5
- id: water_rune
amount: 6
chance: 6
- id: earth_rune
amount: 4
chance: 3
- id: bronze_bolts
amount: 8
chance: 3
- id: coins
amount: 5
chance: 28
- id: coins
amount: 9
chance: 3
- id: coins
amount: 15
chance: 3
- id: coins
amount: 20
chance: 2
- id: coins
amount: 1
chance: 1
- id: nothing
amount: 0
chance: 38
- id: hammer
amount: 1
chance: 15
- id: goblin_book
amount: 1
chance: 2
- id: goblin_mail
amount: 1
chance: 5
- id: chefs_hat
amount: 1
chance: 3
- id: beer
amount: 1
chance: 2
- id: brass_necklace
amount: 1
chance: 1
- id: air_talisman
amount: 1
chance: 1
king_black_dragon_drop_table:
type: all
drops:
- type: all
drops:
- id: dragon_bones
- id: black_dragonhide
amount: 2
- roll: 128
drops:
- id: rune_longsword
chance: 10
- id: adamant_platebody
chance: 9
- id: adamant_kiteshield
chance: 3
- id: dragon_med_helm
- id: fire_rune
chance: 5
amount: 300
- id: air_rune
amount: 300
chance: 10
- id: iron_arrow
amount: 690
chance: 10
- id: runite_bolts
amount: 10-20
chance: 10
- id: law_rune
amount: 30
chance: 5
- id: blood_rune
amount: 30
chance: 5
- id: yew_logs_noted
amount: 150
chance: 10
- id: adamant_bar
amount: 3
chance: 5
- id: rune_bar
chance: 3
- id: gold_ore_noted
amount: 100
chance: 2
- id: amulet_of_power
chance: 7
- id: dragon_arrowtips
amount: 5-14
chance: 5
- id: dragon_dart_tip
amount: 5-14
chance: 5
- id: rune_limbs
chance: 4
- id: shark
amount: 4
chance: 4
- <<: *rare_table
chance: 8
- roll: 5120
drops:
- id: black_dragon_tail_bone
chance: 80
- id: kbd_heads
chance: 40
- id: starved_ancient_effigy
chance: 20
- id: court_summons
chance: 20
- id: draconic_visage
- chance: 40
roll: 10
drops:
- id: clue_scroll_elite
chance: 4
lacks: clue_scroll_elite*
- type: all
drops:
- id: clue_scroll_hard
lacks: clue_scroll_hard*
haakon_the_champion_drop_table:
type: all
drops:
- type: all
drops:
- id: bones
- roll: 512
drops:
- id: coins
amount: 5-32
chance: 32
- id: cooked_meat
chance: 32
- id: necklace_mould
chance: 8
- id: bear_fur
chance: 8
- id: beer
chance: 8
- id: flier
chance: 8
- id: clue_scroll_easy
chance: 2
lacks: clue_scroll_easy*
- id: uncut_sapphire
chance: 2
- id: uncut_emerald
chance: 2
- id: uncut_ruby
chance: 2
- id: uncut_diamond
chance: 2
- id: uncut_dragonstone
chance: 2
- id: loop_half_of_a_key
dark_wizard_water_drop_table:
type: all
drops:
- type: all
drops:
- id: bones
- roll: 128
drops:
- id: staff
chance: 8
- id: black_wizard_hat
chance: 6
members: false
- id: black_wizard_hat
chance: 4
members: true
- id: black_wizard_robe_top
chance: 3
- id: earth_rune
chance: 4
amount: 36
- id: air_rune
chance: 3
amount: 10
- id: water_rune
chance: 3
amount: 10
- id: earth_rune
chance: 3
amount: 10
- id: fire_rune
chance: 3
amount: 10
- id: air_rune
chance: 2
amount: 18
- id: water_rune
chance: 2
amount: 18
- id: earth_rune
chance: 2
amount: 18
- id: fire_rune
chance: 2
amount: 18
- id: nature_rune
chance: 7
amount: 4
- id: chaos_rune
chance: 6
amount: 5
- id: mind_rune
chance: 3
amount: 10
- id: body_rune
chance: 3
amount: 10
- id: mind_rune
chance: 2
amount: 18
- id: body_rune
chance: 2
amount: 18
- id: blood_rune
chance: 2
amount: 2
members: true
- id: cosmic_rune
amount: 2
- id: law_rune
amount: 3
- id: coins
chance: 17
- id: coins
chance: 16
amount: 2
- id: coins
chance: 7
amount: 4
- id: coins
chance: 3
amount: 29
- id: coins
amount: 30
- id: water_talisman
- id: fire_talisman
- id: nothing
chance: 16
amount: 0
- roll: 50
drops:
- id: clue_scroll_easy
lacks: clue_scroll_easy*
dark_wizard_earth_drop_table:
type: all
drops:
- type: all
drops:
- id: bones
- roll: 128
drops:
- id: staff
chance: 4
- id: black_wizard_hat
chance: 6
members: false
- id: black_wizard_hat
chance: 4
members: true
- id: black_wizard_robe_top
chance: 3
- id: earth_rune
chance: 4
amount: 36
- id: air_rune
chance: 3
amount: 10
- id: water_rune
chance: 3
amount: 10
- id: earth_rune
chance: 3
amount: 10
- id: fire_rune
chance: 3
amount: 10
- id: air_rune
chance: 2
amount: 18
- id: water_rune
chance: 2
amount: 18
- id: earth_rune
chance: 2
amount: 18
- id: fire_rune
chance: 2
amount: 18
- id: nature_rune
chance: 7
amount: 4
- id: chaos_rune
chance: 6
amount: 5
- id: mind_rune
chance: 3
amount: 10
- id: body_rune
chance: 3
amount: 10
- id: mind_rune
chance: 2
amount: 18
- id: body_rune
chance: 2
amount: 18
- id: blood_rune
chance: 2
amount: 2
members: true
- id: cosmic_rune
amount: 2
- id: law_rune
amount: 3
- id: coins
chance: 17
- id: coins
chance: 16
amount: 2
- id: coins
chance: 7
amount: 4
- id: coins
chance: 3
amount: 29
- id: coins
amount: 30
- id: water_talisman
- id: fire_talisman
- id: nothing
chance: 16
amount: 0
- roll: 35
drops:
- id: clue_scroll_easy
lacks: clue_scroll_easy*
human_drop_table:
type: all
drops:
- type: all
drops:
- id: bones
giant_mole_drop_table:
type: all
drops:
- type: all
drops:
- id: big_bones
- id: mole_claw
- id: mole_skin
amount: 1-3
- roll: 6
drops:
- id: air_rune
amount: 105
chance: 1
- id: blood_rune
amount: 15
chance: 1
- roll: 11
drops:
- id: fire_rune
amount: 105
chance: 1
- roll: 12
drops:
- id: adamant_longsword
chance: 1
- id: iron_arrow
amount: 690
chance: 1
- id: yew_logs_noted
amount: 100
chance: 1
- roll: 14
drops:
- id: mithril_platebody
chance: 1
- roll: 18
drops:
- id: amulet_of_strength
chance: 1
- roll: 25
drops:
- id: law_rune
amount: 15
chance: 1
- roll: 32
drops:
- id: shark
amount: 4
chance: 1
- roll: 34
drops:
- id: nothing
chance: 1
- roll: 42
drops:
- id: mithril_bar
chance: 1
- id: death_rune
amount: 7
chance: 1
- roll: 64
drops:
- id: mithril_hatchet
chance: 1
- id: iron_ore_noted
amount: 100
chance: 1
- roll: 77
drops:
- id: uncut_sapphire
chance: 1
- roll: 128
drops:
- id: mithril_battleaxe
chance: 1
- id: rune_med_helm
chance: 1
- id: oyster_pearls
chance: 1
- roll: 154
drops:
- id: uncut_emerald
chance: 1
- roll: 189
drops:
- id: loop_half_of_a_key
chance: 1
- id: tooth_half_of_a_key
chance: 1
- roll: 195
drops:
- id: coins
amount: 3000
chance: 1
- roll: 309
drops:
- id: uncut_ruby
chance: 1
- roll: 819
drops:
- id: rune_bar
chance: 1
- roll: 824
drops:
- id: nature_talisman
chance: 1
- roll: 1237
drops:
- id: uncut_diamond
chance: 1
- roll: 1365
drops:
- id: nature_rune
amount: 67
chance: 1