0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-28 20:58:13 +00:00

have part of the random encoutner generator working, should move over to flux before continuing

This commit is contained in:
Scott Tolksdorf
2015-11-23 13:29:50 -05:00
parent 4abee31892
commit cd3c111aa5
7 changed files with 212 additions and 35 deletions

View File

@@ -17,7 +17,7 @@ var Encounter = React.createClass({
reward : '',
enemies : [],
players : '',
index : {},
unique : {},
monsterManual : {}
};
@@ -109,8 +109,7 @@ var Encounter = React.createClass({
var reward;
if(this.props.reward){
reward = <div className='reward'>
<i className='fa fa-trophy' />
{this.props.reward}
<i className='fa fa-trophy' /> Rewards: {this.props.reward}
</div>
}