mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
* Cephalid Broker - Set target mandatory (cbt33).
This commit is contained in:
parent
16b10c06d2
commit
97f057339e
1 changed files with 2 additions and 3 deletions
|
@ -59,11 +59,10 @@ public class CephalidBroker extends CardImpl<CephalidBroker> {
|
|||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// {tap}: Target player draws two cards, then discards two cards.
|
||||
|
||||
// {tap}: Target player draws two cards, then discards two cards.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardTargetEffect(2), new TapSourceCost());
|
||||
ability.addEffect(new DiscardTargetEffect(2));
|
||||
ability.addTarget(new TargetPlayer());
|
||||
ability.addTarget(new TargetPlayer(true));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue