[STX] Pest Summoning - Fixed using wrong token

This commit is contained in:
Daniel Bomar 2021-04-04 13:28:26 -05:00
parent 39185d0b00
commit b3c5baee34
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

@ -5,7 +5,7 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.game.permanent.token.PestToken;
import mage.game.permanent.token.WitherbloomToken;
import java.util.UUID;
@ -20,7 +20,7 @@ public final class PestSummoning extends CardImpl {
this.subtype.add(SubType.LESSON);
// Create two 1/1 black and green Pest creature tokens with "When this creature dies, you gain 1 life."
this.getSpellAbility().addEffect(new CreateTokenEffect(new PestToken(), 2));
this.getSpellAbility().addEffect(new CreateTokenEffect(new WitherbloomToken(), 2));
}
private PestSummoning(final PestSummoning card) {