mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Refactor/rename AssassinToken2 to AssassinDeathtouchToken to fit naming convention
This commit is contained in:
parent
15cd693acb
commit
8089a41ddf
3 changed files with 8 additions and 9 deletions
|
|
@ -19,7 +19,7 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.AssassinToken2;
|
||||
import mage.game.permanent.token.AssassinDeathtouchToken;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -42,7 +42,7 @@ public final class VraskaSwarmsEminence extends CardImpl {
|
|||
);
|
||||
|
||||
// -2: Create a 1/1 black Assassin creature token with deathtouch and "Whenever this creature deals damage to a planeswalker, destroy that planeswalker."
|
||||
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new AssassinToken2()), -2));
|
||||
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new AssassinDeathtouchToken()), -2));
|
||||
}
|
||||
|
||||
private VraskaSwarmsEminence(final VraskaSwarmsEminence card) {
|
||||
|
|
|
|||
|
|
@ -9,9 +9,9 @@ import mage.constants.SubType;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AssassinToken2 extends TokenImpl {
|
||||
public final class AssassinDeathtouchToken extends TokenImpl {
|
||||
|
||||
public AssassinToken2() {
|
||||
public AssassinDeathtouchToken() {
|
||||
super("Assassin Token", "1/1 black Assassin creature token with deathtouch and \"Whenever this creature deals damage to a planeswalker, destroy that planeswalker.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
|
|
@ -22,12 +22,11 @@ public final class AssassinToken2 extends TokenImpl {
|
|||
addAbility(new DestroyPlaneswalkerWhenDamagedTriggeredAbility());
|
||||
}
|
||||
|
||||
private AssassinToken2(final AssassinToken2 token) {
|
||||
private AssassinDeathtouchToken(final AssassinDeathtouchToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AssassinToken2 copy() {
|
||||
return new AssassinToken2(this);
|
||||
public AssassinDeathtouchToken copy() {
|
||||
return new AssassinDeathtouchToken(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1067,7 +1067,7 @@
|
|||
|
||||
# WAR
|
||||
|TOK:WAR|Angel||AngelVigilanceToken|
|
||||
|TOK:WAR|Assassin||AssassinToken2|
|
||||
|TOK:WAR|Assassin||AssassinDeathtouchToken|
|
||||
|TOK:WAR|Citizen||PlanewideCelebrationToken|
|
||||
|TOK:WAR|Devil||DevilToken|
|
||||
|TOK:WAR|Dragon||DragonToken|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue