Change roll outcome

Manually sets the overall outcome of the last progress or action roll, i.e. "Strong hit", "Weak hit", "Miss", regardless of the actual dice roll outcome.

This is intended for situations where a move or an asset either allows you or requires you to change the roll outcome. For example, the Fugitive asset allows you to improve an action roll result to a strong hit, while the Take Decisive Action move requires you to lower your outcome if you make it while being in a bad spot.

Example

Face Danger

Action die
3
Stat
1
Adds
0
Score
4
Challenge die 1
6
Challenge die 2
9
Outcome
Miss
Outcome
Strong hit
Reason

Fugitive asset

Take Decisive Action

Track name

The Ultimate Combat

Progress score
6
Challenge die 1
3
Challenge die 2
2
Outcome
Strong hit
Outcome
Weak hit
```iron-vault-mechanics
move "Face Danger" {
    roll action=3 stat=1 adds=0 vs1=6 vs2=9
    outcome "strong-hit" reason="Fugitive asset"
}
move "Take Decisive Action" {
    // Position: in a bad spot
    progress-roll name="The Ultimate Combat" score=6 vs1=3 vs2=2
    outcome "weak-hit"
}
```