mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* On Serras Wings - Fixed that the boost was +4/+4 instead of correctly +1/+1.
This commit is contained in:
parent
ea16704b50
commit
112a7c7bc4
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