mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Kor Skyfisher fix
This commit is contained in:
parent
ac9091d6ee
commit
e92882df1e
1 changed files with 4 additions and 1 deletions
|
@ -39,6 +39,7 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.target.Target;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
||||
/**
|
||||
|
@ -57,7 +58,9 @@ public class KorSkyfisher extends CardImpl<KorSkyfisher> {
|
|||
this.toughness = new MageInt(3);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), false);
|
||||
ability.addTarget(new TargetControlledPermanent());
|
||||
Target target = new TargetControlledPermanent();
|
||||
target.setRequired(true);
|
||||
ability.addTarget(target);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue