* Bounty of Might - Fixed wrong casting costs.

This commit is contained in:
LevelX2 2018-09-23 18:27:40 +02:00
parent 6e9810696f
commit 111be48211

View file

@ -1,4 +1,3 @@
package mage.cards.b; package mage.cards.b;
import java.util.UUID; import java.util.UUID;
@ -17,11 +16,10 @@ import mage.target.targetpointer.ThirdTargetPointer;
* *
* @author Ryan-Saklad * @author Ryan-Saklad
*/ */
public final class BountyOfMight extends CardImpl { public final class BountyOfMight extends CardImpl {
public BountyOfMight(UUID ownerId, CardSetInfo setInfo) { 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. // Target creature gets +3/+3 until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn)); this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn));