mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
text cleanup, closes #11625
This commit is contained in:
parent
bff57da79c
commit
a19103a958
2 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
|||
public final class CarmenCruelSkymarcher extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterPermanentCard(
|
||||
" a permanent from your graveyard with mana value less than or equal to {this}'s power");
|
||||
"permanent card with mana value less than or equal to {this}'s power from your graveyard");
|
||||
static {
|
||||
filter.add(CarmenPredicate.instance);
|
||||
}
|
||||
|
|
@ -105,4 +105,4 @@ enum CarmenPredicate implements ObjectSourcePlayerPredicate<Card> {
|
|||
return sourcePermanent != null
|
||||
&& input.getObject().getManaValue() <= sourcePermanent.getPower().getValue();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class DugganPrivateDetective extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetBasePowerToughnessSourceEffect(CardsInControllerHandCount.instance)));
|
||||
|
||||
// Whenever Duggan enters the battlefield or attacks, investigate.
|
||||
this.addAbility(new EntersBattlefieldOrAttacksSourceTriggeredAbility(new InvestigateEffect()));
|
||||
this.addAbility(new EntersBattlefieldOrAttacksSourceTriggeredAbility(new InvestigateEffect().setText("investigate")));
|
||||
|
||||
// The Most Important Punch in History -- {1}{G}, {T}: Duggan deals damage equal to twice its power to another target creature. Activate only once.
|
||||
Ability ability = new ActivateOncePerGameActivatedAbility(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue