* Oriss, Samite Guardian -Fixed that the attack restriction effect did not work (fixes #6784).

This commit is contained in:
LevelX2 2020-07-06 15:57:54 +02:00
parent 3ef2f2351e
commit bd4da56647

View file

@ -39,13 +39,13 @@ public final class OrissSamiteGuardian extends CardImpl {
this.power = new MageInt(1);
this.toughness = new MageInt(3);
// {tap}: Prevent all damage that would be dealt to target creature this turn.
// {T}: Prevent all damage that would be dealt to target creature this turn.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PreventDamageToTargetEffect(Duration.EndOfTurn, Integer.MAX_VALUE), new TapSourceCost());
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
// Grandeur - Discard another card named Oriss, Samite Guardian: Target player can't cast spells this turn, and creatures that player controls can't attack this turn.
ability = new GrandeurAbility(new OrissSamiteGuardianCantCastEffect(), "Oriss, Samite Guardian");
ability = new GrandeurAbility(new OrissSamiteGuardianEffect(), "Oriss, Samite Guardian");
ability.addTarget(new TargetPlayer());
this.addAbility(ability);
}