mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
[CLB] Implemented Black Market Connections
This commit is contained in:
parent
963d2cb417
commit
2bf4139a31
3 changed files with 97 additions and 0 deletions
|
|
@ -0,0 +1,40 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.ChangelingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Shapeshifter32Token extends TokenImpl {
|
||||
|
||||
static final private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("CLB"));
|
||||
}
|
||||
|
||||
public Shapeshifter32Token() {
|
||||
super("Shapeshifter Token", "3/2 colorless Shapeshifter creature token with changeling");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.SHAPESHIFTER);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(2);
|
||||
addAbility(new ChangelingAbility());
|
||||
}
|
||||
|
||||
public Shapeshifter32Token(final Shapeshifter32Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Shapeshifter32Token copy() {
|
||||
return new Shapeshifter32Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue