mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Penumbra Spider - Fixed that it's ability triggerd if the Spider left battlefield instead of only if he dies.
This commit is contained in:
parent
98a49cc39b
commit
f7b3ce42e8
1 changed files with 4 additions and 4 deletions
|
@ -28,13 +28,13 @@
|
|||
package mage.sets.planechase2012;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LeavesBattlefieldTriggeredAbility;
|
||||
import mage.abilities.common.DiesTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.game.permanent.token.Token;
|
||||
|
||||
/**
|
||||
|
@ -55,7 +55,7 @@ public class PenumbraSpider extends CardImpl<PenumbraSpider> {
|
|||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
// When Penumbra Spider dies, put a 2/4 black Spider creature token with reach onto the battlefield.
|
||||
this.addAbility(new LeavesBattlefieldTriggeredAbility(new CreateTokenEffect(new SpiderToken()), false));
|
||||
this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new SpiderToken()), false));
|
||||
}
|
||||
|
||||
public PenumbraSpider(final PenumbraSpider card) {
|
||||
|
|
Loading…
Reference in a new issue