mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[M20] fixed Vivien Natures Avenger with wrong targets amount and loyalty cost;
This commit is contained in:
parent
720c9849cb
commit
1dab4b23e3
1 changed files with 2 additions and 2 deletions
|
@ -33,13 +33,13 @@ public final class VivienNaturesAvenger extends CardImpl {
|
|||
Ability ability = new LoyaltyAbility(new AddCountersTargetEffect(
|
||||
CounterType.P1P1.createInstance(3)
|
||||
), 1);
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
ability.addTarget(new TargetCreaturePermanent(0, 1));
|
||||
this.addAbility(ability);
|
||||
|
||||
// −1: Reveal cards from the top of your library until you reveal a creature card. Put that card into your hand and the rest on the bottom of your library in a random order.
|
||||
this.addAbility(new LoyaltyAbility(new RevealCardsFromLibraryUntilEffect(
|
||||
StaticFilters.FILTER_CARD_CREATURE_A, Zone.HAND, Zone.HAND, false, false
|
||||
)));
|
||||
), -1));
|
||||
|
||||
// −6: Target creature gets +10/+10 and gains trample until end of turn.
|
||||
ability = new LoyaltyAbility(
|
||||
|
|
Loading…
Reference in a new issue