mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Merge pull request #6983 from acabaca24/master
Fixed the Ghostly Pilferer triggered ability
This commit is contained in:
commit
82fa86cc24
1 changed files with 6 additions and 4 deletions
|
@ -41,6 +41,10 @@ public final class GhostlyPilferer extends CardImpl {
|
|||
|
||||
// Whenever an opponent casts a spell from anywhere other than their hand, draw a card.
|
||||
this.addAbility(new GhostlyPilfererTriggeredAbility());
|
||||
/*TODO: I think this way is the optimal way(copied from counter balance):
|
||||
* this.addAbility(new SpellCastOpponentTriggeredAbility(Zone.BATTLEFIELD,
|
||||
* new CounterbalanceEffect(), StaticFilters.FILTER_SPELL, true, SetTargetPointer.SPELL));
|
||||
*/
|
||||
|
||||
// Discard a card: Ghostly Pilferer can't be blocked this turn.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
|
@ -80,11 +84,9 @@ class GhostlyPilfererTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
if (event.getZone() == Zone.HAND) {
|
||||
return false;
|
||||
}
|
||||
Spell spell = game.getStack().getSpell(event.getTargetId());
|
||||
return spell != null;
|
||||
return (game.getOpponents(getControllerId()).contains(spell.getControllerId())
|
||||
&& event.getZone() != Zone.HAND);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue