forked from External/mage
[MH3] Implement Reiterating Bolt
This commit is contained in:
parent
cfeec25da7
commit
26c72ae0bf
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/r/ReiteratingBolt.java
Normal file
37
Mage.Sets/src/mage/cards/r/ReiteratingBolt.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.costs.common.PayEnergyCost;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.keyword.ReplicateAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreatureOrPlaneswalker;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ReiteratingBolt extends CardImpl {
|
||||
|
||||
public ReiteratingBolt(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{R}");
|
||||
|
||||
// Replicate--Pay {E}{E}{E}.
|
||||
this.addAbility(new ReplicateAbility(new PayEnergyCost(3)));
|
||||
|
||||
// Reiterating Bolt deals 3 damage to target creature or planeswalker.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(3));
|
||||
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
|
||||
}
|
||||
|
||||
private ReiteratingBolt(final ReiteratingBolt card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReiteratingBolt copy() {
|
||||
return new ReiteratingBolt(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -128,6 +128,7 @@ public final class ModernHorizons3 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Reckless Pyrosurfer", 133, Rarity.UNCOMMON, mage.cards.r.RecklessPyrosurfer.class));
|
||||
cards.add(new SetCardInfo("Recruiter of the Guard", 266, Rarity.MYTHIC, mage.cards.r.RecruiterOfTheGuard.class));
|
||||
cards.add(new SetCardInfo("Reef Worm", 271, Rarity.UNCOMMON, mage.cards.r.ReefWorm.class));
|
||||
cards.add(new SetCardInfo("Reiterating Bolt", 134, Rarity.UNCOMMON, mage.cards.r.ReiteratingBolt.class));
|
||||
cards.add(new SetCardInfo("Revitalizing Repast", 256, Rarity.UNCOMMON, mage.cards.r.RevitalizingRepast.class));
|
||||
cards.add(new SetCardInfo("Ripples of Undeath", 107, Rarity.RARE, mage.cards.r.RipplesOfUndeath.class));
|
||||
cards.add(new SetCardInfo("Roil Cartographer", 67, Rarity.UNCOMMON, mage.cards.r.RoilCartographer.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue