mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
fixed issue 49 - Razor Hippogriff triggered ability
This commit is contained in:
parent
1558e37abd
commit
239776525e
2 changed files with 16 additions and 6 deletions
|
@ -32,16 +32,12 @@ import java.util.UUID;
|
|||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Duration;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.Card;
|
||||
|
@ -50,7 +46,7 @@ import mage.filter.common.FilterArtifactCard;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInGraveyard;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -71,7 +67,7 @@ public class RazorHippogriff extends CardImpl<RazorHippogriff> {
|
|||
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect());
|
||||
//TargetCard target = new TargetCard(Zone.GRAVEYARD, FilterArtifactCard.getDefault());
|
||||
TargetCard target = new TargetCardInGraveyard(FilterArtifactCard.getDefault());
|
||||
TargetCard target = new TargetCardInYourGraveyard(FilterArtifactCard.getDefault());
|
||||
target.setRequired(true);
|
||||
target.setTargetName("artifact card in your graveyard");
|
||||
ability.addTarget(target);
|
||||
|
|
|
@ -72,6 +72,20 @@ public class TargetCardInYourGraveyard extends TargetCard<TargetCardInYourGravey
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if there are enough {@link Card} that can be selected.
|
||||
*
|
||||
* @param sourceControllerId - controller of the select event
|
||||
* @param game
|
||||
* @return - true if enough valid {@link Card} exist
|
||||
*/
|
||||
@Override
|
||||
public boolean canChoose(UUID sourceControllerId, Game game) {
|
||||
if (game.getPlayer(sourceControllerId).getGraveyard().count(filter, game) >= this.minNumberOfTargets)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public TargetCardInYourGraveyard copy() {
|
||||
return new TargetCardInYourGraveyard(this);
|
||||
|
|
Loading…
Reference in a new issue