Implement [M3C] Aether Refinery (#12337)

This commit is contained in:
grimreap124 2024-06-07 09:22:55 +10:00 committed by GitHub
parent 24e73df510
commit af879be1d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author grimreap124
*/
public final class AetherbornToken extends TokenImpl {
public AetherbornToken() {
this(0, 0);
}
public AetherbornToken(int power, int toughness) {
super("Aetherborn Token",
"X/X black Aetherborn creature token, where X is the amount of {E} paid this way");
cardType.add(CardType.CREATURE);
subtype.add(SubType.AETHERBORN);
color.setBlack(true);
this.power = new MageInt(power);
this.toughness = new MageInt(toughness);
}
private AetherbornToken(final AetherbornToken token) {
super(token);
}
public AetherbornToken copy() {
return new AetherbornToken(this);
}
}