forked from External/mage
[WOC] Implement Court of Embereth (#10971)
* Clean text generation of ConditionalOneShotEffect to prevent "if if" * [WOC] Implement Court of Embereth
This commit is contained in:
parent
26012ee135
commit
249e7bf31b
6 changed files with 106 additions and 3 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author LevelX2
|
||||
*/
|
||||
public final class Knight31RedToken extends TokenImpl {
|
||||
|
||||
public Knight31RedToken() {
|
||||
super("Knight Token", "3/1 red Knight creature token");
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.KNIGHT);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
protected Knight31RedToken(final Knight31RedToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Knight31RedToken copy() {
|
||||
return new Knight31RedToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue