mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
[ZNR] fixed Archpriest of Iona text (#7044)
This commit is contained in:
parent
0986a98022
commit
99898e62f0
2 changed files with 8 additions and 5 deletions
|
|
@ -33,7 +33,7 @@ public final class AcquisitionsExpert extends CardImpl {
|
|||
new DiscardCardYouChooseTargetEffect(TargetController.ANY, PartyCount.instance)
|
||||
.setText("target opponent reveals a number of cards from their hand " +
|
||||
"equal to the number of creatures in your party. You choose one of those cards. " +
|
||||
"That player discards that card." + PartyCount.getReminder())
|
||||
"That player discards that card. " + PartyCount.getReminder())
|
||||
);
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability.addHint(PartyCountHint.instance));
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.BeginningOfCombatTriggeredAbility;
|
||||
|
|
@ -14,11 +12,13 @@ import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
|||
import mage.abilities.effects.common.continuous.SetPowerSourceEffect;
|
||||
import mage.abilities.hint.common.PartyCountHint;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.*;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
|
|
@ -34,7 +34,10 @@ public final class ArchpriestOfIona extends CardImpl {
|
|||
|
||||
// Archpriest of Iona's power is equal to the number of creatures in your party.
|
||||
this.addAbility(new SimpleStaticAbility(
|
||||
Zone.ALL, new SetPowerSourceEffect(PartyCount.instance, Duration.EndOfGame)
|
||||
Zone.ALL,
|
||||
new SetPowerSourceEffect(
|
||||
PartyCount.instance, Duration.EndOfGame
|
||||
).setText("{this}'s power is equal to the number of creatures in your party. " + PartyCount.getReminder())
|
||||
).addHint(PartyCountHint.instance));
|
||||
|
||||
// At the beginning of combat on your turn, if you have a full party, target creature gets +1/+1 and gains flying until end of turn.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue