Magic Origins Update Bulletin changes.

This commit is contained in:
emerald000 2015-07-17 00:04:32 -04:00
parent e209114a26
commit 6804ba1f2f
12 changed files with 45 additions and 39 deletions

View file

@ -55,7 +55,7 @@ public class BushidoAbility extends BlocksOrBecomesBlockedTriggeredAbility {
}
static String getReminder(String xValue) {
return " <i>(When this blocks or becomes blocked, it gets +" + xValue+ "/+" + xValue + " until end of turn.)</i>";
return " <i>(Whenever this creature blocks or becomes blocked, it gets +" + xValue+ "/+" + xValue + " until end of turn.)</i>";
}
public BushidoAbility(final BushidoAbility ability) {

View file

@ -29,9 +29,9 @@
package mage.abilities.keyword;
import java.io.ObjectStreamException;
import mage.constants.Zone;
import mage.abilities.MageSingleton;
import mage.abilities.StaticAbility;
import mage.constants.Zone;
/**
@ -61,7 +61,7 @@ public class ChangelingAbility extends StaticAbility implements MageSingleton {
@Override
public String getRule() {
return "Changeling <i>(This card is every creature type at all times.)<i/>";
return "Changeling <i>(This card is every creature type.)<i/>";
}
@Override

View file

@ -55,7 +55,7 @@ import mage.target.common.TargetCreaturePermanent;
public class ProvokeAbility extends AttacksTriggeredAbility {
public ProvokeAbility() {
super(new UntapTargetEffect(), true, "Provoke <i>(When this attacks, you may have target creature defending player controls untap and block it if able.)</i>");
super(new UntapTargetEffect(), true, "Provoke <i>(Whenever this attacks, you may have target creature defending player controls untap and block it if able.)</i>");
this.addEffect(new ProvokeRequirementEffect());
}