mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Implemented Alirios, Enraptured
This commit is contained in:
parent
38ab692aa0
commit
11c3d33ac0
3 changed files with 88 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 ReflectionBlueToken extends TokenImpl {
|
||||
|
||||
public ReflectionBlueToken() {
|
||||
super("Reflection", "3/2 blue Reflection creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.REFLECTION);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
private ReflectionBlueToken(final ReflectionBlueToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public ReflectionBlueToken copy() {
|
||||
return new ReflectionBlueToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue