mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fix the tooltip text of Necromantic Summons
This commit is contained in:
parent
1562921777
commit
752b2cdf08
1 changed files with 3 additions and 3 deletions
|
@ -57,10 +57,10 @@ public class NecromanticSummons extends CardImpl {
|
|||
// Put target creature card from a graveyard onto the battlefield under your control.
|
||||
this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCardInGraveyard(new FilterCreatureCard("creature card from a graveyard")));
|
||||
|
||||
|
||||
// <i>Spell mastery</i> - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it.
|
||||
Effect effect = new ConditionalOneShotEffect(new NecromanticSummoningEffect(),
|
||||
SpellMasteryCondition.getInstance(), "<br><i>Spell mastery</i> - If there are two or more instant and/or sorcery cards in your graveyard, add {B}{B}{B} to your mana pool");
|
||||
SpellMasteryCondition.getInstance(), "<br><i>Spell mastery</i> - If there are two or more instant and/or sorcery cards in your graveyard, that creature enters the battlefield with two additional +1/+1 counters on it");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
}
|
||||
|
||||
|
@ -99,4 +99,4 @@ class NecromanticSummoningEffect extends OneShotEffect {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue