forked from External/mage
36 lines
1,008 B
Java
36 lines
1,008 B
Java
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.effects.common.DestroyTargetEffect;
|
|
import mage.abilities.effects.common.LoseLifeTargetControllerEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class SipOfHemlock extends CardImpl {
|
|
|
|
public SipOfHemlock(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{4}{B}{B}");
|
|
|
|
|
|
// Destroy target creature. Its controller loses 2 life.
|
|
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
|
this.getSpellAbility().addEffect(new LoseLifeTargetControllerEffect(2));
|
|
}
|
|
|
|
public SipOfHemlock(final SipOfHemlock card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SipOfHemlock copy() {
|
|
return new SipOfHemlock(this);
|
|
}
|
|
}
|