mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
WolfTokenWithDeathtouch -> WolfDeathtouchToken
This commit is contained in:
parent
948a975298
commit
ac0e513423
3 changed files with 9 additions and 9 deletions
|
|
@ -24,7 +24,7 @@ import mage.game.Game;
|
|||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.WolfToken;
|
||||
import mage.game.permanent.token.WolfTokenWithDeathtouch;
|
||||
import mage.game.permanent.token.WolfDeathtouchToken;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
|
|
@ -61,7 +61,7 @@ public final class GarrukRelentless extends TransformingDoubleFacedCard {
|
|||
|
||||
// Garruk, the Veil-Cursed
|
||||
// +1: Create a 1/1 black Wolf creature token with deathtouch.
|
||||
this.getRightHalfCard().addAbility(new LoyaltyAbility(new CreateTokenEffect(new WolfTokenWithDeathtouch()), 1));
|
||||
this.getRightHalfCard().addAbility(new LoyaltyAbility(new CreateTokenEffect(new WolfDeathtouchToken()), 1));
|
||||
|
||||
// -1: Sacrifice a creature. If you do, search your library for a creature card, reveal it, put it into your hand, then shuffle.
|
||||
this.getRightHalfCard().addAbility(new LoyaltyAbility(new DoIfCostPaid(
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ import mage.constants.SubType;
|
|||
/**
|
||||
* @author nantuko
|
||||
*/
|
||||
public final class WolfTokenWithDeathtouch extends TokenImpl {
|
||||
public final class WolfDeathtouchToken extends TokenImpl {
|
||||
|
||||
public WolfTokenWithDeathtouch() {
|
||||
public WolfDeathtouchToken() {
|
||||
super("Wolf Token", "1/1 black Wolf creature token with deathtouch");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
|
|
@ -21,11 +21,11 @@ public final class WolfTokenWithDeathtouch extends TokenImpl {
|
|||
addAbility(DeathtouchAbility.getInstance());
|
||||
}
|
||||
|
||||
protected WolfTokenWithDeathtouch(final WolfTokenWithDeathtouch token) {
|
||||
protected WolfDeathtouchToken(final WolfDeathtouchToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WolfTokenWithDeathtouch copy() {
|
||||
return new WolfTokenWithDeathtouch(this);
|
||||
public WolfDeathtouchToken copy() {
|
||||
return new WolfDeathtouchToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -662,7 +662,7 @@
|
|||
|TOK:ISD|Spider||SpiderToken|
|
||||
|TOK:ISD|Spirit||SpiritWhiteToken|
|
||||
|TOK:ISD|Vampire||VampireToken|
|
||||
|TOK:ISD|Wolf|1|WolfTokenWithDeathtouch|
|
||||
|TOK:ISD|Wolf|1|WolfDeathtouchToken|
|
||||
|TOK:ISD|Wolf|2|WolfToken|
|
||||
|TOK:ISD|Zombie|1|ZombieToken|
|
||||
|TOK:ISD|Zombie|2|ZombieToken|
|
||||
|
|
@ -2699,7 +2699,7 @@
|
|||
|TOK:INR|Treefolk||WrennAndSevenTreefolkToken|
|
||||
|TOK:INR|Vampire|1|EdgarMarkovToken|
|
||||
|TOK:INR|Vampire|2|VampireToken|
|
||||
|TOK:INR|Wolf|1|WolfTokenWithDeathtouch|
|
||||
|TOK:INR|Wolf|1|WolfDeathtouchToken|
|
||||
|TOK:INR|Wolf|2|WolfToken|
|
||||
|TOK:INR|Zombie|1|ZombieToken2|
|
||||
|TOK:INR|Zombie|2|ZombieToken|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue