mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Herald of Faith - Fixed life gain from 1 to 2 life.
This commit is contained in:
parent
3d31e12eae
commit
d1cc207b42
1 changed files with 2 additions and 2 deletions
|
@ -4,11 +4,11 @@ import java.util.UUID;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -27,7 +27,7 @@ public final class HeraldOfFaith extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// When Herald of Faith attacks, you gain 2 life.
|
||||
this.addAbility(new AttacksTriggeredAbility(new GainLifeEffect(1), false));
|
||||
this.addAbility(new AttacksTriggeredAbility(new GainLifeEffect(2), false));
|
||||
}
|
||||
|
||||
public HeraldOfFaith(final HeraldOfFaith card) {
|
||||
|
|
Loading…
Reference in a new issue