-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Does not properly track artha for tests and rerolls for learning rolls yet, works fine for stats and skills not being learned.
- Loading branch information
Showing
3 changed files
with
154 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<div class="chat-message flex-row"> | ||
<div class="roll-full-width message-title"> | ||
Fate Reroll | ||
</div> | ||
<div class="roll-half-width"> | ||
<label>Successes</label> | ||
<div>{{ successes }} + {{ newSuccesses }} </div> | ||
</div> | ||
<div class="roll-half-width"> | ||
<label>Obstacle</label> | ||
<div>{{ obstacleTotal }}</div> | ||
</div> | ||
<div class="roll-dice roll-full-width flex-row"> | ||
{{#each rolls as |r|}} | ||
<div class="roll-die" data-success="{{r.success}}"> | ||
{{r.roll}} | ||
</div> | ||
{{/each}} | ||
<div class="vertical-divider"></div> | ||
{{#each rerolls as |r|}} | ||
<div class="roll-die" data-success="{{r.success}}"> | ||
{{r.roll}} | ||
</div> | ||
{{/each}} | ||
</div> | ||
{{#if success}} | ||
<div class="roll-result roll-full-width roll-success"> | ||
Success! | ||
</div> | ||
{{else}} | ||
<div class="roll-result roll-full-width roll-failure"> | ||
Failure! | ||
</div> | ||
{{/if}} | ||
</div> |