mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Voracious Vampire - Fixed missing ability text
This commit is contained in:
parent
f7b562a976
commit
ea99c7fb72
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class VoraciousVampire extends CardImpl {
|
|||
// When Voracious Vampire enters the battlefield, target Vampire you control gets +1/+1 and gains menace until end of turn.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(1, 1, Duration.EndOfTurn), false);
|
||||
Effect effect = new GainAbilityTargetEffect(new MenaceAbility(), Duration.EndOfTurn);
|
||||
effect.setText("and gains menace");
|
||||
effect.setText("and gains menace until end of turn.");
|
||||
ability.addEffect(effect);
|
||||
ability.addTarget(new TargetControlledCreaturePermanent(new FilterControlledCreaturePermanent(SubType.VAMPIRE, "Vampire you control")));
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue