Added field for Monster Initiative Bonus vs it being inside the roll (#2427)

Also cleaned up some odd spacing issues on Monster sheet
This commit is contained in:
amandasearle
2017-03-15 23:19:35 -05:00
parent 12961c4bb1
commit 15cc0ec274
2 changed files with 15 additions and 4 deletions
@@ -2038,7 +2038,7 @@
<div class="sheet-row"> <!-- Hit Dice, Movement -->
<div class="sheet-col-1-3">
<div class="sheet-col-3-7 sheet-left"><input class="sheet-inMainTxt sheet-center" style="font-size: 15px; font-weight: bold; max-width: 100px" type="text" value="1" name="attr_MonsterHD"><br/># Hit Dice</div>
<div class="sheet-col-3-7 sheet-left"><input class="sheet-inMainTxt sheet-center" style="font-size: 15px; font-weight: bold; max-width: 100px" type="text" value="0" name="attr_MonsterHDBonus"><br/>Hit Dice Bonus</div>
<div class="sheet-col-3-7 sheet-left"><input class="sheet-inMainTxt sheet-center" style="font-size: 15px; font-weight: bold; max-width: 100px" type="text" value="0" name="attr_MonsterHDBonus"><br/>HD Bonus</div>
<input type="hidden" name="attr_MonsterHit-die" value="(@{MonsterHD})d8cs8cf1" />
<div class="sheet-col-1-10 sheet-vert-middle">
<button type='roll' value="/w gm &{template:odnd} {{name=@{MonsterName}}} {{title=Monster Hit Points}} {{MonsterHD=[[@{MonsterHit-die} + @{MonsterHDBonus}]]}}" name='Monster HP' title="Roll for monster's Hit Points"></button>
@@ -2074,6 +2074,7 @@
<div class="sheet-row"> <!-- Surprise, Alignment -->
<div class="sheet-col-1-3">
<div class="sheet-col-1-1 sheet-center">&nbsp;</div>
<div class="sheet-col-4-7 sheet-ability-text sheet-vert-bottom" style="font-size: 15px; font-weight: bold">Monster Surprise</div>
<input type="hidden" name="attr_MonsterSurprise-die" value="1d6cs6cf1" />
<input type="hidden" name="attr_MonsterSurprise-chance" value="2" />
@@ -2276,12 +2277,20 @@
</div>
</div>
<div class="sheet-col-1-1 sheet-center">&nbsp;</div>
<!--<div class="sheet-col-1-1 sheet-center">&nbsp;</div>-->
<div class="sheet-row"> <!-- Monster Initiative -->
<div class="sheet-col-4-17 sheet-ability-text sheet-vert-middle" style="font-size: 15px; font-weight: bold">Monster Initiative</div>
<div class="sheet-col-5-17">
<div class="sheet-col-1-1 sheet-center">&nbsp;</div>
<div class="sheet-col-3-17 sheet-vert-middle">
<button type='roll' value="&{template:odnd} {{name=@{MonsterName}}} {{title=Monster Initiative}} {{INIT=[[@{MonsterInit-die} + @{MonsterInitBonus} &{tracker}]]}}" name='Monster Initiative' title="Monster Initiative"></button></div>
<div class="sheet-col-12-17 sheet-ability-text sheet-vert-middle" style="font-size: 15px; font-weight: bold">Monster Initiative</div>
</div>
<div class="sheet-col-12-17">
<div class="sheet-col-2-7 sheet-left"><input class="sheet-inMainTxt sheet-center" style="font-size: 15px; font-weight: bold; max-width: 100px" type="number" placeholder="0" value="0" step="1" name="attr_MonsterInitBonus" title="Initiative Bonus if any"><br/>Bonus</div>
<input type="hidden" name="attr_MonsterInit-die" value="1d6cf1cs6">
<div class="sheet-col-1-16 sheet-vert-middle"><button type='roll' value="&{template:odnd} {{name=@{MonsterName}}} {{title=Monster Initiative}} {{INIT=[[@{MonsterInit-die} + (?{Initiative Bonus/Minus|0}) &{tracker}]]}}" name='Monster Initiative' title="Monster Initiative"></button></div>
</div>
</div> <!--END Monster Initiative -->
+2
View File
@@ -9,6 +9,8 @@ This is a re-creation of the "green-sheet" for the D&D Basic Moldvay Red box gam
#### 2.4
* Fix for Monster THAC0 being set to read-only (#2426)
* Added field for Monster Initiative Bonus vs it being inside the roll (#2427)
* Cleaned up some odd spacing issues on Monster sheet
#### 2.3
* Added Sheet Worker to automatically add in Halfing Missile Bonus if Halfling Class is selected (#2325)