mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
[WHO] Implement The Curse of Fenric (#13718)
--------- Co-authored-by: xenohedron <12538125+xenohedron@users.noreply.github.com>
This commit is contained in:
parent
f94e570f6d
commit
4bc30b4b8e
5 changed files with 200 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -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|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue