mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
- Fixed cost of Greel, Mind Raker.
This commit is contained in:
parent
db8cfc7978
commit
f119965f46
1 changed files with 4 additions and 0 deletions
|
|
@ -42,6 +42,9 @@ import mage.constants.Zone;
|
||||||
import mage.target.TargetPlayer;
|
import mage.target.TargetPlayer;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import mage.abilities.costs.common.DiscardTargetCost;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.target.common.TargetCardInHand;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
@ -61,6 +64,7 @@ public class GreelMindRaker extends CardImpl {
|
||||||
// {X}{B}, {tap}, Discard two cards: Target player discards X cards at random.
|
// {X}{B}, {tap}, Discard two cards: Target player discards X cards at random.
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DiscardTargetEffect(new ManacostVariableValue(), true), new ManaCostsImpl("{X}{B}"));
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DiscardTargetEffect(new ManacostVariableValue(), true), new ManaCostsImpl("{X}{B}"));
|
||||||
ability.addCost(new TapSourceCost());
|
ability.addCost(new TapSourceCost());
|
||||||
|
ability.addCost(new DiscardTargetCost(new TargetCardInHand(2, new FilterCard())));
|
||||||
ability.addTarget(new TargetPlayer());
|
ability.addTarget(new TargetPlayer());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue