mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Elvish Handservant - Fixed that it wrongly only triggered for spells of the controller instead of from spells of all players in range.
This commit is contained in:
parent
46e3c895e1
commit
c2af7836ab
1 changed files with 4 additions and 2 deletions
|
@ -31,7 +31,7 @@ import java.util.UUID;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
import mage.abilities.common.SpellCastAllTriggeredAbility;
|
||||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.counters.CounterType;
|
import mage.counters.CounterType;
|
||||||
|
@ -58,7 +58,9 @@ public class ElvishHandservant extends CardImpl {
|
||||||
this.color.setGreen(true);
|
this.color.setGreen(true);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
this.addAbility(new SpellCastControllerTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)), filter, true));
|
|
||||||
|
// Whenever a player casts a Giant spell, you may put a +1/+1 counter on Elvish Handservant.
|
||||||
|
this.addAbility(new SpellCastAllTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)), filter, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
public ElvishHandservant(final ElvishHandservant card) {
|
public ElvishHandservant(final ElvishHandservant card) {
|
||||||
|
|
Loading…
Reference in a new issue