소스 검색

Fix wrong name

master
Fen Dweller 5 년 전
부모
커밋
d948942d7f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/game/creatures/withers.ts

+ 2
- 2
src/game/creatures/withers.ts 파일 보기

@@ -5,7 +5,7 @@ import { LogLine, LogLines, LogEntry, Newline } from '../interface'
import { VoreType, Stomach, VoreContainer, Vore, NormalContainer, Container } from '../vore'
import { AttackAction, FeedAction, TransferAction } from '../combat/actions'
import { TogetherCondition, ContainsCondition, EnemyCondition, AllyCondition, PairCondition, CapableCondition } from '../combat/conditions'
import { InstantKillEffect, ResistanceEffect } from '../combat/effects'
import { InstantKillEffect, DamageTypeResistanceEffect } from '../combat/effects'
import * as Words from '../words'
import { StatVigorTest } from '../combat/tests'

@@ -248,7 +248,7 @@ class StompAllyAction extends Action {
return new LogLines(
this.line(user, target),
target.applyEffect(new InstantKillEffect()),
user.applyEffect(new ResistanceEffect(
user.applyEffect(new DamageTypeResistanceEffect(
[DamageType.Crush, DamageType.Slash, DamageType.Pierce],
0.5
)),


불러오는 중...
취소
저장