mirror of
https://github.com/correl/mage.git
synced 2025-04-02 03:18:09 -09:00
Add hint to Tezzeret, Master of the Bridge
This commit is contained in:
parent
caf331c368
commit
d3ec7e44a3
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ import mage.abilities.effects.OneShotEffect;
|
|||
import mage.abilities.effects.common.DamagePlayersEffect;
|
||||
import mage.abilities.effects.common.ReturnFromGraveyardToHandTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityControlledSpellsEffect;
|
||||
import mage.abilities.hint.common.ArtifactYouControlHint;
|
||||
import mage.abilities.keyword.AffinityForArtifactsAbility;
|
||||
import mage.cards.*;
|
||||
import mage.constants.*;
|
||||
|
@ -47,7 +48,7 @@ public final class TezzeretMasterOfTheBridge extends CardImpl {
|
|||
)));
|
||||
|
||||
// +2: Tezzeret, Master of the Bridge deals X damage to each opponent, where X is the number of artifacts you control. You gain X life.
|
||||
this.addAbility(new LoyaltyAbility(new TezzeretMasterOfTheBridgeEffect(), 2));
|
||||
this.addAbility(new LoyaltyAbility(new TezzeretMasterOfTheBridgeEffect(), 2).addHint(ArtifactYouControlHint.instance));
|
||||
|
||||
// -3: Return target artifact card from your graveyard to your hand.
|
||||
Ability ability = new LoyaltyAbility(new ReturnFromGraveyardToHandTargetEffect(), -3);
|
||||
|
|
Loading…
Add table
Reference in a new issue