mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
fixed Talons of Wildwood giving +2/+2 instead of +1/+1
This commit is contained in:
parent
4455937158
commit
5675073840
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public final class TalonsOfWildwood extends CardImpl {
|
|||
|
||||
// Enchanted creature gets +1/+1 and has trample.
|
||||
ability = new SimpleStaticAbility(
|
||||
Zone.BATTLEFIELD, new BoostEnchantedEffect(2, 2, Duration.WhileOnBattlefield)
|
||||
Zone.BATTLEFIELD, new BoostEnchantedEffect(1, 1, Duration.WhileOnBattlefield)
|
||||
);
|
||||
ability.addEffect(new GainAbilityAttachedEffect(
|
||||
TrampleAbility.getInstance(),
|
||||
|
|
Loading…
Reference in a new issue