Default values for Normal Men

Pre-populate default values for 0 level men on the char sheet.
master
The Happy Anarchist 2020-09-03 23:17:31 -10:00
parent 0d3d79e7df
commit c37f23a1fd
2 changed files with 22 additions and 22 deletions

View File

@ -10,8 +10,8 @@
},
"hp": {
"hd": "1d8",
"value": 20,
"max": 20
"value": 4,
"max": 4
},
"ac": {
"value": 0,
@ -31,19 +31,19 @@
},
"saves": {
"death": {
"value": 0
"value": 15
},
"wand": {
"value": 0
"value": 17
},
"paralysis": {
"value": 0
"value": 16
},
"breath": {
"value": 0
"value": 17
},
"spell": {
"value": 0
"value": 18
}
},
"movement": {
@ -98,10 +98,10 @@
}
},
"exploration": {
"ld": 1,
"od": 2,
"sd": 1,
"ft": 1
"ld": 18,
"od": 18,
"sd": 18,
"ft": 18
},
"scores": {
"str": {
@ -130,7 +130,7 @@
}
},
"encumbrance": {
"max": 1600
"max": 20000
},
"languages": {
"value": []
@ -140,7 +140,7 @@
"templates": ["common", "spellcaster"],
"details": {
"biography": "",
"alignment": "",
"alignment": "Neutral",
"xp": 0,
"treasure": {
"table": "",
@ -150,7 +150,7 @@
"d": 0,
"w": 0
},
"morale": 0
"morale": 7
},
"attacks": ""
}
@ -165,7 +165,7 @@
},
"treasure": false,
"cost": 0,
"weight": 0
"weight": 167
},
"weapon": {
"range": {
@ -184,7 +184,7 @@
"melee": true,
"cost": 0,
"equipped": false,
"weight": 0,
"weight": 167,
"counter": {
"value": 0,
"max": 0
@ -193,11 +193,11 @@
"armor": {
"description": "",
"ac": 9,
"aac": 10,
"aac": 0,
"type": "light",
"cost": 0,
"equipped": false,
"weight": 0
"weight": 2000
},
"spell": {
"lvl": 1,

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="0" />
<input name="data.exploration.ld" type="text" value="{{data.exploration.ld}}" data-dtype="Number" placeholder="00" />
</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="0" data-dtype="String" />
<input name="data.exploration.od" type="text" value="{{data.exploration.od}}" placeholder="00" 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="0" data-dtype="String" />
<input name="data.exploration.sd" type="text" value="{{data.exploration.sd}}" placeholder="00" 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="0" data-dtype="String" />
<input name="data.exploration.ft" type="text" value="{{data.exploration.ft}}" placeholder="00" data-dtype="String" />
</div>
</li>
</ul>