* Psychic Venom - Fixed rule text generation.

This commit is contained in:
LevelX2 2014-01-18 16:01:26 +01:00
parent 5f720983ee
commit 6022c01af8

View file

@ -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) {