mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
[ANA] - implemented Shrine Keeper
This commit is contained in:
parent
0fef87dd28
commit
2aa16bdf7d
1 changed files with 32 additions and 0 deletions
32
Mage.Sets/src/mage/cards/s/ShrineKeeper.java
Normal file
32
Mage.Sets/src/mage/cards/s/ShrineKeeper.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue