mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Card text fixes
This commit is contained in:
parent
ed8b59ff6f
commit
aeb1fa6bb3
6 changed files with 9 additions and 6 deletions
|
@ -81,7 +81,7 @@ public class ConduitOfRuin extends CardImpl {
|
|||
|
||||
// The first creature spell you cast each turn costs {2} less to cast.
|
||||
Effect effect = new SpellsCostReductionControllerEffect(filterCost, 2);
|
||||
effect.setText("The first creature spell you cast each turn costs {2} less to cast");
|
||||
effect.setText("The first creature spell you cast each turn costs {2} less to cast.");
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect), new ConduitOfRuinWatcher());
|
||||
}
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
*/
|
||||
public class HeraldOfThePantheon extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("enchantment spells");
|
||||
private static final FilterCard filter = new FilterCard("Enchantment spells");
|
||||
private static final FilterSpell filter2 = new FilterSpell("an enchantment spell");
|
||||
|
||||
static {
|
||||
|
|
|
@ -48,7 +48,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
public class JacesSanctum extends CardImpl {
|
||||
|
||||
|
||||
private static final FilterCard filter = new FilterCard("instant and sorcery spells");
|
||||
private static final FilterCard filter = new FilterCard("Instant and sorcery spells");
|
||||
|
||||
private static final FilterSpell filter2 = new FilterSpell("an instant or sorcery spell");
|
||||
|
||||
|
|
|
@ -30,6 +30,7 @@ package mage.cards.k;
|
|||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -61,7 +62,9 @@ public class KrosanDrover extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Creature spells you cast with converted mana cost 6 or greater cost {2} less to cast.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 2)));
|
||||
Effect effect = new SpellsCostReductionControllerEffect(filter, 2);
|
||||
effect.setText("Creature spells you cast with converted mana cost 6 or greater cost {2} less to cast.");
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
|
||||
}
|
||||
|
||||
public KrosanDrover(final KrosanDrover card) {
|
||||
|
|
|
@ -44,7 +44,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
*/
|
||||
public class ManaMatrix extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterCard("instant and enchantment spells");
|
||||
private static final FilterCard filter = new FilterCard("Instant and enchantment spells");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.or(
|
||||
|
|
|
@ -46,7 +46,7 @@ public class PlanarGate extends CardImpl {
|
|||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{6}");
|
||||
|
||||
// Creature spells you cast cost up to {2} less to cast.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(new FilterCreatureCard("creature spells"), 2, true)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(new FilterCreatureCard("Creature spells"), 2, true)));
|
||||
}
|
||||
|
||||
public PlanarGate(final PlanarGate card) {
|
||||
|
|
Loading…
Reference in a new issue