foundryvtt-shadows-over-sol/templates/chat-damage-request-dodge.html

14 lines
767 B
HTML
Raw Normal View History

2021-02-16 22:04:59 +01:00
<h4>{{target.actor.name}} has {{APavailable}} AP and can react to the attack from {{actor.name}} !</h4>
2021-02-11 00:07:13 +01:00
<div class="flexcol">
{{#if coverSeverityFlag}}
2021-02-16 22:04:59 +01:00
<a class='chat-card-button' id='button-reaction-cover' data-uniq-id='{{uniqId}}' data-actor-id='{{target.actor._id}}'>
Add cover consequence bonus x 2 to your defense : {{coverSeverityLevel}}</a>`
2021-02-11 00:07:13 +01:00
{{/if}}
{{#if isMelee}}
2021-02-16 22:04:59 +01:00
<a class='chat-card-button' id='button-reaction-melee' data-uniq-id='{{uniqId}}' data-actor-id='{{target.actor._id}}'>
Add Melee level to your defense : {{defenderMelee}}</a>`
2021-02-11 00:07:13 +01:00
{{/if}}
2021-02-16 22:04:59 +01:00
<a class='chat-card-button' id='button-reaction-hit' data-uniq-id='{{uniqId}}' data-actor-id='{{target.actor._id}}'>
Do not dodge and get the hit !</a>`
2021-02-11 00:07:13 +01:00
</div>