mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Conviction - Fixed that the activated ability had a mana costs of {U} instead of {W}.
This commit is contained in:
parent
085b00499c
commit
bc42e48c4a
1 changed files with 3 additions and 3 deletions
|
@ -62,12 +62,12 @@ public class Conviction extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
|
||||
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
||||
// Enchanted creature gets +1/+3.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(1, 3, Duration.WhileOnBattlefield)));
|
||||
|
||||
|
||||
// {W}: Return Conviction to its owner's hand.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandSourceEffect(true), new ManaCostsImpl("U")));
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new ReturnToHandSourceEffect(true), new ManaCostsImpl("W")));
|
||||
}
|
||||
|
||||
public Conviction(final Conviction card) {
|
||||
|
|
Loading…
Reference in a new issue