mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
38 lines
826 B
Java
38 lines
826 B
Java
|
|
package mage.cards.w;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.DefenderAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class WallOfMist extends CardImpl {
|
|
|
|
public WallOfMist(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
|
|
|
this.subtype.add(SubType.WALL);
|
|
this.power = new MageInt(0);
|
|
this.toughness = new MageInt(5);
|
|
|
|
// Defender
|
|
this.addAbility(DefenderAbility.getInstance());
|
|
|
|
}
|
|
|
|
public WallOfMist(final WallOfMist card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public WallOfMist copy() {
|
|
return new WallOfMist(this);
|
|
}
|
|
}
|