mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
[LTR] Implement Saradoc, Master of Buckland
This commit is contained in:
parent
d4307395b1
commit
b114e77a3a
3 changed files with 108 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 HalflingToken extends TokenImpl {
|
||||
|
||||
public HalflingToken() {
|
||||
super("Halfling Token", "1/1 white Halfling creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.HALFLING);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public HalflingToken(final HalflingToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HalflingToken copy() {
|
||||
return new HalflingToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue