Skip to content

Commit

Permalink
Hat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jbhaywood committed Nov 19, 2021
1 parent 93b6589 commit 1376b6f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"HH.CriminalRollTooltip": "Roll for criminal",
"HH.BearRollWithSkillTooltip": "Roll for bear using a skill or role",
"HH.CriminalRollWithSkillTooltip": "Roll for criminal using a skill or role",
"HH.MoveToBearTooltip": "Move a point to bear",
"HH.MoveToCriminalTooltip": "Move a point to criminal",
"HH.AttributesTitle": "Attributes",
"HH.BiographyTitle": "Bio",
"HH.BearDesciptor": "Descriptor",
Expand Down
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "honey-heist",
"title": "Honey Heist",
"description": "It's HoneyCon. You are going to undertake the greatest heist the world has ever seen.",
"version": 1.22,
"version": 1.23,
"templateVersion": 2,
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.8.9",
Expand All @@ -19,6 +19,6 @@
],
"url": "https://github.com/jbhaywood/foundryvtt-honeyheist/",
"manifest": "https://raw.githubusercontent.com/jbhaywood/foundryvtt-honeyheist/master/system.json",
"download": "https://github.com/jbhaywood/foundryvtt-honeyheist/archive/v1.22.zip",
"download": "https://github.com/jbhaywood/foundryvtt-honeyheist/archive/v1.23.zip",
"license": "LICENSE.txt"
}
2 changes: 1 addition & 1 deletion template.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"dtype": "String"
},
"cowboy": {
"label": "Thief",
"label": "Cowboy",
"dtype": "String"
},
"fez": {
Expand Down
6 changes: 4 additions & 2 deletions templates/actor-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ <h1 class="char-name">
{{!-- Stats Block --}}
<div id="stat-bear">
<h2 class="stat-title">BEAR</h2>
<img class="stat-button no-border expand" src="/systems/honey-heist/resources/icons/bear.svg" />
<img class="stat-button no-border expand" title="{{localize 'HH.MoveToBearTooltip'}}"
src="/systems/honey-heist/resources/icons/bear.svg" />
<input class="stat-value" name="data.stats.bear" data-type="Number" value="{{data.stats.bear}}"
readonly="readonly" />
<img class="stat-roll-single expand no-border" title="{{localize 'HH.BearRollTooltip'}}" data-roll="1d6"
Expand All @@ -18,7 +19,8 @@ <h2 class="stat-title">BEAR</h2>
</div>
<div id="stat-criminal">
<h2 class="stat-title">CRIMINAL</h2>
<img class="stat-button no-border expand" src="/systems/honey-heist/resources/icons/criminal.svg" />
<img class="stat-button no-border expand" title="{{localize 'HH.MoveToCriminalTooltip'}}"
src="/systems/honey-heist/resources/icons/criminal.svg" />
<input class="stat-value" name="data.stats.criminal" data-type="Number" value="{{data.stats.criminal}}"
readonly="readonly" />
<img class="stat-roll-single expand no-border" data-roll="1d6" title="{{localize 'HH.CriminalRollTooltip'}}"
Expand Down

0 comments on commit 1376b6f

Please sign in to comment.