mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented The Wandering Emperor
This commit is contained in:
parent
809ee4e763
commit
c459578a68
4 changed files with 152 additions and 1 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class SamuraiToken extends TokenImpl {
|
||||
|
||||
public SamuraiToken() {
|
||||
super("Samurai token", "2/2 white Samurai creature token with vigilance.");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.SAMURAI);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
private SamuraiToken(final SamuraiToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SamuraiToken copy() {
|
||||
return new SamuraiToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue