mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
spjspj - Change to '{this}'. Also add checks for if in graveyard of owner and whether it can return to the battlefield
This commit is contained in:
parent
6c141a1f3e
commit
383b05534c
1 changed files with 14 additions and 5 deletions
|
@ -42,8 +42,11 @@ import mage.cards.Card;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
|
import mage.target.Target;
|
||||||
import mage.target.TargetPermanent;
|
import mage.target.TargetPermanent;
|
||||||
import mage.target.common.TargetCreaturePermanent;
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
|
@ -86,7 +89,7 @@ class ScreamsFromWithinEffect extends OneShotEffect {
|
||||||
|
|
||||||
public ScreamsFromWithinEffect() {
|
public ScreamsFromWithinEffect() {
|
||||||
super(Outcome.PutCardInPlay);
|
super(Outcome.PutCardInPlay);
|
||||||
staticText = "return Screams from Within from your graveyard to the battlefield";
|
staticText = "return {this} from your graveyard to the battlefield";
|
||||||
}
|
}
|
||||||
|
|
||||||
public ScreamsFromWithinEffect(final ScreamsFromWithinEffect effect) {
|
public ScreamsFromWithinEffect(final ScreamsFromWithinEffect effect) {
|
||||||
|
@ -95,10 +98,16 @@ class ScreamsFromWithinEffect extends OneShotEffect {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Card sourceEnchantmentCard = game.getCard(source.getSourceId());
|
Card aura = game.getCard(source.getSourceId());
|
||||||
Player player = game.getPlayer(source.getControllerId());
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
if (sourceEnchantmentCard != null && player != null) {
|
if (aura != null && game.getState().getZone(source.getSourceId()) == Zone.GRAVEYARD && player != null && player.getGraveyard().contains(source.getSourceId())) {
|
||||||
return player.moveCards(sourceEnchantmentCard, Zone.BATTLEFIELD, source, game);
|
for (Permanent creaturePermanent : game.getBattlefield().getAllActivePermanents(new FilterCreaturePermanent(), game)) {
|
||||||
|
for (Target target : aura.getSpellAbility().getTargets()) {
|
||||||
|
if (target.canTarget(creaturePermanent.getId(), game)) {
|
||||||
|
return player.moveCards(aura, Zone.BATTLEFIELD, source, game);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue