mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[ONE] Implement Drown in Ichor
This commit is contained in:
parent
1a9ceec18b
commit
82e40867cd
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/d/DrownInIchor.java
Normal file
34
Mage.Sets/src/mage/cards/d/DrownInIchor.java
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.common.counter.ProliferateEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DrownInIchor extends CardImpl {
|
||||
|
||||
public DrownInIchor(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{B}");
|
||||
|
||||
// Target creature gets -4/-4 until end of turn. Proliferate.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-4, -4));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addEffect(new ProliferateEffect());
|
||||
}
|
||||
|
||||
private DrownInIchor(final DrownInIchor card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DrownInIchor copy() {
|
||||
return new DrownInIchor(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -44,6 +44,7 @@ public final class PhyrexiaAllWillBeOne extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Darkslick Shores", 372, Rarity.RARE, mage.cards.d.DarkslickShores.class));
|
||||
cards.add(new SetCardInfo("Dragonwing Glider", 126, Rarity.RARE, mage.cards.d.DragonwingGlider.class));
|
||||
cards.add(new SetCardInfo("Dross Skullbomb", 225, Rarity.COMMON, mage.cards.d.DrossSkullbomb.class));
|
||||
cards.add(new SetCardInfo("Drown in Ichor", 91, Rarity.UNCOMMON, mage.cards.d.DrownInIchor.class));
|
||||
cards.add(new SetCardInfo("Elesh Norn, Mother of Machines", 10, Rarity.MYTHIC, mage.cards.e.EleshNornMotherOfMachines.class));
|
||||
cards.add(new SetCardInfo("Encroaching Mycosynth", 47, Rarity.RARE, mage.cards.e.EncroachingMycosynth.class));
|
||||
cards.add(new SetCardInfo("Evolved Spinoderm", 166, Rarity.RARE, mage.cards.e.EvolvedSpinoderm.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue