mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
[ZNR] fixed Blood Price not losing life (#7046)
This commit is contained in:
parent
29e7076176
commit
58799ba270
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ package mage.cards.b;
|
|||
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
import mage.abilities.effects.common.LookLibraryAndPickControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeSourceControllerEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
@ -25,6 +26,7 @@ public final class BloodPrice extends CardImpl {
|
|||
false, false, Zone.HAND, false,
|
||||
false, true
|
||||
));
|
||||
this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(2));
|
||||
}
|
||||
|
||||
private BloodPrice(final BloodPrice card) {
|
||||
|
|
Loading…
Reference in a new issue