mage/Mage.Sets/src/mage/cards/w/WallOfMist.java
2018-06-02 17:59:49 +02:00

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);
}
}