[KTK] Renamed Stubborn Refusal to Stubborn Denial.

This commit is contained in:
LevelX2 2014-09-11 16:58:30 +02:00
parent 5f47d00bd6
commit 67703006c6

View file

@ -46,15 +46,15 @@ import mage.target.TargetSpell;
* *
* @author emerald000 * @author emerald000
*/ */
public class StubbornRefusal extends CardImpl { public class StubbornDenial extends CardImpl {
private static final FilterSpell filter = new FilterSpell("noncreature spell"); private static final FilterSpell filter = new FilterSpell("noncreature spell");
static { static {
filter.add(Predicates.not(new CardTypePredicate(CardType.CREATURE))); filter.add(Predicates.not(new CardTypePredicate(CardType.CREATURE)));
} }
public StubbornRefusal(UUID ownerId) { public StubbornDenial(UUID ownerId) {
super(ownerId, 56, "Stubborn Refusal", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{U}"); super(ownerId, 56, "Stubborn Denial", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{U}");
this.expansionSetCode = "KTK"; this.expansionSetCode = "KTK";
this.color.setBlue(true); this.color.setBlue(true);
@ -72,12 +72,12 @@ public class StubbornRefusal extends CardImpl {
this.getSpellAbility().addTarget(new TargetSpell(filter)); this.getSpellAbility().addTarget(new TargetSpell(filter));
} }
public StubbornRefusal(final StubbornRefusal card) { public StubbornDenial(final StubbornDenial card) {
super(card); super(card);
} }
@Override @Override
public StubbornRefusal copy() { public StubbornDenial copy() {
return new StubbornRefusal(this); return new StubbornDenial(this);
} }
} }