[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:
Susucre 2023-08-21 15:24:44 +02:00 committed by GitHub
parent 764c41e36d
commit 7180fd06ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 98 additions and 0 deletions

View file

@ -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);
}
}