* Avatar of Slaughter - Fixe dthat it gave double strike also to non creature permanents.

This commit is contained in:
LevelX2 2015-10-06 22:52:04 +02:00
parent 0c08784fe9
commit ac35b41e26

View file

@ -57,7 +57,7 @@ public class AvatarOfSlaughter extends CardImpl {
this.toughness = new MageInt(8);
// All creatures have double strike and attack each turn if able.
Effect effect = new GainAbilityAllEffect(DoubleStrikeAbility.getInstance(), Duration.WhileOnBattlefield);
Effect effect = new GainAbilityAllEffect(DoubleStrikeAbility.getInstance(), Duration.WhileOnBattlefield, new FilterCreaturePermanent("creatures"));
effect.setText("All creatures have double strike");
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
effect = new AttacksIfAbleAllEffect(new FilterCreaturePermanent("creatures"));