mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
updated card text issues
This commit is contained in:
parent
dd299aaec2
commit
99f07cb109
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue