forked from External/mage
fix Stone Idol Trap and Esper Terra
This commit is contained in:
parent
f92af2b9cd
commit
0b4d8d02d7
2 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ class EsperTerraEffect extends OneShotEffect {
|
||||||
.filter(amount -> amount > 0)
|
.filter(amount -> amount > 0)
|
||||||
.ifPresent(amount -> token.addCounters(CounterType.LORE.createInstance(amount), source, game));
|
.ifPresent(amount -> token.addCounters(CounterType.LORE.createInstance(amount), source, game));
|
||||||
}
|
}
|
||||||
effect.sacrificeTokensCreatedAtNextEndStep(game, source);
|
effect.removeTokensCreatedAt(game, source, false, PhaseStep.END_TURN, TargetController.YOU);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@ class StoneIdolTrapEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
CreateTokenEffect effect = new CreateTokenEffect(new StoneIdolToken());
|
CreateTokenEffect effect = new CreateTokenEffect(new StoneIdolToken());
|
||||||
if (effect.apply(game, source)) {
|
if (effect.apply(game, source)) {
|
||||||
effect.exileTokensCreatedAtNextEndStep(game, source);
|
effect.removeTokensCreatedAt(game, source, false, PhaseStep.END_TURN, TargetController.YOU);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue