More exploration changes

Mostly formatting the char sheet and changing names.
master
The Happy Anarchist 2020-09-04 01:07:28 -10:00
parent 024a560087
commit cf8c723b63
3 changed files with 11 additions and 11 deletions

View File

@ -821,11 +821,11 @@
line-height: 30px;
}
.acks.sheet.actor.character .sheet-body .exploration .attribute {
margin: 4px;
margin: 1px;
}
.acks.sheet.actor.character .sheet-body .exploration .attribute .attribute-name {
text-align: left;
flex: 1 0 60px;
text-align: center;
flex: 1 0 45px;
line-height: 25px;
font-size: 12px;
}

View File

@ -202,7 +202,7 @@
"ACKS.items.RollType": "Type",
"ACKS.items.Damage": "Damage",
"ACKS.items.ArmorAC": "AC",
"ACKS.items.ArmorAAC": "AAC",
"ACKS.items.ArmorAAC": "AC",
"ACKS.items.Bonus": "Bonus",
"ACKS.items.AtkBonus": "Attack Bonus",
"ACKS.items.roundAttacks": "Attacks Spent this Round",
@ -243,9 +243,9 @@
"ACKS.abilities.Requirements": "Requirements",
"ACKS.exploration.ld.long": "Listen at Door",
"ACKS.exploration.ld.short": "Listen Door",
"ACKS.exploration.ld.abrev": "LD",
"ACKS.exploration.ld.long": "Listen for noises",
"ACKS.exploration.ld.short": "Hear Noise",
"ACKS.exploration.ld.abrev": "HN",
"ACKS.exploration.od.long": "Open Stuck Door",
"ACKS.exploration.od.short": "Open Door",
"ACKS.exploration.od.abrev": "OD",

View File

@ -2,28 +2,28 @@
<li class="attribute flexrow" data-exploration="ld">
<h4 class="attribute-name box-title" title="({{localize 'ACKS.exploration.ld.abrev'}}) {{localize 'ACKS.exploration.ld.long'}}"><a>{{ localize "ACKS.exploration.ld.short" }}</a></h4>
<div class="attribute-value">
<input name="data.exploration.ld" type="text" value="{{data.exploration.ld}}" data-dtype="Number" placeholder="18" />
<input name="data.exploration.ld" type="text" value="{{data.exploration.ld}}" value="18" data-dtype="Number" placeholder="0" />
</div>
</li>
<li class="attribute flexrow" data-exploration="od">
<h4 class="attribute-name box-title" title="({{localize 'ACKS.exploration.od.abrev'}}) {{localize 'ACKS.exploration.od.long'}}"><a>{{ localize "ACKS.exploration.od.short" }}</a>
</h4>
<div class="attribute-value">
<input name="data.exploration.od" type="text" value="{{data.exploration.od}}" placeholder="18" data-dtype="String" />
<input name="data.exploration.od" type="text" value="{{data.exploration.od}}" value="18" placeholder="0" data-dtype="String" />
</div>
</li>
<li class="attribute flexrow" data-exploration="sd">
<h4 class="attribute-name box-title" title="({{localize 'ACKS.exploration.sd.abrev'}}) {{localize 'ACKS.exploration.sd.long'}}"><a>{{ localize "ACKS.exploration.sd.short" }}</a>
</h4>
<div class="attribute-value">
<input name="data.exploration.sd" type="text" value="{{data.exploration.sd}}" placeholder="18" data-dtype="String" />
<input name="data.exploration.sd" type="text" value="{{data.exploration.sd}}" value="18" placeholder="0" data-dtype="String" />
</div>
</li>
<li class="attribute flexrow" data-exploration="ft">
<h4 class="attribute-name box-title" title="({{localize 'ACKS.exploration.ft.abrev'}}) {{localize 'ACKS.exploration.ft.long'}}"><a>{{ localize "ACKS.exploration.ft.short" }}</a>
</h4>
<div class="attribute-value">
<input name="data.exploration.ft" type="text" value="{{data.exploration.ft}}" placeholder="18" data-dtype="String" />
<input name="data.exploration.ft" type="text" value="{{data.exploration.ft}}" value="18" placeholder="0" data-dtype="String" />
</div>
</li>
</ul>