updated card text issues

This commit is contained in:
mnapoleon 2015-03-11 13:06:40 -04:00
parent dd299aaec2
commit 99f07cb109
2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@ public class SunscapeMaster extends CardImpl {
// {G}{G}, {tap}: Creatures you control get +2/+2 until end of turn.
Effect effect1 = new BoostControlledEffect(2, 2, Duration.EndOfTurn);
effect1.setText("Creatures you control get +2/+2");
effect1.setText("Creatures you control get +2/+2 until end of turn");
Ability ability1 = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect1, new ManaCostsImpl("{G}{G}"));
ability1.addCost(new TapSourceCost());
this.addAbility(ability1);

View file

@ -48,8 +48,8 @@ import mage.filter.predicate.mageobject.ColorPredicate;
*/
public class YavimayaKavu extends CardImpl {
private static final FilterCreaturePermanent filterGreenCreature = new FilterCreaturePermanent("Green");
private static final FilterCreaturePermanent filterRedCreature = new FilterCreaturePermanent("Red");
private static final FilterCreaturePermanent filterGreenCreature = new FilterCreaturePermanent("green creatures on the battlefield");
private static final FilterCreaturePermanent filterRedCreature = new FilterCreaturePermanent("red creatures on the battlefield");
static {
filterGreenCreature.add(new ColorPredicate(ObjectColor.GREEN));