mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Lunge deals two damage to each target
This commit is contained in:
parent
9b44e7860a
commit
5529d7c75d
1 changed files with 2 additions and 2 deletions
|
@ -49,10 +49,10 @@ public class Lunge extends CardImpl {
|
||||||
|
|
||||||
|
|
||||||
// Lunge deals 2 damage to target creature and 2 damage to target player.
|
// Lunge 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