mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[PIP] Implement Atomize
This commit is contained in:
parent
f9c532699b
commit
f890c05860
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/a/Atomize.java
Normal file
34
Mage.Sets/src/mage/cards/a/Atomize.java
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.abilities.effects.common.counter.ProliferateEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetNonlandPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Atomize extends CardImpl {
|
||||
|
||||
public Atomize(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}{G}");
|
||||
|
||||
// Destroy target nonland permanent. Proliferate.
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetNonlandPermanent());
|
||||
this.getSpellAbility().addEffect(new ProliferateEffect());
|
||||
}
|
||||
|
||||
private Atomize(final Atomize card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Atomize copy() {
|
||||
return new Atomize(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -27,6 +27,7 @@ public final class Fallout extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Arcane Signet", 224, Rarity.UNCOMMON, mage.cards.a.ArcaneSignet.class));
|
||||
cards.add(new SetCardInfo("Ash Barrens", 253, Rarity.COMMON, mage.cards.a.AshBarrens.class));
|
||||
cards.add(new SetCardInfo("Assemble the Legion", 210, Rarity.RARE, mage.cards.a.AssembleTheLegion.class));
|
||||
cards.add(new SetCardInfo("Atomize", 94, Rarity.RARE, mage.cards.a.Atomize.class));
|
||||
cards.add(new SetCardInfo("Ayula, Queen Among Bears", 348, Rarity.RARE, mage.cards.a.AyulaQueenAmongBears.class));
|
||||
cards.add(new SetCardInfo("Basilisk Collar", 225, Rarity.RARE, mage.cards.b.BasiliskCollar.class));
|
||||
cards.add(new SetCardInfo("Bastion of Remembrance", 182, Rarity.UNCOMMON, mage.cards.b.BastionOfRemembrance.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue