mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Cunning Strike - Fixed damage amount to creature and player from 1 to 2.
This commit is contained in:
parent
75d7ae2a6e
commit
89ca54e80b
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue