forked from External/mage
[STX] Pest Summoning - Fixed using wrong token
This commit is contained in:
parent
39185d0b00
commit
b3c5baee34
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue