mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Fix Diamond Mare text
This commit is contained in:
parent
a7586ba580
commit
75e5ee8462
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ import java.util.UUID;
|
|||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.common.EntersBattlefieldAbility;
|
||||
import mage.abilities.common.AsEntersBattlefieldAbility;
|
||||
import mage.abilities.effects.common.ChooseColorEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.constants.SubType;
|
||||
|
@ -31,7 +31,7 @@ public final class DiamondMare extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// As Diamond Mare enters the battlefield, choose a color.
|
||||
this.addAbility(new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral)));
|
||||
this.addAbility(new AsEntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral)));
|
||||
|
||||
// Whenever you cast a spell of the chosen color, you gain 1 life.
|
||||
this.addAbility(new DiamondMareTriggeredAbility());
|
||||
|
|
Loading…
Reference in a new issue