mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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
|
||||
*/
|
||||
public class LeoninIconclast extends CardImpl<LeoninIconclast> {
|
||||
public class LeoninIconoclast extends CardImpl<LeoninIconoclast> {
|
||||
|
||||
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));
|
||||
}
|
||||
|
||||
public LeoninIconclast(UUID ownerId) {
|
||||
super(ownerId, 16, "Leonin Iconclast", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
public LeoninIconoclast(UUID ownerId) {
|
||||
super(ownerId, 16, "Leonin Iconoclast", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
this.expansionSetCode = "JOU";
|
||||
this.subtype.add("Cat");
|
||||
this.subtype.add("Monk");
|
||||
|
@ -71,12 +71,12 @@ public class LeoninIconclast extends CardImpl<LeoninIconclast> {
|
|||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public LeoninIconclast(final LeoninIconclast card) {
|
||||
public LeoninIconoclast(final LeoninIconoclast card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LeoninIconclast copy() {
|
||||
return new LeoninIconclast(this);
|
||||
public LeoninIconoclast copy() {
|
||||
return new LeoninIconoclast(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue