mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
text fix
This commit is contained in:
parent
93c878c0d8
commit
36523d5415
1 changed files with 5 additions and 3 deletions
|
@ -48,7 +48,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
public class GlenElendraPranksters extends CardImpl {
|
||||
|
||||
public GlenElendraPranksters(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{U}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
this.subtype.add(SubType.FAERIE);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(1);
|
||||
|
@ -57,8 +57,10 @@ public class GlenElendraPranksters extends CardImpl {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
// Whenever you cast a spell during an opponent's turn, you may return target creature you control to its owner's hand.
|
||||
Ability ability = new ConditionalTriggeredAbility(new SpellCastControllerTriggeredAbility(new ReturnToHandTargetEffect(), true), OnOpponentsTurnCondition.instance,
|
||||
"Whenever you cast a spell during an opponent's turn, you may have target creature get -1/-1 until end of turn.");
|
||||
Ability ability = new ConditionalTriggeredAbility(
|
||||
new SpellCastControllerTriggeredAbility(new ReturnToHandTargetEffect(), true), OnOpponentsTurnCondition.instance,
|
||||
"Whenever you cast a spell during an opponent's turn, you may return target creature you control to its owner's hand."
|
||||
);
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue