mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
Fix some DOM card text
This commit is contained in:
parent
9a47d13e3e
commit
a5fc4d0741
7 changed files with 90 additions and 90 deletions
|
@ -119,6 +119,6 @@ class HallarTheFirefletcherTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever you cast a spell, if it was kicked," + super.getRule();
|
||||
return "Whenever you cast a spell, if that spell was kicked," + super.getRule();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ class HelmOfTheHostEffect extends OneShotEffect {
|
|||
|
||||
public HelmOfTheHostEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
this.staticText = "create a token that’s a copy of equipped creature, except the token isn’t legendary if equipped creature is legendary. That token gains haste.";
|
||||
this.staticText = "create a token that's a copy of equipped creature, except the token isn't legendary if equipped creature is legendary. That token gains haste.";
|
||||
}
|
||||
|
||||
public HelmOfTheHostEffect(final HelmOfTheHostEffect effect) {
|
||||
|
|
|
@ -49,8 +49,8 @@ public class MoxAmber extends CardImpl {
|
|||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{0}");
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
|
||||
// {tap}: Add one mana pool of any color among legendary creatures or planeswalkers you control.
|
||||
FilterPermanent filter = new FilterPermanent("legendary creatures or planeswalkers");
|
||||
// {tap}: Add one mana pool of any color among legendary creatures and planeswalkers you control.
|
||||
FilterPermanent filter = new FilterPermanent("legendary creatures and planeswalkers");
|
||||
filter.add(Predicates.or(
|
||||
Predicates.and(
|
||||
new CardTypePredicate(CardType.CREATURE),
|
||||
|
|
|
@ -50,7 +50,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
|
|||
*/
|
||||
public class RatColony extends CardImpl {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent();
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other Rat you control");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate(SubType.RAT));
|
||||
|
|
|
@ -36,6 +36,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.target.Target;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import static mage.filter.StaticFilters.FILTER_PERMANENT_CREATURES;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -51,8 +52,7 @@ public class TerashisCry extends CardImpl {
|
|||
|
||||
|
||||
// Tap up to three target creatures.
|
||||
Target target = new TargetCreaturePermanent(0, 3);
|
||||
target.setTargetName("up to three");
|
||||
Target target = new TargetCreaturePermanent(0, 3, FILTER_PERMANENT_CREATURES, false);
|
||||
this.getSpellAbility().addEffect(new TapTargetEffect());
|
||||
this.getSpellAbility().addTarget(target);
|
||||
}
|
||||
|
|
|
@ -272,7 +272,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
|
|||
if (anyOrder) {
|
||||
sb.append(" in any order");
|
||||
} else {
|
||||
sb.append(" in random order");
|
||||
sb.append(" in a random order");
|
||||
}
|
||||
break;
|
||||
case HAND:
|
||||
|
@ -342,7 +342,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
|
|||
if (anyOrder) {
|
||||
sb.append("any");
|
||||
} else {
|
||||
sb.append("random");
|
||||
sb.append("a random");
|
||||
}
|
||||
sb.append(" order");
|
||||
} else if (targetZoneLookedCards == Zone.GRAVEYARD) {
|
||||
|
|
Loading…
Reference in a new issue