-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
moves.json
2490 lines (2490 loc) · 165 KB
/
moves.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
[
{
"$id": "Starforged/Moves/Session",
"Name": "Session",
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 140
},
"Description": "The **session moves** fit into the flow of mechanics and fiction before, during, and after play. They provide methods for setting up content boundaries, adjusting content in the midst of play, and starting and ending your Starforged sessions. They are intended for solo, co-op, and guided modes.\n\nUnlike most other moves, these session moves function primarily from the perspective of the players instead of your characters. They are a tool to moderate and facilitate safe and enjoyable play.",
"Moves": [
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 141
},
"$id": "Starforged/Moves/Session/Begin_a_Session",
"Name": "Begin a Session",
"Optional": false,
"Category": "Starforged/Moves/Session",
"Display": { "Title": "Begin a Session", "Color": "#00B3C8" },
"Trigger": {
"$id": "Starforged/Moves/Session/Begin_a_Session/Trigger",
"Text": "When you begin a significant session or chapter of play..."
},
"Text": "**When you begin a significant session or chapter of play**, do all of the following.\n\n * Identify or adjust flagged content and [Set a Flag](Starforged/Moves/Session/Set_a_Flag).\n * Review or recap what happened last session.\n * Set the scene by envisioning your character’s current situation and intent.\n\nIn addition, you may spotlight a new danger, opportunity, or insight. This can include a scene hidden from your character’s perspective. If you do, envision a brief vignette (you may roll or choose on the table below for inspiration). Then, all players take +1 momentum as you return to play from the viewpoint of your characters.\n\nRoll | Result\n-------|-----------------------------------------------------------------------\n1-10 | Flashback reveals an aspect of your background or nature\n11-20 | Flashback reveals an aspect of another character, place, or faction\n21-30 | Influential character or faction is introduced or given new detail\n31-40 | Seemingly unrelated situations are shown to be connected\n41-50 | External factors create new danger, urgency, or importance for a quest\n51-60 | Important character is put in danger or suffers a misadventure\n61-70 | Key location is made unsafe or becomes mired in conflict\n71-80 | Unexpected return of an enemy or threat\n81-90 | Peril lies ahead or lurks just out of view\n91-100 | Unforeseen aid is on the way or within reach",
"Oracles": ["Starforged/Oracles/Moves/Begin_a_Session"]
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 142
},
"$id": "Starforged/Moves/Session/Set_a_Flag",
"Name": "Set a Flag",
"Optional": false,
"Category": "Starforged/Moves/Session",
"Display": { "Title": "Set a Flag", "Color": "#00B3C8" },
"Trigger": {
"$id": "Starforged/Moves/Session/Set_a_Flag/Trigger",
"Text": "When you identify situations or topics you don’t want to include, don’t want to envision in detail, or otherwise may need mindfulness when approaching..."
},
"Text": "**When you identify situations or topics you don’t want to include, don’t want to envision in detail, or otherwise may need mindfulness when approaching**, that content is now flagged.\n\nWhen you encounter content flagged as something to approach mindfully, pause to consider or discuss its role in your story. When you come across flagged content that you would rather adjust or omit, [Change Your Fate](Starforged/Moves/Session/Change_Your_Fate)."
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 143
},
"$id": "Starforged/Moves/Session/Change_Your_Fate",
"Name": "Change Your Fate",
"Optional": false,
"Category": "Starforged/Moves/Session",
"Display": { "Title": "Change Your Fate", "Color": "#00B3C8" },
"Trigger": {
"$id": "Starforged/Moves/Session/Change_Your_Fate/Trigger",
"Text": "When you encounter flagged content, reject an oracle, resist a consequence, or otherwise need to shift your circumstances within the game for your comfort or enjoyment..."
},
"Text": "**When you encounter flagged content, reject an oracle, resist a consequence, or otherwise need to shift your circumstances within the game for your comfort or enjoyment**, pause and identify what needs to be changed. Choose as many options as appropriate.\n\n * **Reframe:** This didn’t happen the way you first thought. Envision the moment from another perspective in a way that diminishes or changes the content.\n * **Refocus:** This is not the most important thing happening right now. Envision how the spotlight shifts to change the focus.\n * **Replace:** This happens but with a small adjustment. Switch out an element and envision how this new detail changes the scenario.\n * **Redirect:** Adjust the trajectory to involve a helping hand. Envision how another person or party becomes involved.\n * **Reshape:** The situation changes completely. Envision what happened instead."
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 144
},
"$id": "Starforged/Moves/Session/Take_a_Break",
"Name": "Take a Break",
"Optional": false,
"Category": "Starforged/Moves/Session",
"Display": { "Title": "Take a Break", "Color": "#00B3C8" },
"Trigger": {
"$id": "Starforged/Moves/Session/Take_a_Break/Trigger",
"Text": "When you resolve a progress move or complete an intense scenario..."
},
"Text": "**When you resolve a progress move or complete an intense scenario**, take a few deep breaths and take some time to attend to the needs of your body. Reflect on what just happened and how it made you feel. Then, choose one.\n\n * Move on: Continue the session. You or an ally may add +1 on the next move (not a progress move), bolstered by your reflection and past experiences.\n * Stop for now: [End a Session](Starforged/Moves/Session/End_a_Session)."
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 145
},
"$id": "Starforged/Moves/Session/End_a_Session",
"Name": "End a Session",
"Optional": false,
"Category": "Starforged/Moves/Session",
"Display": { "Title": "End a Session", "Color": "#00B3C8" },
"Trigger": {
"$id": "Starforged/Moves/Session/End_a_Session/Trigger",
"Text": "When you end a significant session or chapter of play..."
},
"Text": "**When you end a significant session or chapter of play**, reflect on the events of the game and identify any missed opportunities to mark progress.\n\n * If you strengthened your ties to a connection, [Develop Your Relationship](Starforged/Moves/Connection/Develop_Your_Relationship).\n * If you moved forward on a quest, [Reach a Milestone](Starforged/Moves/Quest/Reach_a_Milestone).\n\nIf there is a quest, connection, or other situation you would like to give focus in your next session, make note of it and take +1 momentum."
}
],
"Display": { "Title": "Session Moves", "Color": "#00B3C8" },
"Optional": false
},
{
"$id": "Starforged/Moves/Adventure",
"Name": "Adventure",
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 146
},
"Description": "The **adventure moves** encompass broadly useful actions to overcome obstacles, reinforce your position, conduct investigations, influence others, and support your fellow protagonists. When you face a peril or try to gain leverage, and another move does not apply, you'll likely find your answer among these moves.",
"Moves": [
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 147
},
"$id": "Starforged/Moves/Adventure/Face_Danger",
"Name": "Face Danger",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Face Danger", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger/Options/1",
"Text": "With speed, mobility, or agility",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Edge"]
},
{
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger/Options/2",
"Text": "With resolve, command, or sociability",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
},
{
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger/Options/3",
"Text": "With strength, endurance, or aggression",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Iron"]
},
{
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger/Options/4",
"Text": "With deception, stealth, or trickery",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Shadow"]
},
{
"$id": "Starforged/Moves/Adventure/Face_Danger/Trigger/Options/5",
"Text": "With expertise, focus, or observation",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Wits"]
}
],
"Text": "When you attempt something risky or react to an imminent threat..."
},
"Text": "**When you attempt something risky or react to an imminent threat**, envision your action and roll. If you act...\n\n * With speed, mobility, or agility: Roll +edge\n * With resolve, command, or sociability: Roll +heart\n * With strength, endurance, or aggression: Roll +iron\n * With deception, stealth, or trickery: Roll +shadow\n * With expertise, focus, or observation: Roll +wits\n\nOn a **strong hit**, you are successful. Take +1 momentum.\n\nOn a **weak hit**, you succeed, but not without a cost. Make a suffer move (-1).\n\nOn a **miss**, you fail, or a momentary success is undermined by a dire turn of events. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Adventure/Face_Danger/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Adventure/Face_Danger/Outcomes/Strong_Hit",
"Text": "You are successful. Take +1 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Adventure/Face_Danger/Outcomes/Weak_Hit",
"Text": "You succeed, but not without a cost. Make a suffer move (-1)."
},
"Miss": {
"$id": "Starforged/Moves/Adventure/Face_Danger/Outcomes/Miss",
"Text": "You fail, or a momentary success is undermined by a dire turn of events. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 148
},
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage",
"Name": "Secure an Advantage",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Secure an Advantage", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger/Options/1",
"Text": "With speed, mobility, or agility",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Edge"]
},
{
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger/Options/2",
"Text": "With resolve, command, or sociability",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
},
{
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger/Options/3",
"Text": "With strength, endurance, aggression",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Iron"]
},
{
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger/Options/4",
"Text": "With deception, stealth, or trickery",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Shadow"]
},
{
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Trigger/Options/5",
"Text": "With expertise, focus, or observation",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Wits"]
}
],
"Text": "When you assess a situation, make preparations, or attempt to gain leverage..."
},
"Text": "**When you assess a situation, make preparations, or attempt to gain leverage**, envision your action and roll. If you act...\n\n * With speed, mobility, or agility: Roll +edge\n * With resolve, command, or sociability: Roll +heart\n * With strength, endurance, aggression: Roll +iron\n * With deception, stealth, or trickery: Roll +shadow\n * With expertise, focus, or observation: Roll +wits\n\nOn a **hit**, you succeed. On a **strong hit**, take both. On a **weak hit**, choose one.\n\n * Take +2 momentum\n * Add +1 on your next move (not a progress move)\n\nOn a **miss**, you fail or your assumptions betray you. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Outcomes/Strong_Hit",
"Text": "You succeed. Take +2 momentum. Add +1 on your next move (not a progress move)."
},
"Weak Hit": {
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Outcomes/Weak_Hit",
"Text": "You succeed. Choose one.\n\n * Take +2 momentum\n * Add +1 on your next move (not a progress move)"
},
"Miss": {
"$id": "Starforged/Moves/Adventure/Secure_an_Advantage/Outcomes/Miss",
"Text": "You fail or your assumptions betray you. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 149
},
"$id": "Starforged/Moves/Adventure/Gather_Information",
"Name": "Gather Information",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Gather Information", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Gather_Information/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Adventure/Gather_Information/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Wits"]
}
],
"Text": "When you search for clues, conduct an investigation, analyze evidence, or do research..."
},
"Text": "**When you search for clues, conduct an investigation, analyze evidence, or do research**, roll +wits.\n\nOn a **strong hit**, you discover something helpful and specific. The path you must follow or action you must take to make progress is made clear. Envision what you learn. Then, take +2 momentum.\n\nOn a **weak hit**, the information provides new insight, but also complicates your quest. Envision what you discover. Then, take +1 momentum.\n\nOn a **miss**, your investigation unearths a dire threat or reveals an unwelcome truth that undermines your quest. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Oracles": ["Starforged/Oracles/Misc/Story_Clue"],
"Outcomes": {
"$id": "Starforged/Moves/Adventure/Gather_Information/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Adventure/Gather_Information/Outcomes/Strong_Hit",
"Text": "You discover something helpful and specific. The path you must follow or action you must take to make progress is made clear. Envision what you learn. Then, take +2 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Adventure/Gather_Information/Outcomes/Weak_Hit",
"Text": "The information provides new insight, but also complicates your quest. Envision what you discover. Then, take +1 momentum."
},
"Miss": {
"$id": "Starforged/Moves/Adventure/Gather_Information/Outcomes/Miss",
"Text": "Your investigation unearths a dire threat or reveals an unwelcome truth that undermines your quest. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 150
},
"$id": "Starforged/Moves/Adventure/Compel",
"Name": "Compel",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Compel", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Compel/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Adventure/Compel/Trigger/Options/1",
"Text": "Charm, pacify, encourage, or barter",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
},
{
"$id": "Starforged/Moves/Adventure/Compel/Trigger/Options/2",
"Text": "Threaten or incite",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Iron"]
},
{
"$id": "Starforged/Moves/Adventure/Compel/Trigger/Options/3",
"Text": "Lie or swindle",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Shadow"]
}
],
"Text": "When you try to persuade someone or make them an offer..."
},
"Text": "**When you try to persuade someone or make them an offer**, envision your approach. If you...\n\n * Charm, pacify, encourage, or barter: Roll +heart\n * Threaten or incite: Roll +iron\n * Lie or swindle: Roll +shadow\n\nOn a **strong hit**, they'll do what you want or agree to your conditions. Take +1 momentum.\n\nOn a **weak hit**, as above, but their agreement comes with a demand or complication. Envision their counteroffer.\n\nOn a **miss**, they refuse or make a demand that costs you greatly. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Adventure/Compel/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Adventure/Compel/Outcomes/Strong_Hit",
"Text": "They'll do what you want or agree to your conditions. Take +1 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Adventure/Compel/Outcomes/Weak_Hit",
"Text": "They'll do what you want or agree to your conditions, but their agreement comes with a demand or complication. Envision their counteroffer and take +1 momentum."
},
"Miss": {
"$id": "Starforged/Moves/Adventure/Compel/Outcomes/Miss",
"Text": "They refuse or make a demand that costs you greatly. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 152
},
"$id": "Starforged/Moves/Adventure/Aid_Your_Ally",
"Name": "Aid Your Ally",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Aid Your Ally", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Aid_Your_Ally/Trigger",
"Text": "When you act in direct support of an ally..."
},
"Text": "**When you act in direct support of an ally**, envision how you aid them. Then, [Secure an Advantage](Starforged/Moves/Adventure/Secure_an_Advantage) or [Gain Ground](Starforged/Moves/Combat/Gain_Ground) to take action. If you score a hit, they (instead of you) take the benefits of the move.\n\nIf you [Gain Ground](Starforged/Moves/Combat/Gain_Ground) and score a strong hit, you are both in control. On a **weak hit**, your ally is in control but you are in a bad spot."
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 153
},
"$id": "Starforged/Moves/Adventure/Check_Your_Gear",
"Name": "Check Your Gear",
"Optional": false,
"Category": "Starforged/Moves/Adventure",
"Display": { "Title": "Check Your Gear", "Color": "#3C70A4" },
"Trigger": {
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Supply"]
}
],
"Text": "When you check to see if you have a specific helpful item or resource..."
},
"Text": "**When you check to see if you have a specific helpful item or resource**, roll +supply.\n\nOn a **strong hit**, you have it, and are ready to act. Take +1 momentum.\n\nOn a **weak hit**, you have it, but must choose one.\n\n * Your supply is diminished: [Sacrifice Resources](Starforged/Moves/Suffer/Sacrifice_Resources) (-1)\n * It's not quite right, and causes a complication or delay: [Lose Momentum](Starforged/Moves/Suffer/Lose_Momentum) (-2)\n\nOn a **miss**, you don't have it and the situation grows more perilous. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Outcomes/Strong_Hit",
"Text": "You have it, and are ready to act. Take +1 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Outcomes/Weak_Hit",
"Text": "You have it, but must choose one.\n\n * Your supply is diminished: [Sacrifice Resources](Starforged/Moves/Suffer/Sacrifice_Resources) (-1)\n * It's not quite right, and causes a complication or delay: [Lose Momentum](Starforged/Moves/Suffer/Lose_Momentum) (-2)"
},
"Miss": {
"$id": "Starforged/Moves/Adventure/Check_Your_Gear/Outcomes/Miss",
"Text": "You don't have it and the situation grows more perilous. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
}
],
"Display": { "Title": "Adventure Moves", "Color": "#3C70A4" },
"Optional": false
},
{
"$id": "Starforged/Moves/Quest",
"Name": "Quest",
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 154
},
"Description": "In the fiction of the *Starforged* setting, those who swear vows are the Ironsworn, and their promises are binding. Vows can be made to yourself, as a solemn representation of your personal commitment, or as a promise to someone else. Some vows might be made grudgingly—out of duty, necessity, or tradition. Others will be made with your whole heart.\n\nMake these **quest moves** when you swear vows, make progress on your quests, and resolve vows.",
"Moves": [
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 156
},
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow",
"Name": "Swear an Iron Vow",
"Optional": false,
"Category": "Starforged/Moves/Quest",
"Display": { "Title": "Swear an Iron Vow", "Color": "#2F9236" },
"Trigger": {
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
}
],
"Text": "When you swear upon iron to complete a quest..."
},
"Text": "**When you swear upon iron to complete a quest**, write your vow and give it a rank. Then, roll +heart. If you swear this vow to a connection, add +1; if you share a bond, add +2.\n\nOn a **strong hit**, you are emboldened and it is clear what you must do next. Take +2 momentum.\n\nOn a **weak hit**, you are determined but begin your quest with more questions than answers. Take +1 momentum, and envision what you do to find a path forward.\n\nOn a **miss**, you must overcome a significant obstacle before you begin your quest. Envision what stands in your way.",
"Outcomes": {
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Outcomes/Strong_Hit",
"Text": "You are emboldened and it is clear what you must do next. Take +2 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Outcomes/Weak_Hit",
"Text": "You are determined but begin your quest with more questions than answers. Take +1 momentum, and envision what you do to find a path forward."
},
"Miss": {
"$id": "Starforged/Moves/Quest/Swear_an_Iron_Vow/Outcomes/Miss",
"Text": "You must overcome a significant obstacle before you begin your quest. Envision what stands in your way."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 157
},
"$id": "Starforged/Moves/Quest/Reach_a_Milestone",
"Name": "Reach a Milestone",
"Optional": false,
"Category": "Starforged/Moves/Quest",
"Display": { "Title": "Reach a Milestone", "Color": "#2F9236" },
"Trigger": {
"$id": "Starforged/Moves/Quest/Reach_a_Milestone/Trigger",
"Text": "When you make headway in your quest..."
},
"Text": "**When you make headway in your quest** by doing any of the following...\n\n * overcoming a critical obstacle\n * gaining meaningful insight\n * completing a perilous expedition\n * acquiring a crucial item or resource\n * earning vital support\n * defeating a notable foe\n\n...you may mark progress per the rank of the vow."
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 158
},
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow",
"Name": "Fulfill Your Vow",
"Optional": false,
"Category": "Starforged/Moves/Quest",
"Progress Move": true,
"Display": { "Title": "Fulfill Your Vow", "Color": "#2F9236" },
"Trigger": {
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Trigger/Options/1",
"Roll type": "Progress roll",
"Method": "Any",
"Using": ["Vow"]
}
],
"Text": "When you reach the end of your quest..."
},
"Text": "**When you reach the end of your quest**, roll the challenge dice and compare to your progress.\n\nOn a **strong hit**, your vow is fulfilled. Mark a reward on your quests legacy track per the vow's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who shared this vow also mark the reward.\n\nOn a **weak hit**, as above, but there is more to be done or you realize the truth of your quest. If you [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) to set things right, take your full legacy reward. Otherwise, make the reward one rank lower.\n\nOn a **miss**, your vow is undone through an unexpected complication or realization. Envision what happens and choose one.\n\n * Give up on the quest: [Forsake Your Vow](Starforged/Moves/Quest/Forsake_Your_Vow).\n * Recommit to the quest: Roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the vow's rank by one (if not already epic).",
"Outcomes": {
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Outcomes/Strong_Hit",
"Text": "Your vow is fulfilled. Mark a reward on your quests legacy track per the vow's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who shared this vow also mark the reward."
},
"Weak Hit": {
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Outcomes/Weak_Hit",
"Text": "Your vow is fulfilled, but there is more to be done or you realize the truth of your quest. If you [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) to set things right, take your full legacy reward per the vow's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Otherwise, make the reward one rank lower. Any allies who shared this vow also mark the reward."
},
"Miss": {
"$id": "Starforged/Moves/Quest/Fulfill_Your_Vow/Outcomes/Miss",
"Text": "Your vow is undone through an unexpected complication or realization. Envision what happens and choose one.\n\n * Give up on the quest: [Forsake Your Vow](Starforged/Moves/Quest/Forsake_Your_Vow).\n * Recommit to the quest: Roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the vow's rank by one (if not already epic)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 160
},
"$id": "Starforged/Moves/Quest/Forsake_Your_Vow",
"Name": "Forsake Your Vow",
"Optional": false,
"Category": "Starforged/Moves/Quest",
"Display": { "Title": "Forsake Your Vow", "Color": "#2F9236" },
"Trigger": {
"$id": "Starforged/Moves/Quest/Forsake_Your_Vow/Trigger",
"Text": "When you renounce your quest, betray your promise, or the goal is lost to you..."
},
"Text": "**When you renounce your quest, betray your promise, or the goal is lost to you**, clear the vow.\n\nThen, envision the impact of this failure and choose one or more as appropriate to the nature of the vow. Any allies who shared this vow may also envision a cost.\n\n * You are demoralized or dispirited: [Endure Stress](Starforged/Moves/Suffer/Endure_Stress).\n * A connection loses faith: [Test Your Relationship](Starforged/Moves/Connection/Test_Your_Relationship) when you next interact.\n * You must abandon a path or resource: Discard an asset.\n * Someone else pays a price: Envision how a person, being, or community bears the cost of the failure.\n * Someone else takes advantage: Envision how an enemy gains power.\n * Your reputation suffers: Envision how this failure marks you."
}
],
"Display": { "Title": "Quest Moves", "Color": "#2F9236" },
"Optional": false
},
{
"$id": "Starforged/Moves/Connection",
"Name": "Connection",
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 162
},
"Description": "**Connections** are NPCs (non-player characters) who represent a deep, vital, or interesting relationship in your story. They are your tethers to the people and places of the Forge.\n\nMake these **connection moves** when you introduce connections and as you build influence or understanding with them.",
"Moves": [
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 163
},
"$id": "Starforged/Moves/Connection/Make_a_Connection",
"Name": "Make a Connection",
"Optional": false,
"Category": "Starforged/Moves/Connection",
"Display": { "Title": "Make a Connection", "Color": "#4053C9" },
"Trigger": {
"$id": "Starforged/Moves/Connection/Make_a_Connection/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Connection/Make_a_Connection/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
}
],
"Text": "When you search out a new relationship or give focus to an existing relationship (not an ally or companion)..."
},
"Text": "**When you search out a new relationship or give focus to an existing relationship (not an ally or companion)**, roll +heart.\n\nOn a **strong hit**, you create a connection. Give them a role and rank. Whenever your connection aids you on a move closely associated with their role, add +1 and take +1 momentum on a hit.\n\nOn a **weak hit**, as above, but this connection comes with a complication or cost. Envision what they reveal or demand.\n\nOn a **miss**, you don't make a connection and the situation worsens. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Connection/Make_a_Connection/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Connection/Make_a_Connection/Outcomes/Strong_Hit",
"Text": "You create a connection. Give them a role and rank. Whenever your connection aids you on a move closely associated with their role, add +1 and take +1 momentum on a hit."
},
"Weak Hit": {
"$id": "Starforged/Moves/Connection/Make_a_Connection/Outcomes/Weak_Hit",
"Text": "You create a connection, but it comes with a complication or cost. Envision what they reveal or demand.\n\nGive the connection a role and rank. Whenever your connection aids you on a move closely associated with their role, add +1 and take +1 momentum on a hit."
},
"Miss": {
"$id": "Starforged/Moves/Connection/Make_a_Connection/Outcomes/Miss",
"Text": "You don't make a connection and the situation worsens. [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 164
},
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship",
"Name": "Develop Your Relationship",
"Optional": false,
"Category": "Starforged/Moves/Connection",
"Display": { "Title": "Develop Your Relationship", "Color": "#4053C9" },
"Trigger": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": [
"Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat"
],
"Custom stat": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat",
"Name": "Challenge Rank",
"Options": [
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat/Troublesome",
"Name": "Troublesome",
"Value": 1
},
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat/Dangerous",
"Name": "Dangerous",
"Value": 2
},
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat/Formidable",
"Name": "Formidable",
"Value": 3
},
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat/Extreme",
"Name": "Extreme",
"Value": 4
},
{
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Trigger/Options/1/Custom_stat/Epic",
"Name": "Epic",
"Value": 5
}
]
}
}
],
"Text": "When you reinforce your relationship with a connection..."
},
"Text": "**When you reinforce your relationship with a connection** by doing any of the following...\n\n * swearing a vow to undertake a perilous quest in their service\n * completing a quest to their benefit\n * leveraging their help in desperate circumstances\n * giving them something of worth\n * sharing a profound moment\n * standing with them against hardship\n * overcoming a test of your relationship\n\n...you may mark progress per the rank of the connection.\n\nIf you already share a bond with the connection, do not mark progress. Instead, roll +their rank to learn the impact on your legacy: troublesome=+1; dangerous=+2; formidable=+3; extreme=+4; epic=+5. On a **strong hit**, mark 2 ticks on your bonds legacy track. On a **strong hit with a match**, you may also envision how recent events bolstered your connection’s standing and raise their rank by one (if not already epic). On a **weak hit**, take +2 momentum. On a **miss**, take no lasting benefit.",
"Outcomes": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Outcomes/Strong_Hit",
"Text": "Mark 2 ticks on your bonds legacy track.",
"With a Match": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Outcomes/Strong_Hit/With_a_Match",
"Text": "Mark 2 ticks on your bonds legacy track. You may also envision how recent events bolstered your connection’s standing and raise their rank by one (if not already epic)."
}
},
"Weak Hit": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Outcomes/Weak_Hit",
"Text": "Take +2 momentum."
},
"Miss": {
"$id": "Starforged/Moves/Connection/Develop_Your_Relationship/Outcomes/Miss",
"Text": "Take no lasting benefit."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 165
},
"$id": "Starforged/Moves/Connection/Test_Your_Relationship",
"Name": "Test Your Relationship",
"Optional": false,
"Category": "Starforged/Moves/Connection",
"Display": { "Title": "Test Your Relationship", "Color": "#4053C9" },
"Trigger": {
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Heart"]
}
],
"Text": "When your relationship with a connection is tested through conflict, betrayal, or circumstance..."
},
"Text": "**When your relationship with a connection is tested through conflict, betrayal, or circumstance**, roll +heart. If you share a bond, add +1.\n\nOn a **strong hit**, [Develop Your Relationship](Starforged/Moves/Connection/Develop_Your_Relationship).\n\nOn a **weak hit**, [Develop Your Relationship](Starforged/Moves/Connection/Develop_Your_Relationship), but also envision a demand or complication as a fallout of this test.\n\nOn a **miss**, or if you have no interest in maintaining this relationship, choose one.\n\n * Lose the connection: Envision how this impacts you and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).\n * Prove your loyalty: Envision what you offer or what they demand, and [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) (formidable or greater) to see it done. Until you complete the quest, take no benefit for the connection. If you refuse or fail the quest, the connection is permanently undone.",
"Outcomes": {
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Outcomes/Strong_Hit",
"Text": "[Develop Your Relationship](Starforged/Moves/Connection/Develop_Your_Relationship)."
},
"Weak Hit": {
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Outcomes/Weak_Hit",
"Text": "[Develop Your Relationship](Starforged/Moves/Connection/Develop_Your_Relationship), but\nalso envision a demand or complication as a fallout of this test."
},
"Miss": {
"$id": "Starforged/Moves/Connection/Test_Your_Relationship/Outcomes/Miss",
"Text": "Choose one.\n\n * Lose the connection: Envision how this impacts you and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).\n * Prove your loyalty: Envision what you offer or what they demand, and [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) (formidable or greater) to see it done. Until you complete the quest, take no benefit for the connection. If you refuse or fail the quest, the connection is permanently undone."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 166
},
"$id": "Starforged/Moves/Connection/Forge_a_Bond",
"Name": "Forge a Bond",
"Optional": false,
"Category": "Starforged/Moves/Connection",
"Progress Move": true,
"Display": { "Title": "Forge a Bond", "Color": "#4053C9" },
"Trigger": {
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Trigger/Options/1",
"Roll type": "Progress roll",
"Method": "Any",
"Using": ["Connection"]
}
],
"Text": "When your relationship with a connection is ready to evolve..."
},
"Text": "**When your relationship with a connection is ready to evolve**, roll the challenge dice and compare to your progress.\n\nOn a **strong hit**, you now share a bond. Mark a reward on your bonds legacy track per the connection's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who share this connection also mark the reward. Then, choose one.\n\n * Bolster their influence: When they aid you on a move closely associated with their role, add +2 instead of +1.\n * Expand their influence: Give them a second role. When they aid you on a move closely associated with either role, add +1 and take +1 momentum on a hit.\n\nOn a **weak hit**, as above, but they ask something more of you first. To gain the bond and the legacy reward, envision the nature of the request, and do it (or [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) to see it done).\n\nOn a **miss**, they reveal a motivation or background that puts you at odds. If you recommit to this relationship, roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the connection's rank by one (if not already epic).",
"Outcomes": {
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Outcomes/Strong_Hit",
"Text": "You now share a bond. Mark a reward on your bonds legacy track per the connection's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who share this connection also mark the reward. Then, choose one.\n\n * Bolster their influence: When they aid you on a move closely associated with their role, add +2 instead of +1.\n * Expand their influence: Give them a second role. When they aid you on a move closely associated with either role, add +1 and take +1 momentum on a hit."
},
"Weak Hit": {
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Outcomes/Weak_Hit",
"Text": "They ask something more of you first. To gain the bond and the legacy reward, envision the nature of the request, and do it (or [Swear an Iron Vow](Starforged/Moves/Quest/Swear_an_Iron_Vow) to see it done).\n\nIf you do, you now share a bond. Mark a reward on your bonds legacy track per the connection's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who share this connection also mark the reward. Then, choose one.\n\n * Bolster their influence: When they aid you on a move closely associated with their role, add +2 instead of +1.\n * Expand their influence: Give them a second role. When they aid you on a move closely associated with either role, add +1 and take +1 momentum on a hit."
},
"Miss": {
"$id": "Starforged/Moves/Connection/Forge_a_Bond/Outcomes/Miss",
"Text": "They reveal a motivation or background that puts you at odds. If you recommit to this relationship, roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the connection's rank by one (if not already epic)."
}
}
}
],
"Display": { "Title": "Connection Moves", "Color": "#4053C9" },
"Optional": false
},
{
"$id": "Starforged/Moves/Exploration",
"Name": "Exploration",
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 168
},
"Description": "The Forge is a vast, chaotic, and largely unexplored galaxy. Your sworn vows will take you through uncharted space, across the surface of inhospitable planets, and into the depths of foreboding derelicts, enigmatic alien vaults, and other perilous sites.\n\nWill you survive these expeditions? What will they cost you? What wonders and horrors will you face? Use the **exploration moves** to find out.",
"Moves": [
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 169
},
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition",
"Name": "Undertake an Expedition",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Display": { "Title": "Undertake an Expedition", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Trigger/Options/1",
"Text": "Move at speed",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Edge"]
},
{
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Trigger/Options/2",
"Text": "Keep under the radar",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Shadow"]
},
{
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Trigger/Options/3",
"Text": "Stay vigilant",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Wits"]
}
],
"Text": "When you trailblaze a route through perilous space, journey over hazardous terrain, or survey a mysterious site..."
},
"Text": "**When you trailblaze a route through perilous space, journey over hazardous terrain, or survey a mysterious site**, give the expedition a name and rank. Then, for each segment of the expedition, envision your approach. If you...\n\n * Move at speed: Roll +edge\n * Keep under the radar: Roll +shadow\n * Stay vigilant: Roll +wits\n\nOn a **strong hit**, you reach a waypoint. Envision the location and mark progress per the rank of the expedition.\n\nOn a **weak hit**, as above, but this progress costs you. Choose one.\n\n * Suffer costs en route: Make a suffer move (-2), or two suffer moves (-1).\n * Face a peril at the waypoint: Envision what you encounter.\n\nOn a **miss**, you are waylaid by a crisis, or arrive at a waypoint to confront an immediate hardship or threat. Do not mark progress, and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"Outcomes": {
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Outcomes/Strong_Hit",
"Text": "You reach a waypoint. Envision the location and mark progress per the rank of the expedition."
},
"Weak Hit": {
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Outcomes/Weak_Hit",
"Text": "You reach a waypoint, but this progress costs you. Envision the location and mark progress per the rank of the expedition, but choose one.\n\n * Suffer costs en route: Make a suffer move (-2), or two suffer moves (-1).\n * Face a peril at the waypoint: Envision what you encounter."
},
"Miss": {
"$id": "Starforged/Moves/Exploration/Undertake_an_Expedition/Outcomes/Miss",
"Text": "You are waylaid by a crisis, or arrive at a waypoint to confront an immediate hardship or threat. Do not mark progress, and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 174
},
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint",
"Name": "Explore a Waypoint",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Display": { "Title": "Explore a Waypoint", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Wits"]
}
],
"Text": "When you divert from an expedition to examine a notable location..."
},
"Text": "**When you divert from an expedition to examine a notable location**, roll +wits.\n\nOn a **strong hit**, choose one. On a **strong hit with a match**, you may instead [Make a Discovery](Starforged/Moves/Exploration/Make_a_Discovery).\n\n * Find an opportunity: Envision a favorable insight, situation, resource, or encounter. Then, take +2 momentum.\n * Gain progress: Mark progress on your expedition, per its rank.\n\nOn a **weak hit**, you uncover something interesting, but it is bound up in a peril or reveals an ominous aspect of this place. Envision what you encounter. Then, take +1 momentum.\n\nOn a **miss**, you encounter an immediate hardship or threat, and must [Pay the Price](Starforged/Moves/Fate/Pay_the_Price). On a **miss with a match**, you may instead [Confront Chaos](Starforged/Moves/Exploration/Confront_Chaos).",
"Outcomes": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes/Strong_Hit",
"Text": "Choose one.\n\n * Find an opportunity: Envision a favorable insight, situation, resource, or encounter. Then, take +2 momentum.\n * Gain progress: Mark progress on your expedition, per its rank.",
"With a Match": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes/Strong_Hit/With_a_Match",
"Text": "You encounter something wondrous! Choose one.\n\n * [Make a Discovery](Starforged/Moves/Exploration/Make_a_Discovery).\n * Find an opportunity: Envision a favorable insight, situation, resource, or encounter. Then, take +2 momentum.\n * Gain progress: Mark progress on your expedition, per its rank."
}
},
"Weak Hit": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes/Weak_Hit",
"Text": "You uncover something interesting, but it is bound up in a peril or reveals an ominous aspect of this place. Envision what you encounter. Then, take +1 momentum."
},
"Miss": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes/Miss",
"Text": "You encounter an immediate hardship or threat, and must [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).",
"With a Match": {
"$id": "Starforged/Moves/Exploration/Explore_a_Waypoint/Outcomes/Miss/With_a_Match",
"Text": "You encounter something dreadful! [Confront Chaos](Starforged/Moves/Exploration/Confront_Chaos) or else [Pay the Price](Starforged/Moves/Fate/Pay_the_Price)."
}
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 176
},
"$id": "Starforged/Moves/Exploration/Make_a_Discovery",
"Name": "Make a Discovery",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Display": { "Title": "Make a Discovery", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Make_a_Discovery/Trigger",
"Text": "When your exploration of a waypoint uncovers something wondrous"
},
"Text": "**When your exploration of a waypoint uncovers something wondrous**, roll on the table below or choose one. Then, envision the nature of the discovery and how it is revealed. When you first experience or engage with the discovery, you and your allies may mark two ticks on your discoveries legacy track.\n\nRoll | Result\n-------|---------------------------------------------------------------\n1-4 | Advanced technology waiting to be harnessed or salvaged\n5-8 | Ancient archive or message\n9-10 | Artificial consciousness evolved to a higher state\n11-12 | Clues to a crucial resource or uncharted domain\n13-14 | Envoy from another time or reality\n15-22 | Extraordinary natural phenomenon\n23-24 | First contact with intelligent life\n25-26 | Gateway to another time or alternate reality\n27-28 | Key to unlocking a language or method of communication\n29-34 | Lost or hidden people\n35-42 | Majestic or unusual lifeforms\n43-46 | Marvel of ancient engineering\n47-50 | Miraculously preserved artifact or specimen\n51-56 | Monumental architecture or artistry of an ancient civilization\n57-62 | Mysterious device or artifact of potential value\n63-66 | New understanding of an enduring mystery\n67-68 | Pathway or means of travel to a distant location\n69-70 | Person or lifeform with phenomenal abilities\n71-78 | Place of awe-inspiring beauty\n79-86 | Rare and valuable resource\n87-88 | Safeguarded or idyllic location\n89-90 | Visions or prophesies of the future\n91-100 | Roll twice",
"Oracles": ["Starforged/Oracles/Moves/Make_a_Discovery"]
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 177
},
"$id": "Starforged/Moves/Exploration/Confront_Chaos",
"Name": "Confront Chaos",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Display": { "Title": "Confront Chaos", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Confront_Chaos/Trigger",
"Text": "When your exploration of a waypoint uncovers something dreadful..."
},
"Text": "**When your exploration of a waypoint uncovers something dreadful**, decide the number of aspects: one, two, or three. Roll that number of times or choose that number of aspects on the table below. Then, envision how the encounter begins.\n\nFor each result, when you first confront that aspect within the scope of the encounter, you and your allies may mark one tick on your discoveries legacy track.\n\nRoll | Result\n-------|---------------------------------------------\n1-4 | Baneful weapon of mass destruction\n5-9 | Cataclysmic environmental effects\n10-12 | Dead given unnatural life\n13-17 | Destructive lifeform of monstrous proportion\n18-20 | Dread hallucinations or illusions\n21-24 | Harbingers of an imminent invasion\n25-27 | Horde of insatiable hunger or fury\n28-32 | Horrific lifeforms of inscrutable purpose\n33-36 | Impostors in human form\n37-41 | Machines made enemy\n42-45 | Malignant contagion or parasite\n46-50 | Messenger or signal with a dire warning\n51-53 | Passage to a grim alternate reality\n54-58 | People corrupted by chaos\n59-63 | Powerful distortions of time or space\n64-68 | Signs of an impending catastrophe\n69-72 | Site of a baffling disappearance\n73-77 | Site of a horrible disaster\n78-82 | Site of terrible carnage\n83-87 | Technology nullified or made unstable\n88-92 | Technology warped for dark purpose\n93-96 | Vault of dread technology or power\n97-100 | Worshipers of great and malevolent powers",
"Oracles": ["Starforged/Oracles/Moves/Confront_Chaos"]
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 178
},
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition",
"Name": "Finish an Expedition",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Progress Move": true,
"Display": { "Title": "Finish an Expedition", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Trigger/Options/1",
"Roll type": "Progress roll",
"Method": "Any",
"Using": ["Expedition"]
}
],
"Text": "When your expedition comes to an end..."
},
"Text": "**When your expedition comes to an end**, roll the challenge dice and compare to your progress.\n\nOn a **strong hit**, you reach your destination or complete your survey. Mark a reward on your discoveries legacy track per expedition's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who shared this expedition also mark the reward.\n\nOn a **weak hit**, as above, but you face an unforeseen complication at the end of your expedition. Make the legacy reward one rank lower, and envision what you encounter.\n\nOn a **miss**, your destination is lost to you, or you come to understand the true nature or cost of the expedition. Envision what happens and choose one.\n\n * Abandon the expedition: Envision the cost of this setback and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).\n * Return to the expedition: Roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the expedition's rank by one (if not already epic).",
"Outcomes": {
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Outcomes/Strong_Hit",
"Text": "You reach your destination or complete your survey. Mark a reward on your discoveries legacy track per expedition's rank: troublesome=1 tick; dangerous=2 ticks; formidable=1 box; extreme=2 boxes; epic=3 boxes. Any allies who shared this expedition also mark the reward."
},
"Weak Hit": {
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Outcomes/Weak_Hit",
"Text": "You reach your destination or complete your survey, but you face an unforeseen complication at the end of your expedition. Make the legacy reward one rank lower (troublesome=0 ticks; dangerous=1 tick; formidable=2 box; extreme=1 box; epic=2 boxes), and envision what you encounter."
},
"Miss": {
"$id": "Starforged/Moves/Exploration/Finish_an_Expedition/Outcomes/Miss",
"Text": "Your destination is lost to you, or you come to understand the true nature or cost of the expedition. Envision what happens and choose one.\n\n * Abandon the expedition: Envision the cost of this setback and [Pay the Price](Starforged/Moves/Fate/Pay_the_Price).\n * Return to the expedition: Roll both challenge dice, take the lowest value, and clear that number of progress boxes. Then, raise the expedition's rank by one (if not already epic)."
}
}
},
{
"Source": {
"Title": "Ironsworn: Starforged Rulebook",
"Authors": ["Shawn Tomkin"],
"Date": "050622",
"Page": 180
},
"$id": "Starforged/Moves/Exploration/Set_a_Course",
"Name": "Set a Course",
"Optional": false,
"Category": "Starforged/Moves/Exploration",
"Display": { "Title": "Set a Course", "Color": "#7438B8" },
"Trigger": {
"$id": "Starforged/Moves/Exploration/Set_a_Course/Trigger",
"Options": [
{
"$id": "Starforged/Moves/Exploration/Set_a_Course/Trigger/Options/1",
"Roll type": "Action roll",
"Method": "Any",
"Using": ["Supply"]
}
],
"Text": "When you follow a known route through perilous space, across hazardous terrain, or within a mysterious site..."
},
"Text": "**When you follow a known route through perilous space, across hazardous terrain, or within a mysterious site**, roll +supply.\n\nOn a **strong hit**, you reach your destination and the situation there favors you. Take +1 momentum.\n\nOn a **weak hit**, you arrive, but face a cost or complication. Choose one.\n\n * Suffer costs en route: Make a suffer move (-2), or two suffer moves (-1).\n * Face a complication at the destination: Envision what you encounter.\n\nOn a **miss**, you are waylaid by a significant threat, and must [Pay the Price](Starforged/Moves/Fate/Pay_the_Price). If you overcome this obstacle, you may push on safely to your destination.",
"Outcomes": {
"$id": "Starforged/Moves/Exploration/Set_a_Course/Outcomes",
"Strong Hit": {
"$id": "Starforged/Moves/Exploration/Set_a_Course/Outcomes/Strong_Hit",
"Text": "You reach your destination and the situation there favors you. Take +1 momentum."
},
"Weak Hit": {
"$id": "Starforged/Moves/Exploration/Set_a_Course/Outcomes/Weak_Hit",
"Text": "You arrive, but face a cost or complication. Choose one.\n\n * Suffer costs en route: Make a suffer move (-2), or two suffer moves (-1).\n * Face a complication at the destination: Envision what you encounter."