mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
* Psychic Venom - Fixed rule text generation.
This commit is contained in:
parent
5f720983ee
commit
6022c01af8
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ public class PsychicVenom extends CardImpl<PsychicVenom> {
|
|||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment));
|
||||
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||
this.addAbility(ability);
|
||||
// Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller..
|
||||
// Whenever enchanted land becomes tapped, Psychic Venom deals 2 damage to that land's controller.
|
||||
this.addAbility(new PsychicVenomAbility());
|
||||
}
|
||||
|
||||
|
@ -82,7 +82,7 @@ public class PsychicVenom extends CardImpl<PsychicVenom> {
|
|||
|
||||
class PsychicVenomAbility extends TriggeredAbilityImpl<PsychicVenomAbility> {
|
||||
PsychicVenomAbility() {
|
||||
super(Zone.BATTLEFIELD, new DamageTargetEffect(2));
|
||||
super(Zone.BATTLEFIELD, new DamageTargetEffect(2, true, "that land's controller"));
|
||||
}
|
||||
|
||||
PsychicVenomAbility(final PsychicVenomAbility ability) {
|
||||
|
|
Loading…
Reference in a new issue