mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Bounty of Might - Fixed wrong casting costs.
This commit is contained in:
parent
6e9810696f
commit
111be48211
1 changed files with 1 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.b;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -17,11 +16,10 @@ import mage.target.targetpointer.ThirdTargetPointer;
|
|||
*
|
||||
* @author Ryan-Saklad
|
||||
*/
|
||||
|
||||
public final class BountyOfMight extends CardImpl {
|
||||
|
||||
public BountyOfMight(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{G}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{4}{G}{G}");
|
||||
|
||||
// Target creature gets +3/+3 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
|
||||
|
|
Loading…
Reference in a new issue