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