forked from External/mage
57 lines
1.9 KiB
Java
57 lines
1.9 KiB
Java
package mage.cards.c;
|
|
|
|
import java.util.UUID;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.FlashAbility;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.effects.common.AttachEffect;
|
|
import mage.abilities.effects.common.DontUntapInControllersUntapStepEnchantedEffect;
|
|
import mage.abilities.effects.common.TapEnchantedEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.target.TargetPermanent;
|
|
import mage.abilities.keyword.EnchantAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class CaptureSphere extends CardImpl {
|
|
|
|
public CaptureSphere(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{U}");
|
|
|
|
this.subtype.add(SubType.AURA);
|
|
|
|
// Flash
|
|
this.addAbility(FlashAbility.getInstance());
|
|
|
|
// Enchant creature
|
|
TargetPermanent auraTarget = new TargetCreaturePermanent();
|
|
this.getSpellAbility().addTarget(auraTarget);
|
|
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
|
|
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
|
this.addAbility(ability);
|
|
|
|
// When Capture Sphere enters the battlefield, tap enchanted creature.
|
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new TapEnchantedEffect()));
|
|
|
|
// Enchanted creature doesn't untap during its controller's untap step.
|
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new DontUntapInControllersUntapStepEnchantedEffect()));
|
|
}
|
|
|
|
public CaptureSphere(final CaptureSphere card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public CaptureSphere copy() {
|
|
return new CaptureSphere(this);
|
|
}
|
|
}
|