mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[FDN] Implement Guarded Heir
This commit is contained in:
parent
4c260d7a60
commit
ca91c976c4
3 changed files with 73 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Knight33Token extends TokenImpl {
|
||||
|
||||
public Knight33Token() {
|
||||
super("Knight Token", "3/3 white Knight creature token");
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.KNIGHT);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
private Knight33Token(final Knight33Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Knight33Token copy() {
|
||||
return new Knight33Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue