mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[BRO] Implemented Kayla's Command
This commit is contained in:
parent
023954bb28
commit
c869acbdcf
3 changed files with 142 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue