summaryrefslogtreecommitdiff
path: root/data/items.yml
blob: e52ae3990f51592953bf9665514078c85af1f9e5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
stone:
  name: "stone"
  description: "A chunk of gray stone."
  whatnot:
    tags:
      - "material"
crude_iron_ore:
  name: "crude iron ore"
  description: "A chunk of very impure iron ore."
  whatnot:
    tags:
      - "material"
iron_ore:
  name: "iron ore"
  description: "A chunk of unrefined iron ore."
  whatnot:
    tags:
      - "material"
pure_iron_ore:
  name: "pure iron ore"
  description: "A chunk of naturally rich and pure iron ore."
  whatnot:
    tags:
      - "material"
gaian_ore:
  name: "gaian ore"
  description: "A chunk of verdant, emerald-green ore."
  whatnot:
    tags:
      - "material"
paraiba_tourmaline:
  name: "paraiba tourmaline"
  description: "A rare and beautiful turquoise gem."
  whatnot:
    tags:
      - "material"
red_beryl:
  name: "red beryl"
  description: "A simple red gem."
  whatnot:
    tags:
      - "material"
tourmaline:
  name: "tourmaline"
  description: "A crude pink-blue gem."
  whatnot:
    tags:
      - "material"
yellow_beryl:
  name: "yellow beryl"
  description: "A rare and beautiful yellow gem."
  whatnot:
    tags:
      - "material"
crude_iron_ingot:
  name: "crude iron ingot"
  description: "Low quality iron ingot meant to be remelted for further use."
  whatnot:
    tags:
      - "material"
iron_ingot:
  name: "iron ingot"
  description: "A simple bar of iron."
  whatnot:
    tags:
      - "material"
pure_iron_ingot:
  name: "pure iron ingot"
  description: "A bar of highly-pure iron."
  whatnot:
    tags:
      - "material"
arcanite_ingot:
  name: "arcanite ingot"
  description: "A bar of arcanite. Tastes salty."
  whatnot:
    tags:
      - "material"
iron_dagger:
  name: "iron dagger"
  description: "A dagger made of iron."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "damage"
        gid: "pierce"
        min: 1
        max: 4
iron_short_sword:
  name: "iron short sword"
  description: "A short sword made of iron."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 3
    equip_effects:
      - type: "damage"
        gid: "slash"
        min: 1
        max: 3
      - type: "damage"
        gid: "pierce"
        min: 1
        max: 3
iron_longsword:
  name: "iron longsword"
  description: "A longsword made of iron."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 7
    equip_effects:
      - type: "damage"
        gid: "slash"
        min: 1
        max: 8
iron_buckler:
  name: "iron buckler"
  description: "A buckler made of iron."
  whatnot:
    equip_slots:
      - "offhand"
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 1
iron_shield:
  name: "iron shield"
  description: "A shield made of iron."
  whatnot:
    equip_slots:
      - "offhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 4
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 1
iron_cap:
  name: "iron cap"
  description: "A cap made of iron."
  whatnot:
    equip_slots:
      - "head"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 2
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 1
iron_sallet:
  name: "iron sallet"
  description: "A visored helmet made of iron."
  whatnot:
    equip_slots:
      - "head"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 6
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 1
iron_leggings:
  name: "iron leggings"
  description: "Leg armor made of iron."
  whatnot:
    equip_slots:
      - "legs"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 8
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 1
iron_chainmail:
  name: "iron chainmail"
  description: "Chainmail made of iron."
  whatnot:
    equip_slots:
      - "torso"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 5
    equip_effects:
      - type: "stat_change"
        gid: "slash_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "pierce_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 1
iron_platemail:
  name: "iron platemail"
  description: "Platemail made of iron."
  whatnot:
    equip_slots:
      - "torso"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 9
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 3
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "speed"
        modifier: -1
arcanite_dagger:
  name: "arcanite dagger"
  description: "A dagger made of arcanite."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 11
    equip_effects:
      - type: "damage"
        gid: "pierce"
        min: 2
        max: 6
arcanite_short_sword:
  name: "arcanite short sword"
  description: "A short sword made of iron."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 13
    equip_effects:
      - type: "damage"
        gid: "slash"
        min: 2
        max: 5
      - type: "damage"
        gid: "pierce"
        min: 2
        max: 5
arcanite_longsword:
  name: "arcanite longsword"
  description: "A longsword made of arcanite."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 17
    equip_effects:
      - type: "damage"
        gid: "slash"
        min: 3
        max: 12
arcanite_buckler:
  name: "arcanite buckler"
  description: "A buckler made of arcanite."
  whatnot:
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 11
    equip_slots:
      - "offhand"
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 3
arcanite_shield:
  name: "arcanite shield"
  description: "A shield made of arcanite."
  whatnot:
    equip_slots:
      - "offhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 14
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
arcanite_cap:
  name: "arcanite cap"
  description: "A cap made of arcanite."
  whatnot:
    equip_slots:
      - "head"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 12
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
arcanite_sallet:
  name: "arcanite sallet"
  description: "A visored helmet made of arcanite."
  whatnot:
    equip_slots:
      - "head"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 16
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
arcanite_leggings:
  name: "arcanite leggings"
  description: "Leg armor made of arcanite."
  whatnot:
    equip_slots:
      - "legs"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 18
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
arcanite_chainmail:
  name: "arcanite chainmail"
  description: "Chainmail made of arcanite."
  whatnot:
    equip_slots:
      - "torso"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 15
    equip_effects:
      - type: "stat_change"
        gid: "slash_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "pierce_resistance"
        modifier: 1
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
arcanite_platemail:
  name: "arcanite platemail"
  description: "Platemail made of arcanite."
  whatnot:
    equip_slots:
      - "torso"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 19
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "speed"
        modifier: -1
mending_salve:
  name: "mending salve"
  description: "A healing mixture capable of closing wounds."
  whatnot:
    use_effects:
      - type: "change_wounds"
        value: -1
        message: "You apply the salve to your skin."
wood:
  name: "wood"
  description: "A bit of wood."
  whatnot:
    tags:
      - "material"
vestige:
  name: "vestige"
  description: "Faintly glimmering remnants of magical events. Used as currency."
  whatnot:
    tags:
      - "currency"
arcane_dust:
  name: "arcane dust"
  description: "Little specs of magic, taken physical form."
  whatnot:
    tags:
      - "material"
burstshroom:
  name: "burstshroom"
  description: >-
    These mushrooms come in all sizes and are recognizable from the bright fluorescent colors and spherical cap. This
    mushroom is loved by few and hated by most, as should the unwary wanderer disturb it, the cap will burst, shooting
    highly irritating spores into the air. These spores cause extremely uncomfortable itching, but are not deadly
    unless an individual is allergic... or foolish enough to put one in their mouth.
  whatnot:
    tags:
      - "material"
discord_pome:
  name: "discord pome"
  description: >-
    This mushroom looks at first like an ordinary apple growing from a tree and grows in the same range of sizes as any
    other apple. Upon closer inspection one will notice that the skin of the "apple" is indigo and that the tree that
    it is growing on is not an apple tree. This mushroom grows on the branches of various non-apple trees and
    parasitically draws nutrients from its host tree, too many of these mushrooms will kill a tree if they are not
    removed. These mushrooms are very sweet tasting and are not poisonous, but give a nasty surprise as biting into the
    core will cause spores to burst out (similar to burstshrooms).
  whatnot:
    tags:
      - "material"
disturbing_doodad:
  name: "disturbing doodad"
  description: "..."
last_breath:
  name: "last breath"
  description: >-
    This is a small grey mushroom that is very common in forests and grasslands. Its unassuming looks are belied by its
    deadly nature; if consumed this mushroom triggers an allergic reaction that results in the victim's throat swelling
    shut and them choking to death, hence the name.
  whatnot:
    tags:
      - "material"
woodrun_bloom:
  name: "woodrun bloom"
  description: >-
    A yellow and red flowering clover.
  whatnot:
    tags:
      - "material"
claritas_flower:
  name: "claritas flower"
  description: "A pure white flower with a crystaline center."
  whatnot:
    tags:
      - "material"
silver_iris:
  name: "silver iris"
  description: "A beautiful plant flower with silvery flowers running up the length of its stem."
  whatnot:
    tags:
      - "material"
#nasca_beetle:
#  name: "nasca beetle"
#  description: "A firey orange insect with a huge shell."
aseas_leaf:
  name: "aseas leaf"
  description: >-
    A feather-light collection of green, clover-like leaves. Has healing properties, in the right hands.
  whatnot:
    tags:
      - "material"
shimmering_essence:
  name: "shimmering essence"
  description: "A luminescent tendril of energy."
  whatnot:
    tags:
      - "material"
shrine_hassock:
  name: "shrine hassock"
  description: >-
    This is a small white and black mushroom commonly found on old battlefields, feeding on the residual death left
    behind by such conflicts. Despite this grim association with death this mushroom can be a great medicine with
    skillful processing... or a powerful laxative with unskilled processing.
  whatnot:
    tags:
      - "material"
wisp_of_the_current:
  name: "wisp of the current"
  description: "A glowing ball of energy. It fills the hazy air around it with visions of a river."
  whatnot:
    tags:
      - "material"
manadross_tincture:
  name: "manadross tincture"
  description: "A clear, blue-tinted liquid containing a swirling, silver cloud."
  whatnot:
    tags:
      - "material"
lusterlight_tincture:
  name: "lusterlight tincture"
  description: "A radiant liquid, though it is truly transparent, it appears white -- an optical illusion of its glow."
  whatnot:
    tags:
      - "material"
waning_light:
  name: "waning light"
  description: "A fading, yellow light taken from the eye socket of a trodgeathomp."
  whatnot:
    tags:
      - "material"
rusted_lockbox:
  name: "rusted lockbox"
  description: "A small, rusty, metal box with a lock on it."
  whatnot:
    tags:
      - "treasure"
    use_effects:
      - type: "activity"
        gid: "synthsever_rusted_lockbox"
unlocked_rusted_lockbox:
  name: "unlocked rusted lockbox"
  description: "A small, rusty, metal box that has been unlocked."
  whatnot:
    tags:
      - "treasure"
    use_effects:
      - type: "activity"
        gid: "open_unlocked_rusted_lockbox"
warm_diadem:
  name: "warm diadem"
  description: "A thin, blood-colored circlet giving off a faint warmth."
  whatnot:
    equip_slots:
      - "head"
    equip_effects:
      - type: "stat_change"
        gid: "max_hp"
        modifier: 2
warped_eyestalk:
  name: "warped eyestalk"
  description: "An anomalous stalk from a stalk beast."
  whatnot:
    tags:
      - "material"
pit_leech_trophy:
  name: "pit leech trophy"
  description: "A trophy from a pit leech."
  whatnot:
    equip_slots:
      - "curio"
stalk_beast_trophy:
  name: "stalk beast trophy"
  description: "A trophy from a stalk beast."
  whatnot:
    equip_slots:
      - "curio"
grinpad_trophy:
  name: "grinpad trophy"
  description: "A trophy from a grinpad."
  whatnot:
    equip_slots:
      - "curio"
lesser_trodgeathomp_trophy:
  name: "lesser trodgeathomp trophy"
  description: "A trophy from a lesser trodgeathomp."
  whatnot:
    equip_slots:
      - "curio"
bollyrot_trophy:
  name: "bollyrot trophy"
  description: "A trophy from a bollyrot."
  whatnot:
    equip_slots:
      - "curio"
crypt_writhe_trophy:
  name: "crypt writhe trophy"
  description: "A trophy from a crypt writhe."
  whatnot:
    equip_slots:
      - "curio"
slate_ring:
  name: "slate ring"
  description: "A brittle ring made of slate. It's flat, inside and out."
  whatnot:
    equip_slots:
      - "left_ring"
      - "right_ring"
    equip_effects:
      - type: "stat_change"
        gid: "accuracy"
        modifier: 1
iron_ring:
  name: "iron ring"
  description: "A strong, iron ring."
  whatnot:
    equip_slots:
      - "left_ring"
      - "right_ring"
    equip_effects:
      - type: "stat_change"
        gid: "power"
        modifier: 1
quartz_ring:
  name: "quartz ring"
  description: "A small ring, strangely made entirely of quartz."
  whatnot:
    equip_slots:
      - "left_ring"
      - "right_ring"
    equip_effects:
      - type: "stat_change"
        gid: "evasion"
        modifier: 1
granite_ring:
  name: "granite ring"
  description: "A heavy ring made of granite."
  whatnot:
    equip_slots:
      - "left_ring"
      - "right_ring"
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 2
mudtub_seed:
  name: "mudtub seed"
  description: "The seed of a mudtub plant."
  whatnot:
    tags:
      - "seed"
    ripen_duration:
      base: 28800 # 8 hours
    harvest_activity: "harvest_mudtub"
midoras_seed:
  name: "midoras seed"
  description: "The seed of a midoras plant."
  whatnot:
    tags:
      - "seed"
    ripen_duration:
      base: 36000 # 10 hours
    harvest_activity: "harvest_midoras"
templis_seed:
  name: "templis seed"
  description: "The seed of a templis plant."
  whatnot:
    tags:
      - "seed"
    ripen_duration:
      base: 43200 # 12 hours
    harvest_activity: "harvest_templis"
enzon_seed:
  name: "enzon seed"
  description: "The seed of an enzon plant."
  whatnot:
    tags:
      - "seed"
    ripen_duration:
      base: 50400 # 14 hours
    harvest_activity: "harvest_enzon"
mudtub:
  name: "mudtub"
  description: "A bulbous, brown tuber that smells terrible and tastes like nothing."
  whatnot:
    tags:
      - "material"
midoras:
  name: "midoras"
  description: "A dark green vegetable with massive leaves many times the size of its stalk."
  whatnot:
    tags:
      - "material"
templis:
  name: "templis"
  description: "A plant consisting of thin stems from which dangle small, yellow, oblong peppers."
  whatnot:
    tags:
      - "material"
enzon:
  name: "enzon"
  description: >-
    A huge, black vegetable that grows from a vine. Looks like a giant seed, but its insides contain white, meaty
    flesh.
  whatnot:
    tags:
      - "material"
iron_lockpicks:
  name: "iron lockpicks"
  description: "Tools for getting into places other people -- or things -- don't want you to be."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
stone_pickaxe:
  name: "stone pickaxe"
  description: "An old pickaxe found in some ruins."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "planequarry_speed"
        modifier: 60
      - type: "stat_change"
        gid: "accuracy"
        modifier: 0
      - type: "stat_change"
        gid: "power"
        modifier: 1
stone_axe:
  name: "stone axe"
  description: "An old axe found in some ruins."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "wealdreap_speed"
        modifier: 60
      - type: "stat_change"
        gid: "accuracy"
        modifier: 0
      - type: "stat_change"
        gid: "power"
        modifier: 1
stone_spade:
  name: "stone spade"
  description: "An old spade found in some ruins."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "magiculture_speed"
        modifier: 60
      - type: "stat_change"
        gid: "accuracy"
        modifier: 0
      - type: "stat_change"
        gid: "power"
        modifier: 1
iron_pickaxe:
  name: "iron pickaxe"
  description: "A pickaxe made of iron."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "planequarry_speed"
        modifier: 80
      - type: "stat_change"
        gid: "accuracy"
        modifier: 1
      - type: "stat_change"
        gid: "power"
        modifier: 2
iron_axe:
  name: "iron axe"
  description: "An axe made of iron."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "wealdreap_speed"
        modifier: 80
      - type: "stat_change"
        gid: "accuracy"
        modifier: 1
      - type: "stat_change"
        gid: "power"
        modifier: 2
iron_spade:
  name: "iron spade"
  description: "A spade made of iron."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_effects:
      - type: "stat_change"
        gid: "magiculture_speed"
        modifier: 80
      - type: "stat_change"
        gid: "accuracy"
        modifier: 1
      - type: "stat_change"
        gid: "power"
        modifier: 2
arcanite_pickaxe:
  name: "arcanite pickaxe"
  description: "A pickaxe made of arcanite."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "planequarry"
        level: 10
    equip_effects:
      - type: "stat_change"
        gid: "planequarry_speed"
        modifier: 100
      - type: "stat_change"
        gid: "accuracy"
        modifier: 2
      - type: "stat_change"
        gid: "power"
        modifier: 3
arcanite_axe:
  name: "arcanite axe"
  description: "An axe made of arcanite."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "wealdreap"
        level: 10
    equip_effects:
      - type: "stat_change"
        gid: "wealdreap_speed"
        modifier: 100
      - type: "stat_change"
        gid: "accuracy"
        modifier: 2
      - type: "stat_change"
        gid: "power"
        modifier: 3
arcanite_spade:
  name: "arcanite spade"
  description: "A spade made of arcanite."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "magiculture"
        level: 10
    equip_effects:
      - type: "stat_change"
        gid: "magiculture_speed"
        modifier: 100
      - type: "stat_change"
        gid: "accuracy"
        modifier: 2
      - type: "stat_change"
        gid: "power"
        modifier: 3
aethermesh:
  name: "aethermesh"
  description: "A tool for manatrawl."
  whatnot:
    tags:
      - "tool"
    equip_slots:
      - "mainhand"
quarrying_draught:
  name: "quarrying draught"
  description: "Increases the speed of planequarry for an hour."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "quarrying_draught"
        duration: 3600 # 1 Hour
        message: "The draught increases your planequarry speed."
reaping_draught:
  name: "reaping draught"
  description: "Increases the speed of wealdreap for an hour."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "reaping_draught"
        duration: 3600 # 1 Hour
        message: "The draught increases your wealdreap speed."
trawling_draught:
  name: "trawling draught"
  description: "Increases the speed of manatrawl for an hour."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "trawling_draught"
        duration: 3600 # 1 Hour
        message: "The draught increases your manatrawl speed."
bluster_powder:
  name: "bluster powder"
  description: "A coarse powder that, when inhaled, causes severe pain and rage."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "bluster_powder"
        duration: 600 # 10 minutes
        message: "The powder enrages you, increasing your power and speed but decreasing your accuracy and evasion."
mudtub_mash:
  name: "mudtub mash"
  description: "It's mashed mudtubs. Doesn't get any simpler than that."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "mudtub_mash"
        duration: 7200 # 2 hours
        message: "The mash is bland -- uncomfortably tasteless. But it'll get you through."
midoras_spice:
  name: "midoras spice"
  description: "A savory spice made from the midoras plant."
  whatnot:
    tags:
      - "material"
midoras_mudtub_mash:
  name: "midoras mudtub mash"
  description: "Spiced mudtub mash. Tastes like spice."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "midoras_mudtub_mash"
        duration: 7200 # 2 hours
        message: "The mash fills your mouth with a biting tingle."
dusted_templis:
  name: "dusted templis"
  description: "The fruit of a templis plant, seasoned with a little something extra."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "dusted_templis"
        duration: 7200 # 2 hours
        message: "The dusted templis is strangely complex and delicious."
gem_dust:
  name: "gem dust"
  description: "Dust resulting from the crushing of a gem."
  whatnot:
    tags:
      - "material"
salt:
  name: "salt"
  description: "It's salt."
  whatnot:
    tags:
      - "material"
seas_tear:
  name: "sea's tear"
  description: "A dense crystal, similar in appearance to salt."
  whatnot:
    tags:
      - "material"
bollyrot_acerbic:
  name: "bollyrot acerbic"
  description: "Acid from the internals of a bollyrot."
  whatnot:
    tags:
      - "material"
black_gizzard:
  name: "black gizzard"
  description: "An organ from a crypt writhe."
  whatnot:
    tags:
      - "material"
onus_of_vision:
  name: "onus of vision"
  description: "A heavy chain necklace bearing a glowing yellow beryl."
  whatnot:
    equip_slots:
      - "neck"
    equip_effects:
      - type: "stat_change"
        gid: "accuracy"
        modifier: 2
      - type: "stat_change"
        gid: "evasion"
        modifier: 2
      - type: "stat_change"
        gid: "speed"
        modifier: -2
balgoloth_skull:
  name: "balgoloth skull"
  description: "The enormous skull of a balgoloth. About as big as your entire upper body."
  whatnot:
    tags:
      - "material"
balgoloth_plate:
  name: "balgoloth plate"
  description: "Horrific armor made from a balgoloth skull."
  whatnot:
    equip_slots:
      - "torso"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 15
    equip_effects:
      - type: "stat_change"
        gid: "physical_resistance"
        modifier: 4
      - type: "stat_change"
        gid: "energy_resistance"
        modifier: 2
      - type: "stat_change"
        gid: "speed"
        modifier: -1
      - type: "stat_change"
        gid: "power"
        modifier: 2
woodflesh_potion:
  name: "woodflesh potion"
  description: "A magic potion that causes your skin to toughen and better resist physical damage."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "woodflesh"
        duration: 600 # 10 minutes
        message: "Your skin toughens."
lightblood_potion:
  name: "lightblood potion"
  description: "A magic potion that instills an inner radiance, increasing your resistance to necrotic damage."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "lightblood"
        duration: 600 # 10 minutes
        message: "You feel an inner glow."
mercuria_potion:
  name: "mercuria potion"
  description: "A magic potion that causes you to become slightly less tangible, increasing your evasion."
  whatnot:
    use_effects:
      - type: "condition"
        gid: "mercuria"
        duration: 600 # 10 minutes
        message: "You feel elusive."
balgoloth_claw:
  name: "balgoloth claw"
  description: "A claw from a balgoloth that's balanced enough to use as a weapon. It's two feet long."
  whatnot:
    equip_slots:
      - "mainhand"
    equip_requirements:
      - type: "skill"
        gid: "beastslay"
        level: 15
    equip_effects:
      - type: "damage"
        gid: "bash"
        min: 1
        max: 6
      - type: "damage"
        gid: "pierce"
        min: 1
        max: 6