* On Serras Wings - Fixed that the boost was +4/+4 instead of correctly +1/+1.

This commit is contained in:
LevelX2 2018-04-19 22:13:01 +02:00
parent ea16704b50
commit 112a7c7bc4

View file

@ -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);