mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Leonin Iconoclast - Fixed spelling error in its name.
This commit is contained in:
parent
6fda22a324
commit
3f7da9537a
1 changed files with 6 additions and 6 deletions
|
@ -45,7 +45,7 @@ import mage.target.TargetPermanent;
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public class LeoninIconclast extends CardImpl<LeoninIconclast> {
|
public class LeoninIconoclast extends CardImpl<LeoninIconoclast> {
|
||||||
|
|
||||||
private static final FilterPermanent filter = new FilterPermanent("enchantment creature an opponent controls");
|
private static final FilterPermanent filter = new FilterPermanent("enchantment creature an opponent controls");
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@ public class LeoninIconclast extends CardImpl<LeoninIconclast> {
|
||||||
filter.add(new ControllerPredicate(TargetController.OPPONENT));
|
filter.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||||
}
|
}
|
||||||
|
|
||||||
public LeoninIconclast(UUID ownerId) {
|
public LeoninIconoclast(UUID ownerId) {
|
||||||
super(ownerId, 16, "Leonin Iconclast", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
super(ownerId, 16, "Leonin Iconoclast", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||||
this.expansionSetCode = "JOU";
|
this.expansionSetCode = "JOU";
|
||||||
this.subtype.add("Cat");
|
this.subtype.add("Cat");
|
||||||
this.subtype.add("Monk");
|
this.subtype.add("Monk");
|
||||||
|
@ -71,12 +71,12 @@ public class LeoninIconclast extends CardImpl<LeoninIconclast> {
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
public LeoninIconclast(final LeoninIconclast card) {
|
public LeoninIconoclast(final LeoninIconoclast card) {
|
||||||
super(card);
|
super(card);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LeoninIconclast copy() {
|
public LeoninIconoclast copy() {
|
||||||
return new LeoninIconclast(this);
|
return new LeoninIconoclast(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue