mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fix Courier's Capsule
missing tap cost on ability
This commit is contained in:
parent
ef66c58570
commit
07838a2abc
1 changed files with 3 additions and 0 deletions
|
@ -29,6 +29,8 @@
|
|||
package mage.sets.shardsofalara;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
|
@ -51,6 +53,7 @@ public class CouriersCapsule extends CardImpl {
|
|||
|
||||
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(2), new ManaCostsImpl("{1}{U}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addCost(new SacrificeSourceCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue