mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[DMC] Implement Rasputin, the Oneiromancer (#9515)
This commit is contained in:
parent
bb284b852d
commit
51fb4df5a0
3 changed files with 139 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.keyword.ProtectionAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class RasputinKnightToken extends TokenImpl {
|
||||
|
||||
public RasputinKnightToken() {
|
||||
super("Knight Token", "2/2 white Knight creature token with protection from red");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.KNIGHT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
this.addAbility(ProtectionAbility.from(ObjectColor.RED));
|
||||
setOriginalExpansionSetCode("DMC");
|
||||
}
|
||||
|
||||
public RasputinKnightToken(final RasputinKnightToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RasputinKnightToken copy() {
|
||||
return new RasputinKnightToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue