From f396914ba59502ba30cffce1375c0e6393e47f2c Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 23 Jul 2020 20:34:03 -0400 Subject: [PATCH] Adjust spacing --- src/components/Statblock.vue | 2 +- src/game/creatures/withers.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/Statblock.vue b/src/components/Statblock.vue index a454f1b..39f668d 100644 --- a/src/components/Statblock.vue +++ b/src/components/Statblock.vue @@ -181,7 +181,7 @@ a { .stat-entry .healthbar i { flex: 0 1; - flex-basis: 14pt; + flex-basis: 20pt; font-size: 14pt; } diff --git a/src/game/creatures/withers.ts b/src/game/creatures/withers.ts index fcbe177..5af9f70 100644 --- a/src/game/creatures/withers.ts +++ b/src/game/creatures/withers.ts @@ -4,7 +4,7 @@ import { ImproperNoun, POVPair, ProperNoun, FemalePronouns, RandomWord, Adjectiv import { LogLine, LogLines, LogEntry, Newline } from '../interface' import { VoreType, Stomach, VoreContainer, Vore, NormalContainer, Container } from '../vore' import { AttackAction, FeedAction, TransferAction, EatenAction } from '../combat/actions' -import { TogetherCondition, ContainerCondition, EnemyCondition, AllyCondition } from '../combat/conditions' +import { TogetherCondition, ContainerCondition, EnemyCondition, AllyCondition, PairCondition } from '../combat/conditions' import { InstantKill } from '../combat/effects' import * as Words from '../words' import { StatVigorTest } from '../combat/tests' @@ -61,7 +61,8 @@ class FlexToesAction extends GroupAction { constructor (private damage: DamageFormula, container: Container) { super('Flex Toes', 'Flex your toes!', [ - new ContainerCondition(container) + new ContainerCondition(container), + new PairCondition() ]) } }