mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
* Root Sliver - Fixed that the Sliver spells can't be countered did not work correctly.
This commit is contained in:
parent
b3a3e17aa2
commit
26a45dd951
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ public class RootSliver extends CardImpl {
|
|||
// Root Sliver can't be countered.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantBeCounteredSourceEffect()));
|
||||
// Sliver spells can't be countered by spells or abilities.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.STACK, new RootSliverEffect()));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new RootSliverEffect()));
|
||||
|
||||
}
|
||||
|
||||
|
@ -88,7 +88,7 @@ class RootSliverEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
|
||||
public RootSliverEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
staticText = "Sliver spells can't be countered by spells or abilities.";
|
||||
staticText = "Sliver spells can't be countered by spells or abilities";
|
||||
}
|
||||
|
||||
public RootSliverEffect(final RootSliverEffect effect) {
|
||||
|
|
Loading…
Add table
Reference in a new issue