[WHO] Implement The Curse of Fenric (#13718)

---------

Co-authored-by: xenohedron <12538125+xenohedron@users.noreply.github.com>
This commit is contained in:
padfoothelix 2025-06-08 05:10:34 +02:00 committed by GitHub
parent f94e570f6d
commit 4bc30b4b8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 200 additions and 2 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DeathtouchAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author padfoothelix
*/
public final class Mutant33DeathtouchToken extends TokenImpl {
public Mutant33DeathtouchToken() {
super("Mutant Token", "3/3 green mutant creature token with deathtouch");
cardType.add(CardType.CREATURE);
subtype.add(SubType.MUTANT);
color.setGreen(true);
power = new MageInt(3);
toughness = new MageInt(3);
addAbility(DeathtouchAbility.getInstance());
}
private Mutant33DeathtouchToken(final Mutant33DeathtouchToken token) {
super(token);
}
public Mutant33DeathtouchToken copy() {
return new Mutant33DeathtouchToken(this);
}
}

View file

@ -2253,6 +2253,7 @@
|Generate|TOK:WHO|Human|2||TheEleventhHourToken|
|Generate|TOK:WHO|Human Noble|||TheGirlInTheFireplaceHumanNobleToken|
|Generate|TOK:WHO|Mark of the Rani|||MarkOfTheRaniToken|
|Generate|TOK:WHO|Mutant|||Mutant33DeathtouchToken|
|Generate|TOK:WHO|Soldier|||SoldierToken|
|Generate|TOK:WHO|Treasure|1||TreasureToken|
|Generate|TOK:WHO|Treasure|2||TreasureToken|