mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-31 23:52:48 +00:00
Snippet for unframed monster block.
This commit is contained in:
@@ -192,5 +192,32 @@ module.exports = {
|
|||||||
### Actions
|
### Actions
|
||||||
${_.times(_.random(2, 3), function(){return genAction();}).join('\n\t\t\t\n\t\t\t')}
|
${_.times(_.random(2, 3), function(){return genAction();}).join('\n\t\t\t\n\t\t\t')}
|
||||||
}}`;
|
}}`;
|
||||||
|
},
|
||||||
|
|
||||||
|
unframed : function(){
|
||||||
|
return dedent`
|
||||||
|
{{monster
|
||||||
|
## ${getMonsterName()}
|
||||||
|
*${getType()}, ${getAlignment()}*
|
||||||
|
___
|
||||||
|
: **Armor Class** : ${_.random(10, 20)} (chain mail, shield)
|
||||||
|
: **Hit Points** : ${_.random(1, 150)}(1d4 + 5)
|
||||||
|
: **Speed** : ${_.random(0, 50)}ft.
|
||||||
|
___
|
||||||
|
| STR | DEX | CON | INT | WIS | CHA |
|
||||||
|
|:-----:|:-----:|:-----:|:-----:|:-----:|:-----:|
|
||||||
|
${getStats()}
|
||||||
|
___
|
||||||
|
: **Condition Immunities** : ${genList(['groggy', 'swagged', 'weak-kneed', 'buzzed', 'groovy', 'melancholy', 'drunk'], 3)}
|
||||||
|
: **Senses** : darkvision 60 ft., passive Perception ${_.random(3, 20)}
|
||||||
|
: **Languages** : ${genList(['Common', 'Pottymouth', 'Gibberish', 'Latin', 'Jive'], 2)}
|
||||||
|
: **Challenge** : ${_.random(0, 15)} (${_.random(10, 10000)} XP)
|
||||||
|
___
|
||||||
|
:
|
||||||
|
${_.times(_.random(2, 3), function(){return genAbilities();}).join('\n\t\t\t\n\t\t\t')}
|
||||||
|
:
|
||||||
|
### Actions
|
||||||
|
${_.times(_.random(2, 3), function(){return genAction();}).join('\n\t\t\t\n\t\t\t')}
|
||||||
|
}}`;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -151,6 +151,11 @@ module.exports = [
|
|||||||
].join('\n');
|
].join('\n');
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name : 'Monster Stat Block (unframed)',
|
||||||
|
icon : 'fas fa-paw',
|
||||||
|
gen : MonsterBlockGen.unframed,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name : 'Monster Stat Block',
|
name : 'Monster Stat Block',
|
||||||
icon : 'fas fa-spider',
|
icon : 'fas fa-spider',
|
||||||
|
|||||||
@@ -234,6 +234,7 @@ body {
|
|||||||
.useSansSerif();
|
.useSansSerif();
|
||||||
position : relative;
|
position : relative;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
|
margin-bottom : 1em;
|
||||||
|
|
||||||
p{
|
p{
|
||||||
margin-bottom : 0;
|
margin-bottom : 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user