mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[KTK] Renamed Stubborn Refusal to Stubborn Denial.
This commit is contained in:
parent
5f47d00bd6
commit
67703006c6
1 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue