mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[ZNR] Implemented Inscription of Insight
This commit is contained in:
parent
ea137de0f5
commit
ed65b8dea8
3 changed files with 119 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class InscriptionOfInsightToken extends TokenImpl {
|
||||
|
||||
public InscriptionOfInsightToken(int xValue) {
|
||||
super("Illusion", "X/X blue Illusion creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.ILLUSION);
|
||||
power = new MageInt(xValue);
|
||||
toughness = new MageInt(xValue);
|
||||
}
|
||||
|
||||
public InscriptionOfInsightToken(final InscriptionOfInsightToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public InscriptionOfInsightToken copy() {
|
||||
return new InscriptionOfInsightToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue