forked from External/mage
57 lines
2.1 KiB
Java
57 lines
2.1 KiB
Java
|
|
package mage.cards.n;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.common.PutOnLibraryTargetEffect;
|
|
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
|
import mage.abilities.keyword.FirstStrikeAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Duration;
|
|
import mage.constants.Zone;
|
|
import mage.target.common.TargetControlledCreaturePermanent;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
|
|
/**
|
|
*
|
|
* @author LoneFox
|
|
|
|
*/
|
|
public final class NightscapeApprentice extends CardImpl {
|
|
|
|
public NightscapeApprentice(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
|
this.subtype.add(SubType.ZOMBIE);
|
|
this.subtype.add(SubType.WIZARD);
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// {U}, {T}: Put target creature you control on top of its owner's library.
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutOnLibraryTargetEffect(true), new ManaCostsImpl<>("{U}"));
|
|
ability.addCost(new TapSourceCost());
|
|
ability.addTarget(new TargetControlledCreaturePermanent());
|
|
this.addAbility(ability);
|
|
// {R}, {T}: Target creature gains first strike until end of turn.
|
|
ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(),
|
|
Duration.EndOfTurn), new ManaCostsImpl<>("{R}"));
|
|
ability.addCost(new TapSourceCost());
|
|
ability.addTarget(new TargetCreaturePermanent());
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
private NightscapeApprentice(final NightscapeApprentice card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public NightscapeApprentice copy() {
|
|
return new NightscapeApprentice(this);
|
|
}
|
|
}
|