mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Fix On Serra's Wings
should be +1/+1 not +4/+4
This commit is contained in:
parent
53152e815c
commit
f142d5d327
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ public class OnSerrasWings extends CardImpl {
|
|||
Effect effect = new AddCardSuperTypeAttachedEffect(SuperType.LEGENDARY, Duration.WhileOnBattlefield, AttachmentType.AURA);
|
||||
effect.setText("Enchanted creature is legendary");
|
||||
ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
|
||||
effect = new BoostEnchantedEffect(4, 4, Duration.WhileOnBattlefield);
|
||||
effect = new BoostEnchantedEffect(1, 1, Duration.WhileOnBattlefield);
|
||||
effect.setText(", gets +1/+1");
|
||||
ability.addEffect(effect);
|
||||
effect = new GainAbilityAttachedEffect(FlyingAbility.getInstance(), AttachmentType.AURA);
|
||||
|
|
Loading…
Reference in a new issue