Fixed not working PickAmount window (not visible)

This commit is contained in:
Oleg Agafonov 2018-01-04 07:53:38 +04:00
parent cd57fcf94f
commit 0c38fffdef
2 changed files with 4 additions and 3 deletions

View file

@ -44,6 +44,7 @@ public class ArcLightning extends CardImpl {
public ArcLightning(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{R}");
// Arc Lightning deals 3 damage divided as you choose among one, two, or three target creatures and/or players.
this.getSpellAbility().addEffect(new DamageMultiEffect(3));
this.getSpellAbility().addTarget(new TargetCreatureOrPlayerAmount(3));
}