[ONE] Implement Venser, Corpse Puppet

This commit is contained in:
theelk801 2023-01-15 14:34:49 -05:00
parent 6e6a08fe78
commit 39270046d2
3 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class TheHollowSentinelToken extends TokenImpl {
public TheHollowSentinelToken() {
super("The Hollow Sentinel", "The Hollow Sentinel, a legendary 3/3 colorless Phyrexian Golem artifact creature token");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.GOLEM);
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("ONE");
}
public TheHollowSentinelToken(final TheHollowSentinelToken token) {
super(token);
}
public TheHollowSentinelToken copy() {
return new TheHollowSentinelToken(this);
}
}