mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Triton Tactics - Fixed tooltip text.
This commit is contained in:
parent
aa0941d23e
commit
0000e9e1c0
1 changed files with 4 additions and 2 deletions
|
@ -35,9 +35,9 @@ import java.util.UUID;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.DelayedTriggeredAbility;
|
import mage.abilities.DelayedTriggeredAbility;
|
||||||
import mage.abilities.effects.ContinuousEffect;
|
import mage.abilities.effects.ContinuousEffect;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
|
import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
|
||||||
import mage.abilities.effects.common.DrawCardControllerEffect;
|
|
||||||
import mage.abilities.effects.common.SkipNextUntapTargetEffect;
|
import mage.abilities.effects.common.SkipNextUntapTargetEffect;
|
||||||
import mage.abilities.effects.common.continious.BoostTargetEffect;
|
import mage.abilities.effects.common.continious.BoostTargetEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
|
@ -70,7 +70,9 @@ public class TritonTactics extends CardImpl<TritonTactics> {
|
||||||
// Up to two target creatures each get +0/+3 until end of turn. Untap those creatures.
|
// Up to two target creatures each get +0/+3 until end of turn. Untap those creatures.
|
||||||
// At this turn's next end of combat, tap each creature that was blocked by one of those
|
// At this turn's next end of combat, tap each creature that was blocked by one of those
|
||||||
// creatures this turn and it doesn't untap during its controller's next untap step.
|
// creatures this turn and it doesn't untap during its controller's next untap step.
|
||||||
this.getSpellAbility().addEffect(new BoostTargetEffect(0,3, Duration.EndOfTurn));
|
Effect effect = new BoostTargetEffect(0,3, Duration.EndOfTurn);
|
||||||
|
effect.setText("Up to two target creatures each get +0/+3 until end of turn");
|
||||||
|
this.getSpellAbility().addEffect(effect);
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2));
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2));
|
||||||
this.getSpellAbility().addEffect(new TritonTacticsUntapTargetEffect());
|
this.getSpellAbility().addEffect(new TritonTacticsUntapTargetEffect());
|
||||||
this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new TritonTacticsTriggeredAbility()));
|
this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new TritonTacticsTriggeredAbility()));
|
||||||
|
|
Loading…
Reference in a new issue