mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[WOE] Implement Hylda of the Icy Crown (#10901)
* tap trigger from Icewrought Sentry branch * [WOE] Implement Hylda of the Icy Crown --------- Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
parent
764c41e36d
commit
7180fd06ff
3 changed files with 98 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Elemental44WUToken extends TokenImpl {
|
||||
|
||||
public Elemental44WUToken() {
|
||||
super("Elemental Token", "4/4 white and blue Elemental creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.ELEMENTAL);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
}
|
||||
|
||||
private Elemental44WUToken(final Elemental44WUToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Elemental44WUToken copy() {
|
||||
return new Elemental44WUToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue