[ANA] - implemented Shrine Keeper

This commit is contained in:
Oleg Agafonov 2018-10-09 18:41:45 +04:00
parent 0fef87dd28
commit 2aa16bdf7d

View file

@ -0,0 +1,32 @@
package mage.cards.s;
import mage.MageInt;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author JayDi85
*/
public final class ShrineKeeper extends CardImpl {
public ShrineKeeper(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
this.subtype.add(SubType.HUMAN, SubType.CLERIC);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
}
public ShrineKeeper(final ShrineKeeper card) {
super(card);
}
@Override
public ShrineKeeper copy() {
return new ShrineKeeper(this);
}
}