forked from External/mage
37 lines
849 B
Java
37 lines
849 B
Java
|
|
package mage.cards.p;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.DeathtouchAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class PharikasChosen extends CardImpl {
|
|
|
|
public PharikasChosen(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
|
this.subtype.add(SubType.SNAKE);
|
|
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// Deathtouch
|
|
this.addAbility(DeathtouchAbility.getInstance());
|
|
}
|
|
|
|
private PharikasChosen(final PharikasChosen card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public PharikasChosen copy() {
|
|
return new PharikasChosen(this);
|
|
}
|
|
}
|