Add MKM token images

This commit is contained in:
PurpleCrowbar 2024-02-28 01:07:04 +00:00
parent 864823c603
commit 4235949c55
4 changed files with 46 additions and 2 deletions

View file

@ -19,7 +19,7 @@ public final class ImpToken extends TokenImpl {
// When this creature dies, it deals 2 damage to each opponent.
this.addAbility(new DiesSourceTriggeredAbility(
new DamagePlayersEffect(2, TargetController.OPPONENT)));
new DamagePlayersEffect(2, TargetController.OPPONENT)).setTriggerPhrase("When this creature dies, "));
}
private ImpToken(final ImpToken token) {

View file

@ -21,7 +21,7 @@ public final class IzoniSpiderToken extends TokenImpl {
toughness = new MageInt(1);
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// Reach
this.addAbility(ReachAbility.getInstance());