Fix Soulhunter Rakshasa damage value

This commit is contained in:
L_J 2018-10-09 18:23:40 +00:00 committed by GitHub
parent d661b0e1e9
commit 8b0393cb96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ public final class SoulhunterRakshasa extends CardImpl {
this.addAbility(new CantBlockAbility());
// 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());
this.addAbility(ability);
}