diff --git a/combat.js b/combat.js index 29a877c..7898bec 100644 --- a/combat.js +++ b/combat.js @@ -344,7 +344,7 @@ function leer(attacker) { desc: "Leer at something", attackPlayer: function(defender) { attacker.leering = true; - return attacker.description("The") + " leers at you."; + return [attacker.description("The") + " leers at you."]; }, requirements: [ function(attacker, defender) { return attacker.leering != true && attacker.flags.grappled != true; } diff --git a/feast.css b/feast.css index debe35f..68c0337 100644 --- a/feast.css +++ b/feast.css @@ -106,11 +106,20 @@ button { overflow: auto; } -#stats { +.stats { float: right; flex: 1; } +#player-stats { + height: 50%; +} + +#foe-stats { + display: none; + height: 50%; +} + .stat-line { } diff --git a/feast.html b/feast.html index 329c92b..8d0b05d 100644 --- a/feast.html +++ b/feast.html @@ -25,16 +25,24 @@