mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[ONE] Implement Venser, Corpse Puppet
This commit is contained in:
parent
6e6a08fe78
commit
39270046d2
3 changed files with 122 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue