Browse Source

Adjust spacing

master
Fen Dweller 5 years ago
parent
commit
f396914ba5
2 changed files with 4 additions and 3 deletions
  1. +1
    -1
      src/components/Statblock.vue
  2. +3
    -2
      src/game/creatures/withers.ts

+ 1
- 1
src/components/Statblock.vue View File

@@ -181,7 +181,7 @@ a {

.stat-entry .healthbar i {
flex: 0 1;
flex-basis: 14pt;
flex-basis: 20pt;
font-size: 14pt;
}



+ 3
- 2
src/game/creatures/withers.ts View File

@@ -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()
])
}
}


Loading…
Cancel
Save