mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
Minor fixes
This commit is contained in:
parent
689948494b
commit
346c8c609f
5 changed files with 7 additions and 7 deletions
|
|
@ -28,7 +28,6 @@
|
|||
package mage.sets.betrayersofkamigawa;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.effects.common.SacrificeAllEffect;
|
||||
|
|
@ -47,7 +46,7 @@ public class CrackTheEarth extends CardImpl<CrackTheEarth> {
|
|||
this.subtype.add("Arcane");
|
||||
this.color.setRed(true);
|
||||
// Each player sacrifices a permanent.
|
||||
this.getSpellAbility().addEffect(new SacrificeAllEffect(1, new FilterControlledPermanent("permanent to sacrifice")));
|
||||
this.getSpellAbility().addEffect(new SacrificeAllEffect(1, new FilterControlledPermanent("permanent")));
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
public class NezumiBoneReader extends CardImpl<NezumiBoneReader> {
|
||||
|
||||
public NezumiBoneReader (UUID ownerId) {
|
||||
super(ownerId, 127, "Nezumi Bone Reader", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||
super(ownerId, 127, "Nezumi Bone-Reader", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||
this.expansionSetCode = "CHK";
|
||||
this.subtype.add("Rat");
|
||||
this.subtype.add("Shaman");
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ class NemesisTrapAlternativeCost extends AlternativeCostImpl<NemesisTrapAlternat
|
|||
|
||||
@Override
|
||||
public String getText() {
|
||||
return "If a white creature is attacking, you may pay {B}{B} rather than pay Nemesis Trap's mana cost.";
|
||||
return "If a white creature is attacking, you may pay {B}{B} rather than pay Nemesis Trap's mana cost";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ class MindbreakTrapAlternativeCost extends AlternativeCostImpl<MindbreakTrapAlte
|
|||
|
||||
@Override
|
||||
public String getText() {
|
||||
return "If an opponent cast three or more spells this turn, you may pay {0} rather than pay Mindbreak Trap's mana cost.";
|
||||
return "If an opponent cast three or more spells this turn, you may pay {0} rather than pay Mindbreak Trap's mana cost";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -167,6 +167,7 @@ class MindbreakEffect extends OneShotEffect<MindbreakEffect>{
|
|||
|
||||
MindbreakEffect() {
|
||||
super(Outcome.Exile);
|
||||
staticText = "Exile any number of target spells";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ class SummoningTrapAlternativeCost extends AlternativeCostImpl<SummoningTrapAlte
|
|||
|
||||
@Override
|
||||
public String getText() {
|
||||
return "If a creature spell you cast this turn was countered by a spell or ability an opponent controlled, you may pay {0} rather than pay Summoning Trap's mana cost.";
|
||||
return "If a creature spell you cast this turn was countered by a spell or ability an opponent controlled, you may pay {0} rather than pay Summoning Trap's mana cost";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -156,7 +156,7 @@ class SummoningTrapEffect extends OneShotEffect<SummoningTrapEffect> {
|
|||
|
||||
public SummoningTrapEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
this.staticText = "Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in any order.";
|
||||
this.staticText = "Look at the top seven cards of your library. You may put a creature card from among them onto the battlefield. Put the rest on the bottom of your library in any order";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue