mirror of
https://github.com/correl/mage.git
synced 2025-03-30 01:03:57 -09:00
- Fixed #6079
This commit is contained in:
parent
b0c01da007
commit
99c50d041a
1 changed files with 4 additions and 6 deletions
|
@ -1,7 +1,5 @@
|
|||
|
||||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.condition.common.HellbentCondition;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -9,8 +7,8 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetAnyTarget;
|
||||
import mage.watchers.common.MorbidWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.condition.common.MorbidCondition;
|
||||
|
||||
/**
|
||||
* @author nantuko
|
||||
|
@ -23,9 +21,9 @@ public final class BrimstoneVolley extends CardImpl {
|
|||
// Brimstone Volley deals 3 damage to any target.
|
||||
// <i>Morbid</i> — Brimstone Volley deals 5 damage to that creature or player instead if a creature died this turn.
|
||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||
new DamageTargetEffect(3), new DamageTargetEffect(5), HellbentCondition.instance,
|
||||
"{this} deals 3 damage to any target." +
|
||||
"<br><i>Morbid</i> — {this} deals 5 damage instead if a creature died this turn."
|
||||
new DamageTargetEffect(3), new DamageTargetEffect(5), MorbidCondition.instance,
|
||||
"{this} deals 3 damage to any target."
|
||||
+ "<br><i>Morbid</i> — {this} deals 5 damage instead if a creature died this turn."
|
||||
));
|
||||
this.getSpellAbility().addTarget(new TargetAnyTarget());
|
||||
this.getSpellAbility().addWatcher(new MorbidWatcher());
|
||||
|
|
Loading…
Add table
Reference in a new issue