mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Beacon Bolt - Added missing target definition.
This commit is contained in:
parent
cf67c272bc
commit
560980c6ce
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ import mage.abilities.keyword.JumpStartAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -23,6 +24,7 @@ public final class BeaconBolt extends CardImpl {
|
||||||
).setText("{this} deals damage to target creature equal to "
|
).setText("{this} deals damage to target creature equal to "
|
||||||
+ "the total number of instant and sorcery cards "
|
+ "the total number of instant and sorcery cards "
|
||||||
+ "you own in exile and in your graveyard"));
|
+ "you own in exile and in your graveyard"));
|
||||||
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
|
|
||||||
// Jump-start
|
// Jump-start
|
||||||
this.addAbility(new JumpStartAbility(this));
|
this.addAbility(new JumpStartAbility(this));
|
||||||
|
|
Loading…
Reference in a new issue