mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
eternal thirst non-optional. fixes #3449
This commit is contained in:
parent
62c14a9c24
commit
61f1c2e0c8
1 changed files with 2 additions and 3 deletions
|
@ -27,6 +27,7 @@
|
|||
*/
|
||||
package mage.cards.e;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
|
@ -45,8 +46,6 @@ import mage.filter.predicate.permanent.ControllerPredicate;
|
|||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emerald000
|
||||
|
@ -75,7 +74,7 @@ public class EternalThirst extends CardImpl {
|
|||
effect.setText("Enchanted creature has lifelink");
|
||||
ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
|
||||
// and "Whenever a creature an opponent controls dies, put a +1/+1 counter on this creature."
|
||||
effect = new GainAbilityAttachedEffect(new DiesCreatureTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), true, filter), AttachmentType.AURA);
|
||||
effect = new GainAbilityAttachedEffect(new DiesCreatureTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), false, filter), AttachmentType.AURA);
|
||||
ability.addEffect(effect);
|
||||
effect.setText("and \"Whenever a creature an opponent controls dies, put a +1/+1 counter on this creature.\"");
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue