forked from External/mage
45 lines
1.4 KiB
Java
45 lines
1.4 KiB
Java
package mage.cards.i;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|
import mage.abilities.effects.common.TapTargetEffect;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.target.common.TargetOpponentsCreaturePermanent;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class IntrusivePackbeast extends CardImpl {
|
|
|
|
public IntrusivePackbeast(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}");
|
|
|
|
this.subtype.add(SubType.BEAST);
|
|
this.power = new MageInt(3);
|
|
this.toughness = new MageInt(3);
|
|
|
|
// Vigilance
|
|
this.addAbility(VigilanceAbility.getInstance());
|
|
|
|
// When Intrusive Packbeast enters the battlefield, tap up to two target creatures your opponents control.
|
|
Ability ability = new EntersBattlefieldTriggeredAbility(new TapTargetEffect());
|
|
ability.addTarget(new TargetOpponentsCreaturePermanent(0, 2));
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
public IntrusivePackbeast(final IntrusivePackbeast card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public IntrusivePackbeast copy() {
|
|
return new IntrusivePackbeast(this);
|
|
}
|
|
}
|