mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[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:
parent
3b8ae39e4c
commit
b44dc7335e
3 changed files with 178 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue