mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fix Soulhunter Rakshasa damage value
This commit is contained in:
parent
d661b0e1e9
commit
8b0393cb96
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ public final class SoulhunterRakshasa extends CardImpl {
|
||||||
this.addAbility(new CantBlockAbility());
|
this.addAbility(new CantBlockAbility());
|
||||||
|
|
||||||
// When Soulhunter Rakshasa enters the battlefield, it deals 5 damage to target opponent.
|
// When Soulhunter Rakshasa enters the battlefield, it deals 5 damage to target opponent.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(2, "it"), false);
|
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(5, "it"), false);
|
||||||
ability.addTarget(new TargetOpponentOrPlaneswalker());
|
ability.addTarget(new TargetOpponentOrPlaneswalker());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue