mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Kormus Bell - Fixed that the effect was wrongly applied to all lands instead of to only samps.
This commit is contained in:
parent
8d2f4cc9ac
commit
6456e937d6
1 changed files with 5 additions and 2 deletions
|
@ -36,8 +36,11 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.game.permanent.token.Token;
|
||||
|
||||
/**
|
||||
|
@ -52,7 +55,7 @@ public class KormusBell extends CardImpl<KormusBell> {
|
|||
this.expansionSetCode = "LEA";
|
||||
|
||||
// All Swamps are 1/1 black creatures that are still lands.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAllEffect(new KormusBellToken(), "lands", new FilterLandPermanent("Swamps"), Duration.WhileOnBattlefield)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAllEffect(new KormusBellToken(), "lands", new FilterPermanent("Swamp", "Swamps"), Duration.WhileOnBattlefield)));
|
||||
}
|
||||
|
||||
public KormusBell(final KormusBell card) {
|
||||
|
|
Loading…
Reference in a new issue