mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Swapped cost order
This commit is contained in:
parent
8de4987b80
commit
40421cb54f
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ public class BoggartForager extends CardImpl {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// {R}, Sacrifice Boggart Forager: Target player shuffles his or her library.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ShuffleLibraryTargetEffect(), new SacrificeSourceCost());
|
||||
ability.addManaCost(new ManaCostsImpl("{R}"));
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new ShuffleLibraryTargetEffect(), new ManaCostsImpl("{R}"));
|
||||
ability.addCost(new SacrificeSourceCost());
|
||||
ability.addTarget(new TargetPlayer());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue