mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Avatar of Slaughter - Fixe dthat it gave double strike also to non creature permanents.
This commit is contained in:
parent
0c08784fe9
commit
ac35b41e26
1 changed files with 1 additions and 1 deletions
|
@ -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"));
|
||||
|
|
Loading…
Reference in a new issue