mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix some text
This commit is contained in:
parent
8caa8ccee4
commit
4b9e9ff832
3 changed files with 8 additions and 6 deletions
|
|
@ -63,7 +63,7 @@ class ArcaneBombardmentEffect extends OneShotEffect {
|
||||||
ArcaneBombardmentEffect() {
|
ArcaneBombardmentEffect() {
|
||||||
super(Outcome.PlayForFree);
|
super(Outcome.PlayForFree);
|
||||||
this.staticText = "exile an instant or sorcery card at random from your graveyard. "
|
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) {
|
private ArcaneBombardmentEffect(final ArcaneBombardmentEffect effect) {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ package mage.cards.h;
|
||||||
import mage.MageObjectReference;
|
import mage.MageObjectReference;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.TriggeredAbilityImpl;
|
import mage.abilities.TriggeredAbilityImpl;
|
||||||
|
import mage.abilities.common.TransformIntoSourceTriggeredAbility;
|
||||||
import mage.abilities.costs.common.PayLifeCost;
|
import mage.abilities.costs.common.PayLifeCost;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.TransformSourceEffect;
|
import mage.abilities.effects.common.TransformSourceEffect;
|
||||||
|
|
@ -25,7 +26,6 @@ import mage.target.common.TargetCardInYourGraveyard;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.common.TransformIntoSourceTriggeredAbility;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
|
|
@ -39,7 +39,8 @@ public final class HavengulMystery extends CardImpl {
|
||||||
this.nightCard = true;
|
this.nightCard = true;
|
||||||
|
|
||||||
// When this land transforms into Havengul Mystery, return target creature card from your graveyard to the battlefield.
|
// 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));
|
ability.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.cards.l;
|
package mage.cards.l;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
|
|
@ -21,8 +20,10 @@ public final class LensOfClarity extends CardImpl {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{1}");
|
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.
|
// 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 ability = new SimpleStaticAbility(new LookAtTopCardOfLibraryAnyTimeEffect()
|
||||||
ability.addEffect(new LookAtOpponentFaceDownCreaturesAnyTimeEffect().setText("at face-down creatures you don't control any time").concatBy(" and "));
|
.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);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue