Needletooth Raptor text fix

This commit is contained in:
Zzooouhh 2018-01-06 10:47:04 +00:00 committed by GitHub
parent 8dcd37d761
commit 9f0f7a1dae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ public class NeedletoothRaptor extends CardImpl {
this.toughness = new MageInt(2);
// <i>Enrage</i> &mdash; Whenever Needletooth Raptor is dealt damage, it deals 5 damage to target creature an opponent controls.
Ability ability = new DealtDamageToSourceTriggeredAbility(Zone.BATTLEFIELD, new DamageTargetEffect(5).setText("it deals 3 damage to target creature an opponent controls"), false, true);
Ability ability = new DealtDamageToSourceTriggeredAbility(Zone.BATTLEFIELD, new DamageTargetEffect(5).setText("it deals 5 damage to target creature an opponent controls"), false, true);
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
}