Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed the default miss formula #162

Merged
merged 1 commit into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,7 @@
"DND4EBETA.Melee": "Melee",
"DND4EBETA.Miss": "Miss",
"DND4EBETA.MissDetailsText": "Miss Details",
"DND4EBETA.MissFormulaPlaceholder": "Half damage can easily be applied form the damage menu, no need for a separate formula",
"DND4EBETA.Modifier": "Modifier",
"DND4EBETA.ModifierAttack": "Attack Modifier",
"DND4EBETA.ModifierDamage": "Damage Modifier",
Expand Down
4 changes: 2 additions & 2 deletions template.json
Original file line number Diff line number Diff line change
Expand Up @@ -745,8 +745,8 @@
"healFormula": ""
},
"miss": {
"detail": "Half Damage.",
"formula": "@damageFormula/2"
"detail": "",
"formula": ""
},
"effect": {
"detail": ""
Expand Down
2 changes: 1 addition & 1 deletion templates/items/parts/item-power-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ <h4 class="damage-header">

<div class="form-group stacked">
<label>Miss Damage {{ localize "DND4EBETA.Formula" }}</label>
<input type="text" name="data.miss.formula" value="{{data.miss.formula}}"/>
<input type="text" name="data.miss.formula" value="{{data.miss.formula}}" placeholder="{{ localize "DND4EBETA.MissFormulaPlaceholder" }}"/>
</div>

<div class="form-group stacked weapon-properties">
Expand Down