mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix Razorlash Transmogrant. Closes #9846
This commit is contained in:
parent
bc1c8ad3f8
commit
5759c42811
1 changed files with 2 additions and 5 deletions
|
@ -11,10 +11,7 @@ import mage.abilities.effects.common.ReturnSourceFromGraveyardToBattlefieldWithC
|
|||
import mage.abilities.hint.Hint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.*;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
|
@ -44,7 +41,7 @@ public final class RazorlashTransmogrant extends CardImpl {
|
|||
|
||||
// {4}{B}{B}: Return Razorlash Transmogrant from your graveyard to the battlefield with a +1/+1 counter on it. This ability costs {4} less to activate if an opponent controls four or more nonbasic lands.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
new ReturnSourceFromGraveyardToBattlefieldWithCounterEffect(
|
||||
Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldWithCounterEffect(
|
||||
CounterType.P1P1.createInstance(), false
|
||||
), new ManaCostsImpl<>("{4}{B}{B}")
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue