-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.json
1132 lines (1132 loc) · 33.4 KB
/
items.json
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
[
{
"description": "Adventuring gear is a collection of useful mundane items such as chalk, poles, spikes, ropes, etc. When you rummage through your adventuring gear for some useful mundane item, you find what you need and mark off a use.",
"key": "adventuring_gear",
"name": "Adventuring Gear",
"tags": [
{
"uses": 5
},
{
"coins": 20
},
{
"weight": 1
}
]
},
{
"description": "When you drink antitoxin, you’re cured of one poison affecting you.",
"key": "antitoxin",
"name": "Antitoxin",
"tags": [
{
"coins": 10
},
{
"weight": 0
}
]
},
{
"description": "There are many swords in this world, but there is only one Argo-thaan. It is a blade of gold, silver and light, revered as a holy relic by all orders and religions for whom Good rings true. Its touch is a blessing and to many, the sight of it brings tears of joy.\nIn the hands of a paladin, it strikes true and strong. A paladin wielding it increases their damage die to d12 and has access to every paladin move. As well, Argo-thaan can harm any creature of Evil, regardless of any defenses it may have. No Evil creature may touch it without suffering agony. In the hands of any non-paladin, it is merely a sword, heavier and more cumbersome than most—it gains the awkward tag.\nArgo-thaan, while not intelligent, will forever be drawn to a cause of true Good, like iron to a magnet.",
"key": "argo_thaan_holy_avenger",
"name": "Argo-Thaan, Holy Avenger",
"tags": [
"close",
{
"weight": "2"
}
]
},
{
"description": "Crafted in darkness by a blind fletcher, these arrows can find their target in even the deepest darkness. An archer may fire them blind, in the dark, with his eyes bound by heavy cloth and still be assured of a clean shot. If the light of the sun ever touches the arrows, however, they come apart like shadows and dust.",
"key": "arrows_of_acheron",
"name": "Arrows of Acheron",
"tags": [
{
"ammo": "1"
},
{
"weight": "1"
}
]
},
{
"key": "axe",
"name": "Axe",
"tags": [
"close",
{
"coins": 8
},
{
"weight": 1
}
]
},
{
"description": "It is crafted of shining steel, glowing with a golden light and imbued with mythical powers of authority. When you bear the axe, you become a beacon of inspiration to all you lead. Any hirelings in your employ have +1 Loyalty, no matter the quality of your leadership.",
"key": "axe_of_the_conqueror_king",
"name": "Axe of the Conqueror-King",
"tags": [
"close",
{
"weight": "1"
}
]
},
{
"description": "When your bag of books contains just the right book for the subject you’re spouting lore on, consult the book, mark off a use, and take +1 to your roll.",
"key": "bag_of_books",
"name": "Bag of Books",
"plural_name": "bags of books",
"tags": [
{
"uses": 5
},
{
"coins": 10
},
{
"weight": 2
}
]
},
{
"description": "A bag of holding is larger on the inside than the outside, it can contain an infinite number of items, and its weight never increases. When you try to retrieve an item from a bag of holding, roll+WIS. ✴On a 10+, it’s right there. ✴On a 7-9, choose one:\nYou get the exact item, but it takes a while\n\nYou get a similar item of the GM’s choice, but it only takes a moment\nNo matter how many items it contains, a bag of holding is always 0 weight.",
"key": "bag_of_holding",
"name": "Bag of Holding",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "When you have a few minutes to bandage someone else’s wounds, heal them of 4 damage and expend a use.",
"key": "bandages",
"name": "Bandages",
"tags": [
{
"uses": 3
},
"slow",
{
"coins": 5
},
{
"weight": 0
}
]
},
{
"description": "A nail or spike, twisted and forever cold, said to have been pried from the Gates of Death. When hammered into a corpse, it disappears and ensures that corpse will never be risen again—no magic short of that of Death himself can reignite the flame of life (natural or otherwise) in the body.",
"key": "barb_of_the_black_gate",
"name": "Barb of the Black Gate",
"tags": [
{
"weight": "0"
}
]
},
{
"key": "battle_axe",
"name": "Battle Axe",
"tags": [
"close",
{
"damage": "+1"
},
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"description": "Until cured, whenever the afflicted rolls damage, they roll an additional d4 and subtract that result from their normal damage.",
"key": "bloodweed",
"name": "Bloodweed",
"tags": [
"dangerous",
"touch",
{
"coins": 12
},
{
"weight": 0
}
]
},
{
"key": "bundle_of_arrows",
"name": "Bundle of Arrows",
"tags": [
{
"ammo": 3
},
{
"coins": 1
},
{
"weight": 1
}
]
},
{
"description": "A brass naval horn, curled and ornate, carved with symbols of the gods of Plenty. When blown, in addition to sound, the horn spills forth food. Enough to feed a meal to everyone who hears its sound.",
"key": "captain_blighs_cornucopia",
"name": "Captain Bligh’s Cornucopia",
"tags": [
{
"weight": "1"
}
]
},
{
"key": "chainmail",
"name": "Chainmail",
"tags": [
{
"armor": 1
},
"worn",
{
"coins": 10
},
{
"weight": 1
}
]
},
{
"description": "A cape of rich black velvet outside and sparkling with tiny points of light within, this cloak bends fate, time and reality around it to protect the wearer, who may Defy Danger with whatever stat they like. To do this, the wearer invokes the cloak’s magic and their player describes how the cloak helps “break the rules.” They can deflect a fireball with CHA by convincing it they deserve to live or elude a fall by applying the mighty logic of their INT to prove the fall won’t hurt. The cloak makes it so. It can be used once for each stat before losing its magic.",
"key": "cloak_of_silent_stars",
"name": "Cloak of Silent Stars",
"tags": [
{
"weight": "1"
}
]
},
{
"key": "club",
"name": "Club",
"tags": [
"close",
{
"coins": 1
},
{
"weight": 1
}
]
},
{
"description": "What appears, at a glance, to be a simple copper coin is, in truth, an enchanted coin. Its bearer can, at any time, redeem it to know immediately one fact that has been forgotten. The coin vanishes thereafter. It does not have to be a thing forgotten by the bearer, but it cannot be “known.” Interpretation of this stipulation is left to the gods. If the coin is unsuccessful, it will still paint an image in the mind’s eye of someone or something that does remember what was sought.",
"key": "coin_of_remembering",
"name": "Coin of Remembering",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "A common scroll has a spell inscribed on it. The spell must be castable by you or on your class’s spell list for you to be able to cast it. When you cast a spell from a scroll, the spell takes effect, simple as that.",
"key": "common_scroll",
"name": "Common Scroll",
"tags": [
{
"use": "1"
},
{
"weight": "0"
}
]
},
{
"key": "crossbow",
"name": "Crossbow",
"tags": [
"near",
{
"damage": "+1"
},
"reload",
{
"coins": 35
},
{
"weight": 3
}
]
},
{
"key": "dagger",
"name": "Dagger",
"tags": [
"hand",
{
"coins": 2
},
{
"weight": 1
}
]
},
{
"description": "A holy oil, created in limited supply by a mute sect of mountain monks whose order protected humanity from the powers of the Demon Pits in ancient epochs. Only a few jars remain. When applied to any weapon and used to strike a denizen of any outer plane, the oil undoes the magic that binds that creature. In some cases, this will return it to its home. In others, it merely undoes any magic controlling it. The oil stays on the weapon for a few hours before it dries and flakes away.\nIf applied to the edges of a doorway or drawn in a circle, the oil will repel creatures whose home is any of the outer planes. They cannot pass across it. The oil lasts for one full day before it soaks in or evaporates.",
"key": "devilsbane_oil",
"name": "Devilsbane Oil",
"tags": [
{
"use": "1"
},
{
"weight": "0"
}
]
},
{
"key": "dueling_rapier",
"name": "Dueling Rapier",
"tags": [
"close",
{
"piercing": 1
},
"precise",
{
"coins": 50
},
{
"weight": 2
}
]
},
{
"description": "Not tasty, but not bad either.",
"key": "dungeon_rations",
"name": "dungeon rations",
"plural_name": "dungeon rations",
"tags": [
"ration",
{
"uses": 5
},
{
"coins": 3
},
{
"weight": 1
}
]
},
{
"description": "Dwarves say it tastes like home. Everyone else says it tastes like home, if home is a hog farm, and on fire.",
"key": "dwarven_hardtack",
"name": "Dwarven Hardtack",
"plural_name": "dwarven hardtack",
"tags": [
"requires Dwarf",
"ration",
{
"uses": 7
},
{
"coins": 3
},
{
"weight": 1
}
]
},
{
"description": "A yellowish candle. Seems never to burn out and the light it casts is strange and weak. Its wax is always cool, too. Drip the wax into the ear of a target and gain 3 hold. Spend that hold and ask your target a question. They find themselves telling you the whole truth, despite themselves. The consequences, after the fact? Those are up to you to deal with.",
"key": "earworm_wax",
"name": "Earworm Wax",
"tags": [
{
"use": "1"
},
{
"weight": "0"
}
]
},
{
"key": "elven_arrows",
"name": "Elven Arrows",
"tags": [
{
"ammo": 4
},
{
"coins": 20
},
{
"weight": 1
}
]
},
{
"description": "Only the greatest of elf-friends are treated to this rare delicacy.",
"key": "elven_bread",
"name": "Elven Bread",
"tags": [
"ration",
{
"uses": 7
},
{
"coins": 10
},
{
"weight": 1
}
]
},
{
"description": "Swirling clouds fill this smoky orb and those in its presence often hear strange whispers. In ancient times, it was part of a network of such stones, used to communicate and surveil across great distances. When you gaze into the stone, name a location and roll+WIS. ✴On a 10+, you see a clear vision of the location and can maintain it as long as you concentrate on the orb. ✴On a 7–9, you still see the vision, but you draw the attention of some other thing (an angel, a demon, or the holder of another Farsight stone) that uses the stone to surveil you, as well.",
"key": "farsight_stone",
"name": "Farsight Stone",
"tags": [
{
"weight": "1"
}
]
},
{
"key": "fine_bow",
"name": "Fine Bow",
"tags": [
"near",
"far",
{
"coins": 60
},
{
"weight": 2
}
]
},
{
"key": "flail",
"name": "Flail",
"tags": [
"close",
{
"damage": "+1"
},
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"description": "A simple thing, but useful when you need a breath of fresh air. The flask appears empty but cannot be filled, anything added to it simply spills out. This is because the flask is eternally full of air. If placed underwater, it will bubble forever. If pressed to the mouth, one can breathe normally—smoke is no concern, for example. I’m sure you’ll find all sorts of unusual uses for it.",
"key": "flask_of_breath",
"name": "Flask of Breath",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "Who hasn’t always wanted to soar the pretty blue sky? In an attempt to grant the wishes of land-bound folk, these great magical wings were created. Known by many names and crafted by as many mages, they commonly take the shape of the wings of whatever local birds hold affection. Worn by means of a harness or, in some dire cases, a surgical procedure.\nWhen you take to the air with these magical wings, roll+DEX. ✴On a 10+, your flight is controlled and you may stay aloft as long as you like. ✴On a 7–9, you make it aloft but your flight is short or erratic and unpredictable, your choice. ✴On a 6-, you make it aloft, but the coming-down part and everything between is up to the GM.",
"key": "folly_held_aloft_the_wax_wings_a_huge_mistake",
"name": "Folly Held Aloft, The Wax Wings, A Huge Mistake",
"tags": [
{
"weight": "1"
}
]
},
{
"description": "The target treats the next creature they see as a trusted ally, until proved otherwise.",
"key": "goldenroot",
"name": "Goldenroot",
"tags": [
"dangerous",
"applied",
{
"coins": 20
},
{
"weight": 0
}
]
},
{
"key": "halberd",
"name": "Halberd",
"tags": [
"reach",
{
"damage": "+1"
},
"two_handed",
{
"coins": 9
},
{
"weight": 2
}
]
},
{
"description": "When you share halfling pipeleaf with someone, expend two uses and take +1 forward to Parley with them.",
"key": "halfling_pipeleaf",
"name": "Halfling Pipeleaf",
"tags": [
{
"uses": 6
},
{
"coins": 5
},
{
"weight": 0
}
]
},
{
"description": "When you drink an entire healing potion, heal yourself of 10 damage or remove one debility, your choice.",
"key": "healing_potion",
"name": "Healing Potion",
"tags": [
{
"coins": 50
},
{
"weight": 0
}
]
},
{
"key": "hide_armor",
"name": "Hide Armor",
"tags": [
{
"armor": 1
},
{
"weight": 1
}
]
},
{
"key": "hunters_bow",
"name": "hunter's bow",
"tags": [
"near",
"far",
{
"weight": 1
}
]
},
{
"description": "A funny metal rod with a button on it. Press the button and the rod just sticks. It freezes in place—in midair, standing up or lying down. It can’t be moved. Pull it, push it, try as hard as you like, the rod stays. Maybe it can be destroyed, maybe it can’t. Push the button again and it’s free—take it along with you. Might be useful to have such a stubborn thing along. ",
"key": "immovable_rod",
"name": "Immovable Rod",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "This book contains an infinite number of pages in a finite space. With no limit to the pages, everything that ever was, is, or will be is contained somewhere in the book. Luckily the index is great.\nWhen you Spout Lore while consulting the book you gain an extra clause: On a 12+, the GM will give a solution to a problem or situation you’re in.",
"key": "infinite_book",
"name": "Infinite Book",
"tags": [
{
"weight": "1"
}
]
},
{
"description": "Rough-hewn glass in wooden frames. Dinged up and barely held together, they somehow allow the wearer to see much more than their naked eyes might. When you Discern Realities wearing these gifted lenses, you get to bend the rules a little. On a roll of 10+, ask any three questions you like. They don’t have to be on the list. As long as sight could give you answers, the GM will tell you what you want to know.",
"key": "inspectacles",
"name": "Inspectacles",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "When you open a keg of dwarven stout and let everyone drink freely, take +1 to your Carouse roll. If you drink a whole keg yourself, you are very, very drunk.",
"key": "keg_of_dwarven_stout",
"name": "Keg of Dwarven Stout",
"tags": [
{
"coins": 10
},
{
"weight": 4
}
]
},
{
"description": "Taking the form of a single lock of bright red hair, bound in a black ribbon and immune to the ravages of time, the Lamented Memento bears a grim enchantment. In it are the memories and emotions of a girl who dealt with Death at the Black Gates so many times that, in the end, they fell in love and she left the world to be with him for a time. Her memory protects the wielder. If he finds himself at the Gates, the Memento can be traded for an automatic result of 10+ on the Last Breath move.",
"key": "lamented_memento",
"name": "Lamented Memento",
"tags": [
{
"weight": "0"
}
]
},
{
"key": "leather_armor",
"name": "Leather Armor",
"tags": [
{
"armor": 1
},
"worn",
{
"coins": 10
},
{
"weight": 1
}
]
},
{
"description": "What mixed-up dummy made this? Shields are meant to repel metal, not draw it in! Emblazoned with a lion rampant, the Lodestone Shield has the power to pull blades and arrows to it. When you Defend against enemies using metal weapons you can spend one hold, per target, to disarm them. Also, sometimes you’ll find a handful of loose change stuck to it.",
"key": "lodestone_shield",
"name": "Lodestone Shield",
"tags": [
{
"armor": "+1"
},
{
"weight": "1"
}
]
},
{
"key": "long_sword",
"name": "Long Sword",
"tags": [
"close",
{
"damage": "+1"
},
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"key": "long_sword_battle_axe_flail",
"name": "Long Sword, Battle Axe, Flail",
"tags": [
"close",
{
"damage": "+1"
},
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"key": "mace",
"name": "Mace",
"tags": [
"close",
{
"coins": 8
},
{
"weight": 1
}
]
},
{
"description": "An ancient order of brave rangers once patrolled the land, protecting villages and warning kings and queens of encroaching danger. They’re long gone, now, but their legacy remains. This map, when marked with the blood of a group of people, will always show their location—so long as they remain within the bounds of the map. ",
"key": "map_of_the_last_patrol",
"name": "Map of the Last Patrol",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "An old skull, missing its jaw and very much worse-for-wear. The skull remembers the folly of its former owner—a man with more honor than sense. Once per night, the owner of the skull can ask “Who has it in for me?” and the skull will give up one name in a sad, lonely voice. If the owner of the skull is ever killed, it disappears surreptitiously. No one knows where it might turn up next.",
"key": "neds_head",
"name": "Ned’s Head",
"tags": [
{
"weight": "1"
}
]
},
{
"description": "This key unlocks any door for you, provided you don’t belong where you intend to go. So long as you do nothing that would alert another to your presence (remaining unheard, unseen and unnoticed) and takes nothing more than your memories out with you, the key’s magic will prevent your intrusion from ever being discovered. It’s like you were never there at all.",
"key": "nightsiders_key",
"name": "Nightsider’s Key",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "The target falls into a light sleep.",
"key": "oil_of_tagit",
"name": "Oil of Tagit",
"tags": [
"dangerous",
"applied",
{
"coins": 15
},
{
"weight": 0
}
]
},
{
"description": "Ostentatious to say the least.",
"key": "personal_feast",
"name": "Personal Feast",
"tags": [
"ration",
{
"uses": 1
},
{
"coins": 10
},
{
"weight": 1
}
]
},
{
"key": "plate",
"name": "Plate",
"tags": [
{
"armor": 3
},
"worn",
"clumsy",
{
"coins": 350
},
{
"weight": 4
}
]
},
{
"description": "When you carefully treat someone’s wounds with poultices and herbs, heal them of 7 damage and expend a use.",
"key": "poultices_and_herbs",
"name": "Poultices and Herbs",
"tags": [
{
"uses": 2
},
"slow",
{
"coins": 10
},
{
"weight": 1
}
]
},
{
"key": "ragged_bow",
"name": "Ragged Bow",
"tags": [
"near",
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"key": "rapier",
"name": "Rapier",
"tags": [
"close",
"precise",
{
"coins": 25
},
{
"weight": 1
}
]
},
{
"description": "The sacred herbs, collected and prepared by an order of lost wizard-monks, can be found in bundles with two or three uses to them. Kept dry, they last indefinitely. When smoked in a pipe or consumed in an incense burner and the thick, blue smoke inhaled, these herbs will grant you strange visions of faraway places and distant times. If you focus your will on a particular person, place or thing, the herbs will respond: roll+WIS. ✴On a 10+, the vision is clear and useful—yielding some valid information. ✴On a 7–9, the vision is about the thing desired, but is unclear, fraught with metaphor or somehow difficult to understand. ✴On a miss, the GM will ask you, “What is it you fear most?” You must answer honestly, of course.",
"key": "sacred_herbs",
"name": "Sacred Herbs",
"tags": [
{
"weight": "0"
}
]
},
{
"key": "scale_armor",
"name": "Scale Armor",
"tags": [
{
"armor": 2
},
"worn",
{
"weight": 3
}
]
},
{
"key": "scale_mail",
"name": "Scale Mail",
"tags": [
{
"armor": 2
},
"worn",
"clumsy",
{
"coins": 50
},
{
"weight": 3
}
]
},
{
"description": "Anyone dealing damage against the target rolls twice and takes the better result.",
"key": "serpents_tears",
"name": "Serpent's Tears",
"tags": [
"dangerous",
"touch",
{
"coins": 10
},
{
"weight": 0
}
]
},
{
"key": "shield",
"name": "Shield",
"tags": [
{
"armor": "+1"
},
{
"coins": 15
},
{
"weight": 2
}
]
},
{
"key": "shillelagh",
"name": "Shillelagh",
"tags": [
"close",
{
"coins": 1
},
{
"weight": 1
}
]
},
{
"key": "shiv",
"name": "Shiv",
"tags": [
"hand",
{
"coins": 2
},
{
"weight": 1
}
]
},
{
"key": "short_sword",
"name": "Short Sword",
"tags": [
"close",
{
"coins": 8
},
{
"weight": 1
}
]
},
{
"key": "spear",
"name": "Spear",
"tags": [
"reach",
"thrown",
"near",
{
"coins": 5
},
{
"weight": 1
}
]
},
{
"key": "staff",
"name": "Staff",
"tags": [
"close",
"two_handed",
{
"coins": 1
},
{
"weight": 1
}
]
},
{
"description": "Cloudy red gemstones the size of a thumbnail, the Tears of Annalise are always found in pairs. When swallowed by two different people, they bind the swallowers together—when either feels strong emotions (particularly sadness, loss, fear or desire) the other feels it, as well. The effects last until one spills the blood of the other.",
"key": "tears_of_annalise",
"name": "Tears of Annalise",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "James Ninefingers, eccentric genius mage, created these room-sized magical apparati. A stone chamber etched with runes and scribblings, glowing with a faint blue light. When you enter and say aloud the name of a location, roll+INT. ✴On a 10+, you arrive exactly where you’d intended. ✴On a 7–9, the GM chooses a safe location nearby. ✴On a miss, you end up someplace. Maybe it’s nearby? It’s definitely not safe. Strange things sometimes happen to those who bend time and space with these devices.",
"key": "teleportation_room",
"name": "Teleportation Room",
"tags": [
"slow"
]
},
{
"description": "An ancient wooden wheel, as might appear on a war-wagon, banded with steel. On a glance, it appears to be nothing special—many spokes are shattered and the thing seems mundane. Under the scrutiny of magic or the eyes of an expert, its true nature is revealed: the Burning Wheel is a gift from the God of Fire and burns with his authority.\nWhen you hold The Burning Wheel and speak a god’s name, roll+CON. ✴On a 7+, the god you name takes notice and grants you an audience. An audience with a god is not without a price: on a 10+, you choose one of your stats and reduce it to the next lowest modifier (for example, a 14 is +1, so it would be reduced to 12, a +0). ✴On a 7–9, the GM chooses which stat to reduce.\nOnce used, the Burning Wheel ignites and burns with brilliant light. It does not confer any protection from those flames, nor does it provide any bonus to swimming.",
"key": "the_burning_wheel",
"name": "The Burning Wheel",
"tags": [
{
"weight": "2"
}
]
},
{
"description": "None know from whence this spear of twisted white coral comes. Those who bear it too long find their minds full of alien dreams and begin to hear the strange thoughts of the Others. None are impervious. Used against any “natural” target (men, goblins, owlbears and the like) the Spire acts as a mere mortal spear. Its true purpose is to do harm to those things whose strange natures protect them against mundane weapons. Used thus, the Spire can wound foes otherwise invulnerable to harm. The wielder will recognize these twisted foes on sight—the Spire knows its own.",
"key": "the_carcosan_spire",
"name": "The Carcosan Spire",
"tags": [
"reach",
"thrown",
{
"weight": "3"
}
]
},
{
"description": "A seemingly empty bottle. Once unstoppered, the whispers of another plane resound once and fall silent. In the silence, the bearer learns in his soul the coming of one great danger and how he can avoid it. At any point after you use the Echo, you can ignore the results of any single die roll—yours or another player’s—and roll again. Once opened, the Echo is released and gone forever.",
"key": "the_echo",
"name": "The Echo",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "An archmage, old and too frail to leave his tower, crafted this intricate and fragile device of glass and gold to examine the histories and relics he so loved. Looking at an object through the lens reveals visions of who made it and where it came from.",
"key": "the_epoch_lens",
"name": "The Epoch Lens",
"tags": [
{
"weight": "1"
}
]
},
{
"description": "A thick tome, said to be penned in the blood of poor fools and robber-barons by some demon prince possessed of dark humor, this tome details tales and stories of those whose ambition overwhelmed their reason. Reading from this tome teaches one the value of clear-headedness but leaves a sense of dread behind. When you read from the Fiasco Codex, Roll+WIS. ✴On a 10+, ask two of the questions below. ✴On a 7–9, ask one.\nWhat is my greatest opportunity, right now?\n\nWho can I betray to gain an advantage?\n\nWho is an ally I should not trust?\nThe codex gives up its answers only once to each reader and takes 2 to 3 hours to read.",
"key": "the_fiasco_codex",
"name": "The Fiasco Codex",
"tags": [
{
"weight": "0"
}
]
},
{
"description": "A great, leathery tome worn shiny by the hands of a hundred great generals, this book is often passed from warrior to warrior, from father to son along the great battle lines that have divided Dungeon World’s past. Anyone reading it may, upon finishing for the first time, roll+INT. ✴On a 10+, hold 3. ✴On a 7-9, hold 1. You may spend your hold to advise a companion on some matter of strategic or tactical significance. This advice allows you to, at any time, regardless of distance, roll to aid them on any one roll. On a miss, the GM can hold 1 and spend it to apply -2 to any roll of yours or the poor sap who listened to your advice.",
"key": "the_kumeh_maneuver",
"name": "The Ku’meh Maneuver",
"tags": [
{