[40K] Implement Inquisitor Eisenhorn (#9678)

* [40K] Implement Inquisitor Eisenhorn

* Add Cherubael file author

* Fixed Inquisitor Eisenhorn failing to reveal top card of library as its drawn
This commit is contained in:
PurpleCrowbar 2022-11-09 22:49:31 +00:00 committed by GitHub
parent 3b8ae39e4c
commit b44dc7335e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 178 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author PurpleCrowbar
*/
public final class CherubaelToken extends TokenImpl {
public CherubaelToken() {
super("Cherubael", "Cherubael, a legendary 4/4 black Demon creature token with flying");
cardType.add(CardType.CREATURE);
addSuperType(SuperType.LEGENDARY);
subtype.add(SubType.DEMON);
color.setBlack(true);
power = new MageInt(4);
toughness = new MageInt(4);
this.addAbility(FlyingAbility.getInstance());
}
public CherubaelToken(final CherubaelToken token) {
super(token);
}
public CherubaelToken copy() {
return new CherubaelToken(this);
}
}