diff --git a/Mage.Sets/src/mage/cards/g/GarrukRelentless.java b/Mage.Sets/src/mage/cards/g/GarrukRelentless.java index c39b05e92e6..4eb499fab04 100644 --- a/Mage.Sets/src/mage/cards/g/GarrukRelentless.java +++ b/Mage.Sets/src/mage/cards/g/GarrukRelentless.java @@ -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( diff --git a/Mage/src/main/java/mage/game/permanent/token/WolfTokenWithDeathtouch.java b/Mage/src/main/java/mage/game/permanent/token/WolfDeathtouchToken.java similarity index 66% rename from Mage/src/main/java/mage/game/permanent/token/WolfTokenWithDeathtouch.java rename to Mage/src/main/java/mage/game/permanent/token/WolfDeathtouchToken.java index c26b0560841..c082676ca17 100644 --- a/Mage/src/main/java/mage/game/permanent/token/WolfTokenWithDeathtouch.java +++ b/Mage/src/main/java/mage/game/permanent/token/WolfDeathtouchToken.java @@ -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); } } diff --git a/Mage/src/main/resources/tokens-database.txt b/Mage/src/main/resources/tokens-database.txt index 4381a1f2283..4f72981e890 100644 --- a/Mage/src/main/resources/tokens-database.txt +++ b/Mage/src/main/resources/tokens-database.txt @@ -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|