mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
Merge remote-tracking branch 'magefree/master'
This commit is contained in:
commit
d97d9ea130
5 changed files with 165 additions and 4 deletions
|
|
@ -32,7 +32,7 @@ import mage.abilities.effects.common.DamageMultiEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetCreaturePermanentAmount;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -46,7 +46,7 @@ public class SpreadingFlames extends CardImpl {
|
|||
|
||||
// Spreading Flames deals 6 damage divided as you choose among any number of target creatures.
|
||||
this.getSpellAbility().addEffect(new DamageMultiEffect(6));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0,Integer.MAX_VALUE));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanentAmount(6));
|
||||
}
|
||||
|
||||
public SpreadingFlames(final SpreadingFlames card) {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@
|
|||
package mage.sets.magic2010;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.dynamicvalue.common.ManacostVariableValue;
|
||||
import mage.abilities.effects.common.discard.DiscardTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
|
@ -46,7 +45,6 @@ public class MindShatter extends CardImpl {
|
|||
super(ownerId, 106, "Mind Shatter", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{X}{B}{B}");
|
||||
this.expansionSetCode = "M10";
|
||||
|
||||
|
||||
// Target player discards X cards at random.
|
||||
this.getSpellAbility().addEffect(new DiscardTargetEffect(new ManacostVariableValue(), true));
|
||||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue