mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
* Fixed that special actions (e.g. delve mana payment) were handled correctly if a player plays a turn for another player.
This commit is contained in:
parent
7bdc5b2f44
commit
862ac38f51
3 changed files with 15 additions and 11 deletions
|
|
@ -43,13 +43,12 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class BecomeImmense extends CardImpl {
|
||||
|
||||
public BecomeImmense(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{5}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{5}{G}");
|
||||
|
||||
|
||||
// Delve
|
||||
// Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)
|
||||
this.addAbility(new DelveAbility());
|
||||
// Target creature gets +6/+6 until end of turn
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(6,6,Duration.EndOfTurn));
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(6, 6, Duration.EndOfTurn));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue