mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
* Pemmin's Aura - Fixed wrong activation cost of last ability.
This commit is contained in:
parent
129c6ca6ff
commit
bf934137e8
1 changed files with 9 additions and 9 deletions
|
@ -77,14 +77,14 @@ public class PemminsAura extends CardImpl {
|
||||||
|
|
||||||
// {U}: Enchanted creature gains flying until end of turn.
|
// {U}: Enchanted creature gains flying until end of turn.
|
||||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(FlyingAbility.getInstance(),
|
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(FlyingAbility.getInstance(),
|
||||||
AttachmentType.AURA, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
|
AttachmentType.AURA, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
|
||||||
|
|
||||||
// {U}: Enchanted creature gains shroud until end of turn.
|
// {U}: Enchanted creature gains shroud until end of turn.
|
||||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ShroudAbility.getInstance(),
|
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ShroudAbility.getInstance(),
|
||||||
AttachmentType.AURA, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
|
AttachmentType.AURA, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
|
||||||
|
|
||||||
// {1}: Enchanted creature gets +1/-1 or -1/+1 until end of turn.
|
// {1}: Enchanted creature gets +1/-1 or -1/+1 until end of turn.
|
||||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new PemminsAuraBoostEnchantedEffect(), new ManaCostsImpl("U")));
|
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new PemminsAuraBoostEnchantedEffect(), new ManaCostsImpl("{1}")));
|
||||||
}
|
}
|
||||||
|
|
||||||
public PemminsAura(final PemminsAura card) {
|
public PemminsAura(final PemminsAura card) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue