mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
[M20] fixed wrong texts
This commit is contained in:
parent
a6a67ec255
commit
628b668ad3
4 changed files with 9 additions and 10 deletions
|
@ -25,7 +25,7 @@ import java.util.UUID;
|
|||
public final class GoblinBirdGrabber extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter
|
||||
= new FilterControlledCreaturePermanent("if you control a creature with flying");
|
||||
= new FilterControlledCreaturePermanent("you control a creature with flying");
|
||||
|
||||
static {
|
||||
filter.add(new AbilityPredicate(FlyingAbility.class));
|
||||
|
|
|
@ -1,32 +1,31 @@
|
|||
|
||||
package mage.cards.i;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author fireshoes
|
||||
*/
|
||||
public final class InspiringCaptain extends CardImpl {
|
||||
|
||||
public InspiringCaptain(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{W}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.KNIGHT);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// When Inspiring Captain enters the battlefield, creatures you control get +1/+1 until end of turn.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new BoostControlledEffect(1, 1, Duration.EndOfTurn, new FilterCreaturePermanent())));
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new BoostControlledEffect(1, 1, Duration.EndOfTurn, StaticFilters.FILTER_PERMANENT_CREATURES)));
|
||||
}
|
||||
|
||||
public InspiringCaptain(final InspiringCaptain card) {
|
||||
|
|
|
@ -51,7 +51,7 @@ public final class KnightOfTheEbonLegion extends CardImpl {
|
|||
new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
|
||||
TargetController.YOU, false
|
||||
), KnightOfTheEbonLegionCondition.instance, "At the beginning of your end step, " +
|
||||
"if a player lost 4 or more life this turn, put a +1/+1 counter on {this}"
|
||||
"if a player lost 4 or more life this turn, put a +1/+1 counter on {this}."
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ import mage.game.command.Emblem;
|
|||
public final class MuYanlingSkyDancerEmblem extends Emblem {
|
||||
|
||||
private static final FilterPermanent filter
|
||||
= new FilterControlledPermanent(SubType.ISLAND, "Islands you control");
|
||||
= new FilterControlledPermanent(SubType.ISLAND, "islands");
|
||||
|
||||
// "Islands you control have '{T}: Draw a card'."
|
||||
public MuYanlingSkyDancerEmblem() {
|
||||
|
|
Loading…
Reference in a new issue