[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:
Susucre 2023-09-09 05:57:36 +02:00 committed by GitHub
parent 26012ee135
commit 249e7bf31b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 106 additions and 3 deletions

View file

@ -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);
}
}