mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +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
|
* @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);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue