mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Soulhunter Rakshasa being able to target planeswalkers
This commit is contained in:
parent
274b74a1fb
commit
56cc22b814
1 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.target.common.TargetOpponentOrPlaneswalker;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -30,11 +30,11 @@ public final class SoulhunterRakshasa extends CardImpl {
|
|||
|
||||
// When Soulhunter Rakshasa enters the battlefield, it deals 5 damage to target opponent.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(5, "it"), false);
|
||||
ability.addTarget(new TargetOpponentOrPlaneswalker());
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public SoulhunterRakshasa(final SoulhunterRakshasa card) {
|
||||
private SoulhunterRakshasa(final SoulhunterRakshasa card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue