0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-19 01:12:45 +00:00

Converted the monster block to use border iamges

This commit is contained in:
Scott Tolksdorf
2016-05-10 23:51:45 -04:00
parent 6f6f5649d4
commit 634c1a617c
8 changed files with 24 additions and 32 deletions

View File

@@ -39,8 +39,6 @@
padding : 10px;
cursor : pointer;
font-size : 13px;
//font-weight: 800;
//text-transform: uppercase;
i{
margin-right: 8px;
}

View File

@@ -24,13 +24,13 @@ module.exports = function(classname){
"",
"#### Proficiencies",
"___",
"- **Armor:** " + (_.sample(["Light armor", "Medium armor", "Heavy armor", "Shields"], _.random(0,3)).join(', ') || "None"),
"- **Weapons:** " + (_.sample(["Squeegee", "Rubber Chicken", "Simple weapons", "Martial weapons"], _.random(0,2)).join(', ') || "None"),
"- **Tools:** " + (_.sample(["Artian's tools", "one musical instrument", "Thieve's tools"], _.random(0,2)).join(', ') || "None"),
"- **Armor:** " + (_.sampleSize(["Light armor", "Medium armor", "Heavy armor", "Shields"], _.random(0,3)).join(', ') || "None"),
"- **Weapons:** " + (_.sampleSize(["Squeegee", "Rubber Chicken", "Simple weapons", "Martial weapons"], _.random(0,2)).join(', ') || "None"),
"- **Tools:** " + (_.sampleSize(["Artian's tools", "one musical instrument", "Thieve's tools"], _.random(0,2)).join(', ') || "None"),
"",
"___",
"- **Saving Throws:** " + (_.sample(abilityList, 2).join(', ')),
"- **Skills:** Choose two from " + (_.sample(skillList, _.random(4, 6)).join(', ')),
"- **Saving Throws:** " + (_.sampleSize(abilityList, 2).join(', ')),
"- **Skills:** Choose two from " + (_.sampleSize(skillList, _.random(4, 6)).join(', ')),
"",
"#### Equipment",
"You start with the following equipment, in addition to the equipment granted by your background:",

View File

@@ -1,7 +1,7 @@
var _ = require('lodash');
var genList = function(list, max){
return _.sample(list, _.random(0,max)).join(', ') || "None";
return _.sampleSize(list, _.random(0,max)).join(', ') || "None";
}
var getMonsterName = function(){