mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Jazal Goldmane - Fixed that the effect of the activated ability did not end on the turn's end.
This commit is contained in:
parent
809bf663df
commit
f835c0baa3
1 changed files with 1 additions and 2 deletions
|
@ -55,7 +55,6 @@ public class JazalGoldmane extends CardImpl {
|
|||
this.subtype.add("Cat");
|
||||
this.subtype.add("Warrior");
|
||||
|
||||
this.color.setWhite(true);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
|
@ -65,7 +64,7 @@ public class JazalGoldmane extends CardImpl {
|
|||
DynamicValue xValue = new AttackingCreatureCount("the number of attacking creatures");
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
new BoostControlledEffect(xValue, xValue , Duration.WhileOnBattlefield, new FilterAttackingCreature("Attacking creatures"), false),
|
||||
new BoostControlledEffect(xValue, xValue , Duration.EndOfTurn, new FilterAttackingCreature("Attacking creatures"), false),
|
||||
new ManaCostsImpl("{3}{W}{W}")));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue