implement [MH3] Wurmcoil Larva

This commit is contained in:
Susucre 2024-05-23 14:05:20 +02:00
parent bc71db6b50
commit 149e4328a7
4 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DeathtouchAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class PhyrexianWurm12DeathtouchToken extends TokenImpl {
public PhyrexianWurm12DeathtouchToken() {
super("Phyrexian Wurm Token", "1/2 black Phyrexian Wurm artifact creature token with deathtouch");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.WURM);
color.setBlack(true);
power = new MageInt(1);
toughness = new MageInt(2);
this.addAbility(DeathtouchAbility.getInstance());
}
private PhyrexianWurm12DeathtouchToken(final PhyrexianWurm12DeathtouchToken token) {
super(token);
}
public PhyrexianWurm12DeathtouchToken copy() {
return new PhyrexianWurm12DeathtouchToken(this);
}
}

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.LifelinkAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class PhyrexianWurm21LifelinkToken extends TokenImpl {
public PhyrexianWurm21LifelinkToken() {
super("Phyrexian Wurm Token", "2/1 black Phyrexian Wurm artifact creature token with lifelink");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.WURM);
color.setBlack(true);
power = new MageInt(2);
toughness = new MageInt(1);
this.addAbility(LifelinkAbility.getInstance());
}
private PhyrexianWurm21LifelinkToken(final PhyrexianWurm21LifelinkToken token) {
super(token);
}
public PhyrexianWurm21LifelinkToken copy() {
return new PhyrexianWurm21LifelinkToken(this);
}
}