mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
Fixed a bug of abilityWord, improved set target of DealsDamageToAPlayerAllTriggeredAbility.
This commit is contained in:
parent
1b7646bee6
commit
6d81f1a0d1
7 changed files with 22 additions and 7 deletions
|
|
@ -35,6 +35,7 @@ import mage.abilities.effects.common.CreateTokenTargetEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetTargetPointer;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.game.permanent.token.Token;
|
||||
|
||||
|
|
@ -58,7 +59,7 @@ public class BroodSliver extends CardImpl {
|
|||
effect.setText("its controller may put a 1/1 colorless Sliver creature token onto the battlefield");
|
||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(effect,
|
||||
new FilterCreaturePermanent("Sliver", "a Sliver"),
|
||||
true, true, true));
|
||||
true, SetTargetPointer.PLAYER, true));
|
||||
}
|
||||
|
||||
public BroodSliver(final BroodSliver card) {
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ import mage.abilities.effects.common.DrawCardTargetEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetTargetPointer;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
|
||||
/**
|
||||
|
|
@ -57,7 +58,7 @@ public class SynapseSliver extends CardImpl {
|
|||
effect.setText("its controller may draw a card");
|
||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(effect,
|
||||
new FilterCreaturePermanent("Sliver", "a Sliver"),
|
||||
true, true, true));
|
||||
true, SetTargetPointer.PLAYER, true));
|
||||
}
|
||||
|
||||
public SynapseSliver(final SynapseSliver card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue