[BRO] Implemented Kayla's Command

This commit is contained in:
Daniel Bomar 2022-11-03 14:57:54 -05:00
parent 023954bb28
commit c869acbdcf
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author weirddan455
*/
public class Construct2Token extends TokenImpl {
public Construct2Token() {
super("Construct Token", "2/2 colorless Construct artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
power = new MageInt(2);
toughness = new MageInt(2);
}
private Construct2Token(final Construct2Token token) {
super(token);
}
@Override
public Construct2Token copy() {
return new Construct2Token(this);
}
}