mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[SPM] Implement Mysterio, Master of Illusion
This commit is contained in:
parent
8716606f0c
commit
fe7b9e3e98
3 changed files with 151 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 TheElk801
|
||||
*/
|
||||
public final class IllusionVillainToken extends TokenImpl {
|
||||
|
||||
public IllusionVillainToken() {
|
||||
super("Illusion Token", "3/3 blue Illusion Villain creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
|
||||
subtype.add(SubType.ILLUSION);
|
||||
subtype.add(SubType.VILLAIN);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
private IllusionVillainToken(final IllusionVillainToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public IllusionVillainToken copy() {
|
||||
return new IllusionVillainToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue