mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Towering Thunderfist - Fixed that Vigilance last while Towering Thunderfist was on the battlefield instad end of turn (Fixes #281)
This commit is contained in:
parent
ded726d2ef
commit
2da26af567
1 changed files with 2 additions and 1 deletions
|
@ -37,6 +37,7 @@ import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
import mage.abilities.effects.common.continious.GainAbilitySourceEffect;
|
import mage.abilities.effects.common.continious.GainAbilitySourceEffect;
|
||||||
import mage.abilities.keyword.VigilanceAbility;
|
import mage.abilities.keyword.VigilanceAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
|
import mage.constants.Duration;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -56,7 +57,7 @@ public class ToweringThunderfist extends CardImpl<ToweringThunderfist> {
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
// {W}: Towering Thunderfist gains vigilance until end of turn.
|
// {W}: Towering Thunderfist gains vigilance until end of turn.
|
||||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(VigilanceAbility.getInstance()), new ManaCostsImpl("{W}")));
|
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(VigilanceAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{W}")));
|
||||||
}
|
}
|
||||||
|
|
||||||
public ToweringThunderfist(final ToweringThunderfist card) {
|
public ToweringThunderfist(final ToweringThunderfist card) {
|
||||||
|
|
Loading…
Reference in a new issue