mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[VOW] Implemented Manaform Hellkite
This commit is contained in:
parent
c664051e38
commit
b4f81efef8
3 changed files with 118 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author weirddan455
|
||||
*/
|
||||
public class DragonIllusionToken extends TokenImpl {
|
||||
|
||||
public DragonIllusionToken(int xValue) {
|
||||
super("Dragon Illusion", "X/X red Dragon Illusion creature token with flying and haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.DRAGON);
|
||||
subtype.add(SubType.ILLUSION);
|
||||
power = new MageInt(xValue);
|
||||
toughness = new MageInt(xValue);
|
||||
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private DragonIllusionToken(final DragonIllusionToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DragonIllusionToken copy() {
|
||||
return new DragonIllusionToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue