Fen Dweller 5 лет назад
Родитель
Сommit
f396914ba5
2 измененных файлов: 4 добавлений и 3 удалений
  1. +1
    -1
      src/components/Statblock.vue
  2. +3
    -2
      src/game/creatures/withers.ts

+ 1
- 1
src/components/Statblock.vue Просмотреть файл

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


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




+ 3
- 2
src/game/creatures/withers.ts Просмотреть файл

@@ -4,7 +4,7 @@ import { ImproperNoun, POVPair, ProperNoun, FemalePronouns, RandomWord, Adjectiv
import { LogLine, LogLines, LogEntry, Newline } from '../interface' import { LogLine, LogLines, LogEntry, Newline } from '../interface'
import { VoreType, Stomach, VoreContainer, Vore, NormalContainer, Container } from '../vore' import { VoreType, Stomach, VoreContainer, Vore, NormalContainer, Container } from '../vore'
import { AttackAction, FeedAction, TransferAction, EatenAction } from '../combat/actions' 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 { InstantKill } from '../combat/effects'
import * as Words from '../words' import * as Words from '../words'
import { StatVigorTest } from '../combat/tests' import { StatVigorTest } from '../combat/tests'
@@ -61,7 +61,8 @@ class FlexToesAction extends GroupAction {


constructor (private damage: DamageFormula, container: Container) { constructor (private damage: DamageFormula, container: Container) {
super('Flex Toes', 'Flex your toes!', [ super('Flex Toes', 'Flex your toes!', [
new ContainerCondition(container)
new ContainerCondition(container),
new PairCondition()
]) ])
} }
} }


Загрузка…
Отмена
Сохранить