diff --git a/client/homebrew/phbStyle/phb.style.less b/client/homebrew/phbStyle/phb.style.less index 9c1e78f2d..e605672d7 100644 --- a/client/homebrew/phbStyle/phb.style.less +++ b/client/homebrew/phbStyle/phb.style.less @@ -330,4 +330,8 @@ -ms-column-break-inside : avoid; column-break-inside : avoid; } + //Better spacing for spell blocks + h4+p+hr+ul{ + margin-top:-0.5em + } } \ No newline at end of file diff --git a/phb.standalone.css b/phb.standalone.css index 997f67585..4a2807cba 100644 --- a/phb.standalone.css +++ b/phb.standalone.css @@ -283,7 +283,7 @@ table { padding-left: 0.1em; } .phb table tbody tr td { - padding: 0.2em 0em; + padding: 0.2em 0.1em; } .phb table tbody tr:nth-child(odd) { background-color: #e0e5c1; @@ -480,3 +480,6 @@ table { -ms-column-break-inside: avoid; column-break-inside: avoid; } +.phb h4 + p + hr + ul { + margin-top: -0.5em; +} diff --git a/shared/naturalCrit/defaultMonsterManual.js b/shared/naturalCrit/defaultMonsterManual.js index 824a3104b..433fbddd1 100644 --- a/shared/naturalCrit/defaultMonsterManual.js +++ b/shared/naturalCrit/defaultMonsterManual.js @@ -1,10 +1,14 @@ module.exports = { goblin : { - hp : 40, - mov: 30, - cr : 0.25, - ac : 13, - attr : { + size : 'small', + type : 'beast', + alignment : 'unaligned', + stats : { + hp : 40, + mov: 30, + ac : 13, + }, + scores : { str : 8, con : 8, dex : 8, @@ -12,21 +16,28 @@ module.exports = { wis : 8, cha : 8 }, - attacks : { - dagger : { - atk : "1d20-5", - dmg : "1d4+5", - type : "pierce", - notes : "Super cool" - }, - bow : { - atk : "1d20+2", - dmg : "6d6", - rng : "30" - } + attr : { + skills : ['Stealth +5'], + lang : ['common'], + cr : 0.25, }, abilities : { - "pack tactics" : "Does a thing" + "pack tactics" : "Does a thing", + "fancy dance" : "dances fancy" + }, + actions : { + bite : { + type : "Melee weapon attack", + atk : "+4 to hit", + rng : "5ft", + target : "one target", + dmg : "4 (1d4 + 2) piercing damage", + desc: "" + }, + scare : { + uses : "1/day", + desc : "scares you" + } }, items : ['rat on a stick'] },