mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Update VenomspoutBrackus.java
Activated ability for Venomspout Brackus was doing incorrect amount of damage from card.
This commit is contained in:
parent
097569148e
commit
9da4b0da98
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public final class VenomspoutBrackus extends CardImpl {
|
|||
this.toughness = new MageInt(5);
|
||||
|
||||
// {1}{G}, {tap}: Venomspout Brackus deals 5 damage to target attacking or blocking creature with flying.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new ManaCostsImpl("{1}{G}"));
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(5), new ManaCostsImpl("{1}{G}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
||||
this.addAbility(ability);
|
||||
|
|
Loading…
Reference in a new issue