mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix Vampire Gourmand
This commit is contained in:
parent
30dac5cc9f
commit
49b90820e0
1 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@ import mage.abilities.common.AttacksTriggeredAbility;
|
|||
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||
import mage.abilities.effects.common.DoIfCostPaid;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.combat.CantBlockSourceEffect;
|
||||
import mage.abilities.effects.common.combat.CantBeBlockedSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -31,7 +31,7 @@ public final class VampireGourmand extends CardImpl {
|
|||
this.addAbility(new AttacksTriggeredAbility(new DoIfCostPaid(
|
||||
new DrawCardSourceControllerEffect(1),
|
||||
new SacrificeTargetCost(StaticFilters.FILTER_ANOTHER_CREATURE)
|
||||
).addEffect(new CantBlockSourceEffect(Duration.EndOfTurn).concatBy("and"))));
|
||||
).addEffect(new CantBeBlockedSourceEffect(Duration.EndOfTurn).concatBy("and"))));
|
||||
}
|
||||
|
||||
private VampireGourmand(final VampireGourmand card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue