|
|
@@ -6,7 +6,7 @@ import { LogLine, LogLines, LogEntry, FAElem, ImgElem } from '../interface' |
|
|
import { AttackAction, TransferAction, FeedAction } from '../combat/actions' |
|
|
import { AttackAction, TransferAction, FeedAction } from '../combat/actions' |
|
|
import { InstantKillEffect } from '../combat/effects' |
|
|
import { InstantKillEffect } from '../combat/effects' |
|
|
import * as Words from '../words' |
|
|
import * as Words from '../words' |
|
|
import { ContainedByCondition } from '../combat/conditions' |
|
|
|
|
|
|
|
|
import { ContainedByCondition, ContainsCondition } from '../combat/conditions' |
|
|
|
|
|
|
|
|
class BellyCrushAction extends AttackAction { |
|
|
class BellyCrushAction extends AttackAction { |
|
|
constructor (_damage: Damage) { |
|
|
constructor (_damage: Damage) { |
|
|
@@ -51,7 +51,7 @@ class CrushAction extends Action { |
|
|
"Crush", |
|
|
"Crush", |
|
|
"Crush 'em!", |
|
|
"Crush 'em!", |
|
|
[ |
|
|
[ |
|
|
new ContainedByCondition(container) |
|
|
|
|
|
|
|
|
new ContainsCondition(container) |
|
|
] |
|
|
] |
|
|
) |
|
|
) |
|
|
this.desc = "Crush somebody in your gut" |
|
|
this.desc = "Crush somebody in your gut" |
|
|
|