fix some text

This commit is contained in:
xenohedron 2024-06-19 22:37:15 -04:00
parent 8caa8ccee4
commit 4b9e9ff832
3 changed files with 8 additions and 6 deletions

View file

@ -63,7 +63,7 @@ class ArcaneBombardmentEffect extends OneShotEffect {
ArcaneBombardmentEffect() {
super(Outcome.PlayForFree);
this.staticText = "exile an instant or sorcery card at random from your graveyard. "
+ "Then copy each card exiled with {this}, and you may cast any number of the copies without paying their mana costs.";
+ "Then copy each card exiled with {this}. You may cast any number of the copies without paying their mana costs.";
}
private ArcaneBombardmentEffect(final ArcaneBombardmentEffect effect) {

View file

@ -3,6 +3,7 @@ package mage.cards.h;
import mage.MageObjectReference;
import mage.abilities.Ability;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.TransformIntoSourceTriggeredAbility;
import mage.abilities.costs.common.PayLifeCost;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.TransformSourceEffect;
@ -25,7 +26,6 @@ import mage.target.common.TargetCardInYourGraveyard;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import mage.abilities.common.TransformIntoSourceTriggeredAbility;
/**
* @author TheElk801
@ -39,7 +39,8 @@ public final class HavengulMystery extends CardImpl {
this.nightCard = true;
// When this land transforms into Havengul Mystery, return target creature card from your graveyard to the battlefield.
Ability ability = new TransformIntoSourceTriggeredAbility(new HavengulMysteryEffect());
Ability ability = new TransformIntoSourceTriggeredAbility(new HavengulMysteryEffect())
.setTriggerPhrase("When this land transforms into {this}");
ability.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
this.addAbility(ability);

View file

@ -1,4 +1,3 @@
package mage.cards.l;
import mage.abilities.Ability;
@ -21,8 +20,10 @@ public final class LensOfClarity extends CardImpl {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{1}");
// You may look at the top card of your library and at face-down creatures you don't control.
Ability ability = new SimpleStaticAbility(new LookAtTopCardOfLibraryAnyTimeEffect().setText("you may look at the top card of your library"));
ability.addEffect(new LookAtOpponentFaceDownCreaturesAnyTimeEffect().setText("at face-down creatures you don't control any time").concatBy(" and "));
Ability ability = new SimpleStaticAbility(new LookAtTopCardOfLibraryAnyTimeEffect()
.setText("you may look at the top card of your library"));
ability.addEffect(new LookAtOpponentFaceDownCreaturesAnyTimeEffect()
.setText("and at face-down creatures you don't control any time"));
this.addAbility(ability);
}