* Cunning Strike - Fixed damage amount to creature and player from 1 to 2.

This commit is contained in:
LevelX2 2015-01-18 10:16:24 +01:00
parent 75d7ae2a6e
commit 89ca54e80b

View file

@ -49,10 +49,10 @@ public class CunningStrike extends CardImpl {
this.expansionSetCode = "FRF"; this.expansionSetCode = "FRF";
// Cunning Strike deals 2 damage to target creature and 2 damage to target player. // Cunning Strike deals 2 damage to target creature and 2 damage to target player.
this.getSpellAbility().addEffect(new DamageTargetEffect(1)); this.getSpellAbility().addEffect(new DamageTargetEffect(2));
this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addTarget(new TargetCreaturePermanent());
Effect effect = new DamageTargetEffect(1); Effect effect = new DamageTargetEffect(2);
effect.setTargetPointer(new SecondTargetPointer()); effect.setTargetPointer(new SecondTargetPointer());
effect.setText("and 2 damage to target player"); effect.setText("and 2 damage to target player");
this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(effect);